From 5fbf1bafe84b67b40332fced743f155f9fa2127f Mon Sep 17 00:00:00 2001 From: Ferdyan Date: Wed, 3 Jun 2026 20:26:34 +0700 Subject: [PATCH] Initial commit: WebGIS Kemiskinan Pontianak --- .env.example | 4 + .gitignore | 1 + README.md | 521 + config.php | 24 + delete_poor.php | 15 + edit_poor.php | 25 + index.php | 2378 + json/Fasilitas_Pontianak.json | 1264 + json/Ibadah_Pontianak.json | 2838 + json/Jalan_Pontianak.json | 428095 +++++++++++++++++++++++++++++++ json/Kecamatan_Pontianak.json | 14494 ++ login.php | 120 + logout.php | 5 + save_poor.php | 30 + schema.sql | 42 + update_settings.php | 19 + 16 files changed, 449875 insertions(+) create mode 100644 .env.example create mode 100644 .gitignore create mode 100644 README.md create mode 100644 config.php create mode 100644 delete_poor.php create mode 100644 edit_poor.php create mode 100644 index.php create mode 100644 json/Fasilitas_Pontianak.json create mode 100644 json/Ibadah_Pontianak.json create mode 100644 json/Jalan_Pontianak.json create mode 100644 json/Kecamatan_Pontianak.json create mode 100644 login.php create mode 100644 logout.php create mode 100644 save_poor.php create mode 100644 schema.sql create mode 100644 update_settings.php diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..f53e66e --- /dev/null +++ b/.env.example @@ -0,0 +1,4 @@ +DB_HOST=localhost +DB_USER=root +DB_PASS= +DB_NAME=webgis_pontianak \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2eea525 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..a0ba331 --- /dev/null +++ b/README.md @@ -0,0 +1,521 @@ +# 🌏 WebGIS Kemiskinan & Jangkauan Bantuan + +Sistem Informasi Geospasial interaktif untuk memetakan penduduk miskin dan menganalisis jangkauan bantuan dari rumah ibadah di Kota Pontianak, Kalimantan Barat. + +--- + +## ✍️ Author +Nama: Ferdyan Handoko +NIM: D1041231039 +Kelas: SIG B + +--- + +## 🌐 Live Demo +Sistem ini telah di-hosting dan dapat diakses langsung melalui tautan berikut: + +Halaman Tautan +🗺️ Halaman Publik https://pontianak-poverty-webgis.freedev.app/ +🔐 Halaman Login Admin https://pontianak-poverty-webgis.freedev.app/login.php + +Kredensial Demo Admin: + +Username: admin +Password: admin123 + +⚠️ Catatan: Kredensial di atas hanya untuk keperluan demo. Ganti password setelah instalasi di server produksi. + +--- + +## 📑 Daftar Isi + +- [Deskripsi](#-deskripsi) +- [Fitur Utama](#-fitur-utama) +- [Teknologi yang Digunakan](#-teknologi-yang-digunakan) +- [Persyaratan Sistem](#-persyaratan-sistem) +- [Instalasi (dari Gitea)](#-instalasi-dari-gitea) +- [Struktur Proyek](#-struktur-proyek) +- [Konfigurasi .env](#-konfigurasi-env) +- [Login Admin](#-login-admin) +- [Cara Menggunakan](#-cara-menggunakan) +- [Database Schema](#-database-schema) +- [Data GeoJSON](#-data-geojson) +- [Troubleshooting](#-troubleshooting) +- [Keamanan](#-keamanan) +- [Pengembangan Lebih Lanjut](#-pengembangan-lebih-lanjut) +- [Kontribusi](#-kontribusi) +- [Kontak & Support](#-kontak--support) +- [Catatan Versi](#-catatan-versi) + +--- + +## 📘 Deskripsi + +Sistem ini dibangun untuk membantu pemangku kepentingan di Kota Pontianak dalam mengidentifikasi sebaran penduduk miskin yang belum terjangkau bantuan dari rumah ibadah. Dengan pendekatan WebGIS, pengguna dapat menjelajahi peta interaktif, melihat klasifikasi titik miskin (terjangkau / tidak), serta kerapatan penduduk per kecamatan. + +Admin dapat mengelola data penduduk miskin langsung dari peta melalui antarmuka *sidebar*, sedangkan pengguna umum dapat melihat seluruh informasi tanpa bisa mengubah data. + +--- + +## ✨ Fitur Utama + +- **Peta Interaktif** berbasis OpenStreetMap dengan navigasi zoom, pan, dan tombol kontrol. +- **6 Layer Geospasial:** Batas Kecamatan, Kerapatan Penduduk Belum Terjangkau, Zona Buffer, Titik Miskin, Fasilitas Umum, Jaringan Jalan, Rumah Ibadah. +- **Klasifikasi Titik Miskin:** Hijau (terjangkau) dan Merah (belum terjangkau). +- **Zona Jangkauan (Buffer Union):** Gabungan buffer dari seluruh rumah ibadah, radius dapat diubah secara dinamis. +- **Dashboard Ringkasan:** Total titik miskin, jumlah keluarga, rata‑rata penghasilan, distribusi per kecamatan. +- **Tabel Data Lengkap:** Dapat diurutkan (sort) dan diakses melalui modal. +- **Manajemen Data Admin:** Tambah, edit, hapus titik penduduk miskin langsung dari peta atau tabel. +- **Validasi Formulir & Konfirmasi Aksi:** Mencegah kesalahan input dan perubahan tidak disengaja. +- **Loading Overlay** untuk umpan balik saat data dimuat. +- **Toast Notification** untuk notifikasi sukses/gagal. +- **Sidebar** dengan tab navigasi, kontrol layer, legenda, dan analisis. +- **Login Admin** dengan password terenkripsi (hash). +- **Keamanan Dasar:** Escape HTML (XSS), session PHP, prepared statements untuk query SQL. +- **Responsif** (mobile‑friendly) melalui *drawer sidebar*. + +--- + +## 🛠 Teknologi yang Digunakan + +| Komponen | Teknologi | +|------------------------|--------------------------------------------------------| +| Frontend | HTML5, CSS3, JavaScript (ES6+), Leaflet JS, Turf.js | +| Backend | PHP 7.4+ (prosedural) | +| Database | MySQL / MariaDB | +| Sumber Data Geospasial | File GeoJSON dari Overpass Turbo (data OpenStreetMap) | +| Tile Peta | OpenStreetMap (gratis) | +| Font | Inter (Google Fonts) | +| Ikon | Emoji & SVG | + +--- + +## 💻 Persyaratan Sistem + +- Server lokal: XAMPP, Laragon, atau sejenisnya dengan PHP 7.4+ dan MySQL 5.7+ +- Web browser modern: Google Chrome, Mozilla Firefox, Microsoft Edge +- Koneksi internet (untuk memuat tile peta dan font) +- Git (untuk clone repository) + +--- + +## 📥 Instalasi (dari Gitea) + +### 1. Clone Repository + +```bash +git clone https://your-gitea-instance.com/username/Web-SIG-Kemiskinan.git +cd Web-SIG-Kemiskinan +``` + +### 2. Persiapan Database + +1. Buka phpMyAdmin atau client MySQL favorit Anda +2. Jalankan script `schema.sql`: + ```sql + source schema.sql; + ``` + Atau copy-paste isi file `schema.sql` dan jalankan di MySQL client +3. Tabel berikut akan terbuat otomatis: + - `admins` (username: admin, password sudah di-hash) + - `poor_residents` (data penduduk miskin) + - `settings` (pengaturan aplikasi seperti buffer_radius) + +### 3. Konfigurasi Environment (.env) + +1. Buat file `.env` di root project: + ```bash + cp .env.example .env # atau buat file baru jika tidak ada .env.example + ``` + +2. Edit `.env` dengan kredensial database Anda: + ``` + DB_HOST=localhost + DB_USER=root + DB_PASS= + DB_NAME=webgis_pontianak + ``` + +3. Sesuaikan nilai sesuai konfigurasi MySQL Anda + +### 4. Setup Web Server + +#### Menggunakan Laragon: +- Copy folder `Web-SIG-Kemiskinan` ke folder `C:\laragon\www\` +- Akses melalui `http://webgis-kemiskinan.test` (atau sesuai konfigurasi) + +#### Menggunakan XAMPP: +- Copy folder ke `C:\xampp\htdocs\Web-SIG-Kemiskinan\` +- Akses melalui `http://localhost/Web-SIG-Kemiskinan` + +### 5. Verifikasi Instalasi + +- Buka browser dan akses aplikasi +- Jika berhasil, Anda akan melihat **peta interaktif** dengan semua layer +- Untuk login sebagai admin: **[Login Admin](#-login-admin)** + +--- + +## 📂 Struktur Proyek + +``` +Web-SIG-Kemiskinan/ +├── config.php # Konfigurasi database (pembaca file .env) +├── index.php # Halaman utama peta interaktif +├── login.php # Halaman login admin +├── logout.php # Script logout +├── save_poor.php # API: Tambah data penduduk miskin +├── edit_poor.php # API: Edit data penduduk miskin +├── delete_poor.php # API: Hapus data penduduk miskin +├── update_settings.php # API: Update pengaturan (buffer radius) +├── schema.sql # Script pembuatan database +├── .env # File konfigurasi environment (tidak di-commit) +├── README.md # Dokumentasi proyek +└── json/ # Data GeoJSON (sumber data peta) + ├── Kecamatan_Pontianak.json + ├── Jalan_Pontianak.json + ├── Fasilitas_Pontianak.json + ├── Ibadah_Pontianak.json + └── ... +``` + +### Penjelasan File Utama + +| File | Fungsi | +|------|--------| +| `config.php` | Koneksi database dan pembaca file `.env` | +| `index.php` | Frontend utama dengan peta Leaflet dan logika JavaScript | +| `login.php` | Form login dengan autentikasi password hash | +| `save_poor.php` | AJAX endpoint untuk tambah data (admin only) | +| `edit_poor.php` | AJAX endpoint untuk edit data (admin only) | +| `delete_poor.php` | AJAX endpoint untuk hapus data (admin only) | +| `update_settings.php` | AJAX endpoint untuk update buffer radius | +| `schema.sql` | SQL script untuk setup database otomatis | + +--- + +## 🔧 Konfigurasi .env + +Buat file `.env` di root project dengan isi berikut: + +```env +# Database Configuration +DB_HOST=localhost +DB_USER=root +DB_PASS= +DB_NAME=webgis_pontianak +``` + +**Penjelasan:** +- `DB_HOST`: Host database (biasanya localhost untuk lokal) +- `DB_USER`: Username MySQL +- `DB_PASS`: Password MySQL (kosong jika tidak ada) +- `DB_NAME`: Nama database yang sudah dibuat + +**Catatan Penting:** +- File `.env` TIDAK boleh di-commit ke Git (tambahkan ke `.gitignore`) +- Setiap developer harus membuat `.env` mereka sendiri dengan kredensial lokal + +--- + +## 🔐 Login Admin + +### Kredensial Default + +``` +Username: admin +Password: admin +``` + +**Catatan Keamanan:** +- Password di-hash menggunakan `password_hash()` dengan algoritma bcrypt +- Ubah password default setelah instalasi pertama kali +- Password disimpan di tabel `admins` dengan hash, bukan plaintext + +### Mengubah Password Admin + +1. Login ke server database +2. Update tabel `admins`: + ```sql + UPDATE admins SET password = '$2y$10$NEW_HASH_HERE' WHERE username = 'admin'; + ``` + + Untuk generate hash baru, gunakan script PHP: + ```php + + ``` + +--- + +## 📖 Cara Menggunakan + +### 1. Akses Aplikasi +- Buka browser dan akses URL aplikasi (sesuai setup Anda) +- Peta interaktif akan langsung terlihat + +### 2. Navigasi Peta +- **Zoom**: Gunakan scroll mouse atau tombol +/- di peta +- **Pan**: Klik dan drag peta +- **Tombol Kontrol**: Zoom in/out, fullscreen, lokasi saat ini + +### 3. Menampilkan/Menyembunyikan Layer + +**Menggunakan Tombol Top Bar:** +- 🟣 **Buffer**: Zona jangkauan bantuan dari rumah ibadah +- 🟢 **Density**: Kerapatan penduduk belum terjangkau +- 🏥 **Fasilitas**: Fasilitas umum (puskesmas, sekolah, dll) +- 🛣️ **Jalan**: Jaringan jalan +- 🕌 **Ibadah**: Lokasi rumah ibadah +- 🟧 **Kecamatan**: Batas-batas kecamatan + +**Menggunakan Sidebar:** +- Klik tab 🗂️ **Layer** untuk melihat daftar semua layer +- Aktifkan/matikan layer dengan toggle switch + +### 4. Melihat Legenda +- Klik tab 📋 **Legenda** di sidebar +- Legenda menjelaskan warna dan simbol di peta + +### 5. Analisis Data +- Klik tab 📊 **Analisis** di sidebar +- Lihat statistik: + - Total penduduk miskin + - Total keluarga + - Rata-rata penghasilan + - Distribusi per kecamatan + +### 6. Tabel Data Lengkap +- Klik tab 📋 **Data** di sidebar atau tombol **Tabel** di top bar +- Lihat daftar lengkap semua penduduk miskin +- Tabel dapat diurutkan berdasarkan kolom (asc/desc) +- **Admin**: Klik pada baris untuk edit/hapus + +### 7. Mengelola Data (Admin Only) + +#### Tambah Data Baru +1. Klik tombol **+ Tambah Data** (hanya muncul jika login) +2. Isi form modal: + - Nama (wajib) + - NIK + - Jumlah Keluarga + - Penghasilan (Rp) + - RT/RW + - Koordinat (lat/lng) +3. Klik **Simpan** + +#### Menambah Data via Klik Peta (Admin) +1. Pastikan sudah login +2. Aktifkan mode "Add Mode" (jika ada) atau klik kanan di peta +3. Sistem akan membuka form dengan koordinat otomatis terisi +4. Isi data lainnya dan simpan + +#### Edit Data +1. Klik pada titik di peta atau baris di tabel +2. Ubah data di form modal +3. Klik **Update** + +#### Hapus Data +1. Klik pada titik di peta atau baris di tabel +2. Klik tombol **Hapus** atau **Delete** +3. Konfirmasi penghapusan + +### 8. Mengubah Buffer Radius +1. Login sebagai admin +2. Klik tab ⚙️ **Pengaturan** di sidebar +3. Ubah nilai **Buffer Radius** (dalam meter) +4. Klik **Simpan** +5. Peta akan refresh dengan zona buffer yang baru + +### 9. Logout +- Klik tombol **Logout** di sidebar +- Atau tutup sesi browser + +--- + +## �📊 Database Schema + +### Tabel: `admins` +```sql +CREATE TABLE admins ( + id INT PRIMARY KEY AUTO_INCREMENT, + username VARCHAR(50) NOT NULL UNIQUE, + password VARCHAR(255) NOT NULL +); +``` + +### Tabel: `poor_residents` +```sql +CREATE TABLE poor_residents ( + id INT PRIMARY KEY AUTO_INCREMENT, + name VARCHAR(100) NOT NULL, + nik VARCHAR(16), + family_size INT DEFAULT 1, + income INT DEFAULT 0, + rt_rw VARCHAR(20), + lat DOUBLE NOT NULL, + lng DOUBLE NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP +); +``` + +### Tabel: `settings` +```sql +CREATE TABLE settings ( + setting_key VARCHAR(50) PRIMARY KEY, + setting_value TEXT NOT NULL +); +``` + +--- + +## 📁 Data GeoJSON + +Data geospasial disimpan dalam folder `json/`: + +| File | Keterangan | +|------|-----------| +| `Kecamatan_Pontianak.json` | Batas-batas wilayah kecamatan | +| `Jalan_Pontianak.json` | Jaringan jalan di Pontianak | +| `Fasilitas_Pontianak.json` | Fasilitas umum (puskesmas, sekolah, dll) | +| `Ibadah_Pontianak.json` | Lokasi rumah ibadah | + +Semua file GeoJSON berasal dari **Overpass Turbo** (query OpenStreetMap): +- Format: GeoJSON standar dengan geometri dan properties +- Proyeksi: WGS84 (EPSG:4326) +- Digunakan untuk rendering layer di Leaflet + +--- + +## 🐛 Troubleshooting + +### Masalah: Peta tidak muncul +- **Solusi**: Periksa koneksi internet, pastikan CDN Leaflet dapat diakses +- **Alternatif**: Gunakan Leaflet offline atau host sendiri + +### Masalah: Data tidak muncul di database +- **Solusi**: Pastikan file `.env` benar dan database sudah dibuat via `schema.sql` +- Cek koneksi database di phpMyAdmin + +### Masalah: Login gagal +- **Solusi**: Pastikan username `admin` ada di tabel `admins` +- Gunakan password default: `admin` +- Jika lupa, reset password via database + +### Masalah: Layer GeoJSON tidak muncul +- **Solusi**: Periksa file GeoJSON di folder `json/` ada lengkap +- Buka browser console (F12) cek error messages +- Pastikan path file GeoJSON benar di file `index.php` + +### Masalah: Sidebar tidak merespons +- **Solusi**: Clear cache browser (Ctrl+Shift+Delete) +- Reload halaman (Ctrl+R atau F5) +- Cek browser console untuk JavaScript error + +--- + +## 🔒 Keamanan + +Fitur keamanan yang diimplementasikan: + +1. **Authentication**: Login dengan session PHP +2. **Authorization**: Admin-only endpoints mengecek `$_SESSION['admin']` +3. **Input Validation**: Prepared statements untuk mencegah SQL injection +4. **Password Hashing**: Menggunakan `password_hash()` dengan bcrypt +5. **Output Escaping**: Data divalidasi saat output ke HTML +6. **CORS**: GET endpoint untuk GeoJSON dapat diakses publik +7. **Session Management**: Logout menghapus session + +**Catatan untuk Production:** +- Gunakan HTTPS +- Set cookie HttpOnly dan Secure +- Implementasi CSRF protection +- Rate limiting untuk login +- Update PHP dan MySQL secara berkala +- Backup database reguler + +--- + +## 🚀 Pengembangan Lebih Lanjut + +### Fitur yang Bisa Ditambahkan +- Export data (CSV, Excel, PDF) +- Import data dari file bulk +- Visualisasi grafik statistik +- Filter data berdasarkan kriteria (RT/RW, range penghasilan, dll) +- Heatmap real-time dengan WebSocket +- Mobile app native (React Native, Flutter) +- Multi-language support +- Dark mode +- API REST yang lebih lengkap + +### Setup Development Environment + +```bash +# Install dependencies (jika menggunakan npm/composer) +composer install # untuk PHP dependencies + +# Setup local server dengan PHP built-in +cd Web-SIG-Kemiskinan +php -S localhost:8000 + +# Atau gunakan Laragon/XAMPP untuk development +``` + +### Git Workflow + +```bash +# Clone repository +git clone https://git.ifuntanhub.dev/FH/pontianak-poverty-webgis.git + +# Buat branch baru untuk feature +git checkout -b feature/nama-fitur + +# Commit changes +git add . +git commit -m "feat: tambah fitur baru" + +# Push ke remote +git push origin feature/nama-fitur + +# Buat Pull Request di Gitea +``` + +--- + +## 👥 Kontribusi + +Kontribusi sangat diterima! Silahkan: + +1. Fork repository +2. Buat branch untuk feature/bugfix +3. Commit dan push +4. Buat Pull Request + +--- + +## 📞 Kontak & Support + +Untuk pertanyaan, laporan bug, atau saran: + +- **Email**: [d1041231039@student.untan.ac.id](mailto:d1041231039@student.untan.ac.id) + +--- + +## 📝 Catatan Versi + +### v1.0 (Current) +- ✅ Peta interaktif dengan 7 layer geospasial +- ✅ Dashboard dan statistik +- ✅ CRUD data penduduk miskin +- ✅ Login admin dengan password hash +- ✅ Buffer radius dinamis +- ✅ Responsif mobile +- ✅ Validasi form dan data + +--- + +*Last Updated: June 3, 2026* \ No newline at end of file diff --git a/config.php b/config.php new file mode 100644 index 0000000..56014ea --- /dev/null +++ b/config.php @@ -0,0 +1,24 @@ +prepare("DELETE FROM poor_residents WHERE id = ?"); +$stmt->bind_param("i", $id); + +if ($stmt->execute()) { + echo json_encode(['success' => true, 'message' => 'Data berhasil dihapus']); +} else { + http_response_code(500); + echo json_encode(['success' => false, 'message' => 'Gagal menghapus data: ' . $stmt->error]); +} \ No newline at end of file diff --git a/edit_poor.php b/edit_poor.php new file mode 100644 index 0000000..2a5cd75 --- /dev/null +++ b/edit_poor.php @@ -0,0 +1,25 @@ +prepare("UPDATE poor_residents SET name=?, nik=?, family_size=?, income=?, rt_rw=?, lat=?, lng=? WHERE id=?"); +$stmt->bind_param("ssiisddi", $name, $nik, $family, $income, $rt_rw, $lat, $lng, $id); + +if ($stmt->execute()) { + echo json_encode(['success' => true, 'message' => 'Data berhasil diupdate']); +} else { + http_response_code(500); + echo json_encode(['success' => false, 'message' => 'Gagal mengupdate data: ' . $stmt->error]); +} \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..8ce2c63 --- /dev/null +++ b/index.php @@ -0,0 +1,2378 @@ + + + + + + + + SIG Kemiskinan & Jangkauan Bantuan - WebGIS + + + + + + + +
+
+
Memuat data...
+
+
+
+
+ +
+
+ +
+ + + + + + +
+
+
Admin
+ Keluar +
+
📍 Klik pada peta untuk memilih lokasi
+
+

Informasi

+

Klik pada elemen peta untuk melihat detail

+
+
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/json/Fasilitas_Pontianak.json b/json/Fasilitas_Pontianak.json new file mode 100644 index 0000000..053e639 --- /dev/null +++ b/json/Fasilitas_Pontianak.json @@ -0,0 +1,1264 @@ +{ + "type": "FeatureCollection", + "generator": "overpass-turbo", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.", + "timestamp": "2026-05-26T04:58:14Z", + "features": [ + { + "type": "Feature", + "properties": { + "@id": "way/283884855", + "addr:city": "Pontianak", + "addr:full": "Jalan Dr. Soedarso Nomor 1, Pontianak", + "addr:street": "Jl Dr Sudarso", + "amenity": "hospital", + "healthcare": "hospital", + "name": "Rumah Sakit Umum Daerah Dokter Yos Soedarso", + "operator": "Government", + "operator:type": "government", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3633359, + -0.0622364 + ] + }, + "id": "way/283884855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288728758", + "access:roof": "no", + "addr:full": "Jl. Soeprapto", + "amenity": "school", + "building": "school", + "building:condition": "good", + "building:floor": "ceramics", + "building:levels": "1", + "building:roof": "tin", + "building:structure": "confined_masonry", + "building:walls": "concrete", + "capacity:persons": "100-250", + "name": "SD Negeri 20 Kota Pontianak", + "operator:type": "government", + "school:type_idn": "sd", + "source": "survey", + "water_source": "water_works", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.34244, + -0.0382048 + ] + }, + "id": "way/288728758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/292687199", + "amenity": "school", + "name": "MTSN 1 PONTIANAK", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3243899, + -0.0317505 + ] + }, + "id": "way/292687199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/292690950", + "amenity": "school", + "name": "SD Bayangkari 8", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3220349, + -0.0313904 + ] + }, + "id": "way/292690950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301784746", + "amenity": "school", + "building": "school", + "name": "SDK Immanuel", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3397547, + -0.0279778 + ] + }, + "id": "way/301784746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301790248", + "amenity": "school", + "name": "SD SMP SMA Immanuel", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3408467, + -0.0492909 + ] + }, + "id": "way/301790248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301790249", + "amenity": "school", + "name": "SMP SMA SMK Immanuel", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3412465, + -0.0502074 + ] + }, + "id": "way/301790249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/308747242", + "amenity": "school", + "name": "Lembaga Pendidikan Mujahiddin", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3377988, + -0.0430668 + ] + }, + "id": "way/308747242" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324182901", + "amenity": "school", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3272975, + -0.0388839 + ] + }, + "id": "way/324182901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324183297", + "amenity": "school", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3252492, + -0.0369249 + ] + }, + "id": "way/324183297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324183348", + "amenity": "school", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3255865, + -0.0366886 + ] + }, + "id": "way/324183348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324183399", + "amenity": "school", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3255343, + -0.0368938 + ] + }, + "id": "way/324183399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324183655", + "amenity": "school", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3257383, + -0.0369267 + ] + }, + "id": "way/324183655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324183681", + "amenity": "school", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.32576, + -0.0367274 + ] + }, + "id": "way/324183681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324183721", + "amenity": "school", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3254764, + -0.0371619 + ] + }, + "id": "way/324183721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/342693952", + "amenity": "school", + "name": "Kompleks SMA Negeri 4 Pontianak", + "school:type_idn": "sma", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3062982, + -0.0331858 + ] + }, + "id": "way/342693952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573024725", + "amenity": "clinic", + "building": "yes", + "healthcare": "clinic", + "name": "Dokter Sihar Donald", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3704178, + -0.0278997 + ] + }, + "id": "way/573024725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573412620", + "addr:city": "Pontianak", + "addr:full": "Jalan Merdeka Barat Nomor 689", + "amenity": "clinic", + "building": "clinic", + "name": "Klinik Pratama Pacificus BOS", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3294021, + -0.0194404 + ] + }, + "id": "way/573412620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573412685", + "addr:city": "Pontianak", + "addr:full": "Jalan Merdeka Barat Nomor 193 B", + "amenity": "clinic", + "building": "yes", + "name": "Paraktek Umum dr. Buddy S", + "operator:type": "community", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3294351, + -0.0203662 + ] + }, + "id": "way/573412685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575283112", + "addr:full": "Jalan KS. Tubun No.14, Akcaya, Kec. Pontianak Sel., Kota Pontianak, Kalimantan Barat 78121", + "amenity": "hospital", + "area": "yes", + "name": "RS Bhayangkara Anton Soedjarwo Pontianak", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3339178, + -0.0407754 + ] + }, + "id": "way/575283112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575750252", + "addr:city": "Pontianak", + "addr:full": "Jalan Siam No. 153", + "amenity": "hospital", + "building": "hospital", + "healthcare": "hospital", + "name": "RS Kharitas Bhakti", + "operator:type": "private", + "website": "https://kharitasbhakti.co.id/", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.340515, + -0.030893 + ] + }, + "id": "way/575750252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782895753", + "addr:city": "Pontianak", + "addr:full": "Jalan KH. Wahid Hasyim Nomor 249", + "amenity": "hospital", + "healthcare": "hospital", + "name": "Rumah Sakit Santo Antonius", + "operator:type": "private", + "website": "https://www.rs-antonius.com/", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.327223, + -0.0203023 + ] + }, + "id": "way/782895753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782905973", + "addr:full": "Jalan Komodor Yos Sudarso", + "amenity": "hospital", + "healthcare": "hospital", + "name": "RSUD Sultan Syarif Mohamad Alkadrie", + "operator:type": "government", + "website": "https://rsud.pontianakkota.go.id/page/utama.php", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2940629, + -0.0092788 + ] + }, + "id": "way/782905973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/783869580", + "addr:city": "Kota Pontianak", + "addr:full": "Komplek Pontianak Mall, Jalan Gusti Sulung Lelanang Blok E-A No.2-5, Kelurahan Darat Sekip, Kecamatan Pontianak Kota", + "addr:postcode": "78117", + "amenity": "hospital", + "building": "hospital", + "contact:fax": "(0561) 738692", + "contact:phone": "(0561) 739042", + "healthcare": "hospital", + "name": "Promedika Hospital", + "opening_hours": "24/7", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3365366, + -0.031321 + ] + }, + "id": "way/783869580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/784745966", + "addr:city": "Pontianak", + "addr:full": "Jalan Jenderal Ahmad Yani, Bangka Belitung Darat, Pontianak Tenggara, Kota Pontianak, Kalimantan Barat 78124", + "amenity": "hospital", + "healthcare": "hospital", + "name": "Rumah Sakit Anugerah Bunda Khatulistiwa", + "operator:type": "private", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3551063, + -0.0613995 + ] + }, + "id": "way/784745966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804118033", + "amenity": "school", + "contact:instagram": "smpgembalabaik", + "denomination": "roman_catholic", + "email": "smpgbptk@gmail.com", + "grades": "7-9", + "name": "SMP Gembala Baik Reguler", + "operator": "Yayasan Pendidikan Gembala Baik", + "operator:type": "religious", + "religion": "christian", + "website": "https://smpgembalabaik.sch.id", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3607206, + -0.0698308 + ] + }, + "id": "way/804118033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/904963758", + "amenity": "school", + "education": "school", + "name": "Sekolah Al-Azhar", + "name:id": "Sekolah Al-Azhar", + "name:ms": "Sekolah Al-Azhar", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3510822, + -0.058171 + ] + }, + "id": "way/904963758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1030251123", + "amenity": "hospital", + "healthcare": "hospital", + "name": "RS. Mitra Medika", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.329251, + -0.0375931 + ] + }, + "id": "way/1030251123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1189157281", + "amenity": "clinic", + "building": "yes", + "healthcare": "clinic", + "name": "Pos Kesehatan Desa Ampera Raya", + "operator": "Ministry of Health", + "operator:en": "Ministry of Health", + "operator:id": "Kementerian Kesehatan", + "operator:type": "government", + "operator:wikidata": "Q12490745", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3763736, + -0.0346772 + ] + }, + "id": "way/1189157281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908173", + "amenity": "school", + "contact:facebook": "https://www.facebook.com/sdsgembalabaik2", + "contact:instagram": "sdsgembalabaik2", + "contact:phone": "+62 82253067171", + "contact:youtube": "https://www.youtube.com/channel/UCm3LDu8dA4PI9RkfeglrWUg", + "denomination": "roman_catholic", + "grades": "1-6", + "name": "SD Swasta Gembala Baik II", + "operator": "Yayasan Pendidikan Gembala Baik", + "operator:type": "religious", + "religion": "christian", + "website": "https://sdsgb2.sch.id", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3586023, + -0.0696286 + ] + }, + "id": "way/1267908173" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908180", + "amenity": "school", + "contact:instagram": "smagb_pontianak", + "contact:youtube": "https://www.youtube.com/galerikreatifsmagb", + "denomination": "roman_catholic", + "grades": "10-12", + "name": "SMA Gembala Baik", + "operator": "Yayasan Pendidikan Gembala Baik", + "operator:type": "religious", + "religion": "christian", + "website": "https://smagb.sch.id", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3591804, + -0.0688395 + ] + }, + "id": "way/1267908180" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268089494", + "amenity": "school", + "building": "school", + "building:levels": "4", + "contact:instagram": "smpgembalabaik", + "denomination": "roman_catholic", + "email": "smpgbptk@gmail.com", + "grades": "7-9", + "name": "SMP Gembala Baik Plus", + "operator": "Yayasan Pendidikan Gembala Baik", + "operator:type": "religious", + "religion": "christian", + "website": "https://smpgembalabaik.sch.id", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3582881, + -0.0675641 + ] + }, + "id": "way/1268089494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268089495", + "amenity": "school", + "building": "school", + "building:levels": "4", + "contact:facebook": "https://www.facebook.com/sdplusgembalabaik/", + "contact:instagram": "sdplusgembalabaik", + "contact:phone": "+62 561 812 2908", + "contact:youtube": "https://www.youtube.com/channel/UCJhCg5OFdYo5SDy-J9Tdljw/", + "denomination": "roman_catholic", + "email": "sdplusgembalabaikptk@gmail.com", + "grades": "1-6", + "name": "SD Plus Gembala Baik", + "operator": "Yayasan Pendidikan Gembala Baik", + "operator:type": "religious", + "religion": "christian", + "website": "https://sdplusgembalabaik.sch.id", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3586238, + -0.0678118 + ] + }, + "id": "way/1268089495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388467562", + "amenity": "school", + "name": "SMPN NEGERI 10", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3403219, + -0.0374496 + ] + }, + "id": "way/1388467562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388467563", + "amenity": "school", + "name": "SMA Negeri 3", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.339657, + -0.0367765 + ] + }, + "id": "way/1388467563" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1957951770", + "amenity": "school", + "name": "SMP Negeri 3 Pontianak" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3289201, + -0.041724 + ] + }, + "id": "node/1957951770" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1957951806", + "amenity": "school", + "name": "SMA Negeri 1 Pontianak" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3295136, + -0.0423095 + ] + }, + "id": "node/1957951806" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1971779500", + "addr:housenumber": "3", + "addr:postcode": "78121", + "addr:street": "Jalan Karel Satsuit Tubun", + "amenity": "school", + "name": "SMP & SMA Santu Petrus - SD Karya Yosef", + "opening_hours": "Mo-Fr 07:00-13:00", + "phone": "0816-4985-904", + "website": "https://www.smppetrus.sch.id/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3318657, + -0.037688 + ] + }, + "id": "node/1971779500" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1971929460", + "amenity": "school", + "name": "TK - SD Karya Yosef" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.338811, + -0.0269551 + ] + }, + "id": "node/1971929460" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2414835840", + "amenity": "school", + "name": "SDN 5 Pontianak" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.334553, + -0.023114 + ] + }, + "id": "node/2414835840" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2445514963", + "addr:city": "Pontianak", + "addr:housename": "SMK Negeri 1", + "addr:street": "Jalan Danau Sentarum", + "amenity": "school", + "name": "SMK Negeri 1" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3124733, + -0.0422611 + ] + }, + "id": "node/2445514963" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2459146283", + "amenity": "school" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3243074, + -0.0315481 + ] + }, + "id": "node/2459146283" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2459146286", + "amenity": "school", + "name": "SD Bayangkari 8" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3221456, + -0.0313497 + ] + }, + "id": "node/2459146286" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2466054119", + "amenity": "school", + "name": "SDN 04" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3114133, + -0.0099874 + ] + }, + "id": "node/2466054119" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2919744961", + "amenity": "school", + "name": "SMAN 8 PONTIANAK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2979161, + -0.0515932 + ] + }, + "id": "node/2919744961" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2919744989", + "addr:city": "Pontianak Kota", + "addr:street": "JL. AMPERA", + "amenity": "school", + "name": "SMAN 8 PONTIANAK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2985823, + -0.051523 + ] + }, + "id": "node/2919744989" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2963923359", + "amenity": "school", + "name": "SD NEGERI 28" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3219237, + -0.0241199 + ] + }, + "id": "node/2963923359" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4393152489", + "amenity": "school", + "name": "SMA St Paulus" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3355778, + -0.0280353 + ] + }, + "id": "node/4393152489" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5504478009", + "amenity": "school" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3334413, + -0.0190642 + ] + }, + "id": "node/5504478009" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12207995083", + "amenity": "clinic", + "healthcare": "clinic", + "name": "Apotek Gaby" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.357897, + -0.0748885 + ] + }, + "id": "node/12207995083" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12314011144", + "amenity": "prep_school", + "contact:whatsapp": "+62 821-3551-3388", + "name": "Timedoor Academy", + "website": "https://timedooracademy.com" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3554266, + -0.0655128 + ] + }, + "id": "node/12314011144" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12314011147", + "amenity": "prep_school", + "contact:instagram": "@codingbeeacademy", + "contact:phone": "+62 851-7442-9189", + "name": "Coding Bee Academy", + "website": "https://codingbee.id" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3553126, + -0.0656657 + ] + }, + "id": "node/12314011147" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12320194290", + "amenity": "clinic", + "healthcare": "clinic", + "name": "HealCare" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3518055, + -0.0586849 + ] + }, + "id": "node/12320194290" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12898376345", + "amenity": "prep_school", + "contact:instagram": "bsmart_education", + "contact:whatsapp": "+62 857-5058-8821", + "name": "Bsmart Education" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3597333, + -0.071977 + ] + }, + "id": "node/12898376345" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12898376349", + "amenity": "clinic", + "healthcare": "clinic", + "name": "Apotek Murni" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3585932, + -0.0738623 + ] + }, + "id": "node/12898376349" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12898376361", + "amenity": "clinic", + "contact:whatsapp": "+62 813-4716-6556", + "healthcare": "clinic", + "name": "Cantik Aesthetic Clinic" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3588703, + -0.0733716 + ] + }, + "id": "node/12898376361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12898376362", + "amenity": "school", + "contact:phone": "+62 561 582294", + "name": "SDN 26 Pontianak Tenggara" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3604016, + -0.0709944 + ] + }, + "id": "node/12898376362" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12898376367", + "amenity": "clinic", + "contact:phone": "+62 8125635308", + "healthcare": "clinic", + "name": "Klinik Kasih Karunia", + "opening_hours": "Mo-Sa 09:00-16:00" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3585659, + -0.0739191 + ] + }, + "id": "node/12898376367" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12898376370", + "amenity": "clinic", + "contact:whatsapp": "+62 896-6955-9001", + "healthcare": "clinic", + "name": "Apotek Kasih" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3583721, + -0.0741551 + ] + }, + "id": "node/12898376370" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12898376375", + "amenity": "school", + "name": "MA Imaduddin Pontianak", + "operator:type": "religious", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3550369, + -0.072061 + ] + }, + "id": "node/12898376375" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13234895249", + "amenity": "school", + "education": "school", + "grades": "1-6", + "name": "Sekolah Dasar Negeri 10 Pontianak Timur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3665799, + -0.0495426 + ] + }, + "id": "node/13234895249" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13475363220", + "amenity": "hospital", + "healthcare": "hospital", + "name": "Rumah Sakit Uni. Tanjung Pura" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3457315, + -0.061875 + ] + }, + "id": "node/13475363220" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13511576201", + "addr:housenumber": "03", + "addr:postcode": "78116", + "addr:street": "Jalan Karel Satsuit Tubun", + "amenity": "school", + "name": "SMK Santa Maria", + "opening_hours": "Mo-Sa 07:00-18:00", + "phone": "0812-5489-2418", + "website": "https://www.smksantamaria.sch.id/" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3311962, + -0.03752 + ] + }, + "id": "node/13511576201" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13784445601", + "amenity": "school", + "check_date": "2026-05-01", + "education": "school", + "name": "SDN 71" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3027462, + -0.0066183 + ] + }, + "id": "node/13784445601" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13784445602", + "amenity": "school", + "check_date": "2026-05-01", + "education": "school", + "name": "SDN 72" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3027171, + -0.0063155 + ] + }, + "id": "node/13784445602" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13847732583", + "amenity": "school", + "education": "school", + "name": "SDN 16 Pontianak Timur" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3596839, + -0.0418831 + ] + }, + "id": "node/13847732583" + } + ] +} \ No newline at end of file diff --git a/json/Ibadah_Pontianak.json b/json/Ibadah_Pontianak.json new file mode 100644 index 0000000..546d4b7 --- /dev/null +++ b/json/Ibadah_Pontianak.json @@ -0,0 +1,2838 @@ +{ + "type": "FeatureCollection", + "generator": "overpass-turbo", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.", + "timestamp": "2026-05-26T04:54:07Z", + "features": [ + { + "type": "Feature", + "properties": { + "@id": "way/174086520", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3264478, + -0.0187194 + ] + }, + "id": "way/174086520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245930655", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3347292, + -0.0238372 + ] + }, + "id": "way/245930655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934423", + "amenity": "place_of_worship", + "building": "mosque", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3176011, + -0.0243604 + ] + }, + "id": "way/245934423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288603057", + "amenity": "place_of_worship", + "building": "mosque", + "name": "Al-Azhar", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3514215, + -0.0583388 + ] + }, + "id": "way/288603057" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288603093", + "access:roof": "no", + "amenity": "place_of_worship", + "building": "retail", + "building:levels": "1", + "building:roof": "tin", + "building:structure": "confined_masonry", + "building:walls": "brick", + "name": "Mushola Istiqomah", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3461922, + -0.0570667 + ] + }, + "id": "way/288603093" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288645732", + "amenity": "place_of_worship", + "building": "mosque", + "name": "Masjid Atthayibah", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2990684, + -0.0266456 + ] + }, + "id": "way/288645732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288736268", + "amenity": "place_of_worship", + "building": "retail", + "name": "Perdagangan", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3544017, + -0.062926 + ] + }, + "id": "way/288736268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288738072", + "amenity": "place_of_worship", + "name": "Majid Muhammadiyah Pontianak", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3518919, + -0.0590754 + ] + }, + "id": "way/288738072" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288812623", + "amenity": "place_of_worship", + "building": "church", + "name": "Gereja HKBP", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3532735, + -0.0593754 + ] + }, + "id": "way/288812623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288812624", + "amenity": "place_of_worship", + "building": "church", + "name": "Gereja HKBP", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3534707, + -0.0595047 + ] + }, + "id": "way/288812624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288813674", + "access:roof": "no", + "addr:full": "Jalan Daya Nasional", + "amenity": "place_of_worship", + "building": "mosque", + "building:levels": "1", + "building:roof": "tile", + "building:structure": "confined_masonry", + "building:walls": "brick", + "capacity": ">100", + "name": "Masjid Al-Muhtaddin", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3503476, + -0.0532671 + ] + }, + "id": "way/288813674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/292680477", + "amenity": "place_of_worship", + "building": "mosque", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3213978, + -0.0203897 + ] + }, + "id": "way/292680477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/292693850", + "amenity": "place_of_worship", + "building": "mosque", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3217284, + -0.032022 + ] + }, + "id": "way/292693850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/292693858", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3211987, + -0.0331787 + ] + }, + "id": "way/292693858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302012599", + "access:roof": "no", + "addr:full": "Jl Gajah Mada", + "amenity": "place_of_worship", + "building": "church", + "building:condition": "good", + "building:floor": "ceramics", + "building:levels": "3", + "building:roof": "concrete", + "building:structure": "confined_masonry", + "building:walls": "concrete", + "capacity:persons": "250-500", + "name": "GKKB Jemaat Pontianak", + "religion": "christian", + "source": "survey", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3438039, + -0.0383871 + ] + }, + "id": "way/302012599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139755", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "source": "Bing", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.329122, + -0.0243625 + ] + }, + "id": "way/324139755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324169969", + "amenity": "place_of_worship", + "building": "mosque", + "fixme": "name", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3433282, + -0.0410494 + ] + }, + "id": "way/324169969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324179885", + "amenity": "place_of_worship", + "building": "yes", + "name": "Masjid", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3489143, + -0.0350077 + ] + }, + "id": "way/324179885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324179891", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3478979, + -0.0386897 + ] + }, + "id": "way/324179891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324181370", + "amenity": "place_of_worship", + "building": "mosque", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3163487, + -0.0060347 + ] + }, + "id": "way/324181370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324181727", + "amenity": "place_of_worship", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3006448, + -0.0522072 + ] + }, + "id": "way/324181727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324181985", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.298071, + -0.0508764 + ] + }, + "id": "way/324181985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324182609", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3143321, + -0.0227696 + ] + }, + "id": "way/324182609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324182952", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.325483, + -0.035612 + ] + }, + "id": "way/324182952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324183013", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3263585, + -0.037707 + ] + }, + "id": "way/324183013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324183270", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3296941, + -0.0385826 + ] + }, + "id": "way/324183270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324187148", + "amenity": "place_of_worship", + "building": "mosque", + "name": "Masjid Al-Hadi", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3125889, + -0.0427771 + ] + }, + "id": "way/324187148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/342693949", + "addr:street": "Jalan H.Rais A.Rachman", + "amenity": "place_of_worship", + "building": "yes", + "name": "Masjid Baturrahim", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.308647, + -0.0233791 + ] + }, + "id": "way/342693949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/342693956", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3109751, + -0.0392247 + ] + }, + "id": "way/342693956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/342693963", + "amenity": "place_of_worship", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3142328, + -0.0400467 + ] + }, + "id": "way/342693963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/343977791", + "addr:street": "Jalan Tabrani Ahmad", + "amenity": "place_of_worship", + "building": "yes", + "name": "Masjid Darul Muttaqien", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3079139, + -0.0187061 + ] + }, + "id": "way/343977791" + }, + { + "type": "Feature", + "properties": { + "@id": "way/397015387", + "addr:city": "Pontianak", + "addr:street": "Jalan Dr Wahidin Sudirohusodo", + "amenity": "place_of_worship", + "building": "yes", + "name": "Masjid Al Hikmah", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3051884, + -0.0295271 + ] + }, + "id": "way/397015387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/510953029", + "air_conditioning": "yes", + "amenity": "place_of_worship", + "building": "church", + "building:levels": "1", + "denomination": "roman_catholic", + "name": "Gereja St. Sesilia", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3597237, + -0.0704366 + ] + }, + "id": "way/510953029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/519366167", + "amenity": "place_of_worship", + "building": "mosque", + "name": "Ikhwanul Mukminin", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3594523, + -0.0722406 + ] + }, + "id": "way/519366167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/520006009", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2944897, + -0.0280161 + ] + }, + "id": "way/520006009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/522134386", + "amenity": "place_of_worship", + "building": "mosque", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3725774, + -0.0031464 + ] + }, + "id": "way/522134386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572364470", + "amenity": "place_of_worship", + "building": "yes", + "name": "Klenteng Dewa Rejeki", + "name:zh": "福德祠廟", + "religion": "chinese_folk", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3452642, + -0.0184737 + ] + }, + "id": "way/572364470" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895834", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2956839, + -0.0184529 + ] + }, + "id": "way/572895834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572902485", + "amenity": "place_of_worship", + "building": "yes", + "name": "GBI Sungai Yordan Jemaat Pontianak", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3339074, + 0.0007064 + ] + }, + "id": "way/572902485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572916982", + "amenity": "place_of_worship", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3497951, + 0.0213765 + ] + }, + "id": "way/572916982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958148", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3560074, + -0.0351647 + ] + }, + "id": "way/572958148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962203", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3514687, + -0.0350583 + ] + }, + "id": "way/572962203" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962424", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3506846, + -0.0330379 + ] + }, + "id": "way/572962424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572965514", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3535361, + -0.0347521 + ] + }, + "id": "way/572965514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572968835", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3520711, + -0.0361452 + ] + }, + "id": "way/572968835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572972732", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3471923, + -0.0802885 + ] + }, + "id": "way/572972732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572973031", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3527091, + -0.0332473 + ] + }, + "id": "way/572973031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572973537", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.350058, + -0.0810326 + ] + }, + "id": "way/572973537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573028393", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3648798, + 0.0226886 + ] + }, + "id": "way/573028393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573036919", + "amenity": "place_of_worship", + "building": "yes", + "name": "GBI Tahu Healing Movement", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3689649, + -0.0328025 + ] + }, + "id": "way/573036919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573077142", + "amenity": "place_of_worship", + "building": "yes", + "name": "1", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3574445, + -0.0611428 + ] + }, + "id": "way/573077142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573077267", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3522305, + -0.0579054 + ] + }, + "id": "way/573077267" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573084236", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3602551, + -0.0166075 + ] + }, + "id": "way/573084236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573104208", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3159375, + -0.0295081 + ] + }, + "id": "way/573104208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573124321", + "amenity": "place_of_worship", + "building": "mosque", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3240523, + -0.0112525 + ] + }, + "id": "way/573124321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573165375", + "amenity": "place_of_worship", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3204617, + -0.0132384 + ] + }, + "id": "way/573165375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573209286", + "addr:street": "Jalan Tanjung Raya 1", + "amenity": "place_of_worship", + "building": "yes", + "name": "Masjid Jami' Sulthan Syarif Abdurrahman", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3476706, + -0.0267693 + ] + }, + "id": "way/573209286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573217550", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.343558, + -0.0610878 + ] + }, + "id": "way/573217550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573217720", + "access:roof": "no", + "amenity": "place_of_worship", + "building": "yes", + "building:levels": "1", + "building:roof": "tin", + "building:structure": "confined_masonry", + "building:walls": "brick", + "name": "Mushola At-Tarbawi", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.343329, + -0.0599978 + ] + }, + "id": "way/573217720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573241876", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3572214, + -0.0313574 + ] + }, + "id": "way/573241876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242983", + "amenity": "place_of_worship", + "building": "yes", + "name": "Al-Badar", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3501268, + -0.0299796 + ] + }, + "id": "way/573242983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263281", + "amenity": "place_of_worship", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2912877, + -0.0263462 + ] + }, + "id": "way/573263281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573351857", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3632322, + -0.0416753 + ] + }, + "id": "way/573351857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573354232", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3614976, + -0.0329554 + ] + }, + "id": "way/573354232" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573354645", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3584922, + -0.0428223 + ] + }, + "id": "way/573354645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573372048", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2988499, + 0.0260717 + ] + }, + "id": "way/573372048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573375626", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3569503, + -0.0416727 + ] + }, + "id": "way/573375626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573375746", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3571923, + -0.040167 + ] + }, + "id": "way/573375746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573375760", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3560614, + -0.0405871 + ] + }, + "id": "way/573375760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573375857", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3559691, + -0.0386483 + ] + }, + "id": "way/573375857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573375918", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3544972, + -0.0391636 + ] + }, + "id": "way/573375918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573382618", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3532331, + -0.0432002 + ] + }, + "id": "way/573382618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573382849", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3558757, + -0.043918 + ] + }, + "id": "way/573382849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573386528", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3476738, + -0.0403543 + ] + }, + "id": "way/573386528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573389447", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3067657, + -0.059904 + ] + }, + "id": "way/573389447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573392529", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3514381, + -0.0415037 + ] + }, + "id": "way/573392529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573411401", + "amenity": "place_of_worship", + "building": "warehouse", + "name": "Gereja Katolik Paroki Bunda Maria, Pontianak Jeruju", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2951994, + -0.0056374 + ] + }, + "id": "way/573411401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573580906", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3613488, + -0.0677258 + ] + }, + "id": "way/573580906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573624056", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3633405, + -0.0529865 + ] + }, + "id": "way/573624056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573624114", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3627692, + -0.0512364 + ] + }, + "id": "way/573624114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573629429", + "addr:city": "Banjar Serasan", + "addr:postcode": "78233", + "addr:street": "Jl. Tanjung Harapan", + "amenity": "place_of_worship", + "building": "yes", + "name": "Masjid Al-Huda", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3630333, + -0.0455822 + ] + }, + "id": "way/573629429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573629678", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3602963, + -0.0444551 + ] + }, + "id": "way/573629678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573646741", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3679439, + -0.0533589 + ] + }, + "id": "way/573646741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573646904", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3666554, + -0.0516791 + ] + }, + "id": "way/573646904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573649208", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3672554, + -0.0459625 + ] + }, + "id": "way/573649208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654484", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3603002, + -0.009464 + ] + }, + "id": "way/573654484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573668368", + "amenity": "place_of_worship", + "building": "yes", + "name": "Kelenteng Kam Thian Thai Tie", + "name:zh": "感天大帝庙", + "religion": "chinese_folk", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3367613, + -0.0041781 + ] + }, + "id": "way/573668368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573706964", + "amenity": "place_of_worship", + "building": "mosque", + "name": "Masjid Al-Murshalaat", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3118691, + -0.008257 + ] + }, + "id": "way/573706964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573781110", + "amenity": "place_of_worship", + "building": "mosque", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.309466, + -0.0103631 + ] + }, + "id": "way/573781110" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574090532", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.365147, + -0.0295354 + ] + }, + "id": "way/574090532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574105257", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3655411, + -0.0308965 + ] + }, + "id": "way/574105257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574110206", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3661753, + -0.0269542 + ] + }, + "id": "way/574110206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574111467", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.361225, + -0.0277567 + ] + }, + "id": "way/574111467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574238421", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3538852, + -0.0171682 + ] + }, + "id": "way/574238421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646938", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2993554, + -0.0324688 + ] + }, + "id": "way/574646938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574754672", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3640527, + -0.0156181 + ] + }, + "id": "way/574754672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574787737", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3592953, + -0.0130142 + ] + }, + "id": "way/574787737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574792335", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3573523, + -0.036772 + ] + }, + "id": "way/574792335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574908772", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3555216, + -0.0066892 + ] + }, + "id": "way/574908772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575035237", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3478842, + -0.0031389 + ] + }, + "id": "way/575035237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575035532", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3474542, + -0.0092123 + ] + }, + "id": "way/575035532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575179740", + "amenity": "place_of_worship", + "building": "yes", + "name": "Gereja Katolik St. Hironimus", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3690799, + -0.0340306 + ] + }, + "id": "way/575179740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575206533", + "amenity": "place_of_worship", + "building": "yes", + "name": "Mujahiddin", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3363526, + -0.0414735 + ] + }, + "id": "way/575206533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575222259", + "amenity": "place_of_worship", + "building": "yes", + "name": "Kelenteng Pekong Laut", + "name:zh": "福德祠", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3477361, + -0.0209159 + ] + }, + "id": "way/575222259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575257301", + "amenity": "place_of_worship", + "building": "yes", + "name": "Masjid Nurul Jannah Tps", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2889304, + -0.001238 + ] + }, + "id": "way/575257301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575616428", + "amenity": "place_of_worship", + "building": "mosque", + "fixme": "name", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3750754, + -0.0241193 + ] + }, + "id": "way/575616428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575809806", + "amenity": "place_of_worship", + "building": "yes", + "name": "Masjid Al Ihsan", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3343248, + -0.0029765 + ] + }, + "id": "way/575809806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575815137", + "amenity": "place_of_worship", + "building": "yes", + "name": "Vihara Dharma Pertiwi Abadi", + "religion": "buddhist", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.333759, + -0.0007757 + ] + }, + "id": "way/575815137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575831058", + "amenity": "place_of_worship", + "building": "yes", + "name": "Kelenteng Ci-Kong Sungai Selamat", + "name:zh": "济公宫", + "religion": "chinese_folk", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3338647, + -0.000436 + ] + }, + "id": "way/575831058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576777771", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3101855, + -0.0302643 + ] + }, + "id": "way/576777771" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579290902", + "amenity": "place_of_worship", + "building": "yes", + "name": "Surau Saidil Mursaliin", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3020729, + 0.0050824 + ] + }, + "id": "way/579290902" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647145103", + "amenity": "place_of_worship", + "building": "yes", + "name": "Musholla Ferry Pasar Siantan", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3425158, + -0.0197369 + ] + }, + "id": "way/647145103" + }, + { + "type": "Feature", + "properties": { + "@id": "way/740054082", + "amenity": "place_of_worship", + "name": "Masjid Annubuwah", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3767433, + -0.0509884 + ] + }, + "id": "way/740054082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/740054083", + "amenity": "place_of_worship", + "name": "Masjid Attaqwa", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3743809, + -0.0528509 + ] + }, + "id": "way/740054083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/777620338", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3416945, + -0.0281957 + ] + }, + "id": "way/777620338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/803558098", + "amenity": "place_of_worship", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3365653, + -0.0328994 + ] + }, + "id": "way/803558098" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808803740", + "amenity": "place_of_worship", + "building": "yes", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3334325, + -0.036899 + ] + }, + "id": "way/808803740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821358457", + "amenity": "place_of_worship", + "building": "yes", + "denomination": "catholic", + "name": "Paroki Santo Yoseph Katedral Pontianak", + "name:en": "St.Joseph Cathedral", + "religion": "christian", + "wikipedia": "id:Gereja Katedral Pontianak", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.338206, + -0.0272998 + ] + }, + "id": "way/821358457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/834543937", + "amenity": "place_of_worship", + "building": "yes", + "name": "Graha Mazmur 21", + "name:en": "Psalm 21 Church", + "name:id": "Sekolah Mazmur 21", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3502783, + -0.0451657 + ] + }, + "id": "way/834543937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1132629107", + "amenity": "place_of_worship", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3212424, + -0.0332131 + ] + }, + "id": "way/1132629107" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1189067098", + "amenity": "place_of_worship", + "building": "yes", + "name": "Gereja Baptis Indonesia Kalvari Pontianak", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3645695, + -0.0277704 + ] + }, + "id": "way/1189067098" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1354179667", + "amenity": "place_of_worship", + "name": "GKKB Jemaat Siantan", + "name:zh-Hant": "西加基督教會新埠頭堂會", + "religion": "christian", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3444536, + -0.0188471 + ] + }, + "id": "way/1354179667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388202474", + "alt_name": "Klenteng Bun Bu Pak Kung", + "alt_name:id": "Klenteng Bun Bu Pak Kung", + "alt_name:zh": "文武伯公庙", + "alt_name:zh-Hans": "文武伯公庙", + "alt_name:zh-Hant": "文武伯公廟", + "amenity": "place_of_worship", + "building": "yes", + "layer": "1", + "name": "Klenteng Pekong Sungai Selamat", + "name:id": "Klenteng Pekong Sungai Selamat", + "name:zh": "中兴港大伯公庙", + "name:zh-Hans": "中兴港大伯公庙", + "name:zh-Hant": "中興港大伯公廟", + "religion": "taoist", + "short_name": "忠兴港", + "short_name:zh": "忠兴港", + "short_name:zh-Hans": "忠兴港", + "short_name:zh-Hant": "忠興港", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3346701, + 0.0029513 + ] + }, + "id": "way/1388202474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388210637", + "amenity": "place_of_worship", + "name": "Gereja Katolik Stella Maris", + "religion": "christian", + "wikipedia": "id:Gereja Stella Maris, Siantan", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3450936, + -0.0175938 + ] + }, + "id": "way/1388210637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1444757083", + "amenity": "place_of_worship", + "building": "yes", + "religion": "muslim", + "@geometry": "center" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3660883, + -0.0486198 + ] + }, + "id": "way/1444757083" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1957951783", + "addr:city": "Pontianak", + "addr:postcode": "78116", + "addr:street": "Jl Sultan Syahrir Abdurahman", + "amenity": "place_of_worship", + "denomination": "catholic", + "name": "Gereja Khatolik Keluarga Kudus Kota Baru", + "religion": "christian", + "source": "IJ-REDD Project" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3243541, + -0.0432068 + ] + }, + "id": "node/1957951783" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1957951785", + "amenity": "place_of_worship", + "name": "HKBP", + "religion": "christian" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3196548, + -0.0477558 + ] + }, + "id": "node/1957951785" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1971929456", + "amenity": "place_of_worship", + "religion": "buddhist" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.336168, + -0.0323289 + ] + }, + "id": "node/1971929456" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1977415165", + "amenity": "place_of_worship", + "name": "GPIB Siloam", + "religion": "christian" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3373746, + -0.025091 + ] + }, + "id": "node/1977415165" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2874022670", + "addr:city": "Pontianak", + "addr:street": "Jalan Imam Bonjol", + "amenity": "place_of_worship", + "building": "mosque", + "denomination": "sunni", + "name": "Masjid Besar Islamiyah", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.356293, + -0.0483951 + ] + }, + "id": "node/2874022670" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2884978143", + "amenity": "place_of_worship", + "building": "mosque", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3481215, + -0.0189265 + ] + }, + "id": "node/2884978143" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2922939454", + "amenity": "place_of_worship", + "building": "mosque", + "name": "Masjid Polresta Pontianak", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3302326, + -0.0399129 + ] + }, + "id": "node/2922939454" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2922939455", + "amenity": "place_of_worship", + "name": "Masjid SMAN 1 Pontianak", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.329329, + -0.0424584 + ] + }, + "id": "node/2922939455" + }, + { + "type": "Feature", + "properties": { + "@id": "node/2923017065", + "amenity": "place_of_worship", + "building": "mosque", + "name": "Masjid Polnep", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3473012, + -0.0546157 + ] + }, + "id": "node/2923017065" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4969463733", + "amenity": "place_of_worship", + "name": "Vihara Kon Djim Thong", + "religion": "buddhist" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3477945, + -0.018277 + ] + }, + "id": "node/4969463733" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4969463734", + "amenity": "place_of_worship", + "name": "Vihara Tri Ratna", + "religion": "buddhist" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3368241, + -0.0318153 + ] + }, + "id": "node/4969463734" + }, + { + "type": "Feature", + "properties": { + "@id": "node/4969481193", + "amenity": "place_of_worship", + "name": "Vihara Paticca Samuppada", + "religion": "buddhist" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3365611, + -0.0322582 + ] + }, + "id": "node/4969481193" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5503692257", + "amenity": "place_of_worship", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3271144, + -0.0439775 + ] + }, + "id": "node/5503692257" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5503693394", + "amenity": "place_of_worship", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3265806, + -0.0461219 + ] + }, + "id": "node/5503693394" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5503698692", + "amenity": "place_of_worship", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3258631, + -0.0495914 + ] + }, + "id": "node/5503698692" + }, + { + "type": "Feature", + "properties": { + "@id": "node/5503699132", + "amenity": "place_of_worship", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.326008, + -0.0515588 + ] + }, + "id": "node/5503699132" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7057476686", + "amenity": "place_of_worship", + "name": "Vihara Bodhisatva Karaniya Metta", + "name:id": "Vihara Bodhisatva Karaniya Metta" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3421483, + -0.023471 + ] + }, + "id": "node/7057476686" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12385753860", + "amenity": "place_of_worship", + "name": "MASJID NURUL HAMID", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.2960145, + -0.0082259 + ] + }, + "id": "node/12385753860" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12850627135", + "amenity": "place_of_worship", + "name": "Gereja Katolik Gembala Baik", + "religion": "christian" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3450803, + -0.0280743 + ] + }, + "id": "node/12850627135" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12850627186", + "amenity": "place_of_worship", + "name": "Masjid Nurul Haq Kejaksaan Tingi Kalbar", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3447199, + -0.0476359 + ] + }, + "id": "node/12850627186" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12852678529", + "amenity": "place_of_worship", + "name": "Mushola Ulul Albab SMA 3", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3396152, + -0.0362314 + ] + }, + "id": "node/12852678529" + }, + { + "type": "Feature", + "properties": { + "@id": "node/12898376373", + "amenity": "place_of_worship", + "name": "Surau Al Ikhwan", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.357399, + -0.0740791 + ] + }, + "id": "node/12898376373" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13141995818", + "amenity": "place_of_worship", + "name": "Masjid Al-Falah", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3660112, + -0.0485858 + ] + }, + "id": "node/13141995818" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13185308212", + "amenity": "place_of_worship", + "name": "Masjid Al-Ikhlas", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3816577, + -0.0533751 + ] + }, + "id": "node/13185308212" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13251222439", + "amenity": "place_of_worship", + "name": "Masjid Baitussalam", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3646788, + -0.0477026 + ] + }, + "id": "node/13251222439" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13251222440", + "amenity": "place_of_worship", + "name": "Masjid Al-Huda", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3630298, + -0.0455791 + ] + }, + "id": "node/13251222440" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13776518991", + "amenity": "place_of_worship", + "denomination": "christian" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3399253, + -0.0323786 + ] + }, + "id": "node/13776518991" + }, + { + "type": "Feature", + "properties": { + "@id": "node/13784435101", + "addr:postcode": "78117", + "addr:street": "Jalan Mat Sainin", + "amenity": "place_of_worship", + "check_date": "2026-05-01", + "name": "Masjid Al-Amin", + "religion": "muslim" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3038021, + -0.0070019 + ] + }, + "id": "node/13784435101" + } + ] +} \ No newline at end of file diff --git a/json/Jalan_Pontianak.json b/json/Jalan_Pontianak.json new file mode 100644 index 0000000..a192b20 --- /dev/null +++ b/json/Jalan_Pontianak.json @@ -0,0 +1,428095 @@ +{ + "type": "FeatureCollection", + "generator": "overpass-turbo", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.", + "timestamp": "2026-05-26T03:50:58Z", + "features": [ + { + "type": "Feature", + "properties": { + "@id": "way/1415227165", + "area": "yes", + "highway": "pedestrian" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3403044, + -0.0217562 + ], + [ + 109.3400971, + -0.0215825 + ], + [ + 109.3400192, + -0.021402 + ], + [ + 109.3399313, + -0.0212672 + ], + [ + 109.3397963, + -0.0211273 + ], + [ + 109.3397845, + -0.0211633 + ], + [ + 109.3397583, + -0.0212015 + ], + [ + 109.3397087, + -0.0212357 + ], + [ + 109.3396644, + -0.0212444 + ], + [ + 109.3396168, + -0.0212364 + ], + [ + 109.3395739, + -0.0212122 + ], + [ + 109.3395431, + -0.021174 + ], + [ + 109.3395223, + -0.0211318 + ], + [ + 109.3395149, + -0.0210889 + ], + [ + 109.3395209, + -0.021046 + ], + [ + 109.3395437, + -0.0210071 + ], + [ + 109.3395732, + -0.0209789 + ], + [ + 109.3395994, + -0.0209615 + ], + [ + 109.3393781, + -0.020822 + ], + [ + 109.3392433, + -0.0207797 + ], + [ + 109.3391598, + -0.0207818 + ], + [ + 109.3390729, + -0.0211401 + ], + [ + 109.339101, + -0.0211469 + ], + [ + 109.3391292, + -0.0211537 + ], + [ + 109.3391942, + -0.020886 + ], + [ + 109.3392842, + -0.0208924 + ], + [ + 109.3394519, + -0.0209843 + ], + [ + 109.3394391, + -0.0210205 + ], + [ + 109.3394385, + -0.0210781 + ], + [ + 109.3394472, + -0.0211251 + ], + [ + 109.3394653, + -0.02117 + ], + [ + 109.3394934, + -0.0212216 + ], + [ + 109.3395317, + -0.0212632 + ], + [ + 109.3395954, + -0.0212914 + ], + [ + 109.3396631, + -0.021292 + ], + [ + 109.3397208, + -0.0212813 + ], + [ + 109.3397596, + -0.0212666 + ], + [ + 109.3397798, + -0.0212511 + ], + [ + 109.3398347, + -0.0213142 + ], + [ + 109.3398964, + -0.0214194 + ], + [ + 109.3399481, + -0.0215267 + ], + [ + 109.3399848, + -0.0216203 + ], + [ + 109.3402354, + -0.0218384 + ], + [ + 109.3403044, + -0.0217562 + ] + ] + ] + }, + "id": "way/1415227165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/43996465", + "highway": "residential", + "name": "Jalan Nusa Indah 3", + "oneway": "no", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394779, + -0.0251455 + ], + [ + 109.3393315, + -0.0252764 + ], + [ + 109.3393208, + -0.0252987 + ], + [ + 109.3393117, + -0.0253281 + ], + [ + 109.3393916, + -0.0255101 + ], + [ + 109.3395588, + -0.0258502 + ] + ] + }, + "id": "way/43996465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/43996467", + "highway": "residential", + "name": "Jalan Sisingamangaraja", + "oneway": "yes", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386257, + -0.0276187 + ], + [ + 109.3386819, + -0.0275964 + ] + ] + }, + "id": "way/43996467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/43996468", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "oneway": "yes", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392187, + -0.0296238 + ], + [ + 109.3393024, + -0.0297757 + ], + [ + 109.3395318, + -0.030192 + ], + [ + 109.3396737, + -0.0304909 + ], + [ + 109.3397495, + -0.0306358 + ], + [ + 109.3398941, + -0.030971 + ], + [ + 109.3399297, + -0.0310487 + ], + [ + 109.3401653, + -0.0315138 + ], + [ + 109.3402461, + -0.0316762 + ], + [ + 109.3402646, + -0.0317325 + ], + [ + 109.3402925, + -0.0318482 + ], + [ + 109.3403367, + -0.0320109 + ], + [ + 109.340385, + -0.032194 + ], + [ + 109.3404558, + -0.0324879 + ], + [ + 109.3405085, + -0.0326966 + ], + [ + 109.3405376, + -0.0327782 + ], + [ + 109.3406094, + -0.0329411 + ], + [ + 109.3406489, + -0.0330216 + ], + [ + 109.340805, + -0.0333355 + ], + [ + 109.3410867, + -0.0338244 + ], + [ + 109.3413776, + -0.0343119 + ], + [ + 109.3417084, + -0.0349196 + ], + [ + 109.3418696, + -0.0352341 + ], + [ + 109.3419312, + -0.0353733 + ], + [ + 109.3421236, + -0.0359202 + ], + [ + 109.3421512, + -0.0360313 + ] + ] + }, + "id": "way/43996468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/43996479", + "highway": "tertiary", + "name": "Jalan Agus Salim", + "oneway": "yes", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428938, + -0.0272191 + ], + [ + 109.3423497, + -0.0276031 + ], + [ + 109.3417043, + -0.0280313 + ], + [ + 109.3414785, + -0.0281817 + ], + [ + 109.341279, + -0.0283145 + ], + [ + 109.3412697, + -0.0283231 + ], + [ + 109.340656, + -0.0287028 + ], + [ + 109.339759, + -0.0292392 + ], + [ + 109.3393438, + -0.0295347 + ], + [ + 109.3392187, + -0.0296238 + ] + ] + }, + "id": "way/43996479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/46037643", + "highway": "secondary", + "name": "Jalan Imam Bonjol", + "oneway": "yes", + "ref": "001.1", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484852, + -0.0401664 + ], + [ + 109.348443, + -0.0401604 + ], + [ + 109.3484269, + -0.040148 + ], + [ + 109.3484057, + -0.0401234 + ], + [ + 109.3483293, + -0.0400078 + ], + [ + 109.3481322, + -0.0397202 + ], + [ + 109.3481047, + -0.0396801 + ], + [ + 109.348061, + -0.0396104 + ] + ] + }, + "id": "way/46037643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/46037645", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600497, + -0.0552919 + ], + [ + 109.3600766, + -0.0552667 + ], + [ + 109.3602931, + -0.0550644 + ], + [ + 109.3605826, + -0.054803 + ], + [ + 109.3608428, + -0.0545557 + ] + ] + }, + "id": "way/46037645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/46037646", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3595574, + -0.0537387 + ], + [ + 109.3597208, + -0.0539151 + ], + [ + 109.3600237, + -0.054249 + ], + [ + 109.360237, + -0.0544649 + ], + [ + 109.3604217, + -0.0546535 + ], + [ + 109.3605826, + -0.054803 + ], + [ + 109.3611396, + -0.0554044 + ], + [ + 109.3613926, + -0.0556704 + ] + ] + }, + "id": "way/46037646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/55210494", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491717, + -0.0548397 + ], + [ + 109.349235, + -0.0548953 + ], + [ + 109.3492693, + -0.0549242 + ], + [ + 109.3492966, + -0.0549472 + ], + [ + 109.3493817, + -0.0550092 + ] + ] + }, + "id": "way/55210494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/56005053", + "highway": "trunk", + "name": "Jalan Veteran", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342027, + -0.0463848 + ], + [ + 109.3420979, + -0.0463982 + ], + [ + 109.3421676, + -0.0463995 + ], + [ + 109.3422159, + -0.0463875 + ], + [ + 109.3422588, + -0.0463613 + ], + [ + 109.3423057, + -0.0463191 + ], + [ + 109.3424741, + -0.0460012 + ], + [ + 109.3425671, + -0.0457906 + ], + [ + 109.3427146, + -0.0455075 + ], + [ + 109.3429842, + -0.0449882 + ], + [ + 109.3434644, + -0.0440339 + ], + [ + 109.3435579, + -0.0438466 + ], + [ + 109.3436219, + -0.0437337 + ], + [ + 109.3440595, + -0.0428623 + ], + [ + 109.3441155, + -0.0427701 + ], + [ + 109.3442917, + -0.0424615 + ], + [ + 109.3446228, + -0.0419296 + ], + [ + 109.3447067, + -0.0418421 + ], + [ + 109.3447451, + -0.0418019 + ], + [ + 109.3449795, + -0.041627 + ], + [ + 109.3451804, + -0.041475 + ] + ] + }, + "id": "way/56005053" + }, + { + "type": "Feature", + "properties": { + "@id": "way/56005065", + "highway": "residential", + "name": "Palapa 3B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346864, + -0.0481986 + ], + [ + 109.346382, + -0.0478171 + ], + [ + 109.3459719, + -0.0474991 + ], + [ + 109.344808, + -0.0465611 + ], + [ + 109.3447915, + -0.0465122 + ], + [ + 109.3448005, + -0.0464721 + ] + ] + }, + "id": "way/56005065" + }, + { + "type": "Feature", + "properties": { + "@id": "way/74119262", + "highway": "trunk", + "name": "Perintis Kemerdekaan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630177, + -0.0173765 + ], + [ + 109.3630261, + -0.0167722 + ], + [ + 109.363042, + -0.0157781 + ], + [ + 109.3630416, + -0.0155804 + ] + ] + }, + "id": "way/74119262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/74119263", + "highway": "trunk", + "name": "Jalan Jenderal Ahmad Yani", + "oneway": "yes", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491722, + -0.0552083 + ], + [ + 109.3491036, + -0.0550636 + ], + [ + 109.3490289, + -0.0549058 + ] + ] + }, + "id": "way/74119263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/74119266", + "highway": "trunk", + "maxweight": "5", + "motorcycle": "yes", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568324, + -0.0340874 + ], + [ + 109.3571685, + -0.033891 + ], + [ + 109.3576714, + -0.0335866 + ], + [ + 109.35822, + -0.0332487 + ], + [ + 109.3585339, + -0.0330565 + ], + [ + 109.3587558, + -0.0328993 + ], + [ + 109.3589157, + -0.0327614 + ], + [ + 109.3593178, + -0.032426 + ], + [ + 109.3596412, + -0.0321189 + ], + [ + 109.3599516, + -0.0317953 + ], + [ + 109.3601266, + -0.0315511 + ], + [ + 109.3601442, + -0.0315266 + ], + [ + 109.3601968, + -0.0314531 + ], + [ + 109.3603397, + -0.0311918 + ], + [ + 109.3603967, + -0.0310813 + ], + [ + 109.3604535, + -0.030975 + ], + [ + 109.3607213, + -0.0304855 + ], + [ + 109.3608882, + -0.0301293 + ], + [ + 109.3609884, + -0.0298801 + ], + [ + 109.3611856, + -0.0292647 + ], + [ + 109.3615611, + -0.0280591 + ], + [ + 109.3619488, + -0.0268254 + ], + [ + 109.3620862, + -0.0264647 + ] + ] + }, + "id": "way/74119266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/74119269", + "highway": "trunk", + "junction": "roundabout", + "name": "Jalan Jenderal Ahmad Yani", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492932, + -0.0550539 + ], + [ + 109.3493817, + -0.0550092 + ], + [ + 109.3494906, + -0.0549915 + ], + [ + 109.3495994, + -0.0550095 + ], + [ + 109.3496851, + -0.0550527 + ], + [ + 109.3497553, + -0.0551181 + ], + [ + 109.3498059, + -0.0552033 + ], + [ + 109.3498298, + -0.0552995 + ], + [ + 109.349825, + -0.0553985 + ], + [ + 109.3497921, + -0.0554919 + ], + [ + 109.3497337, + -0.055572 + ], + [ + 109.3496757, + -0.0556193 + ], + [ + 109.3496088, + -0.0556529 + ], + [ + 109.3495378, + -0.0556709 + ], + [ + 109.3494646, + -0.0556733 + ], + [ + 109.3493925, + -0.05566 + ], + [ + 109.349325, + -0.0556317 + ], + [ + 109.3492609, + -0.0556053 + ], + [ + 109.3491892, + -0.0554942 + ], + [ + 109.3491557, + -0.0554019 + ], + [ + 109.3491499, + -0.0553039 + ], + [ + 109.3491722, + -0.0552083 + ], + [ + 109.3492214, + -0.0551222 + ], + [ + 109.3492932, + -0.0550539 + ] + ] + }, + "id": "way/74119269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/74119274", + "highway": "tertiary", + "lanes": "2", + "name": "Jalan Daya Nasional", + "smoothness": "good", + "source": "GPS", + "surface": "asphalt", + "width": "8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552087, + -0.0478381 + ], + [ + 109.3549287, + -0.0481074 + ], + [ + 109.3547049, + -0.0483137 + ], + [ + 109.3546809, + -0.0483375 + ], + [ + 109.3541409, + -0.0488464 + ], + [ + 109.3537363, + -0.0492807 + ], + [ + 109.3530388, + -0.0502133 + ], + [ + 109.3527916, + -0.0505564 + ], + [ + 109.3522812, + -0.0513456 + ] + ] + }, + "id": "way/74119274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/74121739", + "highway": "residential", + "name": "Gang Merpati", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575358, + -0.0668981 + ], + [ + 109.3572631, + -0.0665865 + ], + [ + 109.3570009, + -0.0662827 + ], + [ + 109.3565181, + -0.0657584 + ], + [ + 109.355679, + -0.0647223 + ] + ] + }, + "id": "way/74121739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/129151257", + "highway": "tertiary", + "source": "Bing", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640808, + 0.0010797 + ], + [ + 109.3640535, + 0.0007633 + ], + [ + 109.3640135, + 0.0003517 + ], + [ + 109.3639693, + -0.0001261 + ], + [ + 109.3638604, + -0.001484 + ], + [ + 109.3638532, + -0.0017016 + ], + [ + 109.363843, + -0.0017949 + ], + [ + 109.3638316, + -0.0021831 + ], + [ + 109.3638061, + -0.0025397 + ], + [ + 109.3637779, + -0.002906 + ], + [ + 109.3637455, + -0.0032592 + ], + [ + 109.3637242, + -0.0034915 + ], + [ + 109.3637126, + -0.003618 + ], + [ + 109.3637051, + -0.0037002 + ], + [ + 109.3636716, + -0.0040697 + ], + [ + 109.3636368, + -0.0046363 + ], + [ + 109.3636148, + -0.0051458 + ], + [ + 109.3636081, + -0.0053023 + ], + [ + 109.3635993, + -0.005506 + ], + [ + 109.3635628, + -0.0059989 + ], + [ + 109.3635614, + -0.0060188 + ], + [ + 109.3635283, + -0.0064844 + ], + [ + 109.3634858, + -0.0075145 + ], + [ + 109.363485, + -0.0075214 + ], + [ + 109.3634847, + -0.0075244 + ], + [ + 109.3634841, + -0.0075336 + ], + [ + 109.3634839, + -0.0075414 + ], + [ + 109.3634838, + -0.0075558 + ], + [ + 109.363457, + -0.0079487 + ], + [ + 109.3634449, + -0.0081264 + ], + [ + 109.3634395, + -0.0083175 + ], + [ + 109.3634275, + -0.0085576 + ], + [ + 109.363406, + -0.0088848 + ], + [ + 109.3633933, + -0.0092114 + ], + [ + 109.3633908, + -0.0092313 + ], + [ + 109.3633953, + -0.0094146 + ], + [ + 109.3634261, + -0.0096908 + ], + [ + 109.3634583, + -0.0099047 + ], + [ + 109.3634776, + -0.0100236 + ], + [ + 109.3634945, + -0.0102232 + ], + [ + 109.3635388, + -0.0104432 + ], + [ + 109.363575, + -0.0105773 + ], + [ + 109.3635803, + -0.0106403 + ], + [ + 109.363583, + -0.0107543 + ], + [ + 109.3635817, + -0.0110427 + ], + [ + 109.3635629, + -0.0112626 + ], + [ + 109.3635361, + -0.0114906 + ], + [ + 109.3635321, + -0.0117749 + ], + [ + 109.3635307, + -0.0118808 + ], + [ + 109.3635401, + -0.0123328 + ], + [ + 109.3635441, + -0.012491 + ], + [ + 109.3635401, + -0.0125889 + ], + [ + 109.3635203, + -0.0127803 + ], + [ + 109.3634288, + -0.0132555 + ], + [ + 109.3633035, + -0.0138996 + ], + [ + 109.3632493, + -0.014218 + ], + [ + 109.3631955, + -0.0145717 + ], + [ + 109.363163, + -0.0147856 + ], + [ + 109.3630416, + -0.0155804 + ] + ] + }, + "id": "way/129151257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/129151259", + "highway": "unclassified", + "name": "Selat Panjang", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3668573, + -0.0148801 + ], + [ + 109.3673188, + -0.0150359 + ], + [ + 109.3675335, + -0.0151177 + ], + [ + 109.3676801, + -0.0151665 + ], + [ + 109.3677224, + -0.0151781 + ], + [ + 109.3679331, + -0.0152348 + ], + [ + 109.3681016, + -0.015264 + ], + [ + 109.3682511, + -0.0152851 + ], + [ + 109.3684646, + -0.0153008 + ], + [ + 109.3689899, + -0.0153524 + ], + [ + 109.3694592, + -0.0154004 + ], + [ + 109.3698212, + -0.0154383 + ], + [ + 109.3701621, + -0.0154652 + ], + [ + 109.3702901, + -0.0154718 + ], + [ + 109.3703777, + -0.0154764 + ], + [ + 109.3706922, + -0.0154872 + ], + [ + 109.371112, + -0.0155186 + ], + [ + 109.3712075, + -0.0155266 + ], + [ + 109.3714601, + -0.0155389 + ], + [ + 109.3719612, + -0.0155491 + ], + [ + 109.3724821, + -0.0155559 + ], + [ + 109.3725847, + -0.0155577 + ], + [ + 109.3727672, + -0.015561 + ], + [ + 109.3730294, + -0.0155536 + ], + [ + 109.3731022, + -0.015534 + ], + [ + 109.373416, + -0.0155085 + ], + [ + 109.3734348, + -0.0155102 + ] + ] + }, + "id": "way/129151259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/129151262", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3774884, + -0.0138594 + ], + [ + 109.3777448, + -0.0136673 + ] + ] + }, + "id": "way/129151262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/129151281", + "highway": "primary", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3728572, + -0.0256408 + ], + [ + 109.3729848, + -0.0256461 + ], + [ + 109.3730975, + -0.0256507 + ], + [ + 109.3732542, + -0.0256572 + ], + [ + 109.3735936, + -0.025682 + ], + [ + 109.3736965, + -0.0256896 + ], + [ + 109.3740941, + -0.0257291 + ], + [ + 109.3741697, + -0.0257333 + ], + [ + 109.374471, + -0.0257555 + ], + [ + 109.3746447, + -0.025772 + ], + [ + 109.3746931, + -0.0257766 + ], + [ + 109.3749082, + -0.0257896 + ], + [ + 109.3749569, + -0.0257944 + ], + [ + 109.3754622, + -0.0258282 + ], + [ + 109.3756575, + -0.0258412 + ], + [ + 109.3757239, + -0.0258461 + ], + [ + 109.3760906, + -0.0258726 + ], + [ + 109.3763308, + -0.0258989 + ], + [ + 109.3764316, + -0.0258996 + ], + [ + 109.3765231, + -0.0259126 + ], + [ + 109.3767817, + -0.0259355 + ], + [ + 109.3768308, + -0.0259454 + ], + [ + 109.3770082, + -0.0259631 + ], + [ + 109.3770694, + -0.025971 + ], + [ + 109.3770843, + -0.0259733 + ], + [ + 109.3772918, + -0.0260051 + ], + [ + 109.377332, + -0.0260127 + ], + [ + 109.3774541, + -0.0260439 + ], + [ + 109.3775218, + -0.026064 + ], + [ + 109.3777841, + -0.0261419 + ], + [ + 109.3778699, + -0.0261674 + ], + [ + 109.3780495, + -0.0262273 + ], + [ + 109.3781474, + -0.026259 + ], + [ + 109.378372, + -0.0263316 + ], + [ + 109.3784825, + -0.0263689 + ], + [ + 109.3787406, + -0.0264561 + ], + [ + 109.3790285, + -0.0265426 + ], + [ + 109.3790849, + -0.0265677 + ], + [ + 109.3794335, + -0.0266762 + ], + [ + 109.3796133, + -0.026722 + ], + [ + 109.3798719, + -0.0268005 + ], + [ + 109.380059, + -0.0268606 + ], + [ + 109.380153, + -0.0268885 + ], + [ + 109.3802503, + -0.026928 + ], + [ + 109.3803589, + -0.0269803 + ], + [ + 109.3804021, + -0.0270252 + ], + [ + 109.3804702, + -0.0271238 + ], + [ + 109.3805064, + -0.0272566 + ], + [ + 109.3805406, + -0.027521 + ], + [ + 109.3805671, + -0.0278307 + ], + [ + 109.3806515, + -0.0287499 + ], + [ + 109.3806875, + -0.0289597 + ], + [ + 109.380717, + -0.0290363 + ], + [ + 109.3807771, + -0.0291548 + ], + [ + 109.380831, + -0.0292213 + ], + [ + 109.3809126, + -0.0292895 + ], + [ + 109.381123, + -0.0293532 + ], + [ + 109.3818337, + -0.0294812 + ], + [ + 109.3822579, + -0.0295405 + ], + [ + 109.3826227, + -0.0295995 + ], + [ + 109.3828131, + -0.029596 + ], + [ + 109.3828774, + -0.0295892 + ], + [ + 109.3843349, + -0.0292518 + ], + [ + 109.3849882, + -0.0290943 + ], + [ + 109.3855556, + -0.0289638 + ], + [ + 109.3858024, + -0.0289142 + ], + [ + 109.3858549, + -0.0289123 + ], + [ + 109.3860224, + -0.0289062 + ], + [ + 109.386304, + -0.0289223 + ], + [ + 109.3863563, + -0.0289249 + ], + [ + 109.387124, + -0.0290001 + ] + ] + }, + "id": "way/129151281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/129151292", + "highway": "residential", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635817, + -0.0110427 + ], + [ + 109.3641383, + -0.0110154 + ] + ] + }, + "id": "way/129151292" + }, + { + "type": "Feature", + "properties": { + "@id": "way/129151293", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3641383, + -0.0110154 + ], + [ + 109.3643057, + -0.0110204 + ] + ] + }, + "id": "way/129151293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/172623026", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518966, + -0.0581798 + ], + [ + 109.3519151, + -0.0581988 + ], + [ + 109.351951, + -0.058245 + ], + [ + 109.3522442, + -0.0586086 + ], + [ + 109.3526887, + -0.0591597 + ], + [ + 109.353053, + -0.0595864 + ], + [ + 109.3531588, + -0.0597104 + ], + [ + 109.3533108, + -0.0598884 + ], + [ + 109.3534217, + -0.0600338 + ], + [ + 109.353655, + -0.0603157 + ], + [ + 109.353781, + -0.060468 + ], + [ + 109.3538961, + -0.0606107 + ], + [ + 109.3540818, + -0.0608408 + ], + [ + 109.3541449, + -0.060919 + ], + [ + 109.3544166, + -0.061208 + ], + [ + 109.3545843, + -0.0613864 + ], + [ + 109.354731, + -0.0615424 + ], + [ + 109.3550067, + -0.0618769 + ], + [ + 109.3550549, + -0.0619354 + ], + [ + 109.3551008, + -0.061985 + ], + [ + 109.3552001, + -0.0621068 + ], + [ + 109.3553822, + -0.0623225 + ], + [ + 109.3555859, + -0.0625961 + ], + [ + 109.3558973, + -0.0629679 + ], + [ + 109.3562882, + -0.0634413 + ] + ] + }, + "id": "way/172623026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026493", + "highway": "residential", + "name": "Waduk Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447114, + -0.0433658 + ], + [ + 109.3447023, + -0.0433527 + ], + [ + 109.3446978, + -0.0433408 + ], + [ + 109.3446956, + -0.0433222 + ], + [ + 109.3446973, + -0.0433012 + ], + [ + 109.3447021, + -0.0432838 + ], + [ + 109.3447061, + -0.0432712 + ], + [ + 109.3447107, + -0.0432615 + ], + [ + 109.3447194, + -0.043251 + ], + [ + 109.3448725, + -0.0431178 + ], + [ + 109.3452534, + -0.0428178 + ], + [ + 109.3453163, + -0.0427682 + ], + [ + 109.3454164, + -0.0426632 + ], + [ + 109.3456234, + -0.04244 + ], + [ + 109.3461536, + -0.0417421 + ] + ] + }, + "id": "way/174026493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026494", + "highway": "tertiary", + "name": "Jalan Sutan Syahrir", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193519, + -0.0477681 + ], + [ + 109.3194241, + -0.0477064 + ], + [ + 109.3195526, + -0.0475844 + ], + [ + 109.3196511, + -0.0474912 + ], + [ + 109.3199949, + -0.0471684 + ], + [ + 109.320091, + -0.0470781 + ], + [ + 109.3201597, + -0.0470112 + ], + [ + 109.3202908, + -0.0468837 + ], + [ + 109.3205108, + -0.0466758 + ], + [ + 109.3206502, + -0.0465417 + ], + [ + 109.3207967, + -0.0463952 + ], + [ + 109.3208494, + -0.0463425 + ], + [ + 109.3211652, + -0.046026 + ], + [ + 109.3212759, + -0.0459201 + ], + [ + 109.3213416, + -0.0458557 + ], + [ + 109.3220209, + -0.0451966 + ], + [ + 109.3221476, + -0.0450685 + ], + [ + 109.3223042, + -0.0449122 + ], + [ + 109.3224577, + -0.044759 + ], + [ + 109.3227149, + -0.0445025 + ], + [ + 109.3228415, + -0.0443724 + ], + [ + 109.3232335, + -0.0440006 + ], + [ + 109.3232741, + -0.0439621 + ], + [ + 109.3235401, + -0.0436956 + ], + [ + 109.3236174, + -0.0436181 + ], + [ + 109.3237032, + -0.0435356 + ], + [ + 109.3238905, + -0.0433553 + ], + [ + 109.3242949, + -0.0429661 + ], + [ + 109.3244539, + -0.0428131 + ] + ] + }, + "id": "way/174026494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026495", + "highway": "primary", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328693, + -0.0352537 + ], + [ + 109.3329313, + -0.0353455 + ] + ] + }, + "id": "way/174026495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026496", + "highway": "residential", + "name": "Jalan Karvin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454625, + -0.0457685 + ], + [ + 109.3449261, + -0.0453421 + ], + [ + 109.3445078, + -0.0450101 + ], + [ + 109.3441367, + -0.0447157 + ], + [ + 109.3438586, + -0.0444945 + ], + [ + 109.343469, + -0.0442136 + ] + ] + }, + "id": "way/174026496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026497", + "highway": "residential", + "name": "Waduk Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483359, + -0.0462437 + ], + [ + 109.3474817, + -0.0455788 + ], + [ + 109.3467191, + -0.0449703 + ], + [ + 109.3462928, + -0.0446369 + ], + [ + 109.3459656, + -0.0443809 + ], + [ + 109.345863, + -0.0443007 + ], + [ + 109.3449806, + -0.0435863 + ], + [ + 109.3447114, + -0.0433658 + ] + ] + }, + "id": "way/174026497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026498", + "highway": "residential", + "name": "Jalan Untung Suropati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481079, + -0.0466084 + ], + [ + 109.346458, + -0.0453059 + ], + [ + 109.3450677, + -0.0442082 + ], + [ + 109.3441077, + -0.0434509 + ], + [ + 109.3439324, + -0.0433119 + ] + ] + }, + "id": "way/174026498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026499", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448005, + -0.0464721 + ], + [ + 109.3453285, + -0.0459027 + ], + [ + 109.3454625, + -0.0457685 + ], + [ + 109.3457898, + -0.0453957 + ] + ] + }, + "id": "way/174026499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026500", + "highway": "residential", + "name": "Palapa 3D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473664, + -0.0475599 + ], + [ + 109.3467246, + -0.047038 + ], + [ + 109.3453285, + -0.0459027 + ] + ] + }, + "id": "way/174026500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026501", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445065, + -0.0462246 + ], + [ + 109.3443601, + -0.046075 + ], + [ + 109.3443449, + -0.0460455 + ], + [ + 109.3443559, + -0.0460082 + ], + [ + 109.3449261, + -0.0453421 + ] + ] + }, + "id": "way/174026501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026502", + "highway": "residential", + "name": "Jalan Trunojoyo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437025, + -0.0437703 + ], + [ + 109.3439157, + -0.0439292 + ], + [ + 109.3457898, + -0.0453957 + ], + [ + 109.347799, + -0.0470213 + ] + ] + }, + "id": "way/174026502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026504", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452534, + -0.0428178 + ], + [ + 109.3451256, + -0.0430573 + ], + [ + 109.34512, + -0.0430699 + ], + [ + 109.345117, + -0.0430808 + ], + [ + 109.3451177, + -0.0430935 + ], + [ + 109.3451194, + -0.0431026 + ], + [ + 109.3451233, + -0.0431118 + ], + [ + 109.3451301, + -0.0431212 + ], + [ + 109.3451636, + -0.0431497 + ], + [ + 109.3451978, + -0.0431769 + ], + [ + 109.3453125, + -0.043256 + ], + [ + 109.3455999, + -0.0434651 + ], + [ + 109.3460258, + -0.0438078 + ] + ] + }, + "id": "way/174026504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174026506", + "highway": "primary", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410705, + -0.0454197 + ], + [ + 109.3408365, + -0.0451414 + ], + [ + 109.3404185, + -0.044644 + ], + [ + 109.3395832, + -0.0436856 + ], + [ + 109.3392047, + -0.0432601 + ], + [ + 109.3389482, + -0.0429716 + ], + [ + 109.3388839, + -0.0428993 + ], + [ + 109.3387737, + -0.0427898 + ], + [ + 109.3383078, + -0.0422237 + ], + [ + 109.3380727, + -0.0419388 + ], + [ + 109.3379938, + -0.0418438 + ], + [ + 109.3372925, + -0.0409986 + ], + [ + 109.3366057, + -0.0401459 + ], + [ + 109.3364473, + -0.0399546 + ], + [ + 109.3361705, + -0.0396193 + ], + [ + 109.3359228, + -0.0393168 + ], + [ + 109.3356637, + -0.0390023 + ], + [ + 109.3353988, + -0.0386776 + ], + [ + 109.3353337, + -0.0385929 + ], + [ + 109.3349357, + -0.0380914 + ], + [ + 109.3345058, + -0.0375624 + ], + [ + 109.3340999, + -0.0370846 + ], + [ + 109.3338521, + -0.0367972 + ], + [ + 109.3336362, + -0.036525 + ], + [ + 109.3333812, + -0.0361908 + ], + [ + 109.3332298, + -0.0359791 + ], + [ + 109.3330353, + -0.0357015 + ], + [ + 109.3329671, + -0.0356043 + ], + [ + 109.3328693, + -0.0354648 + ] + ] + }, + "id": "way/174026506" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174027742", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.377312, + -0.0298659 + ], + [ + 109.3773703, + -0.030431 + ], + [ + 109.3773964, + -0.030714 + ], + [ + 109.3774024, + -0.0308099 + ], + [ + 109.3774313, + -0.0312189 + ], + [ + 109.3774366, + -0.0313718 + ], + [ + 109.3774346, + -0.0314067 + ], + [ + 109.3774206, + -0.0314255 + ], + [ + 109.3771603, + -0.0313729 + ], + [ + 109.3767778, + -0.03127 + ], + [ + 109.376402, + -0.0311525 + ], + [ + 109.3763517, + -0.0311351 + ], + [ + 109.3763416, + -0.0311143 + ], + [ + 109.3762928, + -0.0303551 + ], + [ + 109.3762572, + -0.0299295 + ], + [ + 109.3762297, + -0.0293028 + ], + [ + 109.3761867, + -0.0287452 + ], + [ + 109.3761469, + -0.0279853 + ], + [ + 109.3761042, + -0.0279677 + ], + [ + 109.3760385, + -0.0279265 + ], + [ + 109.3760061, + -0.0278893 + ], + [ + 109.3759804, + -0.0278395 + ], + [ + 109.3759843, + -0.027809 + ], + [ + 109.3760246, + -0.0275668 + ], + [ + 109.3763308, + -0.0258989 + ] + ] + }, + "id": "way/174027742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174027743", + "highway": "residential", + "name": "Jalan Tanjung Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513686, + -0.047582 + ], + [ + 109.3513287, + -0.0475664 + ], + [ + 109.3513037, + -0.0475703 + ], + [ + 109.3512771, + -0.0475871 + ], + [ + 109.3509315, + -0.0480472 + ], + [ + 109.3500604, + -0.0492359 + ], + [ + 109.3500172, + -0.0492935 + ], + [ + 109.3486512, + -0.0513012 + ], + [ + 109.3483199, + -0.0517694 + ], + [ + 109.347975, + -0.052252 + ], + [ + 109.3477853, + -0.052521 + ], + [ + 109.347557, + -0.0528035 + ], + [ + 109.3474884, + -0.0528884 + ] + ] + }, + "id": "way/174027743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174027744", + "highway": "residential", + "lanes": "1", + "name": "Jalan M. Isja", + "oneway": "no", + "smoothness": "intermediate", + "surface": "asphalt", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477853, + -0.052521 + ], + [ + 109.3478909, + -0.052616 + ], + [ + 109.3479409, + -0.0526687 + ], + [ + 109.3483163, + -0.0530643 + ], + [ + 109.3485007, + -0.0532528 + ], + [ + 109.3488724, + -0.0536275 + ], + [ + 109.3499043, + -0.0546604 + ] + ] + }, + "id": "way/174027744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174027745", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3770509, + -0.0277996 + ], + [ + 109.3770457, + -0.0278101 + ], + [ + 109.377036, + -0.0278152 + ], + [ + 109.3770192, + -0.0278202 + ], + [ + 109.3769961, + -0.0278199 + ], + [ + 109.3769617, + -0.027815 + ], + [ + 109.3765616, + -0.0277075 + ], + [ + 109.3760246, + -0.0275668 + ] + ] + }, + "id": "way/174027745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174027747", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.377332, + -0.0260127 + ], + [ + 109.3772522, + -0.0264875 + ], + [ + 109.3771899, + -0.0269039 + ], + [ + 109.3770625, + -0.0277084 + ], + [ + 109.3770509, + -0.0277996 + ] + ] + }, + "id": "way/174027747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086490", + "highway": "tertiary", + "name": "Jalan Merdeka", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294717, + -0.0244824 + ], + [ + 109.3294559, + -0.0244305 + ], + [ + 109.3294466, + -0.0243944 + ], + [ + 109.3294412, + -0.0243642 + ], + [ + 109.3294315, + -0.0242354 + ], + [ + 109.329426, + -0.0240427 + ], + [ + 109.329413, + -0.0237697 + ], + [ + 109.3293988, + -0.0236072 + ], + [ + 109.3293946, + -0.0235118 + ], + [ + 109.3293739, + -0.0231915 + ], + [ + 109.329357, + -0.0229953 + ], + [ + 109.329346, + -0.0228511 + ], + [ + 109.3293327, + -0.0226925 + ], + [ + 109.3293215, + -0.0225118 + ], + [ + 109.3293168, + -0.0224551 + ], + [ + 109.3293084, + -0.0223495 + ], + [ + 109.3292984, + -0.0222362 + ], + [ + 109.3292615, + -0.0216253 + ], + [ + 109.3292471, + -0.0213942 + ], + [ + 109.329234, + -0.0212213 + ], + [ + 109.3292287, + -0.0211467 + ], + [ + 109.3292092, + -0.0208745 + ], + [ + 109.329197, + -0.0207036 + ], + [ + 109.3291872, + -0.020477 + ], + [ + 109.3291647, + -0.0201568 + ], + [ + 109.3291354, + -0.0196888 + ], + [ + 109.3291178, + -0.019497 + ], + [ + 109.329065, + -0.0189213 + ] + ] + }, + "id": "way/174086490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086492", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243597, + -0.0156048 + ], + [ + 109.3245672, + -0.0155967 + ], + [ + 109.3246236, + -0.0155937 + ], + [ + 109.3246655, + -0.0156185 + ], + [ + 109.3246914, + -0.0156487 + ], + [ + 109.3249572, + -0.017545 + ], + [ + 109.3249612, + -0.0175638 + ], + [ + 109.3249686, + -0.0175752 + ], + [ + 109.3249894, + -0.0175792 + ], + [ + 109.3251555, + -0.0175566 + ], + [ + 109.325257, + -0.017536 + ], + [ + 109.3253216, + -0.0175226 + ] + ] + }, + "id": "way/174086492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086495", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255781, + -0.0194534 + ], + [ + 109.3255845, + -0.01948 + ], + [ + 109.3257536, + -0.0201846 + ], + [ + 109.3258822, + -0.0206888 + ], + [ + 109.3259172, + -0.0207934 + ], + [ + 109.3259279, + -0.020839 + ] + ] + }, + "id": "way/174086495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086497", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3252252, + -0.0215203 + ], + [ + 109.3257589, + -0.0213782 + ], + [ + 109.3261155, + -0.0213057 + ] + ] + }, + "id": "way/174086497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086498", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247236, + -0.019624 + ], + [ + 109.3247722, + -0.0198355 + ], + [ + 109.3251447, + -0.021236 + ], + [ + 109.3252252, + -0.0215203 + ], + [ + 109.3255357, + -0.0225668 + ] + ] + }, + "id": "way/174086498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086500", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326465, + -0.0205967 + ], + [ + 109.3266655, + -0.0206447 + ] + ] + }, + "id": "way/174086500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086502", + "access": "yes", + "highway": "primary", + "name": "Jalan K.H. Wahid Hasyim", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326527, + -0.0193177 + ], + [ + 109.3264568, + -0.0197551 + ], + [ + 109.3262678, + -0.0205607 + ], + [ + 109.3262477, + -0.0206546 + ], + [ + 109.3262429, + -0.0206876 + ], + [ + 109.3261803, + -0.0209925 + ], + [ + 109.3261155, + -0.0213057 + ], + [ + 109.3260374, + -0.021708 + ], + [ + 109.3260039, + -0.0219083 + ], + [ + 109.3259339, + -0.0222821 + ], + [ + 109.3259072, + -0.0223903 + ], + [ + 109.3259008, + -0.0224201 + ], + [ + 109.3258781, + -0.0226169 + ], + [ + 109.3258215, + -0.0230107 + ], + [ + 109.3257943, + -0.0232493 + ], + [ + 109.3257784, + -0.0234764 + ], + [ + 109.3257656, + -0.0236165 + ], + [ + 109.3257524, + -0.0237922 + ], + [ + 109.3257397, + -0.0238985 + ], + [ + 109.3257374, + -0.0239705 + ], + [ + 109.3257409, + -0.0240238 + ], + [ + 109.3257671, + -0.0240984 + ], + [ + 109.3258206, + -0.0242133 + ], + [ + 109.3258802, + -0.0243139 + ], + [ + 109.3259558, + -0.0244414 + ], + [ + 109.3260401, + -0.0245838 + ], + [ + 109.3261159, + -0.0247117 + ], + [ + 109.326168, + -0.0247996 + ], + [ + 109.3264549, + -0.025284 + ], + [ + 109.3266418, + -0.0255907 + ], + [ + 109.3266662, + -0.0256321 + ], + [ + 109.3268357, + -0.0258974 + ], + [ + 109.3268819, + -0.0259727 + ], + [ + 109.3269291, + -0.026059 + ], + [ + 109.3270608, + -0.0262765 + ], + [ + 109.3270751, + -0.0263018 + ] + ] + }, + "id": "way/174086502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086504", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282111, + -0.0172506 + ], + [ + 109.3282151, + -0.0172835 + ], + [ + 109.3283848, + -0.0179154 + ], + [ + 109.3286169, + -0.0187235 + ] + ] + }, + "id": "way/174086504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086505", + "highway": "primary", + "name": "Jalan Haji Rais A. Rachman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265378, + -0.0191509 + ], + [ + 109.326534, + -0.0190914 + ] + ] + }, + "id": "way/174086505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086506", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280367, + -0.0213243 + ], + [ + 109.3274275, + -0.0214013 + ], + [ + 109.3270839, + -0.0214426 + ] + ] + }, + "id": "way/174086506" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086507", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263868, + -0.0174696 + ], + [ + 109.326392, + -0.0175112 + ], + [ + 109.3264918, + -0.0181901 + ], + [ + 109.3265022, + -0.0182263 + ], + [ + 109.3265179, + -0.0182752 + ], + [ + 109.3265364, + -0.0183322 + ], + [ + 109.3266074, + -0.0186869 + ], + [ + 109.3266546, + -0.0190676 + ] + ] + }, + "id": "way/174086507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086508", + "access": "yes", + "highway": "tertiary", + "motorcycle": "yes", + "name": "Jalan Teuku Umar", + "name:id": "Jalan Teuku Umar", + "name:ms": "Jalan Teuku Umar", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323798, + -0.0339391 + ], + [ + 109.3326213, + -0.0337315 + ], + [ + 109.3326612, + -0.0336952 + ], + [ + 109.3327703, + -0.0335957 + ], + [ + 109.3328331, + -0.0335318 + ], + [ + 109.3329406, + -0.0334315 + ], + [ + 109.3330674, + -0.0333128 + ], + [ + 109.333096, + -0.0332856 + ], + [ + 109.3332734, + -0.0331173 + ], + [ + 109.3332944, + -0.0330961 + ], + [ + 109.3336019, + -0.0328027 + ], + [ + 109.3337851, + -0.032628 + ], + [ + 109.3340395, + -0.0323852 + ], + [ + 109.334162, + -0.0322683 + ], + [ + 109.3342354, + -0.0321888 + ], + [ + 109.33434, + -0.032091 + ], + [ + 109.3345293, + -0.0318982 + ], + [ + 109.334684, + -0.0317435 + ], + [ + 109.3347497, + -0.031678 + ], + [ + 109.3353566, + -0.0311173 + ], + [ + 109.3356915, + -0.0308063 + ], + [ + 109.3361156, + -0.0303691 + ], + [ + 109.3362627, + -0.0302174 + ] + ] + }, + "id": "way/174086508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086509", + "highway": "residential", + "name": "Gang Kasuari 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280858, + -0.0209142 + ], + [ + 109.3286128, + -0.0208062 + ], + [ + 109.3289186, + -0.0207424 + ], + [ + 109.329197, + -0.0207036 + ] + ] + }, + "id": "way/174086509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086510", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256844, + -0.0174969 + ], + [ + 109.3258474, + -0.0183795 + ], + [ + 109.325956, + -0.01894 + ], + [ + 109.3260004, + -0.0191739 + ] + ] + }, + "id": "way/174086510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086511", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278537, + -0.013964 + ], + [ + 109.3274177, + -0.0147545 + ], + [ + 109.3273579, + -0.014863 + ], + [ + 109.3271781, + -0.0151697 + ], + [ + 109.3269418, + -0.0155712 + ], + [ + 109.3260106, + -0.0171259 + ] + ] + }, + "id": "way/174086511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086515", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275673, + -0.0208411 + ], + [ + 109.3275878, + -0.020852 + ], + [ + 109.3275972, + -0.0208666 + ], + [ + 109.3275973, + -0.0208825 + ], + [ + 109.3275973, + -0.0208951 + ], + [ + 109.3275955, + -0.0209068 + ], + [ + 109.3275924, + -0.0209139 + ], + [ + 109.3275718, + -0.020922 + ], + [ + 109.3275522, + -0.0209199 + ] + ] + }, + "id": "way/174086515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086516", + "highway": "residential", + "name": "Gang Gelatik" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3283187, + -0.0213356 + ], + [ + 109.3283539, + -0.0213353 + ], + [ + 109.3287884, + -0.0212723 + ], + [ + 109.329234, + -0.0212213 + ] + ] + }, + "id": "way/174086516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086517", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268914, + -0.0172872 + ], + [ + 109.3267977, + -0.0173373 + ], + [ + 109.3267518, + -0.0173571 + ], + [ + 109.3266612, + -0.0173833 + ] + ] + }, + "id": "way/174086517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086518", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266401, + -0.0207465 + ], + [ + 109.3264681, + -0.020717 + ], + [ + 109.3263715, + -0.0207056 + ] + ] + }, + "id": "way/174086518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086519", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258822, + -0.0206888 + ], + [ + 109.3262477, + -0.0206546 + ] + ] + }, + "id": "way/174086519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086521", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267776, + -0.0198033 + ], + [ + 109.3266485, + -0.019777 + ] + ] + }, + "id": "way/174086521" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086522", + "highway": "residential", + "name": "Gang Kasuari 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280495, + -0.0203026 + ], + [ + 109.3286477, + -0.0202141 + ], + [ + 109.3291647, + -0.0201568 + ] + ] + }, + "id": "way/174086522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086523", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337845, + -0.0302066 + ], + [ + 109.3378902, + -0.0302241 + ], + [ + 109.3379184, + -0.0302555 + ], + [ + 109.3379415, + -0.0302992 + ], + [ + 109.3379492, + -0.0303358 + ], + [ + 109.3379094, + -0.0304889 + ] + ] + }, + "id": "way/174086523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086524", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266485, + -0.019777 + ], + [ + 109.326465, + -0.0205967 + ] + ] + }, + "id": "way/174086524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086526", + "highway": "tertiary", + "motorcycle": "yes", + "name": "Jalan Diponegoro", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391241, + -0.0294435 + ], + [ + 109.3392344, + -0.0293641 + ], + [ + 109.3396527, + -0.0290629 + ], + [ + 109.3398729, + -0.0289054 + ], + [ + 109.3406799, + -0.0283846 + ], + [ + 109.3407819, + -0.0283311 + ], + [ + 109.3411431, + -0.0281247 + ], + [ + 109.341193, + -0.0280877 + ], + [ + 109.3414994, + -0.0278938 + ], + [ + 109.3416012, + -0.0278293 + ], + [ + 109.3422484, + -0.0274397 + ], + [ + 109.3426711, + -0.0271803 + ], + [ + 109.3427194, + -0.0271506 + ], + [ + 109.3428154, + -0.0270917 + ] + ] + }, + "id": "way/174086526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086528", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244184, + -0.0196921 + ], + [ + 109.3247236, + -0.019624 + ], + [ + 109.3250939, + -0.0195592 + ], + [ + 109.3253186, + -0.0195198 + ], + [ + 109.3255845, + -0.01948 + ], + [ + 109.325902, + -0.0194298 + ], + [ + 109.326527, + -0.0193177 + ] + ] + }, + "id": "way/174086528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086529", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268914, + -0.0172872 + ], + [ + 109.328082, + -0.015378 + ] + ] + }, + "id": "way/174086529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086530", + "access": "destination", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275319, + -0.0170893 + ], + [ + 109.3276501, + -0.0171467 + ], + [ + 109.3277578, + -0.0172154 + ], + [ + 109.3277639, + -0.017221 + ], + [ + 109.3277686, + -0.0172282 + ], + [ + 109.327775, + -0.0172413 + ] + ] + }, + "id": "way/174086530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174086531", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266401, + -0.0207465 + ], + [ + 109.3266655, + -0.0206447 + ], + [ + 109.3268171, + -0.0198848 + ], + [ + 109.3268151, + -0.0198564 + ], + [ + 109.326806, + -0.0198388 + ], + [ + 109.3267989, + -0.0198242 + ], + [ + 109.3267892, + -0.0198147 + ], + [ + 109.3267776, + -0.0198033 + ] + ] + }, + "id": "way/174086531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089592", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3378876, + -0.0213519 + ], + [ + 109.3378271, + -0.0213329 + ], + [ + 109.3377547, + -0.0213215 + ], + [ + 109.3376568, + -0.0213309 + ], + [ + 109.3375784, + -0.0213491 + ], + [ + 109.3374603, + -0.0214027 + ] + ] + }, + "id": "way/174089592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089594", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251447, + -0.021236 + ], + [ + 109.325516, + -0.0211375 + ], + [ + 109.3257509, + -0.0210751 + ], + [ + 109.3261803, + -0.0209925 + ] + ] + }, + "id": "way/174089594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089596", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284468, + -0.0156999 + ], + [ + 109.3281809, + -0.0161038 + ], + [ + 109.3275319, + -0.0170893 + ], + [ + 109.3274664, + -0.0172196 + ], + [ + 109.3274612, + -0.0172357 + ], + [ + 109.3274592, + -0.0172518 + ], + [ + 109.3274614, + -0.0172774 + ] + ] + }, + "id": "way/174089596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089603", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372398, + -0.0208575 + ], + [ + 109.337357, + -0.0208351 + ], + [ + 109.3374506, + -0.0208298 + ], + [ + 109.3375475, + -0.0208336 + ], + [ + 109.3376, + -0.0208502 + ], + [ + 109.3376511, + -0.0208865 + ], + [ + 109.3377096, + -0.0209581 + ], + [ + 109.3377849, + -0.0210493 + ], + [ + 109.3378483, + -0.0211393 + ], + [ + 109.3379281, + -0.0212253 + ] + ] + }, + "id": "way/174089603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089604", + "access": "destination", + "highway": "residential", + "name": "Gang Bilal 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268914, + -0.0172872 + ], + [ + 109.3269024, + -0.0173203 + ], + [ + 109.326938, + -0.0174273 + ], + [ + 109.3270694, + -0.0179044 + ], + [ + 109.327172, + -0.0182725 + ], + [ + 109.327215, + -0.0184529 + ], + [ + 109.3272337, + -0.0184932 + ], + [ + 109.3272601, + -0.018549 + ], + [ + 109.3272755, + -0.0185956 + ], + [ + 109.3272891, + -0.0186544 + ], + [ + 109.3273357, + -0.0189337 + ] + ] + }, + "id": "way/174089604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089607", + "highway": "trunk", + "name": "Jalan Rahadi Usman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392234, + -0.0226236 + ], + [ + 109.3391681, + -0.0225692 + ], + [ + 109.3391084, + -0.0225104 + ], + [ + 109.3390361, + -0.0224393 + ], + [ + 109.3389587, + -0.0223632 + ], + [ + 109.3387608, + -0.0221686 + ], + [ + 109.3386383, + -0.022048 + ], + [ + 109.3385825, + -0.0219932 + ], + [ + 109.3383934, + -0.0218072 + ], + [ + 109.3383043, + -0.0217196 + ], + [ + 109.3380411, + -0.0214607 + ], + [ + 109.338001, + -0.0214213 + ], + [ + 109.337948, + -0.0213858 + ], + [ + 109.3378876, + -0.0213519 + ] + ] + }, + "id": "way/174089607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089609", + "highway": "unclassified", + "name": "Jalan Sidas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360345, + -0.0232745 + ], + [ + 109.3360181, + -0.0231555 + ], + [ + 109.3359855, + -0.022919 + ], + [ + 109.3359632, + -0.0227577 + ], + [ + 109.3359511, + -0.0226699 + ], + [ + 109.3359273, + -0.0224977 + ], + [ + 109.3358964, + -0.0222733 + ], + [ + 109.335874, + -0.0221115 + ], + [ + 109.3358522, + -0.0219535 + ], + [ + 109.3358414, + -0.0218751 + ], + [ + 109.3357864, + -0.0214975 + ], + [ + 109.3356806, + -0.0207723 + ] + ] + }, + "id": "way/174089609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089610", + "highway": "tertiary", + "name": "Jalan Pattimura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390608, + -0.0294926 + ], + [ + 109.3389876, + -0.0293524 + ], + [ + 109.3387027, + -0.0286544 + ], + [ + 109.3386754, + -0.0285239 + ], + [ + 109.3386479, + -0.0282577 + ] + ] + }, + "id": "way/174089610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089615", + "highway": "unclassified", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360345, + -0.0232745 + ], + [ + 109.3362746, + -0.0234153 + ] + ] + }, + "id": "way/174089615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089616", + "highway": "residential", + "name": "Jalan Rajawali" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355104, + -0.0206947 + ], + [ + 109.3352636, + -0.0209995 + ], + [ + 109.3350071, + -0.0213163 + ], + [ + 109.3348926, + -0.0214577 + ], + [ + 109.3345323, + -0.0219317 + ], + [ + 109.3340279, + -0.0224636 + ], + [ + 109.3339272, + -0.0225698 + ], + [ + 109.33384, + -0.0226539 + ], + [ + 109.3337314, + -0.0227478 + ], + [ + 109.3336811, + -0.0227953 + ], + [ + 109.3336513, + -0.022829 + ], + [ + 109.3336147, + -0.022888 + ], + [ + 109.3334469, + -0.0232669 + ], + [ + 109.333333, + -0.0235421 + ], + [ + 109.3332223, + -0.0237572 + ], + [ + 109.3331453, + -0.023924 + ], + [ + 109.333035, + -0.0241741 + ] + ] + }, + "id": "way/174089616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089618", + "access": "destination", + "highway": "residential", + "name": "Gang Muria" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260106, + -0.0171259 + ], + [ + 109.3260066, + -0.0171487 + ], + [ + 109.326007, + -0.0171695 + ], + [ + 109.3260481, + -0.0173542 + ], + [ + 109.3260707, + -0.0174426 + ], + [ + 109.3261377, + -0.0179276 + ], + [ + 109.3263249, + -0.0188971 + ], + [ + 109.3263744, + -0.0191145 + ] + ] + }, + "id": "way/174089618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089619", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273579, + -0.014863 + ], + [ + 109.327533, + -0.0149777 + ], + [ + 109.3278085, + -0.0151581 + ], + [ + 109.328082, + -0.015378 + ], + [ + 109.3282048, + -0.0154863 + ], + [ + 109.3282734, + -0.0155469 + ], + [ + 109.3284468, + -0.0156999 + ] + ] + }, + "id": "way/174089619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089620", + "highway": "unclassified", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359916, + -0.0235213 + ], + [ + 109.3360168, + -0.0233763 + ], + [ + 109.3360345, + -0.0232745 + ] + ] + }, + "id": "way/174089620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089624", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "name:id": "Jalan Tanjung Pura", + "name:ms": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405559, + -0.0239869 + ], + [ + 109.3407488, + -0.0242092 + ], + [ + 109.3408399, + -0.0243142 + ], + [ + 109.3409341, + -0.0244218 + ], + [ + 109.3409793, + -0.0244772 + ], + [ + 109.3410625, + -0.0245791 + ], + [ + 109.3413339, + -0.0248895 + ], + [ + 109.3414776, + -0.0250538 + ], + [ + 109.3416379, + -0.0252563 + ], + [ + 109.3417541, + -0.0254003 + ] + ] + }, + "id": "way/174089624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089626", + "highway": "residential", + "name": "Jalan Fatimah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348926, + -0.0214577 + ], + [ + 109.335022, + -0.0224295 + ], + [ + 109.3350678, + -0.0227436 + ], + [ + 109.3351194, + -0.0230509 + ], + [ + 109.3351261, + -0.0231233 + ], + [ + 109.33511, + -0.0231998 + ], + [ + 109.3350685, + -0.0232641 + ], + [ + 109.3348385, + -0.0235431 + ], + [ + 109.334815, + -0.0235825 + ], + [ + 109.3348073, + -0.0236043 + ], + [ + 109.3348036, + -0.0236294 + ], + [ + 109.3348043, + -0.0236651 + ] + ] + }, + "id": "way/174089626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089628", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3374603, + -0.0214027 + ], + [ + 109.3372402, + -0.021531 + ], + [ + 109.3370068, + -0.0216705 + ], + [ + 109.3368439, + -0.0216197 + ], + [ + 109.3367458, + -0.0215644 + ], + [ + 109.3366833, + -0.0215093 + ], + [ + 109.3366372, + -0.0214508 + ], + [ + 109.3365976, + -0.0213662 + ], + [ + 109.3365989, + -0.0212982 + ], + [ + 109.3366162, + -0.0212201 + ], + [ + 109.3366456, + -0.0211704 + ], + [ + 109.3367028, + -0.0211077 + ], + [ + 109.3368012, + -0.0210285 + ], + [ + 109.3369035, + -0.0209675 + ], + [ + 109.336995, + -0.0209253 + ], + [ + 109.337147, + -0.0208774 + ], + [ + 109.3372398, + -0.0208575 + ] + ] + }, + "id": "way/174089628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089630", + "access": "yes", + "highway": "tertiary", + "name": "Jalan Haji Oemar Said Cokroaminoto", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362627, + -0.0302174 + ], + [ + 109.3362175, + -0.0301795 + ], + [ + 109.3360632, + -0.0300502 + ], + [ + 109.3360211, + -0.0300149 + ], + [ + 109.3356267, + -0.0296856 + ], + [ + 109.3355311, + -0.0295887 + ], + [ + 109.3353907, + -0.0294646 + ], + [ + 109.3353304, + -0.0294113 + ], + [ + 109.3350966, + -0.0291892 + ], + [ + 109.3348593, + -0.0289708 + ], + [ + 109.334756, + -0.0288861 + ], + [ + 109.33465, + -0.0288043 + ], + [ + 109.3344814, + -0.0286709 + ], + [ + 109.3342987, + -0.0285213 + ], + [ + 109.3341163, + -0.0283778 + ], + [ + 109.3339832, + -0.0282727 + ], + [ + 109.3339238, + -0.0282258 + ], + [ + 109.3338802, + -0.0281934 + ], + [ + 109.3337663, + -0.0280921 + ], + [ + 109.3336281, + -0.0279754 + ], + [ + 109.3334337, + -0.0278177 + ], + [ + 109.3333148, + -0.0277143 + ], + [ + 109.3332218, + -0.0276335 + ], + [ + 109.3330331, + -0.0274761 + ], + [ + 109.3328854, + -0.0273524 + ], + [ + 109.3328631, + -0.0273286 + ], + [ + 109.3326934, + -0.0271828 + ], + [ + 109.3326203, + -0.0271167 + ], + [ + 109.3325055, + -0.0270128 + ], + [ + 109.3323732, + -0.0269103 + ], + [ + 109.3322991, + -0.0268529 + ], + [ + 109.3321079, + -0.0266951 + ], + [ + 109.3319928, + -0.0266025 + ], + [ + 109.331899, + -0.0265271 + ], + [ + 109.3318452, + -0.0264824 + ], + [ + 109.3317975, + -0.0264429 + ] + ] + }, + "id": "way/174089630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089631", + "highway": "trunk", + "name": "Jalan Pak Kasih", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368012, + -0.0210285 + ], + [ + 109.3368005, + -0.0209507 + ], + [ + 109.3367891, + -0.0208911 + ], + [ + 109.3367569, + -0.020832 + ], + [ + 109.336708, + -0.0207804 + ], + [ + 109.3365745, + -0.0206584 + ], + [ + 109.3364371, + -0.0205444 + ], + [ + 109.3359556, + -0.0201581 + ], + [ + 109.335921, + -0.0201273 + ], + [ + 109.3355234, + -0.019835 + ], + [ + 109.3351965, + -0.0195946 + ], + [ + 109.3347372, + -0.0192247 + ], + [ + 109.3343768, + -0.0189283 + ], + [ + 109.3339483, + -0.0185893 + ], + [ + 109.333673, + -0.0183715 + ], + [ + 109.3335001, + -0.0182267 + ], + [ + 109.3330233, + -0.0178136 + ], + [ + 109.3329795, + -0.0177713 + ], + [ + 109.3329395, + -0.0177349 + ], + [ + 109.3328982, + -0.0176945 + ] + ] + }, + "id": "way/174089631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089632", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264646, + -0.0173686 + ], + [ + 109.3264739, + -0.0173599 + ], + [ + 109.3264862, + -0.0173449 + ], + [ + 109.3265779, + -0.0171871 + ], + [ + 109.3271488, + -0.0162616 + ], + [ + 109.3275578, + -0.015571 + ], + [ + 109.3278085, + -0.0151581 + ] + ] + }, + "id": "way/174089632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089640", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "name:id": "Jalan Tanjung Pura", + "name:ms": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469211, + -0.0374208 + ], + [ + 109.346901, + -0.0373431 + ], + [ + 109.346724, + -0.0364861 + ], + [ + 109.346628, + -0.0359821 + ], + [ + 109.3465653, + -0.0356669 + ], + [ + 109.3464795, + -0.0352107 + ], + [ + 109.3464573, + -0.0351082 + ], + [ + 109.3464075, + -0.0348701 + ], + [ + 109.3463016, + -0.0344476 + ], + [ + 109.346256, + -0.0342303 + ], + [ + 109.3462037, + -0.0340171 + ], + [ + 109.3461206, + -0.0337443 + ], + [ + 109.3459936, + -0.03343 + ], + [ + 109.3458858, + -0.0331614 + ], + [ + 109.3457929, + -0.0329374 + ] + ] + }, + "id": "way/174089640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089642", + "highway": "tertiary", + "name": "Jalan Agus Salim", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391503, + -0.02967 + ], + [ + 109.3385295, + -0.0301208 + ], + [ + 109.3379094, + -0.0304889 + ] + ] + }, + "id": "way/174089642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089646", + "highway": "tertiary", + "name": "Jalan Jenderal Urip", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318988, + -0.0260147 + ], + [ + 109.3319081, + -0.0260117 + ], + [ + 109.3322293, + -0.0259075 + ], + [ + 109.3325916, + -0.0257864 + ], + [ + 109.3327229, + -0.0257425 + ], + [ + 109.3328863, + -0.0256897 + ], + [ + 109.3329576, + -0.0256634 + ], + [ + 109.3331201, + -0.0256116 + ], + [ + 109.3333303, + -0.0255378 + ], + [ + 109.3334578, + -0.0254931 + ], + [ + 109.3335018, + -0.0254772 + ], + [ + 109.3337373, + -0.0253921 + ], + [ + 109.3339071, + -0.0253308 + ], + [ + 109.3340786, + -0.025271 + ], + [ + 109.3341273, + -0.025254 + ], + [ + 109.3343508, + -0.025176 + ], + [ + 109.3344982, + -0.0251249 + ], + [ + 109.3350723, + -0.024926 + ], + [ + 109.335532, + -0.0247667 + ], + [ + 109.3356562, + -0.0247237 + ], + [ + 109.3356943, + -0.0247105 + ], + [ + 109.3358521, + -0.0246558 + ], + [ + 109.3361729, + -0.0245545 + ], + [ + 109.3365384, + -0.0244352 + ], + [ + 109.3366359, + -0.0244034 + ], + [ + 109.3367566, + -0.024364 + ], + [ + 109.3371899, + -0.0242226 + ] + ] + }, + "id": "way/174089646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089648", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274614, + -0.0172774 + ], + [ + 109.3275587, + -0.0179154 + ], + [ + 109.3277957, + -0.0188619 + ] + ] + }, + "id": "way/174089648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089650", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293337, + -0.0150067 + ], + [ + 109.3291602, + -0.014887 + ], + [ + 109.3291264, + -0.0148645 + ], + [ + 109.3289444, + -0.0147366 + ], + [ + 109.3288106, + -0.014643 + ], + [ + 109.3285024, + -0.0144349 + ], + [ + 109.328388, + -0.0143576 + ], + [ + 109.328271, + -0.0142699 + ], + [ + 109.3280581, + -0.0141104 + ], + [ + 109.3278537, + -0.013964 + ], + [ + 109.3277426, + -0.0138932 + ], + [ + 109.327574, + -0.013774 + ], + [ + 109.3274733, + -0.0136986 + ], + [ + 109.3271254, + -0.0134587 + ], + [ + 109.3269275, + -0.0133155 + ], + [ + 109.3268653, + -0.0132778 + ], + [ + 109.3268025, + -0.0132389 + ], + [ + 109.3266579, + -0.0131326 + ], + [ + 109.3264304, + -0.0129738 + ], + [ + 109.3263087, + -0.0128951 + ], + [ + 109.3262186, + -0.0128296 + ], + [ + 109.3260147, + -0.0126828 + ], + [ + 109.325873, + -0.0125814 + ], + [ + 109.3258194, + -0.0125402 + ], + [ + 109.3257143, + -0.0124682 + ], + [ + 109.3255905, + -0.01239 + ], + [ + 109.3255171, + -0.0123397 + ], + [ + 109.3253808, + -0.0122398 + ], + [ + 109.3252426, + -0.0121564 + ], + [ + 109.3250806, + -0.0120562 + ], + [ + 109.3250643, + -0.0120461 + ], + [ + 109.3249525, + -0.011972 + ], + [ + 109.3248458, + -0.0119081 + ], + [ + 109.3247209, + -0.0118335 + ], + [ + 109.3246343, + -0.0117913 + ], + [ + 109.3245827, + -0.0117585 + ], + [ + 109.3244535, + -0.0116874 + ], + [ + 109.3243946, + -0.0116576 + ], + [ + 109.3243374, + -0.0116283 + ], + [ + 109.3242627, + -0.0115919 + ], + [ + 109.3242226, + -0.0115739 + ], + [ + 109.3240976, + -0.0115187 + ], + [ + 109.3240238, + -0.0114816 + ], + [ + 109.3239366, + -0.0114376 + ], + [ + 109.3238653, + -0.0113976 + ], + [ + 109.3237687, + -0.011329 + ], + [ + 109.3237013, + -0.011272 + ], + [ + 109.3235618, + -0.011158 + ], + [ + 109.3234811, + -0.0110805 + ], + [ + 109.323404, + -0.0110168 + ], + [ + 109.3233368, + -0.0109629 + ], + [ + 109.3232349, + -0.0108813 + ], + [ + 109.3231672, + -0.0108271 + ], + [ + 109.3229833, + -0.010669 + ], + [ + 109.3228278, + -0.0105374 + ], + [ + 109.3226706, + -0.0104017 + ], + [ + 109.3224852, + -0.0102644 + ], + [ + 109.3223828, + -0.010191 + ], + [ + 109.3222402, + -0.0100852 + ], + [ + 109.3221822, + -0.0100379 + ] + ] + }, + "id": "way/174089650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174089652", + "highway": "residential", + "name": "Jalan Nurali" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354017, + -0.0240001 + ], + [ + 109.335326, + -0.0240614 + ], + [ + 109.3352897, + -0.0240708 + ], + [ + 109.3352509, + -0.0240681 + ], + [ + 109.33522, + -0.024054 + ], + [ + 109.3348043, + -0.0236651 + ], + [ + 109.3346259, + -0.02376 + ], + [ + 109.3345883, + -0.0237805 + ], + [ + 109.3345647, + -0.0237915 + ], + [ + 109.3345421, + -0.0237984 + ], + [ + 109.3345196, + -0.0237962 + ], + [ + 109.3343959, + -0.0237469 + ], + [ + 109.3340278, + -0.0235779 + ], + [ + 109.3338293, + -0.0234716 + ], + [ + 109.3334469, + -0.0232669 + ] + ] + }, + "id": "way/174089652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174090216", + "highway": "residential", + "name": "Jalan Kenari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3345323, + -0.0219317 + ], + [ + 109.3337198, + -0.0211919 + ], + [ + 109.3334509, + -0.0209221 + ], + [ + 109.3333424, + -0.0208133 + ], + [ + 109.3331854, + -0.020664 + ], + [ + 109.33308, + -0.0205594 + ], + [ + 109.3330332, + -0.0205134 + ], + [ + 109.3328469, + -0.0203293 + ], + [ + 109.3327984, + -0.0202843 + ], + [ + 109.3324295, + -0.0199492 + ] + ] + }, + "id": "way/174090216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174090217", + "highway": "residential", + "name": "Jalan Lembah Murai", + "postal_code": "78112" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331235, + -0.0212487 + ], + [ + 109.3318391, + -0.0205551 + ], + [ + 109.3324295, + -0.0199492 + ], + [ + 109.3327587, + -0.0195762 + ], + [ + 109.3328641, + -0.019439 + ], + [ + 109.3329823, + -0.0193031 + ], + [ + 109.3331808, + -0.0190381 + ], + [ + 109.3333699, + -0.0187857 + ], + [ + 109.333673, + -0.0183715 + ] + ] + }, + "id": "way/174090217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174090218", + "highway": "residential", + "name": "Gang Kasturi Raja" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315659, + -0.0215471 + ], + [ + 109.3328469, + -0.0203293 + ] + ] + }, + "id": "way/174090218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197623", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231943, + -0.0264466 + ], + [ + 109.3246025, + -0.0255479 + ], + [ + 109.3252994, + -0.0251243 + ] + ] + }, + "id": "way/174197623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197630", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225024, + -0.0207614 + ], + [ + 109.3228436, + -0.0219855 + ], + [ + 109.3228767, + -0.022127 + ], + [ + 109.3229798, + -0.0225411 + ], + [ + 109.3230683, + -0.0228254 + ], + [ + 109.3233004, + -0.0234887 + ] + ] + }, + "id": "way/174197630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197631", + "highway": "residential", + "name": "Gang Baiduri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282581, + -0.0235709 + ], + [ + 109.3282892, + -0.023751 + ], + [ + 109.3283187, + -0.0239548 + ], + [ + 109.3282929, + -0.0239607 + ], + [ + 109.3277688, + -0.0240795 + ], + [ + 109.3277487, + -0.0239709 + ], + [ + 109.3276522, + -0.0239787 + ], + [ + 109.3267939, + -0.0242362 + ], + [ + 109.3259558, + -0.0244414 + ] + ] + }, + "id": "way/174197631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197632", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272727, + -0.0262244 + ], + [ + 109.3273049, + -0.0261205 + ], + [ + 109.3273906, + -0.0259101 + ], + [ + 109.3274476, + -0.0258062 + ], + [ + 109.3275007, + -0.0257235 + ], + [ + 109.3276339, + -0.0255657 + ] + ] + }, + "id": "way/174197632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197633", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lanes": "1", + "maxspeed": "20", + "motor_vehicle": "yes", + "name": "Gang Rahmat", + "oneway": "no", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280541, + -0.0242867 + ], + [ + 109.3278694, + -0.0243263 + ], + [ + 109.3276794, + -0.0243777 + ], + [ + 109.3275103, + -0.0244235 + ], + [ + 109.3271328, + -0.0245077 + ], + [ + 109.3261159, + -0.0247117 + ] + ] + }, + "id": "way/174197633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197634", + "highway": "tertiary", + "name": "Jalan Letnan Jenderal Sutoyo", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3363844, + -0.0496839 + ], + [ + 109.3364106, + -0.0497 + ], + [ + 109.3364468, + -0.0497127 + ], + [ + 109.3364823, + -0.0497176 + ], + [ + 109.3365395, + -0.0497146 + ], + [ + 109.3365896, + -0.049704 + ], + [ + 109.3367547, + -0.0496462 + ], + [ + 109.3368737, + -0.0496044 + ], + [ + 109.3379875, + -0.049214 + ], + [ + 109.3382051, + -0.0491289 + ], + [ + 109.338381, + -0.049059 + ], + [ + 109.3385778, + -0.0489898 + ], + [ + 109.3389278, + -0.0488457 + ], + [ + 109.3394995, + -0.0486063 + ], + [ + 109.3395531, + -0.048583 + ], + [ + 109.3399541, + -0.0484085 + ], + [ + 109.3403967, + -0.0482285 + ], + [ + 109.3408715, + -0.0480472 + ], + [ + 109.3409881, + -0.0480087 + ], + [ + 109.3412012, + -0.0479262 + ], + [ + 109.3412673, + -0.0479001 + ], + [ + 109.3415605, + -0.0477844 + ], + [ + 109.3419647, + -0.0476249 + ], + [ + 109.3421813, + -0.0474734 + ], + [ + 109.3423091, + -0.0473805 + ], + [ + 109.3423755, + -0.0473282 + ], + [ + 109.3424191, + -0.047284 + ], + [ + 109.3424398, + -0.0472491 + ], + [ + 109.3424573, + -0.0472012 + ], + [ + 109.3424596, + -0.0471636 + ], + [ + 109.3424553, + -0.0470828 + ] + ] + }, + "id": "way/174197634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197636", + "highway": "unclassified", + "name": "Gang Purnama Madya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272262, + -0.0499257 + ], + [ + 109.3274271, + -0.0496673 + ], + [ + 109.3276756, + -0.0493439 + ], + [ + 109.3277479, + -0.0492894 + ], + [ + 109.3278377, + -0.0492551 + ], + [ + 109.3281741, + -0.0491755 + ] + ] + }, + "id": "way/174197636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197641", + "highway": "living_street", + "name": "Gang Lanjut" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279499, + -0.0263585 + ], + [ + 109.3282088, + -0.0260997 + ], + [ + 109.3286037, + -0.0257051 + ], + [ + 109.3288351, + -0.0254807 + ] + ] + }, + "id": "way/174197641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197642", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254011, + -0.0247561 + ], + [ + 109.3253401, + -0.0246394 + ], + [ + 109.3253369, + -0.0246299 + ], + [ + 109.3253359, + -0.0246215 + ], + [ + 109.3253381, + -0.0246114 + ], + [ + 109.3253419, + -0.0246026 + ], + [ + 109.3255292, + -0.0244843 + ], + [ + 109.3258802, + -0.0243139 + ] + ] + }, + "id": "way/174197642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197644", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239447, + -0.0197415 + ], + [ + 109.3239581, + -0.0197979 + ], + [ + 109.3240318, + -0.0201092 + ], + [ + 109.324121, + -0.0204331 + ], + [ + 109.3243531, + -0.0211892 + ], + [ + 109.3244054, + -0.0214174 + ], + [ + 109.3245907, + -0.022116 + ] + ] + }, + "id": "way/174197644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197645", + "highway": "tertiary", + "name": "Jalan Gusti Johan Idrus", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288042, + -0.039028 + ], + [ + 109.3288133, + -0.039044 + ], + [ + 109.3290071, + -0.0393828 + ], + [ + 109.3290247, + -0.0394135 + ], + [ + 109.3292367, + -0.0398096 + ], + [ + 109.3292965, + -0.0399213 + ], + [ + 109.3294456, + -0.0401921 + ], + [ + 109.3296146, + -0.0404992 + ], + [ + 109.3300826, + -0.0413635 + ], + [ + 109.3302677, + -0.0417284 + ], + [ + 109.3306516, + -0.0424091 + ], + [ + 109.3308022, + -0.0426607 + ] + ] + }, + "id": "way/174197645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197646", + "highway": "residential", + "name": "Jalan Profesor Dokter Hamka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220785, + -0.0238019 + ], + [ + 109.3224554, + -0.0237238 + ], + [ + 109.3227368, + -0.0236588 + ], + [ + 109.3229838, + -0.023582 + ], + [ + 109.3233004, + -0.0234887 + ], + [ + 109.3235169, + -0.0234089 + ], + [ + 109.3235967, + -0.0233795 + ], + [ + 109.3238325, + -0.0232873 + ], + [ + 109.3238604, + -0.0232693 + ], + [ + 109.3240786, + -0.0231737 + ], + [ + 109.3242699, + -0.0231117 + ], + [ + 109.3244197, + -0.0230408 + ], + [ + 109.3246228, + -0.0229576 + ], + [ + 109.3248145, + -0.0228875 + ], + [ + 109.3249707, + -0.0228333 + ], + [ + 109.3252022, + -0.0227157 + ], + [ + 109.3255357, + -0.0225668 + ], + [ + 109.3259008, + -0.0224201 + ] + ] + }, + "id": "way/174197646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197653", + "highway": "residential", + "motorcycle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257409, + -0.0240238 + ], + [ + 109.3253643, + -0.0242604 + ], + [ + 109.324565, + -0.0247834 + ], + [ + 109.3241451, + -0.0250049 + ], + [ + 109.3237549, + -0.0252313 + ], + [ + 109.3227786, + -0.0258525 + ] + ] + }, + "id": "way/174197653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197655", + "highway": "residential", + "name": "Gang Lanjut" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273546, + -0.0267905 + ], + [ + 109.3275534, + -0.0266747 + ], + [ + 109.3280062, + -0.0264108 + ] + ] + }, + "id": "way/174197655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197657", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3384398, + -0.0476387 + ], + [ + 109.3384387, + -0.0474161 + ], + [ + 109.3384502, + -0.0471515 + ], + [ + 109.3384635, + -0.0467882 + ], + [ + 109.3385209, + -0.0466227 + ], + [ + 109.3385467, + -0.0465482 + ], + [ + 109.3387599, + -0.0461116 + ] + ] + }, + "id": "way/174197657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197658", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249646, + -0.0262237 + ], + [ + 109.3248881, + -0.0260852 + ], + [ + 109.3248841, + -0.0260694 + ], + [ + 109.3248855, + -0.0260563 + ], + [ + 109.3248939, + -0.026039 + ] + ] + }, + "id": "way/174197658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197659", + "highway": "residential", + "name": "Gang Jiran 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257671, + -0.0240984 + ], + [ + 109.3265203, + -0.0238822 + ], + [ + 109.3275836, + -0.0235827 + ], + [ + 109.3275996, + -0.0235823 + ], + [ + 109.3276098, + -0.0235841 + ], + [ + 109.3276183, + -0.0235883 + ], + [ + 109.3276247, + -0.0235942 + ], + [ + 109.3276443, + -0.0236582 + ], + [ + 109.327648, + -0.0236624 + ], + [ + 109.3276537, + -0.0236663 + ], + [ + 109.3276587, + -0.0236678 + ], + [ + 109.3276642, + -0.0236684 + ], + [ + 109.3278265, + -0.0236435 + ] + ] + }, + "id": "way/174197659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197662", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280062, + -0.0264108 + ], + [ + 109.3280569, + -0.0264082 + ], + [ + 109.3280739, + -0.0264124 + ], + [ + 109.3280914, + -0.0264249 + ], + [ + 109.328249, + -0.0265795 + ], + [ + 109.3282532, + -0.0265808 + ], + [ + 109.3282576, + -0.026581 + ], + [ + 109.3282627, + -0.0265799 + ] + ] + }, + "id": "way/174197662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197664", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263191, + -0.023673 + ], + [ + 109.3257524, + -0.0237922 + ] + ] + }, + "id": "way/174197664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197666", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220541, + -0.0221747 + ], + [ + 109.3221483, + -0.0225679 + ], + [ + 109.3224554, + -0.0237238 + ], + [ + 109.3226579, + -0.0244428 + ], + [ + 109.3228926, + -0.0251683 + ] + ] + }, + "id": "way/174197666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197667", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233369, + -0.0266509 + ], + [ + 109.3237039, + -0.0263927 + ], + [ + 109.3253321, + -0.0253708 + ], + [ + 109.3253693, + -0.0253422 + ], + [ + 109.3254273, + -0.0252883 + ], + [ + 109.3254442, + -0.0252737 + ], + [ + 109.326168, + -0.0247996 + ] + ] + }, + "id": "way/174197667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197669", + "access": "permissive", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233311, + -0.0206366 + ], + [ + 109.3234948, + -0.021208 + ], + [ + 109.3236372, + -0.0216718 + ], + [ + 109.3238944, + -0.0225384 + ], + [ + 109.3240588, + -0.0231055 + ] + ] + }, + "id": "way/174197669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197672", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240218, + -0.0245959 + ], + [ + 109.3240352, + -0.0245868 + ], + [ + 109.3240412, + -0.0245788 + ], + [ + 109.3240419, + -0.0245694 + ], + [ + 109.3240308, + -0.0245389 + ], + [ + 109.3240305, + -0.024533 + ], + [ + 109.324032, + -0.024528 + ], + [ + 109.3240365, + -0.0245228 + ] + ] + }, + "id": "way/174197672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197673", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246228, + -0.0229576 + ], + [ + 109.3248413, + -0.0235388 + ] + ] + }, + "id": "way/174197673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197677", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264549, + -0.025284 + ], + [ + 109.3259356, + -0.0255827 + ], + [ + 109.325608, + -0.025799 + ], + [ + 109.3249646, + -0.0262237 + ], + [ + 109.3236697, + -0.0271656 + ] + ] + }, + "id": "way/174197677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197678", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282932, + -0.0253594 + ], + [ + 109.3282751, + -0.0253418 + ], + [ + 109.3282236, + -0.0252749 + ], + [ + 109.3281117, + -0.0251527 + ] + ] + }, + "id": "way/174197678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3252994, + -0.0251243 + ], + [ + 109.3253138, + -0.0251196 + ], + [ + 109.3253262, + -0.0251219 + ], + [ + 109.3253388, + -0.0251303 + ], + [ + 109.3254273, + -0.0252883 + ] + ] + }, + "id": "way/174197680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197682", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224872, + -0.0253712 + ], + [ + 109.3228926, + -0.0251683 + ], + [ + 109.3231086, + -0.0250194 + ] + ] + }, + "id": "way/174197682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197683", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233365, + -0.0248317 + ], + [ + 109.3229838, + -0.023582 + ], + [ + 109.3228162, + -0.0230829 + ], + [ + 109.3226687, + -0.0225893 + ], + [ + 109.3225627, + -0.0220674 + ], + [ + 109.3223052, + -0.0210538 + ], + [ + 109.3222353, + -0.0208227 + ], + [ + 109.3220701, + -0.0201605 + ] + ] + }, + "id": "way/174197683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197687", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276285, + -0.0255635 + ], + [ + 109.3275789, + -0.02551 + ] + ] + }, + "id": "way/174197687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197690", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211961, + -0.0200824 + ], + [ + 109.3212055, + -0.0201286 + ] + ] + }, + "id": "way/174197690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197694", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229315, + -0.0218142 + ], + [ + 109.3228228, + -0.0214349 + ], + [ + 109.322822, + -0.0214275 + ], + [ + 109.3228236, + -0.0214192 + ] + ] + }, + "id": "way/174197694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197695", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231086, + -0.0250194 + ], + [ + 109.3231688, + -0.0251474 + ], + [ + 109.3231776, + -0.0251578 + ], + [ + 109.323195, + -0.0251588 + ], + [ + 109.3232132, + -0.0251535 + ] + ] + }, + "id": "way/174197695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197698", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241331, + -0.024196 + ], + [ + 109.3239239, + -0.0234557 + ], + [ + 109.3238604, + -0.0232693 + ] + ] + }, + "id": "way/174197698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197699", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326812, + -0.0226088 + ], + [ + 109.3268272, + -0.0226645 + ], + [ + 109.3269149, + -0.0229266 + ] + ] + }, + "id": "way/174197699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197700", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226687, + -0.0225893 + ], + [ + 109.3224484, + -0.0226414 + ], + [ + 109.3223709, + -0.0226593 + ], + [ + 109.3223618, + -0.0226593 + ], + [ + 109.3223535, + -0.0226566 + ], + [ + 109.3223462, + -0.0226484 + ] + ] + }, + "id": "way/174197700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197701", + "highway": "residential", + "name": "Gang Famili" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277054, + -0.022709 + ], + [ + 109.3269149, + -0.0229266 + ], + [ + 109.3257943, + -0.0232493 + ] + ] + }, + "id": "way/174197701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197702", + "highway": "tertiary", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337438, + -0.0478753 + ], + [ + 109.3335242, + -0.0476403 + ], + [ + 109.3335001, + -0.0476124 + ], + [ + 109.3334792, + -0.0475808 + ], + [ + 109.3334289, + -0.0475158 + ], + [ + 109.3332687, + -0.0473088 + ], + [ + 109.3330464, + -0.0469708 + ], + [ + 109.3328018, + -0.0465657 + ], + [ + 109.332725, + -0.0464262 + ], + [ + 109.3326266, + -0.0462441 + ], + [ + 109.3325925, + -0.0461748 + ], + [ + 109.3324367, + -0.0458713 + ], + [ + 109.3321781, + -0.0454058 + ], + [ + 109.3318363, + -0.0448179 + ], + [ + 109.3316115, + -0.0444068 + ], + [ + 109.3315491, + -0.0442928 + ], + [ + 109.3312953, + -0.0438293 + ], + [ + 109.3308378, + -0.0429895 + ], + [ + 109.3306919, + -0.0427216 + ] + ] + }, + "id": "way/174197702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197705", + "highway": "tertiary", + "lanes": "2", + "name": "Jalan Alianyang", + "width": "6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277679, + -0.0274755 + ], + [ + 109.3274443, + -0.0277179 + ], + [ + 109.3272874, + -0.0278425 + ], + [ + 109.3271861, + -0.0279091 + ], + [ + 109.3269937, + -0.0280463 + ], + [ + 109.3269156, + -0.0280953 + ], + [ + 109.3265069, + -0.0283534 + ], + [ + 109.3263822, + -0.0284281 + ], + [ + 109.3263184, + -0.028483 + ], + [ + 109.3263017, + -0.0285012 + ], + [ + 109.3262601, + -0.0285655 + ], + [ + 109.32623, + -0.0286291 + ], + [ + 109.3261641, + -0.0287775 + ], + [ + 109.3259662, + -0.0292403 + ], + [ + 109.3259524, + -0.029281 + ], + [ + 109.3258431, + -0.0295765 + ], + [ + 109.3257505, + -0.0298087 + ], + [ + 109.3256941, + -0.0299147 + ], + [ + 109.3255989, + -0.0301212 + ], + [ + 109.3255426, + -0.0302862 + ], + [ + 109.3254729, + -0.0304162 + ], + [ + 109.3254018, + -0.0305584 + ], + [ + 109.3253487, + -0.0306501 + ], + [ + 109.3252943, + -0.030715 + ], + [ + 109.3252044, + -0.0307715 + ], + [ + 109.3249762, + -0.0309257 + ], + [ + 109.3247916, + -0.0310506 + ], + [ + 109.3246352, + -0.0311484 + ], + [ + 109.3239983, + -0.031573 + ], + [ + 109.3239872, + -0.0315801 + ], + [ + 109.3235148, + -0.0318727 + ], + [ + 109.3233378, + -0.031984 + ], + [ + 109.3228664, + -0.0322703 + ] + ] + }, + "id": "way/174197705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197711", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244839, + -0.0237534 + ], + [ + 109.3248413, + -0.0235388 + ], + [ + 109.3250558, + -0.0233752 + ], + [ + 109.3250813, + -0.0233392 + ], + [ + 109.3250974, + -0.0232869 + ], + [ + 109.3251014, + -0.0232492 + ], + [ + 109.3249707, + -0.0228333 + ] + ] + }, + "id": "way/174197711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197713", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242699, + -0.0231117 + ], + [ + 109.3244839, + -0.0237534 + ] + ] + }, + "id": "way/174197713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197714", + "highway": "residential", + "name": "Gang Nuri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278001, + -0.0230527 + ], + [ + 109.3277865, + -0.0230555 + ], + [ + 109.3275398, + -0.0231059 + ], + [ + 109.326457, + -0.0233656 + ], + [ + 109.3263077, + -0.0234014 + ], + [ + 109.3262744, + -0.0234045 + ], + [ + 109.3262387, + -0.0234055 + ], + [ + 109.3262098, + -0.0234057 + ], + [ + 109.3261924, + -0.0234057 + ], + [ + 109.326176, + -0.0234076 + ], + [ + 109.3259789, + -0.0234458 + ] + ] + }, + "id": "way/174197714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197715", + "highway": "residential", + "lanes": "1", + "name": "Jalan Sejarah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185531, + -0.0244195 + ], + [ + 109.3188921, + -0.0243113 + ], + [ + 109.3190718, + -0.0242586 + ], + [ + 109.3194861, + -0.0241372 + ], + [ + 109.3197546, + -0.0240726 + ], + [ + 109.3199185, + -0.024029 + ], + [ + 109.3201543, + -0.0239606 + ], + [ + 109.3203986, + -0.0238949 + ], + [ + 109.3207281, + -0.0238063 + ], + [ + 109.3207911, + -0.0237856 + ], + [ + 109.3210217, + -0.0237291 + ], + [ + 109.3213265, + -0.0236529 + ], + [ + 109.3214612, + -0.0236229 + ], + [ + 109.3216828, + -0.023568 + ], + [ + 109.3219994, + -0.0234921 + ] + ] + }, + "id": "way/174197715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197716", + "highway": "residential", + "name": "Gang Belibis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274434, + -0.0256007 + ], + [ + 109.3275632, + -0.0254892 + ], + [ + 109.3276173, + -0.0254432 + ], + [ + 109.3277641, + -0.0253066 + ], + [ + 109.3279197, + -0.0251645 + ], + [ + 109.3280368, + -0.0250673 + ], + [ + 109.3281096, + -0.0250269 + ], + [ + 109.328139, + -0.0250105 + ], + [ + 109.3282121, + -0.024973 + ], + [ + 109.3283886, + -0.0248941 + ], + [ + 109.3286283, + -0.024787 + ], + [ + 109.3288807, + -0.0246742 + ], + [ + 109.3292031, + -0.0245137 + ], + [ + 109.3292487, + -0.0244923 + ], + [ + 109.3292777, + -0.0244814 + ], + [ + 109.329296, + -0.0244757 + ], + [ + 109.3293218, + -0.0244725 + ], + [ + 109.3294717, + -0.0244824 + ] + ] + }, + "id": "way/174197716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197717", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291851, + -0.0236261 + ], + [ + 109.3293988, + -0.0236072 + ] + ] + }, + "id": "way/174197717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197722", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239946, + -0.021523 + ], + [ + 109.3241868, + -0.0222246 + ], + [ + 109.3242726, + -0.0225411 + ], + [ + 109.3244197, + -0.0230408 + ] + ] + }, + "id": "way/174197722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197724", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278001, + -0.0230527 + ], + [ + 109.3277957, + -0.0232424 + ], + [ + 109.3278265, + -0.0236435 + ] + ] + }, + "id": "way/174197724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197726", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248939, + -0.026039 + ], + [ + 109.3253659, + -0.0257248 + ], + [ + 109.3254078, + -0.0256966 + ], + [ + 109.3254794, + -0.0256543 + ], + [ + 109.3254942, + -0.0256498 + ], + [ + 109.3255092, + -0.0256501 + ], + [ + 109.3255222, + -0.0256557 + ] + ] + }, + "id": "way/174197726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197727", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273411, + -0.0261916 + ], + [ + 109.3273049, + -0.0261205 + ] + ] + }, + "id": "way/174197727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197728", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271564, + -0.0225766 + ], + [ + 109.3268272, + -0.0226645 + ] + ] + }, + "id": "way/174197728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223462, + -0.0226484 + ], + [ + 109.3223333, + -0.022592 + ], + [ + 109.3222261, + -0.0221425 + ], + [ + 109.3221161, + -0.0217498 + ], + [ + 109.3220061, + -0.0213877 + ], + [ + 109.3219659, + -0.021259 + ], + [ + 109.3218304, + -0.0207073 + ] + ] + }, + "id": "way/174197729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197733", + "highway": "residential", + "name": "Gang Nilam 7A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233097, + -0.0230896 + ], + [ + 109.3231273, + -0.022533 + ], + [ + 109.3229838, + -0.021943 + ] + ] + }, + "id": "way/174197733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197735", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246669, + -0.0250382 + ], + [ + 109.3238005, + -0.0256122 + ], + [ + 109.3233634, + -0.0258777 + ], + [ + 109.3229657, + -0.026124 + ] + ] + }, + "id": "way/174197735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197736", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275851, + -0.0259367 + ], + [ + 109.3279499, + -0.0263585 + ], + [ + 109.3280062, + -0.0264108 + ] + ] + }, + "id": "way/174197736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174197740", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241868, + -0.0222246 + ], + [ + 109.3245907, + -0.022116 + ] + ] + }, + "id": "way/174197740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199533", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319603, + -0.0255422 + ], + [ + 109.3193255, + -0.0255904 + ], + [ + 109.3190079, + -0.0256549 + ] + ] + }, + "id": "way/174199533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199537", + "highway": "residential", + "name": "Gang Pancasila I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217359, + -0.0304223 + ], + [ + 109.3229382, + -0.0296129 + ], + [ + 109.323252, + -0.029397 + ] + ] + }, + "id": "way/174199537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199539", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228236, + -0.0214192 + ], + [ + 109.3228277, + -0.0214119 + ], + [ + 109.3228336, + -0.0214074 + ], + [ + 109.3232373, + -0.0212858 + ] + ] + }, + "id": "way/174199539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199540", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192988, + -0.0204406 + ], + [ + 109.3193045, + -0.0204907 + ] + ] + }, + "id": "way/174199540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320067, + -0.0222433 + ], + [ + 109.3204236, + -0.0221656 + ] + ] + }, + "id": "way/174199542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199543", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200411, + -0.0203068 + ], + [ + 109.3200521, + -0.0203586 + ] + ] + }, + "id": "way/174199543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199544", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241393, + -0.0278369 + ], + [ + 109.3227088, + -0.0287209 + ], + [ + 109.322383, + -0.0289249 + ] + ] + }, + "id": "way/174199544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199545", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156317, + -0.0272023 + ], + [ + 109.3160158, + -0.0271683 + ], + [ + 109.316497, + -0.0271122 + ], + [ + 109.316908, + -0.0270581 + ], + [ + 109.3175356, + -0.0269859 + ], + [ + 109.318017, + -0.0269285 + ], + [ + 109.3181376, + -0.0269104 + ], + [ + 109.3183156, + -0.0268836 + ], + [ + 109.3186063, + -0.0268576 + ], + [ + 109.3188894, + -0.02683 + ], + [ + 109.3192869, + -0.0267418 + ] + ] + }, + "id": "way/174199545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199546", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324555, + -0.0284858 + ], + [ + 109.3241822, + -0.0286906 + ], + [ + 109.3231615, + -0.0292253 + ] + ] + }, + "id": "way/174199546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199547", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193239, + -0.0215446 + ], + [ + 109.3195452, + -0.0225437 + ], + [ + 109.3199185, + -0.024029 + ] + ] + }, + "id": "way/174199547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199548", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207305, + -0.02679 + ], + [ + 109.3203995, + -0.0268433 + ] + ] + }, + "id": "way/174199548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199549", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260944, + -0.0272455 + ], + [ + 109.3256009, + -0.027605 + ] + ] + }, + "id": "way/174199549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199550", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195305, + -0.0215084 + ], + [ + 109.3193239, + -0.0215446 + ] + ] + }, + "id": "way/174199550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199551", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257557, + -0.0281974 + ], + [ + 109.3255976, + -0.0283185 + ], + [ + 109.3248089, + -0.0288514 + ] + ] + }, + "id": "way/174199551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199552", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323252, + -0.029397 + ], + [ + 109.3231615, + -0.0292253 + ], + [ + 109.3231266, + -0.0291891 + ], + [ + 109.3230422, + -0.0291252 + ], + [ + 109.322965, + -0.0290852 + ], + [ + 109.3229395, + -0.0290631 + ], + [ + 109.322859, + -0.0289746 + ], + [ + 109.3228282, + -0.0289363 + ], + [ + 109.3227967, + -0.0288827 + ], + [ + 109.3227088, + -0.0287209 + ], + [ + 109.3225224, + -0.0284321 + ], + [ + 109.3224976, + -0.0283831 + ], + [ + 109.3223119, + -0.0281189 + ], + [ + 109.322143, + -0.0278397 + ], + [ + 109.3221219, + -0.0278057 + ], + [ + 109.3219174, + -0.0274424 + ] + ] + }, + "id": "way/174199552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199553", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254165, + -0.027371 + ], + [ + 109.3255123, + -0.0274811 + ], + [ + 109.3256009, + -0.027605 + ], + [ + 109.3257451, + -0.0277901 + ] + ] + }, + "id": "way/174199553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199557", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259784, + -0.0284279 + ], + [ + 109.3257639, + -0.0285868 + ], + [ + 109.3249617, + -0.029121 + ] + ] + }, + "id": "way/174199557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199558", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204256, + -0.0204684 + ], + [ + 109.3207992, + -0.0225116 + ], + [ + 109.3210076, + -0.0236521 + ], + [ + 109.3210217, + -0.0237291 + ] + ] + }, + "id": "way/174199558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199559", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271861, + -0.0279091 + ], + [ + 109.3268123, + -0.027398 + ] + ] + }, + "id": "way/174199559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199560", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3201957, + -0.0228737 + ], + [ + 109.320067, + -0.0222433 + ], + [ + 109.320024, + -0.0221012 + ], + [ + 109.3199489, + -0.0217525 + ], + [ + 109.319713, + -0.0205982 + ], + [ + 109.319707, + -0.0205691 + ] + ] + }, + "id": "way/174199560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199562", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320024, + -0.0221012 + ], + [ + 109.3196911, + -0.0221589 + ] + ] + }, + "id": "way/174199562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199563", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256827, + -0.0281288 + ], + [ + 109.3257099, + -0.0281546 + ], + [ + 109.3257557, + -0.0281974 + ], + [ + 109.3259784, + -0.0284279 + ], + [ + 109.32623, + -0.0286291 + ] + ] + }, + "id": "way/174199563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199564", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246342, + -0.0285947 + ], + [ + 109.325408, + -0.0280364 + ], + [ + 109.3255493, + -0.0279323 + ], + [ + 109.3257451, + -0.0277901 + ] + ] + }, + "id": "way/174199564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199565", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322784, + -0.0273302 + ], + [ + 109.3225913, + -0.0270426 + ], + [ + 109.3224319, + -0.0267347 + ] + ] + }, + "id": "way/174199565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199566", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237347, + -0.0272611 + ], + [ + 109.3235699, + -0.0273583 + ], + [ + 109.3223119, + -0.0281189 + ], + [ + 109.3207604, + -0.0290712 + ] + ] + }, + "id": "way/174199566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199567", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222353, + -0.0208227 + ], + [ + 109.3224661, + -0.0207402 + ], + [ + 109.3224822, + -0.0207375 + ], + [ + 109.3224943, + -0.0207435 + ], + [ + 109.3225024, + -0.0207614 + ] + ] + }, + "id": "way/174199567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199568", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228939, + -0.0199664 + ], + [ + 109.3229025, + -0.0200039 + ], + [ + 109.3230603, + -0.0206957 + ], + [ + 109.3232373, + -0.0212858 + ], + [ + 109.3233955, + -0.0218035 + ], + [ + 109.3236021, + -0.0225438 + ], + [ + 109.3238325, + -0.0232873 + ] + ] + }, + "id": "way/174199568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199576", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219466, + -0.026291 + ], + [ + 109.3219069, + -0.0261486 + ], + [ + 109.3216414, + -0.0249872 + ], + [ + 109.3213265, + -0.0236529 + ] + ] + }, + "id": "way/174199576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199578", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184394, + -0.0206106 + ], + [ + 109.3184562, + -0.0206812 + ] + ] + }, + "id": "way/174199578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199579", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242941, + -0.0280906 + ], + [ + 109.3243799, + -0.0280369 + ], + [ + 109.3247195, + -0.0278159 + ], + [ + 109.3253764, + -0.0273885 + ], + [ + 109.3254165, + -0.027371 + ], + [ + 109.3254501, + -0.0273639 + ], + [ + 109.3254785, + -0.0273605 + ], + [ + 109.3254985, + -0.0273512 + ], + [ + 109.3264533, + -0.0267119 + ], + [ + 109.3270608, + -0.0262765 + ] + ] + }, + "id": "way/174199579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199580", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3209111, + -0.0280479 + ], + [ + 109.3208877, + -0.0280289 + ], + [ + 109.3206624, + -0.027766 + ], + [ + 109.3206049, + -0.0276511 + ], + [ + 109.3205926, + -0.0276265 + ], + [ + 109.3205841, + -0.0275918 + ], + [ + 109.3205231, + -0.0273447 + ], + [ + 109.3204799, + -0.0271708 + ], + [ + 109.3204441, + -0.0270242 + ], + [ + 109.3203995, + -0.0268433 + ], + [ + 109.3203217, + -0.0265217 + ], + [ + 109.3202747, + -0.0263487 + ], + [ + 109.3201501, + -0.0258133 + ], + [ + 109.320095, + -0.0255977 + ], + [ + 109.3200367, + -0.0253395 + ], + [ + 109.319898, + -0.0247056 + ], + [ + 109.3198596, + -0.0245363 + ], + [ + 109.3197546, + -0.0240726 + ] + ] + }, + "id": "way/174199580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199581", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248135, + -0.0213116 + ], + [ + 109.3249936, + -0.0220103 + ], + [ + 109.3251416, + -0.022533 + ], + [ + 109.3252022, + -0.0227157 + ] + ] + }, + "id": "way/174199581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199582", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267542, + -0.0273149 + ], + [ + 109.3264941, + -0.0274951 + ], + [ + 109.3259757, + -0.0278542 + ], + [ + 109.3258976, + -0.0279164 + ], + [ + 109.3258789, + -0.0279263 + ], + [ + 109.3258568, + -0.0279329 + ], + [ + 109.3258393, + -0.0279305 + ], + [ + 109.3258245, + -0.0279138 + ] + ] + }, + "id": "way/174199582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199583", + "highway": "residential", + "name": "Jalan Pancasila V" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202864, + -0.0284763 + ], + [ + 109.3209111, + -0.0280479 + ], + [ + 109.3209789, + -0.028002 + ], + [ + 109.3219174, + -0.0274424 + ], + [ + 109.3225913, + -0.0270426 + ], + [ + 109.3230656, + -0.0267629 + ], + [ + 109.3232768, + -0.0265733 + ] + ] + }, + "id": "way/174199583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207752, + -0.0201605 + ], + [ + 109.3207852, + -0.0202016 + ], + [ + 109.3207877, + -0.0202118 + ] + ] + }, + "id": "way/174199584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199586", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248135, + -0.0213116 + ], + [ + 109.3244054, + -0.0214174 + ], + [ + 109.3239946, + -0.021523 + ], + [ + 109.3239255, + -0.0215375 + ], + [ + 109.323708, + -0.0216358 + ], + [ + 109.3236372, + -0.0216718 + ], + [ + 109.3233955, + -0.0218035 + ], + [ + 109.3229838, + -0.021943 + ], + [ + 109.3228436, + -0.0219855 + ], + [ + 109.3225627, + -0.0220674 + ], + [ + 109.3222261, + -0.0221425 + ], + [ + 109.3220541, + -0.0221747 + ], + [ + 109.3217145, + -0.0222407 + ] + ] + }, + "id": "way/174199586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199588", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156296, + -0.026013 + ], + [ + 109.3157514, + -0.0260047 + ], + [ + 109.3160383, + -0.025965 + ], + [ + 109.3164769, + -0.0259022 + ], + [ + 109.3170848, + -0.0258053 + ], + [ + 109.3176368, + -0.0257434 + ], + [ + 109.3179723, + -0.0257015 + ], + [ + 109.3185054, + -0.0256457 + ], + [ + 109.3188706, + -0.0256122 + ], + [ + 109.318984, + -0.025595 + ] + ] + }, + "id": "way/174199588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199590", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318873, + -0.0275823 + ], + [ + 109.3189263, + -0.0275736 + ], + [ + 109.3192086, + -0.0275273 + ], + [ + 109.3195095, + -0.027472 + ] + ] + }, + "id": "way/174199590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199591", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223561, + -0.0259977 + ], + [ + 109.3227182, + -0.0257532 + ] + ] + }, + "id": "way/174199591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221369, + -0.0256969 + ], + [ + 109.3221028, + -0.025525 + ], + [ + 109.3217996, + -0.0241826 + ], + [ + 109.3216828, + -0.023568 + ] + ] + }, + "id": "way/174199592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199593", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213241, + -0.027014 + ], + [ + 109.3216449, + -0.0268154 + ], + [ + 109.3218912, + -0.0266592 + ], + [ + 109.3226489, + -0.0261787 + ], + [ + 109.3226802, + -0.0262281 + ] + ] + }, + "id": "way/174199593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199594", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211934, + -0.0231177 + ], + [ + 109.3214133, + -0.0230757 + ] + ] + }, + "id": "way/174199594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199596", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221219, + -0.0278057 + ], + [ + 109.322731, + -0.0274308 + ] + ] + }, + "id": "way/174199596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199597", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238904, + -0.0274812 + ], + [ + 109.3245677, + -0.0269935 + ], + [ + 109.3250692, + -0.0266556 + ], + [ + 109.3252919, + -0.026492 + ], + [ + 109.326295, + -0.0257973 + ], + [ + 109.3266418, + -0.0255907 + ] + ] + }, + "id": "way/174199597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199599", + "access": "yes", + "highway": "unclassified", + "name": "Jalan Gusti Hamzah", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317763, + -0.0207617 + ], + [ + 109.3177763, + -0.0208052 + ] + ] + }, + "id": "way/174199599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199601", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322143, + -0.0278397 + ], + [ + 109.3216575, + -0.0281147 + ] + ] + }, + "id": "way/174199601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199602", + "highway": "residential", + "name": "Gang Setia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251537, + -0.0272175 + ], + [ + 109.325949, + -0.0266583 + ], + [ + 109.3269291, + -0.026059 + ] + ] + }, + "id": "way/174199602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/174199603", + "highway": "residential", + "name": "Gang Tani III B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239145, + -0.0275201 + ], + [ + 109.3224976, + -0.0283831 + ] + ] + }, + "id": "way/174199603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174436", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092759, + -0.0119873 + ], + [ + 109.3093393, + -0.0120038 + ] + ] + }, + "id": "way/180174436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174437", + "highway": "unclassified", + "lanes": "2", + "name": "Jalan Tabrani Ahmad", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128965, + -0.0168541 + ], + [ + 109.31235, + -0.0169492 + ], + [ + 109.3122561, + -0.016964 + ], + [ + 109.3119933, + -0.0170283 + ], + [ + 109.3116074, + -0.0171061 + ], + [ + 109.3113765, + -0.0171527 + ], + [ + 109.3113314, + -0.017164 + ], + [ + 109.3110599, + -0.0172321 + ], + [ + 109.3106239, + -0.0173716 + ], + [ + 109.3102498, + -0.0175015 + ], + [ + 109.3099498, + -0.0176057 + ], + [ + 109.3096572, + -0.0177073 + ], + [ + 109.3095466, + -0.0177457 + ], + [ + 109.3093053, + -0.0178474 + ], + [ + 109.3090977, + -0.0179531 + ], + [ + 109.3089598, + -0.0180349 + ], + [ + 109.3088253, + -0.018107 + ], + [ + 109.3085932, + -0.0182365 + ], + [ + 109.3080186, + -0.0185174 + ], + [ + 109.3077014, + -0.0186492 + ], + [ + 109.3074936, + -0.018743 + ], + [ + 109.3073975, + -0.0187773 + ], + [ + 109.307212, + -0.0188478 + ], + [ + 109.3069176, + -0.0189571 + ], + [ + 109.3066037, + -0.0190917 + ], + [ + 109.3064235, + -0.0191587 + ], + [ + 109.3062723, + -0.019213 + ], + [ + 109.3060988, + -0.0192835 + ], + [ + 109.3060199, + -0.0193156 + ], + [ + 109.3058636, + -0.0193805 + ], + [ + 109.3055405, + -0.0195153 + ], + [ + 109.3054284, + -0.0195698 + ], + [ + 109.305234, + -0.0196593 + ], + [ + 109.3051364, + -0.0197042 + ], + [ + 109.3049214, + -0.0198031 + ], + [ + 109.304833, + -0.0198438 + ], + [ + 109.304703, + -0.0199037 + ], + [ + 109.3046246, + -0.0199375 + ], + [ + 109.3043955, + -0.0200363 + ], + [ + 109.3042892, + -0.0200821 + ], + [ + 109.3039365, + -0.0202341 + ], + [ + 109.3036894, + -0.0203126 + ], + [ + 109.3034439, + -0.0204176 + ], + [ + 109.303327, + -0.0204626 + ], + [ + 109.3030883, + -0.0205718 + ], + [ + 109.3029877, + -0.020616 + ], + [ + 109.3029141, + -0.0206521 + ], + [ + 109.3028013, + -0.0207039 + ], + [ + 109.3026839, + -0.0207509 + ], + [ + 109.3025005, + -0.0208246 + ], + [ + 109.302332, + -0.020896 + ], + [ + 109.3021643, + -0.0209687 + ], + [ + 109.3020927, + -0.0209976 + ], + [ + 109.301912, + -0.021072 + ], + [ + 109.3017881, + -0.0211359 + ], + [ + 109.3015062, + -0.0212828 + ], + [ + 109.3013962, + -0.0213321 + ], + [ + 109.3010735, + -0.0214767 + ], + [ + 109.3009149, + -0.0215602 + ], + [ + 109.3007134, + -0.0216495 + ], + [ + 109.3005391, + -0.0217266 + ], + [ + 109.3005205, + -0.0217363 + ], + [ + 109.3003667, + -0.0218144 + ], + [ + 109.3002442, + -0.0218801 + ], + [ + 109.3000589, + -0.0219766 + ], + [ + 109.2999604, + -0.0220238 + ], + [ + 109.2996457, + -0.0221747 + ], + [ + 109.2993394, + -0.0223126 + ], + [ + 109.2991997, + -0.0223733 + ], + [ + 109.2990477, + -0.0224434 + ], + [ + 109.2989364, + -0.0224969 + ], + [ + 109.2987445, + -0.0225963 + ], + [ + 109.2985848, + -0.0226939 + ], + [ + 109.2983914, + -0.0228185 + ], + [ + 109.2981535, + -0.0229712 + ], + [ + 109.297953, + -0.0231069 + ], + [ + 109.2976829, + -0.0232955 + ], + [ + 109.2974299, + -0.0234549 + ], + [ + 109.2973586, + -0.0234998 + ], + [ + 109.2972989, + -0.0235379 + ], + [ + 109.2971892, + -0.023615 + ], + [ + 109.2969716, + -0.0237594 + ], + [ + 109.2966906, + -0.0239554 + ], + [ + 109.296513, + -0.0240558 + ], + [ + 109.29636, + -0.0241436 + ], + [ + 109.2960775, + -0.0243391 + ], + [ + 109.2959169, + -0.0244503 + ], + [ + 109.2957644, + -0.0245474 + ] + ] + }, + "id": "way/180174437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174438", + "highway": "unclassified", + "name": "Jalan Sawo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122561, + -0.016964 + ], + [ + 109.3122912, + -0.0164157 + ], + [ + 109.3123057, + -0.0161522 + ], + [ + 109.3123191, + -0.0159846 + ], + [ + 109.3123515, + -0.0155615 + ], + [ + 109.3123973, + -0.0151442 + ], + [ + 109.3124105, + -0.0150103 + ], + [ + 109.3124398, + -0.014677 + ], + [ + 109.3124412, + -0.0146447 + ], + [ + 109.312445, + -0.0144803 + ], + [ + 109.3124496, + -0.0143082 + ], + [ + 109.3124537, + -0.0142251 + ], + [ + 109.3124598, + -0.0139206 + ], + [ + 109.3124623, + -0.0138255 + ], + [ + 109.3124685, + -0.0135072 + ], + [ + 109.312473, + -0.013422 + ], + [ + 109.3124782, + -0.0133742 + ], + [ + 109.3124998, + -0.0131764 + ], + [ + 109.3125209, + -0.0130119 + ], + [ + 109.3125471, + -0.0128672 + ], + [ + 109.3125536, + -0.0128339 + ], + [ + 109.3126068, + -0.0126013 + ], + [ + 109.3126445, + -0.0124793 + ], + [ + 109.3126801, + -0.0123642 + ], + [ + 109.3127243, + -0.0122211 + ], + [ + 109.312747, + -0.0121476 + ], + [ + 109.3128145, + -0.011889 + ], + [ + 109.3128205, + -0.0118661 + ], + [ + 109.3128853, + -0.0116234 + ], + [ + 109.3129454, + -0.0114208 + ], + [ + 109.3129736, + -0.0113281 + ], + [ + 109.3131031, + -0.0110327 + ], + [ + 109.3131868, + -0.0108343 + ] + ] + }, + "id": "way/180174438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174439", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309156, + -0.0138925 + ], + [ + 109.3106816, + -0.0144463 + ], + [ + 109.311194, + -0.0146499 + ], + [ + 109.3113437, + -0.0147166 + ], + [ + 109.3113597, + -0.0147238 + ], + [ + 109.3113697, + -0.0147287 + ], + [ + 109.3113909, + -0.0147383 + ], + [ + 109.3113987, + -0.0147288 + ], + [ + 109.3114045, + -0.014721 + ], + [ + 109.3114122, + -0.0147121 + ], + [ + 109.3114197, + -0.0147008 + ] + ] + }, + "id": "way/180174439" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174442", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094046, + -0.0114549 + ], + [ + 109.309482, + -0.0114811 + ] + ] + }, + "id": "way/180174442" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174443", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095604, + -0.0109604 + ], + [ + 109.3096437, + -0.0109953 + ] + ] + }, + "id": "way/180174443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174444", + "highway": "residential", + "lanes": "1", + "name": "Gang Bersama 1 B", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091196, + -0.0143332 + ], + [ + 109.309324, + -0.0144115 + ], + [ + 109.310046, + -0.0147213 + ], + [ + 109.3102966, + -0.0148147 + ], + [ + 109.3104737, + -0.0148808 + ], + [ + 109.3112873, + -0.0151811 + ], + [ + 109.3112945, + -0.0151835 + ], + [ + 109.3123515, + -0.0155615 + ] + ] + }, + "id": "way/180174444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174445", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091811, + -0.0133547 + ], + [ + 109.310447, + -0.0138357 + ], + [ + 109.3107354, + -0.013945 + ], + [ + 109.3107553, + -0.0139528 + ], + [ + 109.3124412, + -0.0146447 + ] + ] + }, + "id": "way/180174445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174446", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092415, + -0.012774 + ], + [ + 109.3095513, + -0.0128451 + ], + [ + 109.309908, + -0.0129537 + ], + [ + 109.3102189, + -0.013077 + ], + [ + 109.3116566, + -0.0136148 + ], + [ + 109.3124598, + -0.0139206 + ] + ] + }, + "id": "way/180174446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174447", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089927, + -0.0151228 + ], + [ + 109.3090654, + -0.0151416 + ] + ] + }, + "id": "way/180174447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180174448", + "access": "yes", + "bicycle": "yes", + "cycleway": "no", + "foot": "yes", + "highway": "unclassified", + "horse": "no", + "maxspeed": "40", + "name": "Jalan Tebu", + "oneway": "no", + "sidewalk": "no", + "surface": "asphalt", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105864, + -0.0067309 + ], + [ + 109.3105638, + -0.0071637 + ], + [ + 109.3104965, + -0.0075855 + ], + [ + 109.3103801, + -0.008117 + ], + [ + 109.3102829, + -0.0084545 + ], + [ + 109.3101727, + -0.0088125 + ], + [ + 109.3101194, + -0.0089899 + ], + [ + 109.310033, + -0.0092665 + ], + [ + 109.3099695, + -0.0094921 + ], + [ + 109.3099181, + -0.0096514 + ], + [ + 109.3098727, + -0.0098009 + ], + [ + 109.3098244, + -0.0099602 + ], + [ + 109.3097804, + -0.0100903 + ], + [ + 109.3097233, + -0.0102899 + ], + [ + 109.3096484, + -0.0105243 + ], + [ + 109.3096136, + -0.0106392 + ], + [ + 109.3095519, + -0.0108455 + ], + [ + 109.3095208, + -0.0109463 + ], + [ + 109.3093721, + -0.0114462 + ], + [ + 109.3093319, + -0.0116214 + ], + [ + 109.3093127, + -0.0117 + ], + [ + 109.3092545, + -0.0119816 + ], + [ + 109.3092368, + -0.0121273 + ], + [ + 109.3092048, + -0.0123474 + ], + [ + 109.3091484, + -0.0127558 + ], + [ + 109.3091194, + -0.013229 + ], + [ + 109.3091092, + -0.0133294 + ], + [ + 109.3090803, + -0.0136434 + ], + [ + 109.3090604, + -0.0138691 + ], + [ + 109.3090512, + -0.0140711 + ], + [ + 109.3090433, + -0.0142528 + ], + [ + 109.3090404, + -0.0143273 + ], + [ + 109.3090257, + -0.014613 + ], + [ + 109.3090056, + -0.0147916 + ], + [ + 109.3089763, + -0.0151202 + ], + [ + 109.3089739, + -0.0151467 + ], + [ + 109.3089513, + -0.0154858 + ], + [ + 109.3089457, + -0.0156728 + ], + [ + 109.3089359, + -0.0158176 + ], + [ + 109.3089228, + -0.0159739 + ], + [ + 109.3089102, + -0.0161912 + ], + [ + 109.3089053, + -0.0163024 + ], + [ + 109.3088953, + -0.01653 + ], + [ + 109.3088635, + -0.0170729 + ], + [ + 109.3088558, + -0.0172048 + ], + [ + 109.3088516, + -0.0172768 + ], + [ + 109.3088398, + -0.0178038 + ], + [ + 109.3088406, + -0.0178467 + ] + ] + }, + "id": "way/180174448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189152", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375138, + -0.0127528 + ], + [ + 109.3375666, + -0.0127052 + ], + [ + 109.3377586, + -0.0125607 + ], + [ + 109.3382334, + -0.0121611 + ], + [ + 109.338661, + -0.0119384 + ], + [ + 109.3388747, + -0.0118329 + ], + [ + 109.339021, + -0.0117608 + ], + [ + 109.3393948, + -0.0115763 + ], + [ + 109.33946, + -0.0115418 + ], + [ + 109.3395989, + -0.0114683 + ], + [ + 109.3402462, + -0.0111257 + ], + [ + 109.3403815, + -0.0110536 + ], + [ + 109.3410113, + -0.0107175 + ], + [ + 109.3412884, + -0.0105705 + ], + [ + 109.3417293, + -0.0103306 + ], + [ + 109.3420662, + -0.0101655 + ] + ] + }, + "id": "way/180189152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189153", + "highway": "tertiary", + "name": "Budi Utomo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280876, + -0.0035241 + ], + [ + 109.328356, + -0.0031515 + ], + [ + 109.3286164, + -0.0027426 + ], + [ + 109.3288796, + -0.002288 + ], + [ + 109.3289582, + -0.0021564 + ], + [ + 109.3290633, + -0.0019528 + ], + [ + 109.3292586, + -0.0014859 + ], + [ + 109.3292866, + -0.001422 + ], + [ + 109.3293095, + -0.0013698 + ], + [ + 109.3293198, + -0.0013464 + ], + [ + 109.32954, + -0.0008443 + ], + [ + 109.3295963, + -0.0007158 + ], + [ + 109.3296609, + -0.0005686 + ], + [ + 109.3298078, + -0.0002928 + ], + [ + 109.3298429, + -0.0002269 + ], + [ + 109.3299513, + -0.0000235 + ], + [ + 109.3300709, + 0.0001628 + ], + [ + 109.330204, + 0.0003702 + ], + [ + 109.3309987, + 0.0012079 + ], + [ + 109.3310288, + 0.0012392 + ], + [ + 109.3312702, + 0.0015075 + ], + [ + 109.3317633, + 0.002244 + ], + [ + 109.3318338, + 0.0023685 + ], + [ + 109.3321496, + 0.00292 + ], + [ + 109.3324262, + 0.0033713 + ], + [ + 109.3324439, + 0.0034118 + ], + [ + 109.3324601, + 0.0034605 + ], + [ + 109.3324944, + 0.0038621 + ], + [ + 109.3325287, + 0.0042642 + ], + [ + 109.3325306, + 0.0042855 + ], + [ + 109.3325358, + 0.0043469 + ], + [ + 109.3325634, + 0.004631 + ], + [ + 109.3326002, + 0.0050094 + ], + [ + 109.3326086, + 0.005077 + ], + [ + 109.3326811, + 0.0056602 + ], + [ + 109.3327403, + 0.0061369 + ], + [ + 109.3327577, + 0.0061731 + ], + [ + 109.332795, + 0.0062124 + ], + [ + 109.3330514, + 0.0062415 + ], + [ + 109.3332066, + 0.0062465 + ], + [ + 109.3339853, + 0.0062716 + ], + [ + 109.3340519, + 0.0062695 + ] + ] + }, + "id": "way/180189153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189155", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3603561, + -0.0101411 + ], + [ + 109.3609183, + -0.0101287 + ], + [ + 109.3613367, + -0.0101005 + ], + [ + 109.3615727, + -0.0100804 + ], + [ + 109.3618367, + -0.0100636 + ], + [ + 109.3619649, + -0.0100615 + ], + [ + 109.3620428, + -0.0100603 + ], + [ + 109.3621641, + -0.0100556 + ], + [ + 109.3623184, + -0.0100519 + ], + [ + 109.362761, + -0.0100419 + ], + [ + 109.3628186, + -0.0100406 + ], + [ + 109.3628335, + -0.0100387 + ], + [ + 109.3628521, + -0.0100383 + ], + [ + 109.3632961, + -0.010028 + ], + [ + 109.3634776, + -0.0100236 + ], + [ + 109.3637051, + -0.0100087 + ], + [ + 109.3639988, + -0.0100006 + ], + [ + 109.3641429, + -0.0099932 + ], + [ + 109.3642046, + -0.0099872 + ], + [ + 109.3642247, + -0.0099785 + ], + [ + 109.3642308, + -0.0099684 + ] + ] + }, + "id": "way/180189155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189156", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693265, + 0.0007221 + ], + [ + 109.3689539, + -0.0007108 + ], + [ + 109.3688805, + -0.0010249 + ], + [ + 109.3687741, + -0.0015083 + ], + [ + 109.3686889, + -0.0020358 + ], + [ + 109.3686017, + -0.002633 + ], + [ + 109.3685561, + -0.0029451 + ], + [ + 109.3684781, + -0.0033592 + ], + [ + 109.368397, + -0.0038203 + ], + [ + 109.368315, + -0.0043019 + ], + [ + 109.3682908, + -0.0044745 + ], + [ + 109.3682579, + -0.0047099 + ] + ] + }, + "id": "way/180189156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189157", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3694313, + -0.0422624 + ], + [ + 109.3693466, + -0.0423252 + ], + [ + 109.3684705, + -0.0428937 + ], + [ + 109.3671916, + -0.0437518 + ], + [ + 109.365701, + -0.0446927 + ] + ] + }, + "id": "way/180189157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189159", + "highway": "residential", + "name": "Jalan Kompleks Bali Lestari Blok B-C" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693369, + -0.0419395 + ], + [ + 109.3692139, + -0.04201 + ], + [ + 109.3682919, + -0.0426113 + ], + [ + 109.3670011, + -0.0434407 + ], + [ + 109.365457, + -0.0444268 + ] + ] + }, + "id": "way/180189159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189160", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421923, + -0.0103559 + ], + [ + 109.3415566, + -0.0108441 + ], + [ + 109.3407841, + -0.0114878 + ], + [ + 109.3401316, + -0.0120266 + ], + [ + 109.3399335, + -0.0121875 + ], + [ + 109.3396764, + -0.0124025 + ], + [ + 109.3392011, + -0.0128342 + ], + [ + 109.3390598, + -0.0129626 + ], + [ + 109.3390495, + -0.0129692 + ], + [ + 109.3390321, + -0.0129732 + ], + [ + 109.3390113, + -0.0129725 + ], + [ + 109.3389516, + -0.0129745 + ], + [ + 109.3389275, + -0.0129819 + ], + [ + 109.338906, + -0.0129973 + ], + [ + 109.3380813, + -0.0138784 + ] + ] + }, + "id": "way/180189160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189163", + "highway": "residential", + "name": "Gang Wartawan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648943, + -0.0130409 + ], + [ + 109.3648857, + -0.0131214 + ], + [ + 109.3648809, + -0.013167 + ], + [ + 109.364841, + -0.0134392 + ], + [ + 109.3648313, + -0.0135055 + ], + [ + 109.3648061, + -0.0136766 + ], + [ + 109.3647972, + -0.0137374 + ], + [ + 109.364735, + -0.0141607 + ], + [ + 109.3646693, + -0.0146395 + ], + [ + 109.3646149, + -0.0150571 + ] + ] + }, + "id": "way/180189163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189164", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3393627, + -0.0084566 + ], + [ + 109.3392675, + -0.0083216 + ], + [ + 109.3392547, + -0.0083095 + ], + [ + 109.3392306, + -0.0083034 + ], + [ + 109.3392064, + -0.0083061 + ], + [ + 109.3390687, + -0.0083445 + ], + [ + 109.3390207, + -0.0083519 + ], + [ + 109.3386223, + -0.0084758 + ], + [ + 109.3384104, + -0.0085482 + ], + [ + 109.3378552, + -0.0086688 + ], + [ + 109.3377416, + -0.008684 + ], + [ + 109.3373348, + -0.0087654 + ], + [ + 109.3366991, + -0.0088432 + ], + [ + 109.3362654, + -0.0088748 + ], + [ + 109.3362144, + -0.0088828 + ], + [ + 109.3361735, + -0.0088996 + ], + [ + 109.3361295, + -0.0089293 + ], + [ + 109.3358623, + -0.0091919 + ], + [ + 109.3356421, + -0.0094228 + ], + [ + 109.3351435, + -0.0099456 + ], + [ + 109.334732, + -0.0103875 + ] + ] + }, + "id": "way/180189164" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189165", + "highway": "residential", + "name": "Teluk Pari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312959, + -0.0043901 + ], + [ + 109.3313114, + -0.0043787 + ], + [ + 109.3313241, + -0.0043505 + ], + [ + 109.3314352, + -0.0040769 + ], + [ + 109.331483, + -0.0039234 + ], + [ + 109.3315009, + -0.0037443 + ], + [ + 109.331536, + -0.0032381 + ], + [ + 109.3315494, + -0.0032086 + ], + [ + 109.3315749, + -0.0031965 + ], + [ + 109.331678, + -0.0032052 + ], + [ + 109.3317278, + -0.0032039 + ], + [ + 109.3322605, + -0.0033174 + ], + [ + 109.3323379, + -0.0033339 + ], + [ + 109.3323976, + -0.0033607 + ] + ] + }, + "id": "way/180189165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189166", + "highway": "unclassified", + "name": "Jalan Dharma Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.338326, + -0.009269 + ], + [ + 109.3383421, + -0.0092382 + ], + [ + 109.3383555, + -0.0092258 + ], + [ + 109.3384625, + -0.0091737 + ], + [ + 109.3385554, + -0.0091036 + ], + [ + 109.3388127, + -0.0088941 + ], + [ + 109.3391751, + -0.008609 + ], + [ + 109.3393627, + -0.0084566 + ], + [ + 109.3395466, + -0.0083095 + ], + [ + 109.3398438, + -0.0080641 + ], + [ + 109.3398575, + -0.0080528 + ], + [ + 109.3401478, + -0.0078103 + ], + [ + 109.3404259, + -0.0075638 + ], + [ + 109.3404699, + -0.0075318 + ], + [ + 109.340665, + -0.0073897 + ], + [ + 109.3409458, + -0.0071852 + ], + [ + 109.341104, + -0.00707 + ], + [ + 109.3413926, + -0.0068598 + ], + [ + 109.3414265, + -0.0068351 + ], + [ + 109.341472, + -0.006802 + ], + [ + 109.3416829, + -0.0066801 + ], + [ + 109.341737, + -0.0066488 + ], + [ + 109.3417935, + -0.0066161 + ], + [ + 109.3420124, + -0.0064888 + ], + [ + 109.3420864, + -0.0064468 + ], + [ + 109.3423907, + -0.0062709 + ], + [ + 109.3425157, + -0.0061783 + ], + [ + 109.3425463, + -0.0060886 + ], + [ + 109.342573, + -0.005756 + ], + [ + 109.3425699, + -0.005712 + ], + [ + 109.3425462, + -0.0053434 + ], + [ + 109.3425355, + -0.0052195 + ], + [ + 109.342507, + -0.0049155 + ], + [ + 109.3425033, + -0.0047099 + ], + [ + 109.3425032, + -0.0045361 + ], + [ + 109.3425194, + -0.0043129 + ], + [ + 109.3425443, + -0.0041328 + ], + [ + 109.34255, + -0.0040884 + ], + [ + 109.3426214, + -0.0037416 + ], + [ + 109.3426697, + -0.0034186 + ], + [ + 109.3426918, + -0.0033031 + ], + [ + 109.3427769, + -0.002945 + ], + [ + 109.3427896, + -0.0028806 + ], + [ + 109.3428323, + -0.0026915 + ], + [ + 109.3428708, + -0.0025212 + ], + [ + 109.3429604, + -0.0023294 + ], + [ + 109.3430317, + -0.0022369 + ], + [ + 109.3432259, + -0.0019834 + ], + [ + 109.3433348, + -0.0018399 + ], + [ + 109.3434907, + -0.0016309 + ], + [ + 109.3435843, + -0.0014913 + ], + [ + 109.3436354, + -0.001388 + ], + [ + 109.3436825, + -0.0012521 + ], + [ + 109.3437092, + -0.0011824 + ], + [ + 109.3437912, + -0.0008911 + ], + [ + 109.3438086, + -0.0007755 + ], + [ + 109.3438669, + -0.0005154 + ], + [ + 109.343913, + -0.0003283 + ], + [ + 109.3439236, + 0.0000523 + ], + [ + 109.3439238, + 0.0001073 + ], + [ + 109.3439162, + 0.0002989 + ], + [ + 109.3439091, + 0.0004801 + ], + [ + 109.3439084, + 0.0007702 + ], + [ + 109.3439106, + 0.0009147 + ], + [ + 109.3439148, + 0.0011909 + ], + [ + 109.343914, + 0.0013107 + ], + [ + 109.3439195, + 0.0015021 + ], + [ + 109.3439206, + 0.0015624 + ], + [ + 109.3439149, + 0.0017344 + ], + [ + 109.3438849, + 0.0019741 + ], + [ + 109.3438259, + 0.0023335 + ], + [ + 109.3437843, + 0.0025075 + ], + [ + 109.3437101, + 0.0027999 + ], + [ + 109.3436671, + 0.0030873 + ], + [ + 109.3436033, + 0.003334 + ], + [ + 109.3435488, + 0.0036016 + ], + [ + 109.3435151, + 0.0037308 + ], + [ + 109.343396, + 0.0041262 + ], + [ + 109.3433774, + 0.0042212 + ], + [ + 109.3432815, + 0.0047089 + ] + ] + }, + "id": "way/180189166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189167", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420662, + -0.0101655 + ], + [ + 109.3421923, + -0.0103559 + ], + [ + 109.3422144, + -0.0103771 + ], + [ + 109.3424793, + -0.0106322 + ], + [ + 109.3426178, + -0.0107113 + ], + [ + 109.3429767, + -0.0109165 + ], + [ + 109.3430023, + -0.0109277 + ], + [ + 109.3430396, + -0.0109441 + ], + [ + 109.3434397, + -0.0111196 + ], + [ + 109.3440591, + -0.0113913 + ], + [ + 109.3446707, + -0.0116568 + ] + ] + }, + "id": "way/180189167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189168", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304179, + -0.0042909 + ], + [ + 109.3304691, + -0.0042848 + ], + [ + 109.3305181, + -0.0042875 + ], + [ + 109.3311254, + -0.0043773 + ], + [ + 109.3312959, + -0.0043901 + ] + ] + }, + "id": "way/180189168" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189169", + "highway": "residential", + "name": "Gang Teluk Betung II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360688, + -0.0077867 + ], + [ + 109.3360528, + -0.0079118 + ], + [ + 109.3360421, + -0.0079387 + ], + [ + 109.3360099, + -0.0079702 + ], + [ + 109.335975, + -0.0079943 + ], + [ + 109.3358892, + -0.0080346 + ], + [ + 109.335845, + -0.0080694 + ], + [ + 109.3356787, + -0.0082572 + ], + [ + 109.3353312, + -0.0086548 + ], + [ + 109.3346082, + -0.0094386 + ], + [ + 109.3342524, + -0.0098405 + ] + ] + }, + "id": "way/180189169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189171", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725048, + 0.0005519 + ], + [ + 109.3724427, + 0.0005367 + ], + [ + 109.3724046, + 0.0005305 + ], + [ + 109.3719006, + 0.0005338 + ], + [ + 109.3715274, + 0.0005458 + ], + [ + 109.3697626, + 0.0007055 + ], + [ + 109.3695918, + 0.0007222 + ], + [ + 109.3694584, + 0.0007242 + ], + [ + 109.3693265, + 0.0007221 + ], + [ + 109.3692584, + 0.0007203 + ], + [ + 109.3681815, + 0.0005955 + ], + [ + 109.367954, + 0.000561 + ], + [ + 109.367719, + 0.0005284 + ], + [ + 109.367307, + 0.000499 + ], + [ + 109.3670385, + 0.0005067 + ], + [ + 109.36612, + 0.0005525 + ] + ] + }, + "id": "way/180189171" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189174", + "highway": "residential", + "name": "Gang. Al-Huda", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650348, + -0.0439721 + ], + [ + 109.3647431, + -0.0442497 + ], + [ + 109.3645278, + -0.044465 + ], + [ + 109.3643126, + -0.0446735 + ], + [ + 109.3641369, + -0.0448338 + ], + [ + 109.3639009, + -0.0450417 + ], + [ + 109.3635951, + -0.0453095 + ], + [ + 109.3634275, + -0.0454547 + ], + [ + 109.3632813, + -0.0455835 + ], + [ + 109.3631136, + -0.0457337 + ], + [ + 109.3628854, + -0.0459341 + ] + ] + }, + "id": "way/180189174" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189175", + "highway": "residential", + "name": "Gang Teluk Betung I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348688, + -0.0079799 + ], + [ + 109.3348124, + -0.0080333 + ], + [ + 109.3346606, + -0.0081772 + ], + [ + 109.3346252, + -0.0082144 + ], + [ + 109.3342144, + -0.0086463 + ], + [ + 109.333696, + -0.0091914 + ] + ] + }, + "id": "way/180189175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189177", + "highway": "residential", + "name": "Gang Teluk Betung I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348688, + -0.0079799 + ], + [ + 109.3349342, + -0.0079086 + ], + [ + 109.3350206, + -0.00781 + ], + [ + 109.3351347, + -0.0076875 + ], + [ + 109.3352076, + -0.0076092 + ], + [ + 109.3353005, + -0.0075236 + ], + [ + 109.3354547, + -0.0073841 + ], + [ + 109.3356161, + -0.0072733 + ], + [ + 109.335671, + -0.007248 + ], + [ + 109.3361241, + -0.0070396 + ], + [ + 109.3367929, + -0.0065633 + ] + ] + }, + "id": "way/180189177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189178", + "highway": "residential", + "name": "Jalan Haji Yusuf Karim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604375, + -0.0431477 + ], + [ + 109.3624176, + -0.0412725 + ] + ] + }, + "id": "way/180189178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189179", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304179, + -0.0042909 + ], + [ + 109.3303416, + -0.0042988 + ], + [ + 109.3301775, + -0.0042721 + ], + [ + 109.3301016, + -0.0042405 + ], + [ + 109.3300659, + -0.004208 + ] + ] + }, + "id": "way/180189179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189181", + "highway": "residential", + "name": "Gang Teluk Betung Maju" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379624, + -0.0080814 + ], + [ + 109.3378706, + -0.0081035 + ], + [ + 109.3376451, + -0.0081506 + ], + [ + 109.3375399, + -0.0081726 + ], + [ + 109.3371578, + -0.0081807 + ], + [ + 109.3365383, + -0.0082297 + ], + [ + 109.3365933, + -0.0083598 + ], + [ + 109.3365899, + -0.0083759 + ], + [ + 109.3365772, + -0.0083899 + ], + [ + 109.3365638, + -0.0083967 + ], + [ + 109.3360447, + -0.0085025 + ], + [ + 109.3360059, + -0.0085241 + ], + [ + 109.3356266, + -0.0089361 + ], + [ + 109.3348932, + -0.009719 + ], + [ + 109.3344948, + -0.0101185 + ] + ] + }, + "id": "way/180189181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189183", + "highway": "tertiary", + "name": "Jalan Tanjung Raya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561439, + -0.0347349 + ], + [ + 109.3561676, + -0.0347566 + ], + [ + 109.3561905, + -0.0347782 + ], + [ + 109.3562316, + -0.0348198 + ], + [ + 109.3563417, + -0.0349311 + ], + [ + 109.3564195, + -0.0350042 + ], + [ + 109.3565121, + -0.0350947 + ], + [ + 109.3565915, + -0.0351725 + ], + [ + 109.3566676, + -0.0352536 + ], + [ + 109.3568312, + -0.0354166 + ], + [ + 109.3569405, + -0.0355272 + ], + [ + 109.3570053, + -0.0355879 + ], + [ + 109.35708, + -0.035658 + ], + [ + 109.3571806, + -0.0357512 + ], + [ + 109.3573797, + -0.0359423 + ], + [ + 109.3575521, + -0.0361159 + ], + [ + 109.3576688, + -0.036236 + ], + [ + 109.3577378, + -0.0363131 + ], + [ + 109.3578612, + -0.036464 + ], + [ + 109.3580738, + -0.0367248 + ], + [ + 109.3581214, + -0.0367885 + ], + [ + 109.3582964, + -0.0370071 + ], + [ + 109.3584754, + -0.0372344 + ], + [ + 109.3585103, + -0.0372827 + ], + [ + 109.3585981, + -0.0373933 + ], + [ + 109.3588328, + -0.0376663 + ], + [ + 109.3588711, + -0.0377098 + ], + [ + 109.3590072, + -0.0378815 + ], + [ + 109.3590427, + -0.0379231 + ], + [ + 109.3591296, + -0.0380324 + ], + [ + 109.3591899, + -0.0381075 + ], + [ + 109.3593156, + -0.0382476 + ], + [ + 109.3594316, + -0.0383623 + ], + [ + 109.3595854, + -0.0385105 + ], + [ + 109.3596142, + -0.038539 + ], + [ + 109.3597518, + -0.0386801 + ], + [ + 109.359897, + -0.0388226 + ], + [ + 109.3600194, + -0.038941 + ], + [ + 109.3600512, + -0.0389725 + ], + [ + 109.3603523, + -0.0392682 + ], + [ + 109.3603878, + -0.0393024 + ], + [ + 109.3606205, + -0.0395317 + ], + [ + 109.3608445, + -0.0397463 + ], + [ + 109.3610021, + -0.0398885 + ], + [ + 109.3610547, + -0.0399404 + ], + [ + 109.3611033, + -0.0399884 + ], + [ + 109.3611965, + -0.0400816 + ], + [ + 109.3613461, + -0.0402224 + ], + [ + 109.3614091, + -0.0402821 + ], + [ + 109.3614728, + -0.0403384 + ], + [ + 109.3615935, + -0.0404484 + ], + [ + 109.3616686, + -0.0405201 + ], + [ + 109.3617678, + -0.0406167 + ], + [ + 109.3618356, + -0.0406864 + ], + [ + 109.3620092, + -0.0408614 + ], + [ + 109.362081, + -0.0409332 + ], + [ + 109.3622312, + -0.0410861 + ], + [ + 109.3624176, + -0.0412725 + ], + [ + 109.3625772, + -0.0414334 + ], + [ + 109.3626899, + -0.0415568 + ], + [ + 109.3628213, + -0.0416882 + ], + [ + 109.363177, + -0.0421022 + ], + [ + 109.3633739, + -0.0423159 + ], + [ + 109.3633993, + -0.042332 + ], + [ + 109.3635754, + -0.0425085 + ], + [ + 109.3636144, + -0.0425499 + ], + [ + 109.3638411, + -0.0427847 + ], + [ + 109.3639523, + -0.0429086 + ], + [ + 109.3641041, + -0.0430468 + ], + [ + 109.3642467, + -0.0431968 + ], + [ + 109.3645509, + -0.0434926 + ], + [ + 109.3646917, + -0.0436399 + ], + [ + 109.3649059, + -0.0438478 + ], + [ + 109.3650348, + -0.0439721 + ], + [ + 109.365307, + -0.0442712 + ], + [ + 109.365457, + -0.0444268 + ], + [ + 109.3656235, + -0.0446088 + ], + [ + 109.365701, + -0.0446927 + ], + [ + 109.365831, + -0.0448688 + ], + [ + 109.3659751, + -0.0450387 + ], + [ + 109.3660323, + -0.0451013 + ], + [ + 109.3660909, + -0.0451751 + ], + [ + 109.366299, + -0.0453961 + ], + [ + 109.36645, + -0.0455526 + ], + [ + 109.366584, + -0.0456973 + ], + [ + 109.3665907, + -0.045705 + ], + [ + 109.3668744, + -0.0460079 + ], + [ + 109.3670472, + -0.0462055 + ], + [ + 109.3672952, + -0.0465135 + ], + [ + 109.3674499, + -0.0466863 + ], + [ + 109.3675205, + -0.0467809 + ], + [ + 109.3677283, + -0.0470687 + ], + [ + 109.3677803, + -0.0471391 + ], + [ + 109.3679171, + -0.0473195 + ], + [ + 109.368083, + -0.0475502 + ], + [ + 109.3681668, + -0.0476562 + ], + [ + 109.3682735, + -0.0477795 + ], + [ + 109.3684481, + -0.0479832 + ], + [ + 109.3685034, + -0.0480528 + ], + [ + 109.3687188, + -0.0483219 + ], + [ + 109.368958, + -0.0486125 + ], + [ + 109.3690283, + -0.0486979 + ], + [ + 109.3691309, + -0.0488185 + ], + [ + 109.3692499, + -0.0489584 + ], + [ + 109.3693241, + -0.0490464 + ], + [ + 109.3694424, + -0.0491828 + ], + [ + 109.369493, + -0.0492438 + ], + [ + 109.3696428, + -0.0494049 + ], + [ + 109.3697113, + -0.0494868 + ], + [ + 109.3698736, + -0.0496875 + ], + [ + 109.369947, + -0.0497783 + ], + [ + 109.3701728, + -0.0500478 + ], + [ + 109.3703651, + -0.0502689 + ], + [ + 109.3704204, + -0.0503383 + ] + ] + }, + "id": "way/180189183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189184", + "highway": "unclassified", + "name": "Jalan Dharma Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375292, + -0.0108625 + ], + [ + 109.3375316, + -0.0108344 + ], + [ + 109.3375616, + -0.0104754 + ], + [ + 109.3375877, + -0.0103788 + ], + [ + 109.3376415, + -0.0102638 + ], + [ + 109.3376514, + -0.0102427 + ], + [ + 109.3378449, + -0.0100101 + ], + [ + 109.3379264, + -0.0099121 + ], + [ + 109.3381919, + -0.0096385 + ], + [ + 109.3382643, + -0.0095493 + ], + [ + 109.3383287, + -0.0094722 + ], + [ + 109.3383448, + -0.0094474 + ], + [ + 109.3383481, + -0.009434 + ], + [ + 109.3383494, + -0.0094172 + ] + ] + }, + "id": "way/180189184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189186", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307901, + -0.0001501 + ], + [ + 109.3303837, + -0.000928 + ], + [ + 109.3300499, + -0.0015973 + ], + [ + 109.3300081, + -0.0016645 + ], + [ + 109.3298647, + -0.001974 + ], + [ + 109.3296245, + -0.0023781 + ], + [ + 109.3294009, + -0.0027543 + ], + [ + 109.3286395, + -0.0040352 + ] + ] + }, + "id": "way/180189186" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189189", + "alt_name": "Gang Sutra", + "highway": "residential", + "name": "Gang Sutera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632223, + -0.0476038 + ], + [ + 109.3634147, + -0.0474328 + ], + [ + 109.3635515, + -0.0473162 + ], + [ + 109.3636756, + -0.0472149 + ], + [ + 109.3637755, + -0.0471291 + ], + [ + 109.3638311, + -0.0470801 + ], + [ + 109.3643817, + -0.0466255 + ], + [ + 109.3646619, + -0.0464056 + ], + [ + 109.3649816, + -0.0461353 + ], + [ + 109.3655062, + -0.0456686 + ], + [ + 109.3658079, + -0.0453964 + ], + [ + 109.3660909, + -0.0451751 + ] + ] + }, + "id": "way/180189189" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189190", + "highway": "tertiary", + "name": "Jalan Tani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709724, + -0.0360962 + ], + [ + 109.3707512, + -0.0362809 + ], + [ + 109.3704964, + -0.036478 + ], + [ + 109.3700378, + -0.0368388 + ], + [ + 109.3691164, + -0.0374828 + ], + [ + 109.3688306, + -0.0376922 + ], + [ + 109.3685285, + -0.0379136 + ], + [ + 109.3681272, + -0.0382152 + ], + [ + 109.3680814, + -0.038251 + ], + [ + 109.3670289, + -0.0390727 + ], + [ + 109.3670003, + -0.0390953 + ] + ] + }, + "id": "way/180189190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189195", + "highway": "residential", + "name": "Samudra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325336, + -0.0063514 + ], + [ + 109.3324433, + -0.006451 + ], + [ + 109.3322768, + -0.0066455 + ], + [ + 109.3317801, + -0.007186 + ] + ] + }, + "id": "way/180189195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189197", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250586, + 0.0011297 + ], + [ + 109.324915, + 0.0012327 + ] + ] + }, + "id": "way/180189197" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189198", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337021, + -0.010136 + ], + [ + 109.3369708, + -0.0100656 + ], + [ + 109.3367277, + -0.0097107 + ], + [ + 109.3364996, + -0.0093787 + ], + [ + 109.3368687, + -0.0092456 + ], + [ + 109.3371745, + -0.0091354 + ], + [ + 109.3379606, + -0.008852 + ], + [ + 109.3379827, + -0.0088526 + ], + [ + 109.3379974, + -0.0088593 + ] + ] + }, + "id": "way/180189198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189199", + "highway": "residential", + "name": "Teluk Pari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3311254, + -0.0043773 + ], + [ + 109.3309449, + -0.0047994 + ], + [ + 109.3304895, + -0.0058651 + ] + ] + }, + "id": "way/180189199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189200", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521482, + -0.0249395 + ], + [ + 109.3523879, + -0.0249482 + ], + [ + 109.352493, + -0.024979 + ], + [ + 109.3525162, + -0.0249915 + ], + [ + 109.3526148, + -0.0250545 + ], + [ + 109.3528837, + -0.0251739 + ], + [ + 109.3534209, + -0.0253626 + ], + [ + 109.3535576, + -0.0254106 + ], + [ + 109.353742, + -0.025483 + ], + [ + 109.3540961, + -0.0255749 + ], + [ + 109.3542339, + -0.025604 + ], + [ + 109.3542905, + -0.0256107 + ], + [ + 109.3543717, + -0.0256141 + ], + [ + 109.3547083, + -0.0256225 + ], + [ + 109.35501, + -0.0256319 + ], + [ + 109.355248, + -0.0256424 + ], + [ + 109.3553299, + -0.0256459 + ], + [ + 109.3553714, + -0.0256509 + ], + [ + 109.3555062, + -0.0256627 + ], + [ + 109.3559179, + -0.0256979 + ], + [ + 109.3562271, + -0.0257244 + ], + [ + 109.3563665, + -0.0257345 + ], + [ + 109.3564725, + -0.0257421 + ], + [ + 109.356658, + -0.0257559 + ], + [ + 109.3569418, + -0.0257731 + ], + [ + 109.3571457, + -0.0257854 + ], + [ + 109.3572738, + -0.0257921 + ], + [ + 109.3574133, + -0.0258015 + ], + [ + 109.3575065, + -0.0257951 + ], + [ + 109.3575735, + -0.0257894 + ], + [ + 109.3576982, + -0.0257842 + ], + [ + 109.3584211, + -0.0257539 + ], + [ + 109.3585713, + -0.0257492 + ], + [ + 109.3586759, + -0.0257391 + ], + [ + 109.3589086, + -0.0257298 + ], + [ + 109.3592314, + -0.025709 + ], + [ + 109.3592955, + -0.0257049 + ], + [ + 109.3598802, + -0.0256862 + ], + [ + 109.3599278, + -0.0256846 + ], + [ + 109.3602584, + -0.0256737 + ], + [ + 109.3605882, + -0.0256628 + ], + [ + 109.360813, + -0.0256523 + ], + [ + 109.3612991, + -0.025641 + ], + [ + 109.3615647, + -0.0256315 + ], + [ + 109.3619483, + -0.0256289 + ], + [ + 109.3621264, + -0.0256288 + ], + [ + 109.3622299, + -0.0256288 + ], + [ + 109.3623433, + -0.0256287 + ] + ] + }, + "id": "way/180189200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189202", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305889, + -0.0037818 + ], + [ + 109.331483, + -0.0039234 + ] + ] + }, + "id": "way/180189202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189203", + "highway": "residential", + "name": "Teluk Melano" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294784, + -0.0048896 + ], + [ + 109.3300659, + -0.004208 + ], + [ + 109.3300458, + -0.0041815 + ], + [ + 109.329948, + -0.0040755 + ], + [ + 109.3299461, + -0.0040615 + ], + [ + 109.3299561, + -0.0040447 + ], + [ + 109.3302081, + -0.0038167 + ], + [ + 109.3302713, + -0.003747 + ], + [ + 109.3303301, + -0.0036611 + ], + [ + 109.3303562, + -0.0036243 + ], + [ + 109.3306025, + -0.0032863 + ], + [ + 109.3306143, + -0.003252 + ], + [ + 109.3306018, + -0.0032294 + ], + [ + 109.3305814, + -0.0032132 + ], + [ + 109.3303558, + -0.0030611 + ], + [ + 109.3303478, + -0.0030483 + ], + [ + 109.3303484, + -0.0030316 + ], + [ + 109.3306777, + -0.0025441 + ], + [ + 109.3306797, + -0.0025112 + ], + [ + 109.3306696, + -0.0024871 + ], + [ + 109.3304669, + -0.0023281 + ], + [ + 109.3303234, + -0.0022436 + ], + [ + 109.3301969, + -0.0021692 + ], + [ + 109.3298647, + -0.001974 + ] + ] + }, + "id": "way/180189203" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189204", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479476, + 0.0009336 + ], + [ + 109.3468941, + 0.0012204 + ], + [ + 109.3465642, + 0.0013224 + ] + ] + }, + "id": "way/180189204" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189205", + "highway": "residential", + "name": "Perumahan Tanjung Indah", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361944, + -0.0436811 + ], + [ + 109.3633739, + -0.0423159 + ] + ] + }, + "id": "way/180189205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189206", + "highway": "residential", + "name": "Jalan Tanjung Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3697092, + -0.0541511 + ], + [ + 109.3695174, + -0.0539064 + ], + [ + 109.3693659, + -0.0537012 + ], + [ + 109.3692818, + -0.0535818 + ], + [ + 109.3692016, + -0.0534622 + ], + [ + 109.3690222, + -0.0532157 + ], + [ + 109.3689023, + -0.0530318 + ], + [ + 109.3688034, + -0.0528797 + ], + [ + 109.3687926, + -0.052863 + ], + [ + 109.3687229, + -0.0527403 + ], + [ + 109.3686532, + -0.0526311 + ], + [ + 109.3685751, + -0.0524889 + ], + [ + 109.3684523, + -0.052293 + ], + [ + 109.3683536, + -0.0521406 + ], + [ + 109.3683383, + -0.0521165 + ], + [ + 109.3682404, + -0.0519543 + ], + [ + 109.3681282, + -0.0517684 + ], + [ + 109.3681134, + -0.0517459 + ], + [ + 109.3681055, + -0.051734 + ], + [ + 109.3680494, + -0.0516492 + ], + [ + 109.367902, + -0.0514222 + ], + [ + 109.367747, + -0.051222 + ], + [ + 109.3676135, + -0.0510404 + ], + [ + 109.3675184, + -0.0509266 + ], + [ + 109.3674196, + -0.0508157 + ], + [ + 109.367315, + -0.050699 + ], + [ + 109.36721, + -0.0505871 + ], + [ + 109.367097, + -0.0504691 + ], + [ + 109.366961, + -0.0503403 + ], + [ + 109.3668401, + -0.0502112 + ], + [ + 109.3666589, + -0.0500279 + ], + [ + 109.366416, + -0.0497744 + ], + [ + 109.3663943, + -0.0497538 + ], + [ + 109.3661792, + -0.0495182 + ], + [ + 109.3661563, + -0.0494951 + ], + [ + 109.3660285, + -0.0493661 + ], + [ + 109.3660084, + -0.0493459 + ], + [ + 109.3657391, + -0.0490766 + ], + [ + 109.3657175, + -0.0490556 + ], + [ + 109.3656363, + -0.0489764 + ], + [ + 109.3655222, + -0.0488659 + ], + [ + 109.3654992, + -0.0488436 + ], + [ + 109.3654839, + -0.0488294 + ], + [ + 109.3652764, + -0.0486252 + ], + [ + 109.3652136, + -0.0485633 + ], + [ + 109.3651375, + -0.0484873 + ], + [ + 109.3651188, + -0.0484673 + ], + [ + 109.3649952, + -0.0483328 + ], + [ + 109.364875, + -0.0481938 + ], + [ + 109.3648682, + -0.0481859 + ], + [ + 109.3646926, + -0.0479967 + ], + [ + 109.3646014, + -0.0478951 + ], + [ + 109.3645772, + -0.0478681 + ], + [ + 109.3643738, + -0.0476617 + ], + [ + 109.3643686, + -0.0476561 + ] + ] + }, + "id": "way/180189206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189208", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332282, + -0.0054171 + ], + [ + 109.3325205, + -0.0052342 + ], + [ + 109.3323037, + -0.0051781 + ], + [ + 109.3318544, + -0.005041 + ], + [ + 109.3309449, + -0.0047994 + ] + ] + }, + "id": "way/180189208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189210", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476967, + 0.0004758 + ], + [ + 109.3462155, + 0.0009549 + ], + [ + 109.3443655, + 0.0015021 + ], + [ + 109.3442175, + 0.0015302 + ], + [ + 109.3441042, + 0.0015429 + ] + ] + }, + "id": "way/180189210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189211", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263448, + 0.0023587 + ], + [ + 109.3258767, + 0.001653 + ], + [ + 109.3253885, + 0.0009131 + ] + ] + }, + "id": "way/180189211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/180189212", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32454, + 0.0015039 + ], + [ + 109.3240658, + 0.0007725 + ], + [ + 109.3235477, + -0.0000882 + ] + ] + }, + "id": "way/180189212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538836", + "highway": "tertiary", + "name": "Jalan Pangeran Natakusuma", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136544, + -0.0410958 + ], + [ + 109.3137459, + -0.0410179 + ], + [ + 109.3138482, + -0.0409158 + ], + [ + 109.3139742, + -0.0407749 + ], + [ + 109.314081, + -0.0406605 + ], + [ + 109.3141038, + -0.0406334 + ], + [ + 109.3142465, + -0.0404824 + ], + [ + 109.3143857, + -0.0403443 + ], + [ + 109.3145161, + -0.0402048 + ], + [ + 109.314676, + -0.0400352 + ], + [ + 109.314905, + -0.0398 + ], + [ + 109.3151302, + -0.0395449 + ], + [ + 109.3153703, + -0.0392619 + ], + [ + 109.3154164, + -0.0392062 + ], + [ + 109.3155925, + -0.0390042 + ], + [ + 109.3157597, + -0.0388005 + ], + [ + 109.3159728, + -0.0385585 + ], + [ + 109.3161873, + -0.0383179 + ], + [ + 109.3164183, + -0.0380726 + ], + [ + 109.316439, + -0.0380436 + ], + [ + 109.3165773, + -0.037901 + ], + [ + 109.3166755, + -0.0377788 + ], + [ + 109.3167542, + -0.0376961 + ], + [ + 109.3168858, + -0.0375576 + ], + [ + 109.3170603, + -0.0373582 + ], + [ + 109.3171389, + -0.0372733 + ], + [ + 109.3172437, + -0.0371544 + ], + [ + 109.3174587, + -0.0369026 + ], + [ + 109.3175705, + -0.036781 + ], + [ + 109.3177622, + -0.0365728 + ], + [ + 109.3178761, + -0.0364522 + ], + [ + 109.3179821, + -0.0363512 + ], + [ + 109.3180418, + -0.0362943 + ], + [ + 109.3182152, + -0.0361329 + ], + [ + 109.3186219, + -0.0357308 + ] + ] + }, + "id": "way/184538836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538837", + "highway": "tertiary", + "name": "Jalan Alianyang", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228664, + -0.0322703 + ], + [ + 109.3224225, + -0.0326212 + ], + [ + 109.3222538, + -0.0327465 + ], + [ + 109.3217532, + -0.0331274 + ], + [ + 109.3215975, + -0.0332566 + ], + [ + 109.3212661, + -0.0335148 + ], + [ + 109.3210186, + -0.0337254 + ], + [ + 109.3206824, + -0.0339957 + ], + [ + 109.3202426, + -0.034343 + ], + [ + 109.3200988, + -0.0344659 + ], + [ + 109.3198986, + -0.0346196 + ], + [ + 109.3196284, + -0.0348456 + ], + [ + 109.3194051, + -0.0350464 + ], + [ + 109.3191555, + -0.0352709 + ], + [ + 109.319015, + -0.0353958 + ], + [ + 109.3186219, + -0.0357308 + ] + ] + }, + "id": "way/184538837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538838", + "highway": "tertiary", + "name": "Jalan Uray Bawadi", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244539, + -0.0428131 + ], + [ + 109.3237279, + -0.0420611 + ], + [ + 109.3234645, + -0.0417755 + ], + [ + 109.3231497, + -0.0414364 + ], + [ + 109.3230335, + -0.0413164 + ], + [ + 109.3228704, + -0.0411187 + ], + [ + 109.3227526, + -0.0409783 + ], + [ + 109.3226311, + -0.0408346 + ], + [ + 109.3225672, + -0.0407595 + ], + [ + 109.3222696, + -0.0404066 + ], + [ + 109.3222527, + -0.0403861 + ], + [ + 109.3219617, + -0.0400253 + ], + [ + 109.3216653, + -0.0396558 + ], + [ + 109.3213936, + -0.0393286 + ], + [ + 109.3211534, + -0.0390185 + ], + [ + 109.3209257, + -0.0387243 + ], + [ + 109.3206513, + -0.0383398 + ], + [ + 109.3204856, + -0.0381216 + ], + [ + 109.3202692, + -0.0378347 + ], + [ + 109.3200352, + -0.0375325 + ], + [ + 109.3199504, + -0.0374251 + ], + [ + 109.3193035, + -0.036577 + ], + [ + 109.3186219, + -0.0357308 + ] + ] + }, + "id": "way/184538838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538839", + "highway": "tertiary", + "name": "Jalan M.T. Haryono", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332625, + -0.0471101 + ], + [ + 109.333762, + -0.0467718 + ], + [ + 109.3339609, + -0.0466179 + ], + [ + 109.3345423, + -0.0461837 + ], + [ + 109.3347365, + -0.0460421 + ], + [ + 109.3349076, + -0.0459274 + ], + [ + 109.3350983, + -0.0457709 + ], + [ + 109.3353031, + -0.0456104 + ], + [ + 109.3355218, + -0.0454554 + ], + [ + 109.3358845, + -0.0451731 + ], + [ + 109.3361515, + -0.044988 + ], + [ + 109.3363183, + -0.0448438 + ], + [ + 109.336411, + -0.0447676 + ], + [ + 109.3370057, + -0.0442678 + ], + [ + 109.3373453, + -0.0439638 + ], + [ + 109.3377588, + -0.0436581 + ], + [ + 109.3385574, + -0.0429737 + ], + [ + 109.3387259, + -0.0428304 + ], + [ + 109.3387737, + -0.0427898 + ] + ] + }, + "id": "way/184538839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538840", + "highway": "tertiary", + "name": "Jalan Johar", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286411, + -0.0289075 + ], + [ + 109.3289735, + -0.0286062 + ], + [ + 109.3292943, + -0.0283154 + ], + [ + 109.3294772, + -0.028147 + ], + [ + 109.3298964, + -0.0277612 + ], + [ + 109.3299422, + -0.0277217 + ], + [ + 109.3303278, + -0.0273887 + ], + [ + 109.3304602, + -0.0272744 + ], + [ + 109.3309258, + -0.0268999 + ], + [ + 109.3310076, + -0.0268342 + ], + [ + 109.3314482, + -0.0264808 + ], + [ + 109.3315427, + -0.0263795 + ], + [ + 109.3315927, + -0.0263108 + ] + ] + }, + "id": "way/184538840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538841", + "highway": "unclassified", + "name": "Jalan Karna Sosial" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227544, + -0.048961 + ], + [ + 109.3228094, + -0.0489242 + ], + [ + 109.3229073, + -0.0488363 + ], + [ + 109.3230662, + -0.0486754 + ], + [ + 109.3233379, + -0.0483845 + ], + [ + 109.323479, + -0.0482289 + ], + [ + 109.323646, + -0.0480529 + ], + [ + 109.3237133, + -0.047982 + ], + [ + 109.3239695, + -0.0477024 + ], + [ + 109.324225, + -0.0474355 + ], + [ + 109.3243483, + -0.0473021 + ], + [ + 109.3244623, + -0.0471868 + ], + [ + 109.3245804, + -0.0470567 + ], + [ + 109.3246568, + -0.0469769 + ], + [ + 109.3246873, + -0.0469376 + ], + [ + 109.3247017, + -0.0469145 + ], + [ + 109.3247161, + -0.0468786 + ], + [ + 109.3247329, + -0.0468076 + ], + [ + 109.3247346, + -0.0467831 + ], + [ + 109.3247353, + -0.0467549 + ], + [ + 109.3247319, + -0.0466979 + ], + [ + 109.3247245, + -0.0465779 + ], + [ + 109.3247245, + -0.0463452 + ], + [ + 109.3247244, + -0.0460036 + ], + [ + 109.3247272, + -0.0458819 + ], + [ + 109.3247318, + -0.0457113 + ], + [ + 109.3247198, + -0.0451825 + ], + [ + 109.3247044, + -0.0448043 + ] + ] + }, + "id": "way/184538841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538842", + "highway": "unclassified", + "name": "Jalan Wonoyoso I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272262, + -0.0499257 + ], + [ + 109.3271013, + -0.0498603 + ], + [ + 109.3268893, + -0.0496902 + ], + [ + 109.3266207, + -0.0495044 + ], + [ + 109.3263658, + -0.0493269 + ], + [ + 109.3262204, + -0.0492142 + ], + [ + 109.3259718, + -0.0490214 + ], + [ + 109.3258323, + -0.0489248 + ], + [ + 109.3256418, + -0.048774 + ], + [ + 109.325607, + -0.0487418 + ], + [ + 109.3254219, + -0.0485795 + ], + [ + 109.3253454, + -0.0485131 + ], + [ + 109.3251678, + -0.0483589 + ], + [ + 109.3249418, + -0.0481564 + ], + [ + 109.324225, + -0.0474355 + ] + ] + }, + "id": "way/184538842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538843", + "destination": "yes", + "highway": "unclassified", + "name": "Gang Surya Suci" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281741, + -0.0491755 + ], + [ + 109.3278989, + -0.0489034 + ], + [ + 109.327672, + -0.0486262 + ], + [ + 109.3274493, + -0.0483586 + ], + [ + 109.3271504, + -0.0480108 + ], + [ + 109.3269916, + -0.0478678 + ], + [ + 109.326952, + -0.0478475 + ], + [ + 109.3269414, + -0.0478456 + ], + [ + 109.3269291, + -0.0478478 + ], + [ + 109.3269205, + -0.047852 + ], + [ + 109.3265592, + -0.048038 + ], + [ + 109.3265451, + -0.0480444 + ], + [ + 109.3265307, + -0.0480481 + ], + [ + 109.3265209, + -0.0480463 + ], + [ + 109.3263121, + -0.0478441 + ], + [ + 109.3258484, + -0.0473601 + ], + [ + 109.3257944, + -0.0473064 + ], + [ + 109.325727, + -0.0472283 + ], + [ + 109.325672, + -0.0471378 + ], + [ + 109.3256237, + -0.0470513 + ], + [ + 109.3254092, + -0.0466463 + ], + [ + 109.3251937, + -0.0462397 + ], + [ + 109.3250953, + -0.0460517 + ], + [ + 109.3250209, + -0.0458859 + ] + ] + }, + "id": "way/184538843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538844", + "highway": "unclassified", + "name": "Jalan Wonoyoso Gang II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325727, + -0.0472283 + ], + [ + 109.3254417, + -0.0475682 + ], + [ + 109.3253099, + -0.0477252 + ], + [ + 109.3249418, + -0.0481564 + ] + ] + }, + "id": "way/184538844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538845", + "highway": "residential", + "name": "Jalan Sulawesi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290899, + -0.0450061 + ], + [ + 109.3286903, + -0.0443768 + ], + [ + 109.3285589, + -0.0441798 + ], + [ + 109.3282493, + -0.0437254 + ], + [ + 109.3280736, + -0.0434536 + ], + [ + 109.3275568, + -0.0426395 + ], + [ + 109.3275349, + -0.0426064 + ], + [ + 109.3270927, + -0.0419376 + ], + [ + 109.3268354, + -0.0415485 + ], + [ + 109.326488, + -0.0410176 + ] + ] + }, + "id": "way/184538845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538846", + "highway": "tertiary", + "name": "Jalan Danau Sentarum", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029749, + -0.0553473 + ], + [ + 109.3030422, + -0.0552974 + ], + [ + 109.3042303, + -0.0543971 + ], + [ + 109.3055033, + -0.0534466 + ], + [ + 109.3055684, + -0.053393 + ], + [ + 109.3056052, + -0.0533505 + ], + [ + 109.3056232, + -0.0533196 + ], + [ + 109.3056791, + -0.0531655 + ], + [ + 109.3057128, + -0.0529437 + ], + [ + 109.3057861, + -0.0525658 + ], + [ + 109.305813, + -0.0523604 + ], + [ + 109.305871, + -0.0520662 + ], + [ + 109.3059034, + -0.0519324 + ], + [ + 109.3059166, + -0.0518603 + ], + [ + 109.3059859, + -0.0515058 + ], + [ + 109.3060246, + -0.0512816 + ], + [ + 109.3060832, + -0.0510599 + ], + [ + 109.306142, + -0.0508561 + ], + [ + 109.3061754, + -0.0507828 + ], + [ + 109.3063058, + -0.0505154 + ], + [ + 109.3063304, + -0.0504727 + ], + [ + 109.3063809, + -0.0503853 + ], + [ + 109.3064941, + -0.0502254 + ], + [ + 109.3067384, + -0.0498929 + ], + [ + 109.3068349, + -0.0497624 + ], + [ + 109.3069918, + -0.0495539 + ], + [ + 109.3072371, + -0.0492246 + ], + [ + 109.3074592, + -0.0489195 + ], + [ + 109.3074815, + -0.0488892 + ], + [ + 109.3075836, + -0.0487418 + ], + [ + 109.3077132, + -0.0485488 + ], + [ + 109.3080728, + -0.0480745 + ], + [ + 109.308206, + -0.0479002 + ], + [ + 109.3084501, + -0.0475666 + ], + [ + 109.3087069, + -0.0472446 + ], + [ + 109.3089558, + -0.0469126 + ], + [ + 109.3090881, + -0.0467579 + ], + [ + 109.3092167, + -0.0465918 + ], + [ + 109.3094514, + -0.0462748 + ], + [ + 109.3095113, + -0.0462053 + ], + [ + 109.3096561, + -0.0460167 + ], + [ + 109.3097181, + -0.045943 + ], + [ + 109.309864, + -0.0457379 + ], + [ + 109.3099218, + -0.0456705 + ], + [ + 109.3099886, + -0.0455798 + ], + [ + 109.3101384, + -0.0453812 + ], + [ + 109.3102972, + -0.0451879 + ], + [ + 109.3105244, + -0.0449197 + ], + [ + 109.3107511, + -0.0446521 + ], + [ + 109.3108103, + -0.0445821 + ], + [ + 109.3109656, + -0.0443989 + ], + [ + 109.3110711, + -0.0442742 + ], + [ + 109.3112089, + -0.0441116 + ], + [ + 109.3113256, + -0.0439641 + ], + [ + 109.3113939, + -0.0438823 + ], + [ + 109.3116457, + -0.0435884 + ], + [ + 109.3117332, + -0.0434862 + ], + [ + 109.3118905, + -0.0433025 + ], + [ + 109.3121278, + -0.0430129 + ], + [ + 109.3122107, + -0.0429083 + ], + [ + 109.3123346, + -0.0427728 + ], + [ + 109.312414, + -0.0426683 + ], + [ + 109.3126153, + -0.0424101 + ], + [ + 109.3128051, + -0.0421828 + ], + [ + 109.3129779, + -0.0419692 + ], + [ + 109.3131387, + -0.0417674 + ], + [ + 109.3132266, + -0.0416616 + ], + [ + 109.3133576, + -0.0415039 + ], + [ + 109.3136544, + -0.0410958 + ] + ] + }, + "id": "way/184538846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538848", + "highway": "tertiary", + "name": "Jalan Dokter Wahidin Sudirohusodo", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035365, + -0.0261038 + ], + [ + 109.3038613, + -0.0269662 + ], + [ + 109.3043679, + -0.0280626 + ], + [ + 109.3046616, + -0.0287278 + ], + [ + 109.3047702, + -0.0289826 + ], + [ + 109.3048346, + -0.0292176 + ], + [ + 109.3048853, + -0.0294498 + ], + [ + 109.3050688, + -0.0304037 + ], + [ + 109.3051413, + -0.0307652 + ], + [ + 109.3053096, + -0.031762 + ], + [ + 109.3053588, + -0.0320535 + ], + [ + 109.3054421, + -0.0323811 + ], + [ + 109.3054762, + -0.0325541 + ], + [ + 109.3055177, + -0.0327724 + ], + [ + 109.305528, + -0.0328118 + ], + [ + 109.3055611, + -0.0329378 + ], + [ + 109.3056196, + -0.0330826 + ], + [ + 109.305863, + -0.0335831 + ], + [ + 109.3058732, + -0.0336041 + ], + [ + 109.3059734, + -0.0338054 + ], + [ + 109.3060402, + -0.0339488 + ], + [ + 109.306186, + -0.0342638 + ], + [ + 109.3062357, + -0.0343667 + ], + [ + 109.3065723, + -0.0350031 + ], + [ + 109.3067986, + -0.0353571 + ], + [ + 109.3068593, + -0.035438 + ], + [ + 109.3069306, + -0.0355206 + ], + [ + 109.3071485, + -0.0357164 + ], + [ + 109.307225, + -0.0357829 + ], + [ + 109.3072497, + -0.0357999 + ], + [ + 109.3073547, + -0.0358866 + ], + [ + 109.3074314, + -0.0359305 + ], + [ + 109.3075396, + -0.0360047 + ], + [ + 109.3077617, + -0.0361774 + ], + [ + 109.3078226, + -0.036235 + ], + [ + 109.3078762, + -0.0362936 + ], + [ + 109.3079125, + -0.0363082 + ], + [ + 109.3082071, + -0.0365576 + ], + [ + 109.3084219, + -0.0367395 + ], + [ + 109.3085481, + -0.0368446 + ], + [ + 109.3089786, + -0.0371826 + ], + [ + 109.3090631, + -0.0372454 + ], + [ + 109.3092704, + -0.0374134 + ], + [ + 109.3093848, + -0.0375068 + ], + [ + 109.3094841, + -0.0375879 + ], + [ + 109.309543, + -0.0376358 + ], + [ + 109.3096259, + -0.0377037 + ], + [ + 109.3099363, + -0.0379254 + ], + [ + 109.3101781, + -0.038098 + ], + [ + 109.3105461, + -0.0383941 + ], + [ + 109.3107848, + -0.0386116 + ], + [ + 109.3109643, + -0.0387654 + ], + [ + 109.3114837, + -0.0392254 + ], + [ + 109.3116708, + -0.0393911 + ], + [ + 109.311732, + -0.0394429 + ], + [ + 109.3119304, + -0.0396109 + ], + [ + 109.3121479, + -0.039795 + ], + [ + 109.3124783, + -0.0400731 + ], + [ + 109.3128163, + -0.0403603 + ], + [ + 109.3129412, + -0.0404665 + ], + [ + 109.3130421, + -0.040553 + ], + [ + 109.3132818, + -0.0407583 + ], + [ + 109.3136544, + -0.0410958 + ] + ] + }, + "id": "way/184538848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538850", + "highway": "residential", + "name": "Jalan Selayar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194145, + -0.0480104 + ], + [ + 109.3198258, + -0.0484809 + ], + [ + 109.3199069, + -0.0485735 + ], + [ + 109.3199794, + -0.0486581 + ], + [ + 109.320095, + -0.0487941 + ], + [ + 109.3202088, + -0.0489232 + ], + [ + 109.3202198, + -0.0489356 + ], + [ + 109.3202955, + -0.0490247 + ], + [ + 109.3204853, + -0.0492447 + ], + [ + 109.3206697, + -0.0494653 + ], + [ + 109.3209198, + -0.0497603 + ], + [ + 109.3210506, + -0.0498877 + ], + [ + 109.3212336, + -0.0500125 + ], + [ + 109.321469, + -0.0501707 + ], + [ + 109.3216829, + -0.0503095 + ] + ] + }, + "id": "way/184538850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538851", + "highway": "unclassified", + "name": "Jalan Karya Bhakti" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312953, + -0.0438293 + ], + [ + 109.3306256, + -0.044194 + ], + [ + 109.3299065, + -0.0445755 + ], + [ + 109.3297255, + -0.0446715 + ], + [ + 109.3295938, + -0.0447406 + ], + [ + 109.3294323, + -0.0448257 + ], + [ + 109.3290899, + -0.0450061 + ], + [ + 109.3285091, + -0.0453559 + ], + [ + 109.3271408, + -0.0461788 + ], + [ + 109.3266142, + -0.04648 + ], + [ + 109.3261387, + -0.0467516 + ], + [ + 109.3260274, + -0.046818 + ], + [ + 109.3256237, + -0.0470513 + ] + ] + }, + "id": "way/184538851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184538852", + "highway": "residential", + "name": "Jalan Pulau We", + "tourism": "attraction" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196511, + -0.0474912 + ], + [ + 109.3198121, + -0.0476602 + ], + [ + 109.3202159, + -0.0480701 + ], + [ + 109.3213562, + -0.0492399 + ], + [ + 109.321937, + -0.0498763 + ] + ] + }, + "id": "way/184538852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184539947", + "access": "destination", + "highway": "residential", + "maxspeed": "20", + "name": "Bali Mas 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550061, + -0.072281 + ], + [ + 109.3549815, + -0.072499 + ], + [ + 109.3549908, + -0.072558 + ], + [ + 109.3580809, + -0.0746405 + ] + ] + }, + "id": "way/184539947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184539948", + "highway": "tertiary", + "lanes": "2", + "name": "Jalan Sepakat 2", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414897, + -0.0706775 + ], + [ + 109.3417913, + -0.0703346 + ], + [ + 109.3420806, + -0.0700055 + ], + [ + 109.34236, + -0.0696932 + ], + [ + 109.3426157, + -0.0694078 + ], + [ + 109.3429165, + -0.069066 + ], + [ + 109.3431742, + -0.06878 + ], + [ + 109.3432721, + -0.0686766 + ], + [ + 109.3434596, + -0.0684848 + ], + [ + 109.3440758, + -0.0678546 + ], + [ + 109.3443333, + -0.0675717 + ], + [ + 109.344672, + -0.0672223 + ], + [ + 109.3448684, + -0.0670174 + ], + [ + 109.3451679, + -0.0667161 + ], + [ + 109.3454436, + -0.0664246 + ], + [ + 109.345719, + -0.0661413 + ], + [ + 109.3458743, + -0.0659837 + ], + [ + 109.3461501, + -0.065702 + ], + [ + 109.346586, + -0.0652451 + ], + [ + 109.3468585, + -0.0649513 + ], + [ + 109.3471043, + -0.0646594 + ], + [ + 109.3473703, + -0.0643589 + ], + [ + 109.3475263, + -0.0641925 + ], + [ + 109.3476076, + -0.0641025 + ], + [ + 109.3477045, + -0.0640024 + ], + [ + 109.3480039, + -0.0636629 + ], + [ + 109.3482527, + -0.0633628 + ], + [ + 109.3486547, + -0.0629004 + ], + [ + 109.3487837, + -0.0627536 + ], + [ + 109.3489797, + -0.0625051 + ], + [ + 109.349217, + -0.0621584 + ], + [ + 109.3492743, + -0.0620843 + ], + [ + 109.3494404, + -0.0618175 + ], + [ + 109.3495395, + -0.0616549 + ], + [ + 109.349753, + -0.0613346 + ], + [ + 109.3497803, + -0.061293 + ], + [ + 109.349875, + -0.0611488 + ], + [ + 109.3499785, + -0.0609862 + ], + [ + 109.350083, + -0.0608193 + ], + [ + 109.3502578, + -0.0605401 + ], + [ + 109.3503988, + -0.0603348 + ], + [ + 109.3504893, + -0.0602029 + ], + [ + 109.3505515, + -0.0601123 + ], + [ + 109.3505572, + -0.0601041 + ], + [ + 109.3506242, + -0.0600087 + ], + [ + 109.3507455, + -0.0598358 + ], + [ + 109.3509385, + -0.0595608 + ], + [ + 109.3509683, + -0.0595183 + ], + [ + 109.3511469, + -0.0592639 + ], + [ + 109.3512231, + -0.0591561 + ], + [ + 109.3513611, + -0.0589608 + ], + [ + 109.3513772, + -0.0589381 + ], + [ + 109.3516679, + -0.0585385 + ], + [ + 109.3518156, + -0.0583611 + ], + [ + 109.3518447, + -0.0583261 + ] + ] + }, + "id": "way/184539948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184539949", + "highway": "tertiary", + "name": "Jalan Padat Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487729, + -0.0767853 + ], + [ + 109.3475897, + -0.0761264 + ], + [ + 109.3463988, + -0.0754107 + ], + [ + 109.3458079, + -0.0750742 + ], + [ + 109.3456672, + -0.0749986 + ], + [ + 109.3451938, + -0.0747143 + ], + [ + 109.344648, + -0.0743522 + ], + [ + 109.3441263, + -0.0740129 + ], + [ + 109.343913, + -0.0738466 + ], + [ + 109.3438002, + -0.0737148 + ] + ] + }, + "id": "way/184539949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184539950", + "highway": "tertiary", + "name": "Jalan Reformasi Untan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400046, + -0.065636 + ], + [ + 109.3400592, + -0.0656002 + ], + [ + 109.3401231, + -0.0655874 + ], + [ + 109.3401872, + -0.0655995 + ], + [ + 109.3402422, + -0.0656347 + ], + [ + 109.3402799, + -0.0656879 + ], + [ + 109.340295, + -0.0657514 + ], + [ + 109.3402852, + -0.0658159 + ], + [ + 109.340252, + -0.0658721 + ] + ] + }, + "id": "way/184539950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184539951", + "highway": "tertiary", + "lanes": "2", + "name": "Jalan Perdana", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465474, + -0.0519592 + ], + [ + 109.3465171, + -0.0519936 + ], + [ + 109.3459125, + -0.0526806 + ], + [ + 109.3456446, + -0.0529801 + ], + [ + 109.3456243, + -0.0530053 + ], + [ + 109.3456079, + -0.0530256 + ], + [ + 109.3452992, + -0.0533778 + ], + [ + 109.3450473, + -0.0536605 + ], + [ + 109.3450107, + -0.0537016 + ], + [ + 109.344978, + -0.0537335 + ], + [ + 109.3447484, + -0.0539944 + ], + [ + 109.3441537, + -0.0546755 + ], + [ + 109.3440916, + -0.0547466 + ], + [ + 109.3439105, + -0.0549483 + ], + [ + 109.3436868, + -0.055195 + ], + [ + 109.3436307, + -0.0552598 + ], + [ + 109.3433593, + -0.0555731 + ], + [ + 109.3432914, + -0.0556515 + ], + [ + 109.3430759, + -0.0559152 + ], + [ + 109.3428779, + -0.0561414 + ], + [ + 109.3426666, + -0.0563822 + ], + [ + 109.34229, + -0.0568116 + ], + [ + 109.34224, + -0.0568702 + ], + [ + 109.3420799, + -0.0570592 + ], + [ + 109.34196, + -0.0572007 + ], + [ + 109.3417085, + -0.0574849 + ], + [ + 109.3412954, + -0.0579763 + ], + [ + 109.3412668, + -0.0580111 + ], + [ + 109.3408492, + -0.0584987 + ], + [ + 109.3405541, + -0.0588385 + ], + [ + 109.3402958, + -0.0591383 + ], + [ + 109.3398283, + -0.0596623 + ], + [ + 109.3397571, + -0.0597405 + ], + [ + 109.3396557, + -0.0598604 + ], + [ + 109.339334, + -0.0602316 + ], + [ + 109.3391352, + -0.060461 + ], + [ + 109.3389637, + -0.0606543 + ], + [ + 109.3388102, + -0.0608328 + ], + [ + 109.3385523, + -0.0611167 + ], + [ + 109.33828, + -0.0614163 + ], + [ + 109.3380465, + -0.0616853 + ], + [ + 109.3376861, + -0.0621016 + ], + [ + 109.3374196, + -0.0623991 + ], + [ + 109.3370446, + -0.0628072 + ] + ] + }, + "id": "way/184539951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184539955", + "highway": "tertiary", + "name": "Jalan Parit Haji Husein 2", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411365, + -0.0902393 + ], + [ + 109.3411806, + -0.09016 + ], + [ + 109.3413128, + -0.0899297 + ] + ] + }, + "id": "way/184539955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/184539956", + "highway": "unclassified", + "name": "Jalan Sejahtera 1", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529751, + -0.082787 + ], + [ + 109.351678, + -0.0818449 + ], + [ + 109.350402, + -0.0809772 + ], + [ + 109.3500477, + -0.0806959 + ], + [ + 109.3491366, + -0.079913 + ], + [ + 109.3479071, + -0.0787921 + ] + ] + }, + "id": "way/184539956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231539", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3603758, + -0.06294 + ], + [ + 109.3606197, + -0.063163 + ], + [ + 109.3607759, + -0.0633027 + ], + [ + 109.36139, + -0.0638522 + ], + [ + 109.3615013, + -0.0639523 + ], + [ + 109.3615407, + -0.0639878 + ], + [ + 109.3618669, + -0.0642654 + ], + [ + 109.3621742, + -0.0645212 + ], + [ + 109.3624425, + -0.0647229 + ], + [ + 109.3626241, + -0.0648515 + ], + [ + 109.362887, + -0.0650413 + ], + [ + 109.363103, + -0.0651973 + ], + [ + 109.3631498, + -0.0652311 + ], + [ + 109.3633136, + -0.0653621 + ], + [ + 109.3633485, + -0.06539 + ] + ] + }, + "id": "way/185231539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231540", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Palasari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583664, + -0.0602736 + ], + [ + 109.3595275, + -0.0616103 + ], + [ + 109.3606845, + -0.0629331 + ], + [ + 109.3607577, + -0.0630033 + ], + [ + 109.3606197, + -0.063163 + ] + ] + }, + "id": "way/185231540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231541", + "highway": "residential", + "name": "Jalan Parit Haji Husein 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627529, + -0.0551744 + ], + [ + 109.3625973, + -0.0552394 + ], + [ + 109.3624726, + -0.0552897 + ], + [ + 109.3621658, + -0.0554261 + ], + [ + 109.3619774, + -0.05552 + ], + [ + 109.3618885, + -0.0555613 + ], + [ + 109.361796, + -0.055619 + ], + [ + 109.3616304, + -0.055773 + ], + [ + 109.3614958, + -0.055922 + ], + [ + 109.361412, + -0.0560456 + ], + [ + 109.3612396, + -0.0562663 + ], + [ + 109.3611161, + -0.0564318 + ], + [ + 109.3609165, + -0.056705 + ], + [ + 109.3608853, + -0.0567478 + ], + [ + 109.360772, + -0.0569159 + ], + [ + 109.3607472, + -0.0569527 + ], + [ + 109.3606284, + -0.057101 + ], + [ + 109.3605198, + -0.057253 + ], + [ + 109.360332, + -0.0575159 + ], + [ + 109.3602817, + -0.0575887 + ], + [ + 109.3602278, + -0.0576667 + ], + [ + 109.3601709, + -0.057749 + ], + [ + 109.3601148, + -0.0578302 + ], + [ + 109.3600691, + -0.0578963 + ], + [ + 109.3598547, + -0.0581671 + ], + [ + 109.3597391, + -0.058333 + ], + [ + 109.3597283, + -0.0583485 + ], + [ + 109.3596722, + -0.0584231 + ], + [ + 109.3595636, + -0.0585797 + ], + [ + 109.3594382, + -0.058736 + ], + [ + 109.3593002, + -0.0589093 + ], + [ + 109.359259, + -0.0589612 + ], + [ + 109.3592148, + -0.059017 + ], + [ + 109.3591615, + -0.0590842 + ], + [ + 109.358941, + -0.0594019 + ], + [ + 109.3587744, + -0.0596599 + ], + [ + 109.3586956, + -0.0597638 + ], + [ + 109.3585836, + -0.0599379 + ], + [ + 109.3583664, + -0.0602736 + ], + [ + 109.3582945, + -0.0603631 + ], + [ + 109.3580033, + -0.060797 + ], + [ + 109.3579428, + -0.0608925 + ], + [ + 109.3578101, + -0.0610923 + ], + [ + 109.3577938, + -0.0611235 + ], + [ + 109.3575916, + -0.0614567 + ], + [ + 109.3573732, + -0.0618334 + ], + [ + 109.3573667, + -0.0618459 + ], + [ + 109.3572942, + -0.0619613 + ], + [ + 109.3571667, + -0.0621767 + ], + [ + 109.3569675, + -0.0625132 + ], + [ + 109.3569388, + -0.0625564 + ], + [ + 109.3568299, + -0.0627181 + ], + [ + 109.3567595, + -0.0628254 + ], + [ + 109.3567276, + -0.0628993 + ], + [ + 109.3565509, + -0.0632331 + ], + [ + 109.3564224, + -0.0635046 + ], + [ + 109.356395, + -0.0635626 + ] + ] + }, + "id": "way/185231541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231543", + "highway": "unclassified", + "name": "Jalan Nusa Indah Baru", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401682, + -0.0236378 + ], + [ + 109.3384776, + -0.0244203 + ], + [ + 109.3374865, + -0.0248842 + ] + ] + }, + "id": "way/185231543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231544", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349147, + -0.047632 + ], + [ + 109.3491461, + -0.0476286 + ], + [ + 109.3491454, + -0.0476265 + ], + [ + 109.3491442, + -0.0476243 + ], + [ + 109.3491425, + -0.0476219 + ], + [ + 109.349138, + -0.0476178 + ], + [ + 109.3488253, + -0.0473517 + ] + ] + }, + "id": "way/185231544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231545", + "highway": "residential", + "name": "Palapa Blok H-G" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471705, + -0.0495838 + ], + [ + 109.3475119, + -0.049871 + ], + [ + 109.3475427, + -0.0498877 + ], + [ + 109.3475743, + -0.0498944 + ], + [ + 109.3475945, + -0.0498938 + ], + [ + 109.347612, + -0.0498876 + ], + [ + 109.3476319, + -0.0498721 + ], + [ + 109.3476541, + -0.0498455 + ], + [ + 109.3476943, + -0.0497925 + ], + [ + 109.3479963, + -0.0493844 + ], + [ + 109.3483276, + -0.0488668 + ], + [ + 109.3487447, + -0.0482197 + ], + [ + 109.3491395, + -0.0476561 + ], + [ + 109.3491433, + -0.0476471 + ], + [ + 109.3491451, + -0.0476416 + ], + [ + 109.349146, + -0.0476368 + ], + [ + 109.349147, + -0.047632 + ] + ] + }, + "id": "way/185231545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231546", + "highway": "residential", + "name": "Jalan Dokter Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638526, + -0.0642409 + ], + [ + 109.3639896, + -0.063925 + ], + [ + 109.3641189, + -0.0636271 + ], + [ + 109.364693, + -0.0623042 + ], + [ + 109.3650348, + -0.0615152 + ], + [ + 109.3650375, + -0.0615079 + ], + [ + 109.3651669, + -0.0612402 + ], + [ + 109.3653185, + -0.060882 + ], + [ + 109.3653808, + -0.0607349 + ], + [ + 109.3654511, + -0.0605816 + ], + [ + 109.3655612, + -0.0603416 + ], + [ + 109.3656155, + -0.0602277 + ], + [ + 109.3656664, + -0.0601445 + ], + [ + 109.3657395, + -0.0600355 + ] + ] + }, + "id": "way/185231546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231550", + "highway": "residential", + "name": "Jalan Karya Baru 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390447, + -0.0563838 + ], + [ + 109.3385889, + -0.0559576 + ], + [ + 109.3385289, + -0.0558852 + ], + [ + 109.3384803, + -0.055806 + ], + [ + 109.3384427, + -0.0557228 + ], + [ + 109.338103, + -0.054773 + ], + [ + 109.3376864, + -0.0535492 + ], + [ + 109.3376792, + -0.0535271 + ], + [ + 109.3374359, + -0.0528364 + ] + ] + }, + "id": "way/185231550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231551", + "highway": "residential", + "name": "Jalan Untung Suropati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346864, + -0.0481986 + ], + [ + 109.3465163, + -0.0487132 + ], + [ + 109.3464129, + -0.0488779 + ], + [ + 109.3462932, + -0.0490505 + ], + [ + 109.3460092, + -0.0494304 + ], + [ + 109.3459019, + -0.0495551 + ], + [ + 109.3458188, + -0.049637 + ], + [ + 109.345654, + -0.0497781 + ], + [ + 109.3454322, + -0.0499692 + ], + [ + 109.3452567, + -0.0501198 + ], + [ + 109.345211, + -0.0501591 + ] + ] + }, + "id": "way/185231551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231552", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487889, + -0.0466125 + ], + [ + 109.3491431, + -0.0468994 + ] + ] + }, + "id": "way/185231552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231553", + "highway": "residential", + "name": "Komplek Palapa 2A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472904, + -0.0486132 + ], + [ + 109.3487889, + -0.0466125 + ] + ] + }, + "id": "way/185231553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231554", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247044, + -0.0448043 + ], + [ + 109.3243249, + -0.0443973 + ], + [ + 109.324119, + -0.0441632 + ], + [ + 109.32382, + -0.0438401 + ], + [ + 109.3237307, + -0.0437422 + ], + [ + 109.3236174, + -0.0436181 + ] + ] + }, + "id": "way/185231554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231555", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214972, + -0.0461675 + ], + [ + 109.3217493, + -0.0459114 + ], + [ + 109.3223602, + -0.0452864 + ], + [ + 109.3228728, + -0.0447795 + ], + [ + 109.3229268, + -0.0447238 + ], + [ + 109.32382, + -0.0438401 + ] + ] + }, + "id": "way/185231555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231556", + "highway": "residential", + "name": "Jalan Madura" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323479, + -0.0482289 + ], + [ + 109.3229326, + -0.0476606 + ], + [ + 109.3219825, + -0.0466749 + ], + [ + 109.3217736, + -0.0464609 + ], + [ + 109.3214972, + -0.0461675 + ], + [ + 109.3212759, + -0.0459201 + ] + ] + }, + "id": "way/185231556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231557", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202159, + -0.0480701 + ], + [ + 109.3207354, + -0.04752 + ], + [ + 109.3209922, + -0.0472632 + ], + [ + 109.3212564, + -0.0469936 + ], + [ + 109.3217736, + -0.0464609 + ] + ] + }, + "id": "way/185231557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231558", + "highway": "residential", + "name": "Jalan Karya Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371603, + -0.0529458 + ], + [ + 109.3369648, + -0.0522521 + ], + [ + 109.3369177, + -0.0520307 + ], + [ + 109.336903, + -0.0519781 + ], + [ + 109.3367676, + -0.0516204 + ], + [ + 109.3362889, + -0.0500145 + ], + [ + 109.3362795, + -0.0499628 + ], + [ + 109.3362775, + -0.0499172 + ], + [ + 109.3362922, + -0.0498703 + ], + [ + 109.3363123, + -0.0498378 + ], + [ + 109.3363363, + -0.0498098 + ] + ] + }, + "id": "way/185231558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231559", + "highway": "unclassified", + "name": "Daeng Abdul Hadi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366057, + -0.0401459 + ], + [ + 109.3365734, + -0.0401735 + ], + [ + 109.3361524, + -0.0405332 + ], + [ + 109.3360384, + -0.0406297 + ], + [ + 109.3359251, + -0.0407236 + ], + [ + 109.3358872, + -0.0407541 + ], + [ + 109.3356672, + -0.0409313 + ], + [ + 109.3355724, + -0.0410076 + ], + [ + 109.3355244, + -0.0410639 + ], + [ + 109.3354819, + -0.0411236 + ], + [ + 109.335441, + -0.041187 + ], + [ + 109.3354188, + -0.0412245 + ], + [ + 109.3354014, + -0.0412597 + ], + [ + 109.3353561, + -0.0413469 + ], + [ + 109.3353313, + -0.0413989 + ], + [ + 109.3352834, + -0.0414901 + ], + [ + 109.3351674, + -0.0416926 + ], + [ + 109.3351476, + -0.0417261 + ], + [ + 109.3351258, + -0.0417546 + ], + [ + 109.3350953, + -0.0417781 + ], + [ + 109.3350296, + -0.0418156 + ], + [ + 109.3348679, + -0.0418961 + ], + [ + 109.3347573, + -0.0419618 + ], + [ + 109.3345977, + -0.0420423 + ], + [ + 109.3344448, + -0.0421134 + ], + [ + 109.3343509, + -0.042163 + ], + [ + 109.3343015, + -0.0421948 + ] + ] + }, + "id": "way/185231559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231560", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353175, + -0.0425556 + ], + [ + 109.3348679, + -0.0418961 + ] + ] + }, + "id": "way/185231560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231561", + "highway": "residential", + "name": "GM Said" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318427, + -0.0445772 + ], + [ + 109.3324716, + -0.0442471 + ], + [ + 109.3325229, + -0.0442202 + ], + [ + 109.3325954, + -0.0441732 + ], + [ + 109.3330712, + -0.0439085 + ], + [ + 109.3336941, + -0.043564 + ], + [ + 109.3337686, + -0.0435051 + ], + [ + 109.3342567, + -0.0432292 + ], + [ + 109.3343507, + -0.0431798 + ], + [ + 109.3346692, + -0.0429881 + ], + [ + 109.3353175, + -0.0425556 + ] + ] + }, + "id": "way/185231561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231562", + "highway": "residential", + "name": "Jalan Haji Siradj" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3314262, + -0.0438193 + ], + [ + 109.3324265, + -0.0433257 + ], + [ + 109.3333328, + -0.0428102 + ], + [ + 109.3343419, + -0.0423076 + ] + ] + }, + "id": "way/185231562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231563", + "alt_name": "Jalan Podomoro", + "highway": "tertiary", + "name": "Jalan Putri Candramidi", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229382, + -0.0324655 + ], + [ + 109.3230911, + -0.0327297 + ], + [ + 109.323248, + -0.0329818 + ], + [ + 109.3234786, + -0.033313 + ], + [ + 109.3236181, + -0.0335813 + ], + [ + 109.3236664, + -0.0336724 + ], + [ + 109.3238676, + -0.0340024 + ], + [ + 109.3240043, + -0.0341901 + ], + [ + 109.3241941, + -0.0344778 + ], + [ + 109.3242989, + -0.0346325 + ], + [ + 109.3243806, + -0.0347641 + ], + [ + 109.3244719, + -0.0349099 + ], + [ + 109.3246769, + -0.0351979 + ], + [ + 109.3248066, + -0.0353825 + ], + [ + 109.3249009, + -0.0355167 + ], + [ + 109.3250088, + -0.0356565 + ], + [ + 109.3251, + -0.0357573 + ], + [ + 109.3252363, + -0.0359421 + ], + [ + 109.3255978, + -0.0364043 + ], + [ + 109.3256736, + -0.0364909 + ], + [ + 109.3259853, + -0.0368974 + ], + [ + 109.326124, + -0.0370645 + ], + [ + 109.3261507, + -0.0370929 + ], + [ + 109.3264961, + -0.0375201 + ], + [ + 109.3266075, + -0.0376571 + ], + [ + 109.3267576, + -0.0378527 + ], + [ + 109.3268904, + -0.0380364 + ], + [ + 109.3269512, + -0.0381027 + ], + [ + 109.327129, + -0.0383113 + ], + [ + 109.3273376, + -0.0385791 + ], + [ + 109.3274537, + -0.0387118 + ], + [ + 109.3276522, + -0.0389859 + ], + [ + 109.3277785, + -0.0391229 + ], + [ + 109.3279749, + -0.039371 + ] + ] + }, + "id": "way/185231563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231565", + "highway": "residential", + "name": "Gang Tria IV" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251409, + -0.0384776 + ], + [ + 109.3249297, + -0.0386446 + ], + [ + 109.3244188, + -0.0390449 + ], + [ + 109.3241794, + -0.0392482 + ], + [ + 109.3237261, + -0.039584 + ], + [ + 109.323696, + -0.039619 + ], + [ + 109.3236867, + -0.0396363 + ], + [ + 109.3236818, + -0.0396591 + ], + [ + 109.3236818, + -0.0396732 + ], + [ + 109.3236969, + -0.0397131 + ], + [ + 109.3237007, + -0.0397375 + ], + [ + 109.3236996, + -0.0397587 + ], + [ + 109.323694, + -0.03978 + ], + [ + 109.3230687, + -0.0403173 + ], + [ + 109.3225672, + -0.0407595 + ] + ] + }, + "id": "way/185231565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231567", + "highway": "residential", + "name": "Jalan Irian" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3289869, + -0.0395844 + ], + [ + 109.3286457, + -0.0398908 + ], + [ + 109.3279965, + -0.0404742 + ], + [ + 109.3271343, + -0.0412713 + ], + [ + 109.3268354, + -0.0415485 + ] + ] + }, + "id": "way/185231567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231570", + "highway": "residential", + "name": "Jalan Maluku" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284552, + -0.0432046 + ], + [ + 109.3283773, + -0.0430759 + ], + [ + 109.3280671, + -0.0426333 + ], + [ + 109.3278171, + -0.0422726 + ], + [ + 109.3274436, + -0.0417131 + ], + [ + 109.3271343, + -0.0412713 + ] + ] + }, + "id": "way/185231570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231571", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275568, + -0.0426395 + ], + [ + 109.3276854, + -0.0424644 + ], + [ + 109.3278171, + -0.0422726 + ] + ] + }, + "id": "way/185231571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231573", + "highway": "residential", + "name": "Jalan Kalimantan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300126, + -0.041469 + ], + [ + 109.3294488, + -0.0418166 + ], + [ + 109.3292625, + -0.0419279 + ], + [ + 109.3280671, + -0.0426333 + ] + ] + }, + "id": "way/185231573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231577", + "highway": "unclassified", + "name": "Jalan Suprapto", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3384571, + -0.0421174 + ], + [ + 109.3384824, + -0.0420955 + ], + [ + 109.3393877, + -0.0413105 + ], + [ + 109.3398633, + -0.0409423 + ], + [ + 109.3404101, + -0.0405234 + ], + [ + 109.3408523, + -0.040127 + ], + [ + 109.3410117, + -0.0399794 + ], + [ + 109.3411815, + -0.0398195 + ], + [ + 109.3412329, + -0.0397611 + ], + [ + 109.3412617, + -0.0397188 + ], + [ + 109.3412831, + -0.0396806 + ], + [ + 109.3413006, + -0.039637 + ], + [ + 109.3413087, + -0.0395902 + ], + [ + 109.3413242, + -0.0392712 + ], + [ + 109.3413422, + -0.038884 + ] + ] + }, + "id": "way/185231577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231583", + "highway": "service", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3381953, + -0.0460683 + ], + [ + 109.3384732, + -0.0460907 + ], + [ + 109.3386348, + -0.0461028 + ], + [ + 109.3387599, + -0.0461116 + ], + [ + 109.3388294, + -0.0460419 + ], + [ + 109.338909, + -0.045962 + ], + [ + 109.3391438, + -0.0457474 + ], + [ + 109.3394082, + -0.0455186 + ], + [ + 109.3400511, + -0.0449621 + ] + ] + }, + "id": "way/185231583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231588", + "access": "yes", + "bicycle": "yes", + "highway": "service", + "motor_vehicle": "yes", + "oneway": "reversible" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33645, + -0.0456522 + ], + [ + 109.336487, + -0.0456643 + ], + [ + 109.3365122, + -0.0456894 + ], + [ + 109.3365309, + -0.0457239 + ], + [ + 109.3365568, + -0.0458959 + ], + [ + 109.3365695, + -0.0459938 + ], + [ + 109.3366346, + -0.045956 + ], + [ + 109.3366859, + -0.0459077 + ], + [ + 109.3367375, + -0.0458457 + ], + [ + 109.3367851, + -0.0457679 + ], + [ + 109.3368628, + -0.0456405 + ], + [ + 109.3369292, + -0.0455372 + ], + [ + 109.3369779, + -0.0454752 + ], + [ + 109.337052, + -0.0454195 + ], + [ + 109.33717, + -0.0453568 + ], + [ + 109.3373007, + -0.0453119 + ], + [ + 109.3374241, + -0.0452831 + ], + [ + 109.337516, + -0.0452797 + ], + [ + 109.3376276, + -0.0452945 + ], + [ + 109.3377366, + -0.0453233 + ], + [ + 109.3378305, + -0.0453615 + ], + [ + 109.3379311, + -0.0454165 + ], + [ + 109.3380183, + -0.0454823 + ], + [ + 109.3380833, + -0.0455546 + ], + [ + 109.3381299, + -0.0456354 + ], + [ + 109.3381637, + -0.0457384 + ], + [ + 109.3381853, + -0.0458396 + ], + [ + 109.3381953, + -0.0460683 + ] + ] + }, + "id": "way/185231588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231592", + "highway": "tertiary", + "junction": "roundabout", + "name": "Bundaran Kota Baru", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192091, + -0.0477788 + ], + [ + 109.3192609, + -0.0477819 + ], + [ + 109.3193081, + -0.0478035 + ], + [ + 109.3193385, + -0.0478327 + ], + [ + 109.3193589, + -0.0478696 + ], + [ + 109.3193674, + -0.0479109 + ], + [ + 109.3193633, + -0.0479529 + ], + [ + 109.319347, + -0.0479918 + ], + [ + 109.3193178, + -0.0480258 + ], + [ + 109.3192794, + -0.048049 + ], + [ + 109.3192483, + -0.0480575 + ], + [ + 109.3192159, + -0.0480588 + ], + [ + 109.3191842, + -0.0480526 + ], + [ + 109.3191547, + -0.0480393 + ], + [ + 109.319129, + -0.0480196 + ], + [ + 109.3191095, + -0.0479962 + ], + [ + 109.3190956, + -0.0479692 + ], + [ + 109.3190877, + -0.0479398 + ], + [ + 109.3190864, + -0.0479094 + ], + [ + 109.3190973, + -0.0478635 + ], + [ + 109.3191227, + -0.0478238 + ], + [ + 109.3191598, + -0.0477947 + ], + [ + 109.3192091, + -0.0477788 + ] + ] + }, + "id": "way/185231592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231593", + "access": "yes", + "bridge": "yes", + "foot": "yes", + "hgv": "no", + "highway": "trunk", + "layer": "1", + "maxweight": "5", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes", + "surface": "asphalt", + "truck": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533444, + -0.0362722 + ], + [ + 109.3501016, + -0.0382711 + ] + ] + }, + "id": "way/185231593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231595", + "highway": "residential", + "name": "Jalan S. Parman", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383646, + -0.0342555 + ], + [ + 109.3375417, + -0.034987 + ], + [ + 109.3375153, + -0.035011 + ], + [ + 109.3370521, + -0.0354328 + ], + [ + 109.3366734, + -0.0357776 + ], + [ + 109.3366587, + -0.0357921 + ], + [ + 109.3358065, + -0.0365135 + ], + [ + 109.3355062, + -0.036763 + ], + [ + 109.3351447, + -0.0370577 + ], + [ + 109.3348752, + -0.0372774 + ], + [ + 109.3347137, + -0.0374091 + ], + [ + 109.3346223, + -0.0374836 + ] + ] + }, + "id": "way/185231595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231596", + "highway": "unclassified", + "name": "Jalan Wage Rudolf Supratman", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364511, + -0.0318485 + ], + [ + 109.3368673, + -0.0323794 + ], + [ + 109.337145, + -0.0327335 + ], + [ + 109.3373781, + -0.0330308 + ], + [ + 109.3376177, + -0.0333399 + ], + [ + 109.3378087, + -0.0335694 + ], + [ + 109.3383646, + -0.0342555 + ], + [ + 109.3389902, + -0.0350869 + ], + [ + 109.3392266, + -0.0354083 + ], + [ + 109.3394607, + -0.0356676 + ], + [ + 109.3395774, + -0.0357968 + ], + [ + 109.3397248, + -0.03596 + ], + [ + 109.3397759, + -0.0360166 + ], + [ + 109.3398623, + -0.0361102 + ], + [ + 109.3400372, + -0.0363214 + ], + [ + 109.3401822, + -0.0364965 + ], + [ + 109.3403868, + -0.0367435 + ], + [ + 109.3404291, + -0.0367944 + ], + [ + 109.3405252, + -0.0369101 + ], + [ + 109.3406758, + -0.0370835 + ], + [ + 109.3412467, + -0.037741 + ], + [ + 109.3412711, + -0.0377823 + ], + [ + 109.3412876, + -0.0378248 + ], + [ + 109.3413001, + -0.0379158 + ], + [ + 109.3413033, + -0.03797 + ], + [ + 109.341305, + -0.0380078 + ], + [ + 109.3413212, + -0.0383714 + ], + [ + 109.3413422, + -0.038884 + ] + ] + }, + "id": "way/185231596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185231597", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342078, + -0.0360568 + ], + [ + 109.3419716, + -0.0357077 + ], + [ + 109.3418577, + -0.0354073 + ], + [ + 109.3418105, + -0.0353013 + ], + [ + 109.3416184, + -0.0349165 + ], + [ + 109.3413603, + -0.03443 + ], + [ + 109.3413048, + -0.0343232 + ], + [ + 109.3411134, + -0.0340093 + ], + [ + 109.340954, + -0.0337694 + ], + [ + 109.34085, + -0.0335828 + ], + [ + 109.3408287, + -0.0335409 + ], + [ + 109.340812, + -0.0335082 + ], + [ + 109.3407085, + -0.0333192 + ], + [ + 109.3405753, + -0.0330631 + ], + [ + 109.3405018, + -0.0329157 + ], + [ + 109.3404308, + -0.032721 + ], + [ + 109.3403806, + -0.0325137 + ], + [ + 109.3403108, + -0.032212 + ], + [ + 109.3402679, + -0.0320363 + ], + [ + 109.3402089, + -0.0318056 + ], + [ + 109.340174, + -0.0317131 + ], + [ + 109.3401043, + -0.0315602 + ], + [ + 109.3399997, + -0.0313456 + ], + [ + 109.3398093, + -0.0309876 + ], + [ + 109.3396832, + -0.030659 + ], + [ + 109.3395117, + -0.0303443 + ], + [ + 109.3394307, + -0.0301717 + ], + [ + 109.3392311, + -0.0298146 + ], + [ + 109.3391503, + -0.02967 + ] + ] + }, + "id": "way/185231597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/185400578", + "access": "yes", + "highway": "tertiary", + "name": "Jalan Gusti Sulung Lelanang", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379094, + -0.0304889 + ], + [ + 109.337795, + -0.0305909 + ], + [ + 109.3375441, + -0.0308146 + ], + [ + 109.337288, + -0.0310405 + ], + [ + 109.3366872, + -0.0316279 + ], + [ + 109.3365846, + -0.0317278 + ], + [ + 109.3364511, + -0.0318485 + ], + [ + 109.335908, + -0.0324064 + ], + [ + 109.3355915, + -0.0326988 + ], + [ + 109.3350349, + -0.0332205 + ], + [ + 109.3348965, + -0.033353 + ], + [ + 109.3346536, + -0.0335855 + ], + [ + 109.3342518, + -0.0339702 + ], + [ + 109.3340081, + -0.0342141 + ], + [ + 109.3339669, + -0.0342553 + ], + [ + 109.3337443, + -0.034478 + ], + [ + 109.3336425, + -0.0345799 + ], + [ + 109.3331779, + -0.0350448 + ], + [ + 109.3331236, + -0.035091 + ] + ] + }, + "id": "way/185400578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422923", + "highway": "residential", + "name": "Jeruju Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301257, + -0.0086416 + ], + [ + 109.3011797, + -0.0081981 + ], + [ + 109.3009975, + -0.0071413 + ], + [ + 109.3009615, + -0.006955 + ], + [ + 109.3009235, + -0.0068159 + ], + [ + 109.3008811, + -0.0067476 + ], + [ + 109.3008017, + -0.0066454 + ], + [ + 109.3006089, + -0.0063205 + ], + [ + 109.300404, + -0.0059296 + ] + ] + }, + "id": "way/186422923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422924", + "highway": "tertiary", + "name": "Jalan Husein Hamzah", + "oneway": "yes", + "ref": "002.3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028373, + -0.0243137 + ], + [ + 109.3023561, + -0.0247362 + ], + [ + 109.3023275, + -0.0247613 + ], + [ + 109.3020438, + -0.0250311 + ], + [ + 109.3018806, + -0.0251897 + ], + [ + 109.3015681, + -0.0254764 + ], + [ + 109.3012001, + -0.0258086 + ], + [ + 109.3010038, + -0.0259628 + ], + [ + 109.3008556, + -0.0260507 + ], + [ + 109.3006838, + -0.0261504 + ], + [ + 109.3004725, + -0.0262642 + ], + [ + 109.3002006, + -0.0264055 + ], + [ + 109.300082, + -0.0264739 + ], + [ + 109.3000337, + -0.026496 + ], + [ + 109.2997704, + -0.0266398 + ], + [ + 109.2996101, + -0.0267308 + ], + [ + 109.2994848, + -0.0267922 + ], + [ + 109.2993527, + -0.0268569 + ], + [ + 109.2991588, + -0.0269632 + ], + [ + 109.2990078, + -0.027046 + ], + [ + 109.2987286, + -0.02721 + ], + [ + 109.2984593, + -0.0273577 + ], + [ + 109.2983347, + -0.0274308 + ], + [ + 109.2981971, + -0.0275115 + ], + [ + 109.2974659, + -0.0279403 + ], + [ + 109.2974029, + -0.0279835 + ], + [ + 109.2968979, + -0.0283294 + ], + [ + 109.2967722, + -0.0284038 + ], + [ + 109.2966674, + -0.0284658 + ], + [ + 109.2966209, + -0.0284959 + ], + [ + 109.2965715, + -0.0285258 + ], + [ + 109.2962583, + -0.0286947 + ], + [ + 109.2960472, + -0.0288305 + ], + [ + 109.2959705, + -0.0288972 + ], + [ + 109.295869, + -0.0289854 + ], + [ + 109.2957002, + -0.0291321 + ], + [ + 109.2955546, + -0.0292761 + ], + [ + 109.2954146, + -0.0294196 + ], + [ + 109.2953649, + -0.0294652 + ], + [ + 109.2950681, + -0.0297433 + ], + [ + 109.2948514, + -0.0299476 + ], + [ + 109.2947007, + -0.0301111 + ], + [ + 109.2946909, + -0.0301265 + ], + [ + 109.294578, + -0.0302568 + ], + [ + 109.2945067, + -0.0303533 + ], + [ + 109.2942142, + -0.0307259 + ], + [ + 109.2941928, + -0.030754 + ], + [ + 109.2941542, + -0.0307971 + ], + [ + 109.2940064, + -0.0309619 + ], + [ + 109.2936557, + -0.0313379 + ], + [ + 109.2935754, + -0.0314184 + ], + [ + 109.2933787, + -0.0316317 + ], + [ + 109.2933132, + -0.0317037 + ], + [ + 109.2932568, + -0.0317574 + ], + [ + 109.29316, + -0.0318442 + ], + [ + 109.2929836, + -0.0319981 + ], + [ + 109.2928541, + -0.0321157 + ], + [ + 109.2926987, + -0.0322393 + ], + [ + 109.2924724, + -0.0324203 + ], + [ + 109.2922914, + -0.0325711 + ], + [ + 109.2921629, + -0.032673 + ], + [ + 109.2920398, + -0.032762 + ], + [ + 109.2919299, + -0.0328348 + ], + [ + 109.2916801, + -0.0330295 + ], + [ + 109.2915467, + -0.0331575 + ], + [ + 109.2915001, + -0.0332109 + ], + [ + 109.2912462, + -0.0334603 + ], + [ + 109.291111, + -0.033597 + ], + [ + 109.2910454, + -0.0336616 + ], + [ + 109.2904821, + -0.0342158 + ], + [ + 109.290356, + -0.0343292 + ], + [ + 109.2900791, + -0.0345946 + ], + [ + 109.2900444, + -0.034627 + ], + [ + 109.2897929, + -0.034885 + ], + [ + 109.2895998, + -0.0350635 + ], + [ + 109.2895934, + -0.0350694 + ], + [ + 109.2893966, + -0.0352483 + ], + [ + 109.2893207, + -0.0353591 + ], + [ + 109.2893101, + -0.0353733 + ], + [ + 109.289166, + -0.035566 + ], + [ + 109.2891088, + -0.0356481 + ], + [ + 109.2890334, + -0.0357839 + ], + [ + 109.2889656, + -0.0359271 + ], + [ + 109.2888831, + -0.0361394 + ], + [ + 109.2888652, + -0.0362021 + ], + [ + 109.2887665, + -0.0364135 + ], + [ + 109.2886995, + -0.0365513 + ], + [ + 109.2886628, + -0.0366321 + ], + [ + 109.2886064, + -0.036722 + ], + [ + 109.2885098, + -0.0368375 + ], + [ + 109.2883876, + -0.0369156 + ], + [ + 109.2882953, + -0.0369725 + ], + [ + 109.2881387, + -0.0370363 + ], + [ + 109.2880511, + -0.0370682 + ], + [ + 109.2879728, + -0.0370966 + ], + [ + 109.2876998, + -0.037194 + ], + [ + 109.287642, + -0.0372167 + ], + [ + 109.2875155, + -0.0372711 + ], + [ + 109.2874439, + -0.0373033 + ], + [ + 109.2873756, + -0.0373523 + ], + [ + 109.2873267, + -0.0373923 + ], + [ + 109.2872261, + -0.0374738 + ], + [ + 109.2871132, + -0.0375858 + ], + [ + 109.2869531, + -0.037739 + ] + ] + }, + "id": "way/186422924" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422925", + "highway": "unclassified", + "name": "Jalan Karet" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2963966, + -0.0218657 + ], + [ + 109.296432, + -0.0217311 + ], + [ + 109.2964402, + -0.0217003 + ], + [ + 109.2964664, + -0.0215897 + ], + [ + 109.2966586, + -0.0209467 + ], + [ + 109.2968009, + -0.0205555 + ], + [ + 109.2968971, + -0.0203078 + ], + [ + 109.297033, + -0.0199878 + ], + [ + 109.297162, + -0.0197082 + ], + [ + 109.2972185, + -0.0195859 + ], + [ + 109.2975013, + -0.018973 + ], + [ + 109.2976788, + -0.0185834 + ], + [ + 109.2977537, + -0.0184444 + ], + [ + 109.2977801, + -0.0184006 + ], + [ + 109.2978479, + -0.0182664 + ], + [ + 109.2979159, + -0.0181133 + ], + [ + 109.2979735, + -0.0179758 + ], + [ + 109.2980471, + -0.0177715 + ], + [ + 109.2981227, + -0.0175658 + ], + [ + 109.2981669, + -0.0174656 + ], + [ + 109.2982793, + -0.0172225 + ], + [ + 109.2983159, + -0.0171437 + ], + [ + 109.2984263, + -0.0169004 + ], + [ + 109.2984466, + -0.0168375 + ], + [ + 109.2984693, + -0.0167072 + ], + [ + 109.2984813, + -0.0165644 + ], + [ + 109.2984821, + -0.0165095 + ], + [ + 109.298442, + -0.0160022 + ], + [ + 109.2983958, + -0.0156721 + ], + [ + 109.2983201, + -0.0151303 + ], + [ + 109.298245, + -0.0145997 + ], + [ + 109.2982052, + -0.0142465 + ], + [ + 109.2981746, + -0.0138608 + ], + [ + 109.2981407, + -0.0134337 + ], + [ + 109.2981333, + -0.013324 + ] + ] + }, + "id": "way/186422925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422926", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258726, + -0.0381252 + ], + [ + 109.325259, + -0.0386433 + ] + ] + }, + "id": "way/186422926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422927", + "foot": "yes", + "highway": "tertiary", + "name": "Jalan Putri Dara Nante", + "name:id": "Jalan Putri Dara Nante", + "name:ms": "Jalan Putri Dara Nante", + "oneway": "no", + "sidewalk": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257371, + -0.0303331 + ], + [ + 109.3260103, + -0.0307561 + ], + [ + 109.3260732, + -0.0308744 + ], + [ + 109.3261754, + -0.0310665 + ], + [ + 109.3264006, + -0.0314278 + ], + [ + 109.3264242, + -0.0314656 + ], + [ + 109.3265673, + -0.0316951 + ], + [ + 109.3268059, + -0.0320778 + ], + [ + 109.3270267, + -0.0324094 + ], + [ + 109.3272143, + -0.032733 + ], + [ + 109.3273288, + -0.032893 + ], + [ + 109.3274245, + -0.0330489 + ], + [ + 109.3277026, + -0.0335005 + ], + [ + 109.3277806, + -0.0336225 + ], + [ + 109.3280969, + -0.0341285 + ], + [ + 109.3282038, + -0.0342913 + ], + [ + 109.3283281, + -0.0345013 + ], + [ + 109.3284715, + -0.034727 + ], + [ + 109.3287706, + -0.0351691 + ], + [ + 109.3289265, + -0.035407 + ], + [ + 109.329059, + -0.0356305 + ], + [ + 109.3293487, + -0.0361642 + ], + [ + 109.329519, + -0.036415 + ], + [ + 109.3295945, + -0.0365261 + ], + [ + 109.3297177, + -0.0367248 + ], + [ + 109.3300495, + -0.0372332 + ], + [ + 109.3302004, + -0.0374629 + ] + ] + }, + "id": "way/186422927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422928", + "access": "yes", + "highway": "residential", + "name": "Karimata" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285478, + -0.0287543 + ], + [ + 109.3278212, + -0.0293175 + ] + ] + }, + "id": "way/186422928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422929", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "name": "Jalan Wan Sagaf", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273288, + -0.032893 + ], + [ + 109.3281853, + -0.032162 + ], + [ + 109.3285334, + -0.0318649 + ], + [ + 109.3290549, + -0.0314087 + ], + [ + 109.3292856, + -0.0311592 + ], + [ + 109.3293849, + -0.0310238 + ], + [ + 109.329527, + -0.0308159 + ], + [ + 109.3296677, + -0.0306278 + ] + ] + }, + "id": "way/186422929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422930", + "highway": "unclassified", + "name": "Jalan Tabrani Ahmad" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971473, + -0.0274771 + ], + [ + 109.2965341, + -0.0265932 + ], + [ + 109.2963767, + -0.0263663 + ], + [ + 109.295321, + -0.0248444 + ] + ] + }, + "id": "way/186422930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422932", + "highway": "residential", + "name": "Jalan Jeranding", + "oneway:conditional": "no @ (08:00-06:00)" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316273, + -0.0160694 + ], + [ + 109.3167317, + -0.0175976 + ], + [ + 109.3168303, + -0.017926 + ], + [ + 109.3170247, + -0.0185754 + ], + [ + 109.3171976, + -0.0192304 + ], + [ + 109.3175885, + -0.0206074 + ], + [ + 109.3176248, + -0.0207781 + ] + ] + }, + "id": "way/186422932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422933", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248978, + -0.0381413 + ], + [ + 109.326124, + -0.0370645 + ] + ] + }, + "id": "way/186422933" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422934", + "access": "yes", + "highway": "residential", + "name": "Karimata", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260103, + -0.0307561 + ], + [ + 109.3262919, + -0.0305395 + ], + [ + 109.3265365, + -0.0303468 + ], + [ + 109.3269529, + -0.0299954 + ] + ] + }, + "id": "way/186422934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422935", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244006, + -0.0374799 + ], + [ + 109.3248669, + -0.0380982 + ], + [ + 109.3248978, + -0.0381413 + ], + [ + 109.3251409, + -0.0384776 + ], + [ + 109.325259, + -0.0386433 + ], + [ + 109.3255387, + -0.0390479 + ], + [ + 109.3256507, + -0.0392014 + ], + [ + 109.3260752, + -0.0398585 + ], + [ + 109.3261322, + -0.0399467 + ] + ] + }, + "id": "way/186422935" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186422937", + "highway": "unclassified", + "name": "Jalan M. Saad A'in" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132484, + -0.0106831 + ], + [ + 109.3126433, + -0.0104138 + ], + [ + 109.3125852, + -0.0103867 + ], + [ + 109.3125319, + -0.0103618 + ], + [ + 109.3122298, + -0.0102146 + ], + [ + 109.3120001, + -0.0101092 + ], + [ + 109.3117704, + -0.0100038 + ], + [ + 109.3113171, + -0.0097928 + ], + [ + 109.3112367, + -0.0097533 + ], + [ + 109.310973, + -0.0096156 + ] + ] + }, + "id": "way/186422937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186472993", + "highway": "unclassified", + "name": "Jalan Subarkah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300826, + -0.0413635 + ], + [ + 109.3305478, + -0.0411173 + ], + [ + 109.3309399, + -0.0408972 + ], + [ + 109.3315739, + -0.0405413 + ], + [ + 109.3318404, + -0.0404019 + ], + [ + 109.3321216, + -0.0402549 + ], + [ + 109.3322374, + -0.0401943 + ], + [ + 109.3323134, + -0.0401546 + ], + [ + 109.3326503, + -0.0399702 + ], + [ + 109.3329526, + -0.0398048 + ] + ] + }, + "id": "way/186472993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186472994", + "highway": "primary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327241, + -0.0352497 + ], + [ + 109.3326941, + -0.0352004 + ], + [ + 109.3326759, + -0.0351705 + ], + [ + 109.3326035, + -0.0350632 + ], + [ + 109.3324507, + -0.0348807 + ], + [ + 109.3324171, + -0.0348406 + ], + [ + 109.3322207, + -0.0346134 + ], + [ + 109.3320834, + -0.0344568 + ], + [ + 109.3320269, + -0.034392 + ], + [ + 109.3320199, + -0.0343295 + ] + ] + }, + "id": "way/186472994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186472995", + "highway": "residential", + "name": "Jalan Pang Semangai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3306516, + -0.0424091 + ], + [ + 109.3312164, + -0.0420613 + ], + [ + 109.3312781, + -0.0420291 + ], + [ + 109.331327, + -0.042009 + ], + [ + 109.3313255, + -0.041994 + ], + [ + 109.331325, + -0.0419728 + ], + [ + 109.3312948, + -0.0417304 + ], + [ + 109.3312976, + -0.0417037 + ], + [ + 109.331306, + -0.0416845 + ], + [ + 109.3313512, + -0.0416472 + ], + [ + 109.3318699, + -0.0413945 + ], + [ + 109.3319242, + -0.0413388 + ], + [ + 109.3319316, + -0.0413147 + ], + [ + 109.3319377, + -0.0412832 + ], + [ + 109.3319339, + -0.0412453 + ], + [ + 109.3315739, + -0.0405413 + ] + ] + }, + "id": "way/186472995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186472996", + "access": "yes", + "highway": "primary", + "motor_vehicle": "yes", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328693, + -0.0352537 + ], + [ + 109.3328085, + -0.0351707 + ], + [ + 109.3327774, + -0.0351247 + ], + [ + 109.3327658, + -0.0351074 + ], + [ + 109.3326907, + -0.0350189 + ], + [ + 109.3326384, + -0.0349639 + ], + [ + 109.3325056, + -0.0348178 + ], + [ + 109.3322783, + -0.0345556 + ], + [ + 109.3321611, + -0.0344131 + ], + [ + 109.3320927, + -0.0343467 + ], + [ + 109.3320199, + -0.0343295 + ] + ] + }, + "id": "way/186472996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186472997", + "highway": "primary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327924, + -0.035348 + ], + [ + 109.3327241, + -0.0352497 + ] + ] + }, + "id": "way/186472997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186472998", + "access": "yes", + "highway": "unclassified", + "name": "Jalan Karel Satsuit Tubun", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343015, + -0.0421948 + ], + [ + 109.3342826, + -0.0421603 + ], + [ + 109.3341855, + -0.0419715 + ], + [ + 109.3340863, + -0.0418045 + ], + [ + 109.3340076, + -0.0416721 + ], + [ + 109.3339485, + -0.0415593 + ], + [ + 109.3338937, + -0.0414535 + ], + [ + 109.3338458, + -0.0413668 + ], + [ + 109.3337772, + -0.0412414 + ], + [ + 109.3337589, + -0.0412067 + ], + [ + 109.3336375, + -0.0409801 + ], + [ + 109.3335444, + -0.0408033 + ], + [ + 109.3334752, + -0.040664 + ], + [ + 109.3333957, + -0.0405204 + ], + [ + 109.3333277, + -0.0403967 + ], + [ + 109.3332018, + -0.0401871 + ], + [ + 109.3331319, + -0.0400695 + ], + [ + 109.3330327, + -0.0399153 + ], + [ + 109.3329526, + -0.0398048 + ], + [ + 109.3327215, + -0.0394338 + ], + [ + 109.332548, + -0.0391815 + ] + ] + }, + "id": "way/186472998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186472999", + "highway": "tertiary", + "motorcycle": "yes", + "name": "Jalan Diponegoro", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362627, + -0.0302174 + ], + [ + 109.3369604, + -0.0302191 + ], + [ + 109.337845, + -0.0302066 + ], + [ + 109.3380604, + -0.0301051 + ], + [ + 109.3389592, + -0.0295567 + ], + [ + 109.3390608, + -0.0294926 + ] + ] + }, + "id": "way/186472999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186474862", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391241, + -0.0294435 + ], + [ + 109.339159, + -0.0295164 + ] + ] + }, + "id": "way/186474862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186474863", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383475, + -0.026513 + ], + [ + 109.3384239, + -0.0265599 + ], + [ + 109.3385231, + -0.0267094 + ], + [ + 109.338597, + -0.0268186 + ], + [ + 109.3386463, + -0.0269263 + ], + [ + 109.3386595, + -0.0270235 + ], + [ + 109.3386819, + -0.0275964 + ] + ] + }, + "id": "way/186474863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186474865", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388839, + -0.0428993 + ], + [ + 109.3388129, + -0.0429571 + ], + [ + 109.3385744, + -0.0431512 + ], + [ + 109.3378435, + -0.0437461 + ], + [ + 109.3375694, + -0.0439705 + ], + [ + 109.3370848, + -0.0443651 + ], + [ + 109.3368299, + -0.0445726 + ], + [ + 109.3364828, + -0.0448552 + ], + [ + 109.3363828, + -0.0449366 + ], + [ + 109.3363055, + -0.04499 + ], + [ + 109.3358792, + -0.0452844 + ], + [ + 109.3355758, + -0.0455208 + ], + [ + 109.3345958, + -0.0462492 + ], + [ + 109.3343419, + -0.0464631 + ], + [ + 109.3339642, + -0.046721 + ], + [ + 109.3338008, + -0.0468507 + ], + [ + 109.3333337, + -0.0472162 + ] + ] + }, + "id": "way/186474865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186474867", + "highway": "tertiary_link", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337438, + -0.0478753 + ], + [ + 109.333845, + -0.0478106 + ] + ] + }, + "id": "way/186474867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186481583", + "highway": "residential", + "name": "Jalan Insinyur Haji Juanda", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416788, + -0.0254555 + ], + [ + 109.3397958, + -0.0263892 + ], + [ + 109.3386463, + -0.0269263 + ], + [ + 109.3385717, + -0.0269459 + ] + ] + }, + "id": "way/186481583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186481585", + "highway": "residential", + "name": "Jalan Nusa Indah 1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377882, + -0.0255387 + ], + [ + 109.3386304, + -0.0249794 + ], + [ + 109.3394579, + -0.024503 + ], + [ + 109.3395216, + -0.0244664 + ], + [ + 109.3395685, + -0.024445 + ], + [ + 109.3396208, + -0.0244316 + ], + [ + 109.3396993, + -0.0244269 + ], + [ + 109.3397764, + -0.0244269 + ], + [ + 109.3398301, + -0.0244195 + ], + [ + 109.3398763, + -0.0243987 + ], + [ + 109.3404874, + -0.0240299 + ] + ] + }, + "id": "way/186481585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186722475", + "highway": "unclassified", + "name": "Jalan Cendana", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296348, + -0.0305716 + ], + [ + 109.330042, + -0.0302392 + ], + [ + 109.3302566, + -0.0300595 + ], + [ + 109.3304356, + -0.0299309 + ], + [ + 109.330542, + -0.0298545 + ], + [ + 109.3311116, + -0.0294577 + ], + [ + 109.3312906, + -0.0293237 + ], + [ + 109.3315098, + -0.0291595 + ], + [ + 109.3318181, + -0.0289287 + ], + [ + 109.3320067, + -0.0287874 + ], + [ + 109.3320631, + -0.0287632 + ], + [ + 109.3321355, + -0.0287425 + ], + [ + 109.332232, + -0.0287291 + ], + [ + 109.3322709, + -0.0287163 + ], + [ + 109.3322971, + -0.0286978 + ], + [ + 109.332342, + -0.0286661 + ], + [ + 109.3326719, + -0.028418 + ], + [ + 109.3328735, + -0.0282553 + ], + [ + 109.3329911, + -0.0281605 + ], + [ + 109.3330783, + -0.0280867 + ], + [ + 109.3331601, + -0.0280291 + ], + [ + 109.3334337, + -0.0278177 + ] + ] + }, + "id": "way/186722475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985279", + "highway": "trunk", + "name": "Jalan Veteran", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452287, + -0.0415421 + ], + [ + 109.3450569, + -0.0416565 + ], + [ + 109.3447906, + -0.0418537 + ], + [ + 109.344714, + -0.0419367 + ], + [ + 109.3446895, + -0.0419632 + ], + [ + 109.3444555, + -0.0423252 + ], + [ + 109.3444176, + -0.0424013 + ], + [ + 109.3441925, + -0.0428069 + ], + [ + 109.3441664, + -0.0428539 + ], + [ + 109.3441396, + -0.0429064 + ], + [ + 109.3439324, + -0.0433119 + ], + [ + 109.3437025, + -0.0437703 + ], + [ + 109.3435378, + -0.0440694 + ], + [ + 109.343469, + -0.0442136 + ], + [ + 109.3432281, + -0.0446818 + ], + [ + 109.3430642, + -0.0450002 + ], + [ + 109.3426327, + -0.0458321 + ], + [ + 109.3423415, + -0.0464152 + ], + [ + 109.3423148, + -0.0464686 + ], + [ + 109.342299, + -0.0465115 + ], + [ + 109.342293, + -0.0465618 + ], + [ + 109.3422927, + -0.0466074 + ], + [ + 109.3423004, + -0.046658 + ], + [ + 109.3423499, + -0.0467916 + ] + ] + }, + "id": "way/186985279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985280", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396527, + -0.0290629 + ], + [ + 109.339692, + -0.0290994 + ] + ] + }, + "id": "way/186985280" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985281", + "highway": "residential", + "name": "Jalan Suez Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435761, + -0.0370274 + ], + [ + 109.3437412, + -0.0374898 + ], + [ + 109.3439616, + -0.0380342 + ], + [ + 109.3442031, + -0.0383867 + ], + [ + 109.3445374, + -0.0388749 + ], + [ + 109.3445467, + -0.0388887 + ], + [ + 109.3446596, + -0.0390552 + ] + ] + }, + "id": "way/186985281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985282", + "highway": "residential", + "name": "Jalan Setia Budi", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451419, + -0.0309402 + ], + [ + 109.3447593, + -0.0311534 + ], + [ + 109.344275, + -0.0314232 + ], + [ + 109.3439614, + -0.0315875 + ], + [ + 109.343373, + -0.0319163 + ], + [ + 109.343022, + -0.0321142 + ], + [ + 109.3426233, + -0.0323294 + ], + [ + 109.3423282, + -0.032492 + ], + [ + 109.3421324, + -0.032604 + ], + [ + 109.3417438, + -0.0328289 + ], + [ + 109.3415608, + -0.0329186 + ], + [ + 109.3412714, + -0.0330774 + ], + [ + 109.340805, + -0.0333355 + ] + ] + }, + "id": "way/186985282" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985284", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500719, + -0.0263897 + ], + [ + 109.3500974, + -0.0264327 + ], + [ + 109.3503511, + -0.0269725 + ], + [ + 109.3503609, + -0.0269952 + ], + [ + 109.350389, + -0.0270602 + ], + [ + 109.3504206, + -0.0271335 + ], + [ + 109.3505422, + -0.0274154 + ], + [ + 109.3505925, + -0.0275319 + ], + [ + 109.3506729, + -0.0276963 + ], + [ + 109.350742, + -0.0278376 + ], + [ + 109.3507837, + -0.0278963 + ], + [ + 109.3508308, + -0.0279628 + ], + [ + 109.3508769, + -0.0280278 + ], + [ + 109.3508952, + -0.0280536 + ], + [ + 109.3510886, + -0.0283263 + ], + [ + 109.3511819, + -0.0284579 + ], + [ + 109.3512254, + -0.0285151 + ], + [ + 109.3513093, + -0.0286253 + ], + [ + 109.3514413, + -0.0287988 + ], + [ + 109.3514682, + -0.0288342 + ], + [ + 109.3515613, + -0.0289566 + ], + [ + 109.3515926, + -0.0289978 + ], + [ + 109.3517085, + -0.02915 + ], + [ + 109.3517484, + -0.0292019 + ], + [ + 109.3518137, + -0.0292868 + ], + [ + 109.3520355, + -0.0295751 + ], + [ + 109.3521704, + -0.0297572 + ], + [ + 109.3521935, + -0.0297876 + ], + [ + 109.3522672, + -0.0298845 + ], + [ + 109.3523685, + -0.0300177 + ], + [ + 109.35239, + -0.0300459 + ], + [ + 109.352451, + -0.0301261 + ], + [ + 109.3526223, + -0.030329 + ] + ] + }, + "id": "way/186985284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985288", + "highway": "trunk", + "maxweight": "5", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494704, + -0.038644 + ], + [ + 109.3491218, + -0.0388933 + ], + [ + 109.3484655, + -0.0393362 + ], + [ + 109.348273, + -0.039476 + ], + [ + 109.3482271, + -0.0395093 + ], + [ + 109.3481667, + -0.0395532 + ] + ] + }, + "id": "way/186985288" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985289", + "highway": "residential", + "name": "Gang Satu", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447593, + -0.0311534 + ], + [ + 109.3451683, + -0.0317853 + ], + [ + 109.3453574, + -0.0320893 + ], + [ + 109.3454084, + -0.0321402 + ], + [ + 109.3455062, + -0.0321943 + ] + ] + }, + "id": "way/186985289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985360", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422484, + -0.0274397 + ], + [ + 109.3422611, + -0.0274615 + ] + ] + }, + "id": "way/186985360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985675", + "access": "destination", + "highway": "service", + "name": "Jalan Indragiri Timur", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444255, + -0.0262932 + ], + [ + 109.3435299, + -0.0267502 + ], + [ + 109.3434379, + -0.0268123 + ], + [ + 109.3433485, + -0.0268771 + ], + [ + 109.3429649, + -0.0271554 + ] + ] + }, + "id": "way/186985675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985676", + "highway": "secondary", + "name": "Jalan Imam Bonjol", + "oneway": "yes", + "ref": "001.1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481667, + -0.0395532 + ], + [ + 109.3481977, + -0.0396051 + ], + [ + 109.34823, + -0.0396593 + ] + ] + }, + "id": "way/186985676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985677", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "name:id": "Jalan Tanjung Pura", + "name:ms": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428154, + -0.0270917 + ], + [ + 109.342743, + -0.0269797 + ], + [ + 109.3424807, + -0.026574 + ], + [ + 109.3421924, + -0.0261354 + ], + [ + 109.3419282, + -0.0257559 + ], + [ + 109.3417928, + -0.0255816 + ] + ] + }, + "id": "way/186985677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985678", + "highway": "secondary", + "name": "Jalan Imam Bonjol", + "ref": "001.1", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484852, + -0.0401664 + ], + [ + 109.3485034, + -0.0401958 + ], + [ + 109.3486033, + -0.0403576 + ], + [ + 109.3486956, + -0.0405027 + ], + [ + 109.3489066, + -0.0408574 + ], + [ + 109.3491109, + -0.0411514 + ], + [ + 109.3491521, + -0.041216 + ], + [ + 109.3492875, + -0.041448 + ], + [ + 109.349501, + -0.0417225 + ], + [ + 109.3496141, + -0.0418545 + ], + [ + 109.3497329, + -0.0419698 + ], + [ + 109.3499861, + -0.0421888 + ], + [ + 109.3501672, + -0.0423337 + ], + [ + 109.3504964, + -0.0426045 + ], + [ + 109.3508194, + -0.042867 + ], + [ + 109.3508518, + -0.0428934 + ], + [ + 109.3511377, + -0.0431341 + ], + [ + 109.3511779, + -0.0431706 + ], + [ + 109.3513455, + -0.0432929 + ], + [ + 109.3514724, + -0.0433855 + ], + [ + 109.3518674, + -0.0436393 + ], + [ + 109.352027, + -0.0437386 + ], + [ + 109.3522636, + -0.0438897 + ], + [ + 109.3522779, + -0.0439045 + ] + ] + }, + "id": "way/186985678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985679", + "highway": "trunk", + "motorcycle": "yes", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344455, + -0.0296283 + ], + [ + 109.3446603, + -0.0299606 + ], + [ + 109.3447841, + -0.0301609 + ], + [ + 109.3448264, + -0.0302268 + ], + [ + 109.3448971, + -0.0303337 + ], + [ + 109.3450627, + -0.0305818 + ], + [ + 109.3451395, + -0.0307227 + ], + [ + 109.3452173, + -0.030875 + ], + [ + 109.3452883, + -0.0310622 + ], + [ + 109.3453669, + -0.0313438 + ], + [ + 109.3454492, + -0.0316541 + ], + [ + 109.3455463, + -0.0320468 + ], + [ + 109.3456156, + -0.032267 + ], + [ + 109.3456484, + -0.032379 + ], + [ + 109.345777, + -0.0327112 + ] + ] + }, + "id": "way/186985679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417541, + -0.0254003 + ], + [ + 109.3416788, + -0.0254555 + ] + ] + }, + "id": "way/186985680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985681", + "access": "destination", + "highway": "service", + "name": "Jalan Indragiri Barat", + "name:id": "Jalan Indragiri Barat", + "name:ms": "Jalan Indragiri Barat", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428871, + -0.0270367 + ], + [ + 109.3434314, + -0.026709 + ], + [ + 109.3438234, + -0.0264986 + ], + [ + 109.3438945, + -0.0264605 + ], + [ + 109.3443808, + -0.0262144 + ] + ] + }, + "id": "way/186985681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985858", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348079, + -0.0318426 + ], + [ + 109.3348279, + -0.0318647 + ], + [ + 109.3350926, + -0.0321582 + ], + [ + 109.3354268, + -0.0325287 + ], + [ + 109.3354936, + -0.0325915 + ] + ] + }, + "id": "way/186985858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985859", + "highway": "residential", + "name": "Jalan A. R. Hakim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361729, + -0.0245545 + ], + [ + 109.3364583, + -0.0252183 + ], + [ + 109.3366158, + -0.0255846 + ], + [ + 109.3369481, + -0.0261317 + ], + [ + 109.3371178, + -0.0264067 + ], + [ + 109.3372847, + -0.0267607 + ], + [ + 109.3374123, + -0.0270063 + ], + [ + 109.3384434, + -0.0267336 + ] + ] + }, + "id": "way/186985859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985861", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356915, + -0.0308063 + ], + [ + 109.3357204, + -0.0308308 + ], + [ + 109.3357718, + -0.0308742 + ], + [ + 109.3357953, + -0.0308941 + ] + ] + }, + "id": "way/186985861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985862", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351299, + -0.0315489 + ], + [ + 109.3357802, + -0.0321937 + ] + ] + }, + "id": "way/186985862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985863", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348079, + -0.0318426 + ], + [ + 109.3351299, + -0.0315489 + ], + [ + 109.3354732, + -0.0312303 + ], + [ + 109.3357953, + -0.0308941 + ], + [ + 109.336086, + -0.030611 + ] + ] + }, + "id": "way/186985863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985864", + "highway": "residential", + "name": "Jalan Kartini" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375911, + -0.0251041 + ], + [ + 109.3371759, + -0.0253073 + ], + [ + 109.3370259, + -0.0253807 + ], + [ + 109.3366158, + -0.0255846 + ] + ] + }, + "id": "way/186985864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186985866", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367373, + -0.0313085 + ], + [ + 109.3364542, + -0.0315742 + ], + [ + 109.3361126, + -0.0318894 + ], + [ + 109.3357802, + -0.0321937 + ], + [ + 109.3354268, + -0.0325287 + ], + [ + 109.3349398, + -0.0330274 + ], + [ + 109.334929, + -0.0330555 + ], + [ + 109.3349451, + -0.0330931 + ], + [ + 109.3349729, + -0.033136 + ], + [ + 109.3350349, + -0.0332205 + ] + ] + }, + "id": "way/186985866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186986126", + "highway": "residential", + "name": "Jalan Ahmad Marzuki", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332548, + -0.0391815 + ], + [ + 109.3327819, + -0.0389752 + ], + [ + 109.3330058, + -0.0387834 + ], + [ + 109.3331806, + -0.0386217 + ], + [ + 109.3334496, + -0.0384078 + ], + [ + 109.3337241, + -0.0382006 + ], + [ + 109.3342857, + -0.0377421 + ], + [ + 109.3343941, + -0.0376536 + ], + [ + 109.3344529, + -0.0376056 + ], + [ + 109.3345058, + -0.0375624 + ] + ] + }, + "id": "way/186986126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186986127", + "highway": "primary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340999, + -0.0370846 + ], + [ + 109.3342032, + -0.0369954 + ] + ] + }, + "id": "way/186986127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186986208", + "highway": "tertiary", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308022, + -0.0426607 + ], + [ + 109.3310475, + -0.043111 + ], + [ + 109.3313654, + -0.0437009 + ], + [ + 109.3314262, + -0.0438193 + ], + [ + 109.3316448, + -0.0442203 + ], + [ + 109.3318427, + -0.0445772 + ], + [ + 109.3325165, + -0.0458282 + ], + [ + 109.3327207, + -0.04619 + ], + [ + 109.3327471, + -0.0462352 + ], + [ + 109.332788, + -0.0463051 + ], + [ + 109.3329064, + -0.0465077 + ], + [ + 109.3332625, + -0.0471101 + ], + [ + 109.3333337, + -0.0472162 + ], + [ + 109.3335619, + -0.047497 + ], + [ + 109.3336961, + -0.0476671 + ], + [ + 109.333845, + -0.0478106 + ] + ] + }, + "id": "way/186986208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186986209", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308022, + -0.0426607 + ], + [ + 109.3306919, + -0.0427216 + ] + ] + }, + "id": "way/186986209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186986210", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327207, + -0.04619 + ], + [ + 109.3326266, + -0.0462441 + ] + ] + }, + "id": "way/186986210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/186986211", + "highway": "tertiary", + "name": "Jalan Gusti Johan Idrus", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3306919, + -0.0427216 + ], + [ + 109.3305647, + -0.0424977 + ], + [ + 109.3305452, + -0.0424635 + ], + [ + 109.3303992, + -0.0421989 + ], + [ + 109.3300126, + -0.041469 + ], + [ + 109.329564, + -0.0406299 + ], + [ + 109.3293544, + -0.040245 + ], + [ + 109.3292022, + -0.0399657 + ], + [ + 109.3289869, + -0.0395844 + ], + [ + 109.3289028, + -0.0394358 + ], + [ + 109.3288136, + -0.0392781 + ], + [ + 109.3287162, + -0.0391178 + ], + [ + 109.328707, + -0.0391026 + ] + ] + }, + "id": "way/186986211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187014116", + "highway": "residential", + "name": "Gang Karya Bhakti 3", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263121, + -0.0478441 + ], + [ + 109.3272435, + -0.0473204 + ], + [ + 109.32757, + -0.0471368 + ], + [ + 109.328424, + -0.0466161 + ], + [ + 109.3289376, + -0.0463164 + ], + [ + 109.3290619, + -0.0462577 + ] + ] + }, + "id": "way/187014116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187014117", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296998, + -0.0480037 + ], + [ + 109.3295751, + -0.0476955 + ], + [ + 109.329528, + -0.047527 + ], + [ + 109.329199, + -0.0468122 + ] + ] + }, + "id": "way/187014117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187014119", + "highway": "residential", + "name": "Gang Siliwangi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186747, + -0.0418862 + ], + [ + 109.3184126, + -0.0415597 + ], + [ + 109.3182564, + -0.0413666 + ], + [ + 109.3177722, + -0.0407655 + ], + [ + 109.3172688, + -0.040146 + ], + [ + 109.3160032, + -0.0385958 + ], + [ + 109.3159728, + -0.0385585 + ] + ] + }, + "id": "way/187014119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187014120", + "highway": "residential", + "name": "Gang Suditrisna", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316987, + -0.0434907 + ], + [ + 109.3173417, + -0.0431608 + ], + [ + 109.3175174, + -0.0429938 + ], + [ + 109.3175999, + -0.0429187 + ], + [ + 109.3177259, + -0.042796 + ], + [ + 109.3178935, + -0.0426317 + ], + [ + 109.3182456, + -0.042293 + ], + [ + 109.3184019, + -0.0421426 + ], + [ + 109.3185731, + -0.041978 + ], + [ + 109.3186747, + -0.0418862 + ], + [ + 109.3187116, + -0.0418493 + ], + [ + 109.3191881, + -0.0413729 + ], + [ + 109.3199415, + -0.0406306 + ], + [ + 109.3200421, + -0.040519 + ], + [ + 109.3200552, + -0.0404938 + ], + [ + 109.3200642, + -0.0404658 + ], + [ + 109.3200697, + -0.0404574 + ], + [ + 109.3200823, + -0.0404413 + ], + [ + 109.3200947, + -0.0404295 + ], + [ + 109.3201594, + -0.040367 + ], + [ + 109.3203921, + -0.0401651 + ], + [ + 109.3213936, + -0.0393286 + ] + ] + }, + "id": "way/187014120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187017307", + "highway": "tertiary_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3419647, + -0.0476249 + ], + [ + 109.3420036, + -0.0477162 + ] + ] + }, + "id": "way/187017307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187017308", + "highway": "tertiary", + "lanes": "2", + "name": "Jalan Purnama", + "oneway": "no", + "width": "6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3164774, + -0.0690119 + ], + [ + 109.3169991, + -0.0682515 + ], + [ + 109.3171433, + -0.0680543 + ], + [ + 109.3173163, + -0.0678116 + ], + [ + 109.317558, + -0.0674784 + ], + [ + 109.3177226, + -0.0672537 + ], + [ + 109.317814, + -0.0671362 + ], + [ + 109.317995, + -0.0668802 + ], + [ + 109.3181585, + -0.0666489 + ], + [ + 109.3182545, + -0.0665138 + ], + [ + 109.3183435, + -0.0663887 + ], + [ + 109.3184938, + -0.0661661 + ], + [ + 109.3186958, + -0.0658738 + ], + [ + 109.318762, + -0.0657718 + ], + [ + 109.3188583, + -0.0656265 + ], + [ + 109.3189806, + -0.0654419 + ], + [ + 109.3192011, + -0.0651212 + ], + [ + 109.319458, + -0.0647512 + ], + [ + 109.319486, + -0.0647046 + ], + [ + 109.3196417, + -0.0644454 + ], + [ + 109.3197247, + -0.064321 + ], + [ + 109.3198382, + -0.0641477 + ], + [ + 109.3200153, + -0.063856 + ], + [ + 109.3202616, + -0.0634668 + ], + [ + 109.3204915, + -0.0630879 + ], + [ + 109.3206956, + -0.0627661 + ], + [ + 109.3208268, + -0.0625872 + ], + [ + 109.3208446, + -0.0625635 + ], + [ + 109.3210784, + -0.0622106 + ], + [ + 109.3211344, + -0.0621348 + ], + [ + 109.3213174, + -0.0618896 + ], + [ + 109.3214394, + -0.061717 + ], + [ + 109.3215585, + -0.0615327 + ], + [ + 109.3215753, + -0.0615095 + ], + [ + 109.3217672, + -0.0611801 + ], + [ + 109.3219266, + -0.0608916 + ], + [ + 109.3219865, + -0.0607936 + ], + [ + 109.3220724, + -0.0606383 + ], + [ + 109.3221448, + -0.0605138 + ], + [ + 109.3221793, + -0.0604482 + ], + [ + 109.322378, + -0.0600694 + ], + [ + 109.3224811, + -0.0599041 + ], + [ + 109.3225053, + -0.0598666 + ], + [ + 109.3226418, + -0.0596627 + ], + [ + 109.3227738, + -0.0594659 + ], + [ + 109.3228766, + -0.0593536 + ], + [ + 109.3230301, + -0.0591797 + ], + [ + 109.3230601, + -0.0591449 + ], + [ + 109.3232467, + -0.0589281 + ], + [ + 109.3233984, + -0.0587663 + ], + [ + 109.3239246, + -0.0581592 + ], + [ + 109.3242395, + -0.0578338 + ], + [ + 109.3244358, + -0.0576587 + ], + [ + 109.3245831, + -0.0575162 + ], + [ + 109.3249825, + -0.0571552 + ], + [ + 109.3252492, + -0.0568692 + ], + [ + 109.3253839, + -0.0567266 + ], + [ + 109.3256224, + -0.0565091 + ], + [ + 109.3257128, + -0.0564185 + ], + [ + 109.3258373, + -0.056292 + ], + [ + 109.3261072, + -0.0560149 + ], + [ + 109.3263818, + -0.0557503 + ], + [ + 109.3263989, + -0.0557314 + ], + [ + 109.3266535, + -0.0554507 + ], + [ + 109.3267043, + -0.0554022 + ], + [ + 109.3268159, + -0.055299 + ], + [ + 109.3268909, + -0.0552171 + ], + [ + 109.3271038, + -0.0550143 + ], + [ + 109.3272606, + -0.0548679 + ], + [ + 109.3273283, + -0.0548056 + ], + [ + 109.3274802, + -0.0546726 + ], + [ + 109.3277541, + -0.0544327 + ], + [ + 109.3278788, + -0.0543228 + ], + [ + 109.3281085, + -0.054135 + ], + [ + 109.3282333, + -0.0540334 + ], + [ + 109.3284442, + -0.0538374 + ], + [ + 109.3284624, + -0.0538236 + ], + [ + 109.3286822, + -0.0536349 + ], + [ + 109.3287731, + -0.053557 + ], + [ + 109.3290784, + -0.0532747 + ], + [ + 109.3294016, + -0.0529776 + ], + [ + 109.3296524, + -0.0527503 + ], + [ + 109.3299689, + -0.0524908 + ], + [ + 109.3300454, + -0.0524271 + ], + [ + 109.3302418, + -0.0522561 + ], + [ + 109.3303538, + -0.0521576 + ], + [ + 109.3304276, + -0.0520885 + ], + [ + 109.3306851, + -0.0518712 + ], + [ + 109.3309504, + -0.0516346 + ], + [ + 109.331069, + -0.0515154 + ], + [ + 109.3313616, + -0.0512748 + ], + [ + 109.3313896, + -0.0512594 + ], + [ + 109.331707, + -0.0510706 + ], + [ + 109.3317586, + -0.0510511 + ], + [ + 109.3318127, + -0.0510285 + ], + [ + 109.332005, + -0.0509481 + ], + [ + 109.3322064, + -0.0508638 + ], + [ + 109.3324902, + -0.0507568 + ], + [ + 109.3326079, + -0.0507141 + ], + [ + 109.3328485, + -0.0506191 + ], + [ + 109.3330258, + -0.0505653 + ], + [ + 109.3331832, + -0.0505238 + ], + [ + 109.3333538, + -0.0504875 + ], + [ + 109.3334783, + -0.0504631 + ], + [ + 109.3338303, + -0.0503783 + ], + [ + 109.3339351, + -0.0503451 + ], + [ + 109.3341799, + -0.0502765 + ], + [ + 109.3342853, + -0.050247 + ], + [ + 109.3346233, + -0.050162 + ], + [ + 109.3347082, + -0.0501385 + ], + [ + 109.3348805, + -0.0500979 + ], + [ + 109.3351024, + -0.0500085 + ], + [ + 109.3352125, + -0.0499537 + ], + [ + 109.3353408, + -0.0498854 + ], + [ + 109.3354431, + -0.0498225 + ], + [ + 109.3357711, + -0.0495918 + ], + [ + 109.3359467, + -0.0494473 + ] + ] + }, + "id": "way/187017308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187017309", + "highway": "primary_link", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395832, + -0.0436856 + ], + [ + 109.3396762, + -0.0435939 + ] + ] + }, + "id": "way/187017309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187017310", + "highway": "tertiary", + "name": "Jalan Letnan Jenderal Sutoyo", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426883, + -0.0473628 + ], + [ + 109.3426348, + -0.0473554 + ], + [ + 109.342616, + -0.0473569 + ], + [ + 109.3425854, + -0.0473594 + ], + [ + 109.3425451, + -0.0473668 + ], + [ + 109.3424968, + -0.0473883 + ], + [ + 109.3424526, + -0.0474144 + ], + [ + 109.3421998, + -0.0475924 + ], + [ + 109.3420938, + -0.0476608 + ], + [ + 109.3420036, + -0.0477162 + ], + [ + 109.3414961, + -0.0479063 + ], + [ + 109.3410298, + -0.0480855 + ], + [ + 109.3408695, + -0.0481387 + ], + [ + 109.3404315, + -0.0483132 + ], + [ + 109.3403881, + -0.0483292 + ], + [ + 109.3400171, + -0.0484836 + ], + [ + 109.3395431, + -0.0486771 + ], + [ + 109.3383793, + -0.0491522 + ], + [ + 109.3380147, + -0.0492768 + ], + [ + 109.3375826, + -0.0494362 + ], + [ + 109.337249, + -0.0495593 + ], + [ + 109.3371814, + -0.0495842 + ], + [ + 109.3369441, + -0.0496718 + ], + [ + 109.3365591, + -0.0498163 + ], + [ + 109.3364917, + -0.0498317 + ], + [ + 109.3364357, + -0.0498344 + ], + [ + 109.3363868, + -0.0498277 + ], + [ + 109.3363363, + -0.0498098 + ] + ] + }, + "id": "way/187017310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187017311", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343419, + -0.0423076 + ], + [ + 109.3346692, + -0.0429881 + ] + ] + }, + "id": "way/187017311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187017312", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379875, + -0.049214 + ], + [ + 109.3380147, + -0.0492768 + ] + ] + }, + "id": "way/187017312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187052115", + "highway": "tertiary_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396832, + -0.030659 + ], + [ + 109.3397495, + -0.0306358 + ] + ] + }, + "id": "way/187052115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187052117", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178857, + -0.0445365 + ], + [ + 109.317791, + -0.0444375 + ], + [ + 109.3176629, + -0.0442927 + ], + [ + 109.3173806, + -0.0439587 + ], + [ + 109.3172399, + -0.0437989 + ], + [ + 109.317152, + -0.0436965 + ], + [ + 109.316987, + -0.0434907 + ], + [ + 109.3168401, + -0.043309 + ], + [ + 109.3168068, + -0.0432701 + ], + [ + 109.3167963, + -0.0432531 + ], + [ + 109.3167909, + -0.0432372 + ], + [ + 109.3167852, + -0.0432191 + ], + [ + 109.3167778, + -0.0431883 + ], + [ + 109.3167751, + -0.0431701 + ], + [ + 109.3167701, + -0.0431497 + ], + [ + 109.3167631, + -0.0431319 + ], + [ + 109.3167161, + -0.0430655 + ], + [ + 109.3166849, + -0.0430303 + ], + [ + 109.3165438, + -0.0428711 + ], + [ + 109.316405, + -0.0427124 + ], + [ + 109.3159877, + -0.042197 + ], + [ + 109.3157982, + -0.0419629 + ], + [ + 109.3155441, + -0.041616 + ], + [ + 109.3153737, + -0.0413833 + ], + [ + 109.3153046, + -0.041289 + ], + [ + 109.3152403, + -0.0412012 + ], + [ + 109.315073, + -0.0409695 + ], + [ + 109.3148275, + -0.0406324 + ], + [ + 109.3145161, + -0.0402048 + ] + ] + }, + "id": "way/187052117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187052118", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199695, + -0.0423631 + ], + [ + 109.3195063, + -0.042792 + ], + [ + 109.3194634, + -0.0428302 + ], + [ + 109.3192381, + -0.0430387 + ], + [ + 109.3190322, + -0.0432324 + ], + [ + 109.318827, + -0.0434253 + ], + [ + 109.3188149, + -0.0434377 + ], + [ + 109.3185997, + -0.0436462 + ], + [ + 109.3182497, + -0.0439896 + ], + [ + 109.3181284, + -0.044105 + ], + [ + 109.317791, + -0.0444375 + ] + ] + }, + "id": "way/187052118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187052119", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211471, + -0.0435282 + ], + [ + 109.3210714, + -0.0434404 + ], + [ + 109.3210083, + -0.0433733 + ], + [ + 109.3205819, + -0.0429127 + ], + [ + 109.320154, + -0.0424484 + ], + [ + 109.3200573, + -0.0423355 + ], + [ + 109.3200499, + -0.0423325 + ], + [ + 109.3200421, + -0.042332 + ], + [ + 109.3200295, + -0.0423335 + ], + [ + 109.3200149, + -0.0423378 + ], + [ + 109.3200042, + -0.0423423 + ], + [ + 109.3199839, + -0.0423533 + ], + [ + 109.3199695, + -0.0423631 + ] + ] + }, + "id": "way/187052119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187052120", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230335, + -0.0413164 + ], + [ + 109.3225244, + -0.0417544 + ], + [ + 109.3223208, + -0.0419366 + ], + [ + 109.3222881, + -0.0419655 + ], + [ + 109.3222645, + -0.041987 + ], + [ + 109.3222616, + -0.0419895 + ], + [ + 109.3222586, + -0.0419947 + ], + [ + 109.3222571, + -0.0419982 + ], + [ + 109.3222561, + -0.0420031 + ], + [ + 109.3222552, + -0.0420115 + ], + [ + 109.3222539, + -0.042016 + ], + [ + 109.3222507, + -0.0420222 + ], + [ + 109.3222474, + -0.0420267 + ], + [ + 109.3222346, + -0.0420395 + ], + [ + 109.3221274, + -0.0421259 + ], + [ + 109.3217838, + -0.0424169 + ], + [ + 109.3216829, + -0.0425013 + ] + ] + }, + "id": "way/187052120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187052122", + "highway": "residential", + "name": "Jalan Siam", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398941, + -0.030971 + ], + [ + 109.339984, + -0.0309183 + ], + [ + 109.3406072, + -0.030553 + ], + [ + 109.341358, + -0.0301338 + ], + [ + 109.3414532, + -0.0300957 + ], + [ + 109.3420037, + -0.0299102 + ], + [ + 109.3420465, + -0.0298937 + ], + [ + 109.3428761, + -0.0296132 + ], + [ + 109.3440802, + -0.0291647 + ] + ] + }, + "id": "way/187052122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161972", + "highway": "residential", + "name": "Jalan Nias" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205108, + -0.0466758 + ], + [ + 109.3207294, + -0.046944 + ], + [ + 109.3209922, + -0.0472632 + ] + ] + }, + "id": "way/187161972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161973", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247244, + -0.0460036 + ], + [ + 109.3248258, + -0.0459724 + ], + [ + 109.3249465, + -0.0459254 + ], + [ + 109.3250209, + -0.0458859 + ] + ] + }, + "id": "way/187161973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161974", + "highway": "residential", + "name": "Jalan Agus Jam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342348, + -0.0445424 + ], + [ + 109.3336941, + -0.043564 + ] + ] + }, + "id": "way/187161974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161975", + "highway": "residential", + "name": "Jalan Halmahera I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286457, + -0.0398908 + ], + [ + 109.3286682, + -0.0399314 + ], + [ + 109.3287051, + -0.040006 + ], + [ + 109.3287191, + -0.040073 + ], + [ + 109.3287382, + -0.0401936 + ], + [ + 109.3287458, + -0.0402746 + ], + [ + 109.3287428, + -0.0403807 + ], + [ + 109.3287422, + -0.0404651 + ], + [ + 109.328739, + -0.0405486 + ] + ] + }, + "id": "way/187161975" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161976", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350009, + -0.0442114 + ], + [ + 109.3349357, + -0.0442537 + ], + [ + 109.3346266, + -0.0444375 + ], + [ + 109.3344155, + -0.0445675 + ] + ] + }, + "id": "way/187161976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161979", + "highway": "residential", + "name": "Jalan Enggano" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224216, + -0.04815 + ], + [ + 109.3212564, + -0.0469936 + ] + ] + }, + "id": "way/187161979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161981", + "highway": "residential", + "name": "Jalan Natuna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213562, + -0.0492399 + ], + [ + 109.3218793, + -0.0486863 + ], + [ + 109.3224216, + -0.04815 + ], + [ + 109.3229326, + -0.0476606 + ], + [ + 109.323362, + -0.0472122 + ], + [ + 109.3238244, + -0.0467614 + ] + ] + }, + "id": "way/187161981" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161982", + "highway": "residential", + "name": "Jalan Halmahera I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.328739, + -0.0405486 + ], + [ + 109.3289327, + -0.0409178 + ], + [ + 109.3294488, + -0.0418166 + ] + ] + }, + "id": "way/187161982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161983", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228671, + -0.0457706 + ], + [ + 109.3235023, + -0.0464278 + ], + [ + 109.3238244, + -0.0467614 + ], + [ + 109.3243483, + -0.0473021 + ] + ] + }, + "id": "way/187161983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187161985", + "highway": "residential", + "name": "Jalan Syafe'i" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339485, + -0.0415593 + ], + [ + 109.3310475, + -0.043111 + ] + ] + }, + "id": "way/187161985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187162481", + "highway": "residential", + "name": "Jalan Merapi", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340656, + -0.0287028 + ], + [ + 109.3407257, + -0.0288112 + ], + [ + 109.3410758, + -0.0293895 + ], + [ + 109.3411013, + -0.0294315 + ], + [ + 109.3414532, + -0.0300957 + ] + ] + }, + "id": "way/187162481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187163061", + "highway": "unclassified", + "motor_vehicle": "destination", + "name": "Jalan Suwignyo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144477, + -0.0216252 + ], + [ + 109.3144624, + -0.0216696 + ] + ] + }, + "id": "way/187163061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187377718", + "highway": "residential", + "name": "Jalan Nusa Indah 3", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383138, + -0.02646 + ], + [ + 109.3395588, + -0.0258502 + ], + [ + 109.3397216, + -0.0257764 + ], + [ + 109.3407981, + -0.0252947 + ], + [ + 109.3408844, + -0.0252472 + ], + [ + 109.3409707, + -0.0251858 + ], + [ + 109.341233, + -0.0249196 + ] + ] + }, + "id": "way/187377718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187377719", + "highway": "unclassified", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971332, + -0.0297692 + ], + [ + 109.2971445, + -0.029762 + ], + [ + 109.2975957, + -0.0294395 + ], + [ + 109.2977416, + -0.0293365 + ], + [ + 109.2979502, + -0.0291875 + ], + [ + 109.2981192, + -0.0290455 + ], + [ + 109.2987207, + -0.0286406 + ], + [ + 109.2988179, + -0.0285632 + ], + [ + 109.2991147, + -0.0283686 + ], + [ + 109.2992342, + -0.0282903 + ], + [ + 109.2994417, + -0.0281553 + ], + [ + 109.2995712, + -0.0280664 + ], + [ + 109.2996665, + -0.0280003 + ], + [ + 109.2997216, + -0.0279633 + ], + [ + 109.2997764, + -0.0279255 + ], + [ + 109.300086, + -0.0277224 + ], + [ + 109.3009562, + -0.027174 + ], + [ + 109.3011209, + -0.0270668 + ], + [ + 109.3011766, + -0.0270306 + ], + [ + 109.3019685, + -0.0265932 + ], + [ + 109.3024176, + -0.0263779 + ], + [ + 109.3026924, + -0.0262413 + ], + [ + 109.3030032, + -0.0260986 + ], + [ + 109.3034546, + -0.0258891 + ], + [ + 109.304014, + -0.0256226 + ], + [ + 109.3045317, + -0.0254135 + ], + [ + 109.3045867, + -0.0253904 + ], + [ + 109.3048243, + -0.0252856 + ], + [ + 109.3048553, + -0.0252721 + ], + [ + 109.3053089, + -0.0250702 + ], + [ + 109.3055641, + -0.0249491 + ], + [ + 109.3057489, + -0.0248547 + ], + [ + 109.3061633, + -0.0246743 + ], + [ + 109.3065419, + -0.0245071 + ], + [ + 109.3065727, + -0.0244936 + ], + [ + 109.3070895, + -0.0242655 + ], + [ + 109.3075792, + -0.0240665 + ], + [ + 109.3077258, + -0.024007 + ], + [ + 109.3077402, + -0.0240011 + ], + [ + 109.3079389, + -0.0239192 + ], + [ + 109.3080433, + -0.0238779 + ], + [ + 109.3085345, + -0.0236934 + ] + ] + }, + "id": "way/187377719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187377720", + "highway": "unclassified", + "name": "Gang Sepakat 2", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107848, + -0.0386116 + ], + [ + 109.3112912, + -0.0379947 + ], + [ + 109.3113763, + -0.0379008 + ], + [ + 109.3114522, + -0.0378131 + ], + [ + 109.3114864, + -0.0377793 + ], + [ + 109.3116227, + -0.0376263 + ], + [ + 109.3116345, + -0.0376131 + ], + [ + 109.3117187, + -0.037519 + ], + [ + 109.3118071, + -0.0374194 + ], + [ + 109.3120155, + -0.0371855 + ], + [ + 109.3120604, + -0.0371348 + ], + [ + 109.3121596, + -0.0370236 + ], + [ + 109.3122368, + -0.0369369 + ], + [ + 109.3123628, + -0.0367926 + ], + [ + 109.3124686, + -0.0366744 + ], + [ + 109.3126836, + -0.0364364 + ], + [ + 109.3127112, + -0.0364058 + ], + [ + 109.3127952, + -0.0363101 + ], + [ + 109.3128444, + -0.0362548 + ], + [ + 109.3131453, + -0.0359074 + ], + [ + 109.3133742, + -0.0356599 + ], + [ + 109.3133883, + -0.0356442 + ], + [ + 109.3137788, + -0.0352058 + ], + [ + 109.3140224, + -0.0349206 + ], + [ + 109.314244, + -0.0346751 + ], + [ + 109.3143684, + -0.0345439 + ], + [ + 109.3145801, + -0.0342892 + ], + [ + 109.3147181, + -0.0341513 + ], + [ + 109.3147751, + -0.0340874 + ], + [ + 109.3149141, + -0.0339373 + ], + [ + 109.3149895, + -0.0338521 + ], + [ + 109.3151061, + -0.0337158 + ], + [ + 109.3151933, + -0.0336178 + ], + [ + 109.3156298, + -0.0332084 + ], + [ + 109.3158719, + -0.0329483 + ] + ] + }, + "id": "way/187377720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187377721", + "highway": "unclassified", + "name": "Gang Suwignyo 1", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205988, + -0.0288653 + ], + [ + 109.3194483, + -0.0298234 + ], + [ + 109.3186533, + -0.0304806 + ], + [ + 109.3185139, + -0.0305879 + ], + [ + 109.3183328, + -0.0307341 + ], + [ + 109.3179983, + -0.031022 + ], + [ + 109.3174046, + -0.0315491 + ], + [ + 109.3171824, + -0.0317472 + ], + [ + 109.3165813, + -0.0323099 + ], + [ + 109.3158719, + -0.0329483 + ] + ] + }, + "id": "way/187377721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/187377958", + "highway": "residential", + "name": "Gang Haji Sarah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259275, + -0.0452655 + ], + [ + 109.3259899, + -0.0452214 + ], + [ + 109.3261662, + -0.045096 + ], + [ + 109.3266034, + -0.0447956 + ], + [ + 109.3269202, + -0.0445745 + ], + [ + 109.3272301, + -0.0443582 + ], + [ + 109.3275515, + -0.0441389 + ], + [ + 109.3279921, + -0.0438644 + ], + [ + 109.3282493, + -0.0437254 + ] + ] + }, + "id": "way/187377958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188158251", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491915, + -0.0558033 + ], + [ + 109.3492104, + -0.0558147 + ], + [ + 109.3493593, + -0.0559187 + ], + [ + 109.3494853, + -0.0559696 + ], + [ + 109.3496114, + -0.0560313 + ], + [ + 109.349775, + -0.0562003 + ], + [ + 109.3500513, + -0.0564873 + ], + [ + 109.3504, + -0.0569084 + ], + [ + 109.3506065, + -0.0571418 + ], + [ + 109.3507252, + -0.0572625 + ], + [ + 109.3508316, + -0.05737 + ], + [ + 109.3509146, + -0.0574563 + ], + [ + 109.3509894, + -0.0575461 + ], + [ + 109.3509732, + -0.0576452 + ], + [ + 109.3508858, + -0.0577452 + ], + [ + 109.3507888, + -0.0578818 + ], + [ + 109.3507391, + -0.0579528 + ], + [ + 109.3505207, + -0.0582599 + ], + [ + 109.3504981, + -0.0582908 + ], + [ + 109.3503544, + -0.0584865 + ] + ] + }, + "id": "way/188158251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188158252", + "highway": "service", + "name": "Jalan Profesor Dokter Haji Hadari Nawawi", + "name:id": "Jalan Profesor Dokter Haji Hadari Nawawi", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349325, + -0.0556317 + ], + [ + 109.3492773, + -0.0556928 + ], + [ + 109.3492484, + -0.0557297 + ], + [ + 109.3491915, + -0.0558033 + ], + [ + 109.3491698, + -0.0558313 + ], + [ + 109.3490924, + -0.0559294 + ], + [ + 109.3488475, + -0.0562928 + ], + [ + 109.3488054, + -0.0563545 + ], + [ + 109.3486107, + -0.0566395 + ], + [ + 109.3484158, + -0.0569001 + ], + [ + 109.3482149, + -0.0571814 + ], + [ + 109.3480632, + -0.0573919 + ], + [ + 109.3480273, + -0.0574417 + ], + [ + 109.3476333, + -0.0579884 + ], + [ + 109.347219, + -0.0585633 + ] + ] + }, + "id": "way/188158252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188158253", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238756, + -0.0448345 + ], + [ + 109.3247318, + -0.0457113 + ] + ] + }, + "id": "way/188158253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188158255", + "highway": "residential", + "name": "Jalan Timor" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219825, + -0.0466749 + ], + [ + 109.3224189, + -0.0462238 + ], + [ + 109.3228671, + -0.0457706 + ], + [ + 109.3234089, + -0.0452475 + ], + [ + 109.3238756, + -0.0448345 + ], + [ + 109.3243249, + -0.0443973 + ] + ] + }, + "id": "way/188158255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188174725", + "highway": "residential", + "name": "Jalan Puyuh" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329065, + -0.0189213 + ], + [ + 109.3300766, + -0.0187446 + ], + [ + 109.3300953, + -0.0187413 + ], + [ + 109.3303456, + -0.0186998 + ], + [ + 109.3304533, + -0.0186789 + ], + [ + 109.3305759, + -0.0186488 + ], + [ + 109.3306276, + -0.0186361 + ], + [ + 109.3307108, + -0.0186131 + ], + [ + 109.3309074, + -0.0185587 + ], + [ + 109.3311118, + -0.0185022 + ], + [ + 109.3316853, + -0.0183215 + ], + [ + 109.3318656, + -0.0182421 + ], + [ + 109.331999, + -0.0181837 + ], + [ + 109.3321324, + -0.0181254 + ], + [ + 109.3323532, + -0.0180266 + ], + [ + 109.332497, + -0.017969 + ], + [ + 109.3325672, + -0.0179281 + ], + [ + 109.3326323, + -0.0178863 + ], + [ + 109.3326967, + -0.0178357 + ], + [ + 109.3327738, + -0.0177562 + ], + [ + 109.3328525, + -0.0176534 + ], + [ + 109.3328884, + -0.0176075 + ] + ] + }, + "id": "way/188174725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179428", + "highway": "residential", + "name": "Gang Cendrawasih 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324822, + -0.0252417 + ], + [ + 109.3328295, + -0.0248965 + ], + [ + 109.3333131, + -0.024334 + ] + ] + }, + "id": "way/188179428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179429", + "highway": "residential", + "name": "Jalan Kutilang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331186, + -0.0233553 + ], + [ + 109.3317782, + -0.0236254 + ], + [ + 109.3319239, + -0.0236919 + ], + [ + 109.3320449, + -0.0237444 + ], + [ + 109.332539, + -0.0239546 + ], + [ + 109.3329799, + -0.0241422 + ], + [ + 109.333035, + -0.0241741 + ], + [ + 109.3333131, + -0.024334 + ], + [ + 109.3336944, + -0.0245876 + ], + [ + 109.3339278, + -0.0247374 + ], + [ + 109.3340492, + -0.0248426 + ], + [ + 109.3341055, + -0.0248989 + ], + [ + 109.3341445, + -0.0249442 + ], + [ + 109.3342329, + -0.0250357 + ], + [ + 109.3342826, + -0.0250971 + ], + [ + 109.3343508, + -0.025176 + ] + ] + }, + "id": "way/188179429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179430", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275876, + -0.022143 + ], + [ + 109.3276024, + -0.022144 + ], + [ + 109.3276143, + -0.0221509 + ], + [ + 109.3276263, + -0.0221705 + ], + [ + 109.3276441, + -0.0223213 + ], + [ + 109.3277182, + -0.0226801 + ], + [ + 109.3277182, + -0.0226855 + ], + [ + 109.3277175, + -0.0226918 + ], + [ + 109.3277157, + -0.0226974 + ], + [ + 109.3277118, + -0.0227036 + ], + [ + 109.3277054, + -0.022709 + ] + ] + }, + "id": "way/188179430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179432", + "highway": "residential", + "name": "Gang Punai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291872, + -0.020477 + ], + [ + 109.3295156, + -0.020436 + ], + [ + 109.3302727, + -0.0203036 + ], + [ + 109.3302955, + -0.0202996 + ], + [ + 109.3303066, + -0.020303 + ], + [ + 109.3303176, + -0.020308 + ] + ] + }, + "id": "way/188179432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179433", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303176, + -0.020308 + ], + [ + 109.3304792, + -0.0205615 + ], + [ + 109.3305634, + -0.0206936 + ], + [ + 109.3306874, + -0.0208652 + ], + [ + 109.3309539, + -0.0210379 + ], + [ + 109.3310448, + -0.0210901 + ] + ] + }, + "id": "way/188179433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179434", + "highway": "residential", + "name": "Gang Murai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292092, + -0.0208745 + ], + [ + 109.3300771, + -0.0207882 + ], + [ + 109.3303565, + -0.0207472 + ], + [ + 109.3303986, + -0.02074 + ], + [ + 109.3304458, + -0.0207296 + ], + [ + 109.3304893, + -0.0207167 + ], + [ + 109.3305634, + -0.0206936 + ] + ] + }, + "id": "way/188179434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179435", + "highway": "residential", + "name": "Gang Balam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292287, + -0.0211467 + ], + [ + 109.3300029, + -0.0210535 + ], + [ + 109.3304172, + -0.0209829 + ], + [ + 109.3304651, + -0.0209698 + ], + [ + 109.3305251, + -0.0209481 + ], + [ + 109.3306874, + -0.0208652 + ] + ] + }, + "id": "way/188179435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179436", + "highway": "residential", + "name": "Gang Bangau" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293168, + -0.0224551 + ], + [ + 109.3300239, + -0.0224034 + ], + [ + 109.3300903, + -0.0223974 + ], + [ + 109.3301026, + -0.0223937 + ], + [ + 109.3301129, + -0.0223883 + ], + [ + 109.3301327, + -0.022371 + ], + [ + 109.3301575, + -0.0223451 + ], + [ + 109.3304438, + -0.0220281 + ], + [ + 109.3304593, + -0.0220172 + ], + [ + 109.3304705, + -0.0220121 + ], + [ + 109.330486, + -0.0220076 + ], + [ + 109.3307581, + -0.0219727 + ], + [ + 109.3307833, + -0.0219656 + ], + [ + 109.3308064, + -0.0219519 + ], + [ + 109.3314207, + -0.0214019 + ] + ] + }, + "id": "way/188179436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179437", + "highway": "residential", + "name": "Gang Kakak Tua" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292615, + -0.0216253 + ], + [ + 109.3295522, + -0.0216022 + ], + [ + 109.3297484, + -0.0215788 + ], + [ + 109.330565, + -0.0214754 + ], + [ + 109.3306113, + -0.0214647 + ], + [ + 109.3306386, + -0.0214531 + ], + [ + 109.3306648, + -0.0214374 + ], + [ + 109.3307635, + -0.0213665 + ], + [ + 109.3309261, + -0.0212138 + ], + [ + 109.3310448, + -0.0210901 + ] + ] + }, + "id": "way/188179437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179438", + "access": "destination", + "highway": "residential", + "name": "Jalan Cendrawasih" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328863, + -0.0256897 + ], + [ + 109.3327697, + -0.0255574 + ], + [ + 109.3324822, + -0.0252417 + ], + [ + 109.3321027, + -0.0249126 + ], + [ + 109.3320539, + -0.024872 + ], + [ + 109.331882, + -0.024729 + ], + [ + 109.3315597, + -0.0244562 + ], + [ + 109.3311598, + -0.0241283 + ], + [ + 109.3308462, + -0.0238845 + ], + [ + 109.3293327, + -0.0226925 + ] + ] + }, + "id": "way/188179438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188179976", + "access": "yes", + "highway": "tertiary", + "name": "Jalan Merdeka Barat", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331326, + -0.026071 + ], + [ + 109.3311716, + -0.0259242 + ], + [ + 109.3310907, + -0.0258521 + ], + [ + 109.3309245, + -0.0257197 + ], + [ + 109.3306915, + -0.025516 + ], + [ + 109.3304993, + -0.0253589 + ], + [ + 109.3304685, + -0.0253323 + ], + [ + 109.3302913, + -0.0251794 + ], + [ + 109.3302446, + -0.0251329 + ], + [ + 109.330147, + -0.0250474 + ], + [ + 109.3301011, + -0.0250054 + ], + [ + 109.3300589, + -0.0249734 + ], + [ + 109.3299428, + -0.0248775 + ], + [ + 109.3297996, + -0.0247633 + ], + [ + 109.3296922, + -0.0246785 + ], + [ + 109.3296142, + -0.0246106 + ], + [ + 109.3295052, + -0.0245241 + ], + [ + 109.3294876, + -0.0245042 + ], + [ + 109.3294717, + -0.0244824 + ] + ] + }, + "id": "way/188179976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188180331", + "highway": "residential", + "name": "Gang Amal - Gang Pergam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3299382, + -0.0251161 + ], + [ + 109.3296807, + -0.0254376 + ], + [ + 109.3295569, + -0.025596 + ], + [ + 109.3294943, + -0.0256739 + ], + [ + 109.3294759, + -0.025692 + ], + [ + 109.3294595, + -0.0257056 + ], + [ + 109.3294343, + -0.0257202 + ], + [ + 109.3294142, + -0.0257262 + ], + [ + 109.3293555, + -0.0257409 + ], + [ + 109.3293399, + -0.0257481 + ], + [ + 109.3293238, + -0.0257583 + ], + [ + 109.329302, + -0.025777 + ], + [ + 109.3292357, + -0.0258635 + ], + [ + 109.3289854, + -0.0261431 + ], + [ + 109.3288375, + -0.026335 + ], + [ + 109.3285409, + -0.0267063 + ], + [ + 109.3284624, + -0.0268211 + ], + [ + 109.3283187, + -0.0270165 + ], + [ + 109.3282175, + -0.0271277 + ], + [ + 109.3281229, + -0.027211 + ], + [ + 109.3278761, + -0.0273934 + ], + [ + 109.3277679, + -0.0274755 + ] + ] + }, + "id": "way/188180331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188180332", + "highway": "residential", + "name": "Gang Pipit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297036, + -0.0248916 + ], + [ + 109.3295189, + -0.0251244 + ], + [ + 109.329063, + -0.0256956 + ], + [ + 109.3285845, + -0.0262479 + ], + [ + 109.3282627, + -0.0265799 + ] + ] + }, + "id": "way/188180332" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188180333", + "highway": "residential", + "name": "Gang Merdeka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3306915, + -0.025516 + ], + [ + 109.330269, + -0.0258931 + ], + [ + 109.3298324, + -0.0262978 + ], + [ + 109.3297985, + -0.0263395 + ], + [ + 109.3297577, + -0.0263889 + ], + [ + 109.3296769, + -0.0264766 + ], + [ + 109.3295612, + -0.0265847 + ], + [ + 109.3295154, + -0.0266212 + ], + [ + 109.3293034, + -0.0267902 + ], + [ + 109.3291014, + -0.0269388 + ], + [ + 109.3290912, + -0.026951 + ], + [ + 109.3290858, + -0.0269639 + ], + [ + 109.3290804, + -0.0269834 + ], + [ + 109.3290717, + -0.0270427 + ], + [ + 109.3287838, + -0.0273 + ], + [ + 109.3287341, + -0.0273411 + ], + [ + 109.3286949, + -0.0273676 + ], + [ + 109.3286476, + -0.0273957 + ], + [ + 109.3285782, + -0.027431 + ], + [ + 109.3285091, + -0.0274802 + ], + [ + 109.3283804, + -0.0275758 + ], + [ + 109.3282027, + -0.0277159 + ], + [ + 109.3279912, + -0.0278656 + ] + ] + }, + "id": "way/188180333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188182320", + "highway": "residential", + "name": "Gang Delima" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3311716, + -0.0259242 + ], + [ + 109.3308701, + -0.0261589 + ], + [ + 109.3305831, + -0.0263491 + ], + [ + 109.3309258, + -0.0268999 + ], + [ + 109.3310514, + -0.027105 + ], + [ + 109.3311068, + -0.0271956 + ] + ] + }, + "id": "way/188182320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188182327", + "highway": "residential", + "name": "Jalan Camar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259339, + -0.0222821 + ], + [ + 109.3264843, + -0.0221447 + ], + [ + 109.3269233, + -0.0220129 + ], + [ + 109.3272854, + -0.021909 + ], + [ + 109.3276119, + -0.0218339 + ], + [ + 109.3277755, + -0.0218043 + ], + [ + 109.3280681, + -0.0217623 + ], + [ + 109.328322, + -0.0217259 + ], + [ + 109.3288337, + -0.0216562 + ], + [ + 109.3292615, + -0.0216253 + ] + ] + }, + "id": "way/188182327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188182328", + "highway": "residential", + "name": "Gang Ruwai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258781, + -0.0226169 + ], + [ + 109.3263372, + -0.0224796 + ], + [ + 109.3269256, + -0.0223217 + ], + [ + 109.3275876, + -0.022143 + ] + ] + }, + "id": "way/188182328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188186680", + "highway": "residential", + "motorcar": "no", + "name": "Gang Merpati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3283544, + -0.0222791 + ], + [ + 109.3283656, + -0.022491 + ], + [ + 109.3283705, + -0.0225 + ], + [ + 109.3283773, + -0.0225073 + ], + [ + 109.3283857, + -0.0225127 + ], + [ + 109.3283962, + -0.0225163 + ], + [ + 109.3284126, + -0.0225185 + ], + [ + 109.3287123, + -0.0225266 + ], + [ + 109.3293215, + -0.0225118 + ] + ] + }, + "id": "way/188186680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188186681", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276441, + -0.0223213 + ], + [ + 109.327991, + -0.0222957 + ] + ] + }, + "id": "way/188186681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188186683", + "highway": "residential", + "name": "Jalan Nurai Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332728, + -0.0228314 + ], + [ + 109.3334469, + -0.0232669 + ] + ] + }, + "id": "way/188186683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188186684", + "highway": "unclassified", + "name": "Jalan Tamar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354017, + -0.0240001 + ], + [ + 109.3354416, + -0.0239658 + ], + [ + 109.3356474, + -0.0237785 + ], + [ + 109.3358459, + -0.0236302 + ], + [ + 109.3359916, + -0.0235213 + ], + [ + 109.3361247, + -0.0234714 + ], + [ + 109.3362746, + -0.0234153 + ], + [ + 109.3370335, + -0.0231844 + ] + ] + }, + "id": "way/188186684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188186685", + "highway": "residential", + "name": "Jalan Taslim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339272, + -0.0225698 + ], + [ + 109.3340425, + -0.0226962 + ], + [ + 109.334133, + -0.0227807 + ], + [ + 109.3341944, + -0.0228266 + ], + [ + 109.3342117, + -0.0228363 + ], + [ + 109.3342304, + -0.0228423 + ], + [ + 109.3342485, + -0.0228455 + ], + [ + 109.3342799, + -0.0228471 + ], + [ + 109.3344328, + -0.0228382 + ], + [ + 109.3345992, + -0.0228161 + ], + [ + 109.3346957, + -0.0228017 + ], + [ + 109.3348073, + -0.022785 + ], + [ + 109.3350678, + -0.0227436 + ] + ] + }, + "id": "way/188186685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188187348", + "highway": "tertiary", + "name": "Jalan Jenderal Sudirman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3373111, + -0.0245272 + ], + [ + 109.3373349, + -0.0244785 + ], + [ + 109.3373571, + -0.024447 + ], + [ + 109.3373866, + -0.0244195 + ], + [ + 109.3376109, + -0.0242921 + ], + [ + 109.3377514, + -0.0242279 + ], + [ + 109.3382704, + -0.023991 + ], + [ + 109.3391025, + -0.0236111 + ], + [ + 109.3393184, + -0.0235129 + ], + [ + 109.3394022, + -0.0234774 + ] + ] + }, + "id": "way/188187348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188187917", + "highway": "residential", + "name": "Jalan Nusa Indah 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3380214, + -0.0259995 + ], + [ + 109.3393315, + -0.0250693 + ], + [ + 109.3393511, + -0.0250661 + ], + [ + 109.3394146, + -0.025085 + ], + [ + 109.3394779, + -0.0251455 + ], + [ + 109.3394897, + -0.0251743 + ], + [ + 109.3395083, + -0.0251897 + ], + [ + 109.3395402, + -0.0251891 + ], + [ + 109.3399242, + -0.0250304 + ], + [ + 109.3400896, + -0.024962 + ], + [ + 109.3402089, + -0.0249124 + ], + [ + 109.3404451, + -0.0248003 + ], + [ + 109.3405595, + -0.0247419 + ], + [ + 109.3406986, + -0.0246577 + ], + [ + 109.3408895, + -0.0245026 + ] + ] + }, + "id": "way/188187917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188188290", + "highway": "tertiary", + "name": "Jalan Pattimura" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383475, + -0.026513 + ], + [ + 109.3383138, + -0.02646 + ], + [ + 109.3380214, + -0.0259995 + ], + [ + 109.3377882, + -0.0255387 + ], + [ + 109.3376353, + -0.0252074 + ], + [ + 109.3375911, + -0.0251041 + ], + [ + 109.3374865, + -0.0248842 + ] + ] + }, + "id": "way/188188290" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188188292", + "highway": "tertiary", + "name": "Jalan Zainuddin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371899, + -0.0242226 + ], + [ + 109.3371646, + -0.0241171 + ], + [ + 109.3371458, + -0.0240252 + ], + [ + 109.337125, + -0.0238844 + ], + [ + 109.3370335, + -0.0231844 + ], + [ + 109.3370183, + -0.0230369 + ], + [ + 109.3369791, + -0.0226543 + ], + [ + 109.3369627, + -0.0224941 + ], + [ + 109.3369387, + -0.0221578 + ], + [ + 109.3369232, + -0.021918 + ] + ] + }, + "id": "way/188188292" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188189232", + "highway": "residential", + "name": "Jalan Antasari", + "oneway": "no", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397958, + -0.0263892 + ], + [ + 109.3400914, + -0.0271205 + ], + [ + 109.3403262, + -0.0276478 + ], + [ + 109.3406799, + -0.0283846 + ] + ] + }, + "id": "way/188189232" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188189954", + "highway": "residential", + "name": "Jalan Haji Abas 1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343022, + -0.0321142 + ], + [ + 109.3427264, + -0.0314919 + ], + [ + 109.342698, + -0.03141 + ], + [ + 109.3425986, + -0.0311512 + ], + [ + 109.3422886, + -0.0305394 + ], + [ + 109.3421834, + -0.0302508 + ], + [ + 109.3420465, + -0.0298937 + ] + ] + }, + "id": "way/188189954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209564", + "highway": "residential", + "name": "Jalan Siam Dalam", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420037, + -0.0299102 + ], + [ + 109.3419173, + -0.0296777 + ], + [ + 109.3418546, + -0.0295247 + ], + [ + 109.3418375, + -0.0294905 + ], + [ + 109.3417409, + -0.0292973 + ], + [ + 109.3416371, + -0.0290793 + ], + [ + 109.3416147, + -0.0290321 + ], + [ + 109.3412697, + -0.0283231 + ] + ] + }, + "id": "way/188209564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209566", + "highway": "living_street", + "name": "Gang Kelantan 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341358, + -0.0301338 + ], + [ + 109.3415339, + -0.0305041 + ], + [ + 109.3417894, + -0.0310242 + ], + [ + 109.3418885, + -0.0312258 + ] + ] + }, + "id": "way/188209566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209567", + "highway": "residential", + "name": "Jalan Pangsuma", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451355, + -0.0277563 + ], + [ + 109.3447741, + -0.0279146 + ], + [ + 109.3446522, + -0.027976 + ], + [ + 109.3441413, + -0.0282332 + ], + [ + 109.3437246, + -0.0284187 + ] + ] + }, + "id": "way/188209567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209568", + "highway": "residential", + "name": "Gang Wijayasari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300889, + -0.0313089 + ], + [ + 109.32935, + -0.0320792 + ], + [ + 109.3286829, + -0.0327488 + ], + [ + 109.3282918, + -0.0331461 + ], + [ + 109.3277806, + -0.0336225 + ] + ] + }, + "id": "way/188209568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209569", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334128, + -0.03136 + ], + [ + 109.3336332, + -0.0317064 + ], + [ + 109.3337287, + -0.0318437 + ], + [ + 109.3338442, + -0.0319739 + ], + [ + 109.3339869, + -0.0321228 + ], + [ + 109.334162, + -0.0322683 + ] + ] + }, + "id": "way/188209569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209570", + "highway": "residential", + "name": "Gang Beringin 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331535, + -0.0298274 + ], + [ + 109.3334139, + -0.0301128 + ], + [ + 109.3335092, + -0.0302172 + ], + [ + 109.33383, + -0.0305972 + ], + [ + 109.3339338, + -0.0307202 + ], + [ + 109.3340131, + -0.0308332 + ] + ] + }, + "id": "way/188209570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209571", + "highway": "residential", + "name": "Jalan Beringin", + "name:id": "Jalan Beringin", + "name:ms": "Jalan Beringin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312753, + -0.0332186 + ], + [ + 109.3317607, + -0.0328004 + ], + [ + 109.3317793, + -0.0327844 + ], + [ + 109.3321075, + -0.0325017 + ], + [ + 109.3321396, + -0.032474 + ], + [ + 109.3327281, + -0.031967 + ], + [ + 109.3328664, + -0.0318444 + ], + [ + 109.3334128, + -0.03136 + ], + [ + 109.3337007, + -0.0311152 + ], + [ + 109.3340131, + -0.0308332 + ], + [ + 109.3347477, + -0.0302663 + ], + [ + 109.334881, + -0.0301634 + ], + [ + 109.3355311, + -0.0295887 + ] + ] + }, + "id": "way/188209571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209572", + "highway": "residential", + "name": "Jalan Meranti" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344814, + -0.0286709 + ], + [ + 109.3339562, + -0.0291018 + ], + [ + 109.3336555, + -0.0293579 + ], + [ + 109.3336449, + -0.0293675 + ], + [ + 109.3332617, + -0.0297261 + ], + [ + 109.3331535, + -0.0298274 + ], + [ + 109.3328583, + -0.0301083 + ], + [ + 109.3326251, + -0.0303301 + ], + [ + 109.3326121, + -0.0303425 + ], + [ + 109.3325386, + -0.0304124 + ], + [ + 109.332179, + -0.0307546 + ], + [ + 109.3320705, + -0.0308578 + ], + [ + 109.3319506, + -0.0309541 + ], + [ + 109.3318128, + -0.0310376 + ], + [ + 109.3317035, + -0.0310986 + ], + [ + 109.3316158, + -0.0311462 + ], + [ + 109.3314352, + -0.0312484 + ], + [ + 109.3313308, + -0.0313037 + ], + [ + 109.3311182, + -0.0314147 + ], + [ + 109.3303907, + -0.0317968 + ] + ] + }, + "id": "way/188209572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209573", + "highway": "residential", + "name": "Gang Meliau" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443984, + -0.0296754 + ], + [ + 109.3429144, + -0.0302254 + ], + [ + 109.3427826, + -0.0302888 + ], + [ + 109.3427491, + -0.0303244 + ], + [ + 109.3427095, + -0.0303833 + ], + [ + 109.3426719, + -0.0304108 + ], + [ + 109.3426221, + -0.0304291 + ], + [ + 109.3425702, + -0.0304473 + ], + [ + 109.3422886, + -0.0305394 + ] + ] + }, + "id": "way/188209573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209574", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394022, + -0.0234774 + ], + [ + 109.3398098, + -0.0232658 + ] + ] + }, + "id": "way/188209574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/188209575", + "highway": "residential", + "name": "Gang Margosari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304447, + -0.0318844 + ], + [ + 109.3294442, + -0.032964 + ], + [ + 109.3288431, + -0.0336376 + ], + [ + 109.3282193, + -0.0342754 + ], + [ + 109.3282038, + -0.0342913 + ] + ] + }, + "id": "way/188209575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799239", + "highway": "unclassified", + "name": "Jalan PGA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133799, + -0.0477615 + ], + [ + 109.3134123, + -0.047795 + ], + [ + 109.314079, + -0.0484527 + ], + [ + 109.3141966, + -0.0485857 + ], + [ + 109.3145501, + -0.0489276 + ] + ] + }, + "id": "way/189799239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799240", + "highway": "tertiary", + "name": "Jalan Mohammad Yamin", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190927, + -0.0480543 + ], + [ + 109.3190381, + -0.0481111 + ], + [ + 109.3188639, + -0.0482925 + ], + [ + 109.3187836, + -0.0483822 + ], + [ + 109.3186633, + -0.0485167 + ], + [ + 109.3185273, + -0.0486687 + ], + [ + 109.3183745, + -0.0488317 + ], + [ + 109.318145, + -0.0490765 + ], + [ + 109.3179365, + -0.049299 + ], + [ + 109.3178698, + -0.0493682 + ], + [ + 109.3177018, + -0.0495431 + ], + [ + 109.3175054, + -0.0497362 + ], + [ + 109.317426, + -0.0498123 + ], + [ + 109.3172422, + -0.0499883 + ], + [ + 109.3171154, + -0.0501151 + ], + [ + 109.3170752, + -0.0501553 + ], + [ + 109.3168877, + -0.0503427 + ], + [ + 109.3167187, + -0.0505077 + ], + [ + 109.3165547, + -0.0506775 + ], + [ + 109.3164506, + -0.0507856 + ], + [ + 109.316382, + -0.050851 + ], + [ + 109.3161382, + -0.0510767 + ], + [ + 109.3160217, + -0.0511845 + ], + [ + 109.3157385, + -0.0514466 + ], + [ + 109.3156722, + -0.051522 + ], + [ + 109.3155639, + -0.0516302 + ], + [ + 109.3152786, + -0.0519152 + ], + [ + 109.3152486, + -0.0519452 + ], + [ + 109.3150396, + -0.0521491 + ], + [ + 109.3148548, + -0.0523102 + ], + [ + 109.3146799, + -0.0524898 + ], + [ + 109.3144195, + -0.0527574 + ], + [ + 109.3141752, + -0.0530117 + ], + [ + 109.3138639, + -0.0532975 + ], + [ + 109.3135025, + -0.0536475 + ], + [ + 109.3131929, + -0.053971 + ], + [ + 109.3128823, + -0.0542626 + ], + [ + 109.3125553, + -0.0546036 + ], + [ + 109.3121045, + -0.0550378 + ], + [ + 109.3118223, + -0.0553212 + ], + [ + 109.3116576, + -0.0554741 + ], + [ + 109.311378, + -0.0557622 + ], + [ + 109.3110159, + -0.0561118 + ], + [ + 109.3107364, + -0.0563772 + ], + [ + 109.3105977, + -0.0565321 + ], + [ + 109.3105011, + -0.05664 + ], + [ + 109.3103114, + -0.0568295 + ], + [ + 109.3102519, + -0.0568944 + ], + [ + 109.3099923, + -0.0571474 + ], + [ + 109.3098634, + -0.0572639 + ], + [ + 109.3093774, + -0.0577813 + ], + [ + 109.3091361, + -0.0580123 + ], + [ + 109.3090179, + -0.0581407 + ], + [ + 109.3088149, + -0.058345 + ], + [ + 109.3087148, + -0.0584457 + ], + [ + 109.3083549, + -0.0588242 + ], + [ + 109.3081187, + -0.0590684 + ], + [ + 109.3080541, + -0.0591355 + ], + [ + 109.307689, + -0.0594996 + ], + [ + 109.30736, + -0.0598164 + ], + [ + 109.3073419, + -0.0598339 + ], + [ + 109.3072444, + -0.0599279 + ], + [ + 109.3071428, + -0.0600314 + ], + [ + 109.3067099, + -0.0604724 + ], + [ + 109.3063761, + -0.0608097 + ], + [ + 109.3062288, + -0.0609506 + ], + [ + 109.3060399, + -0.0611485 + ], + [ + 109.3059006, + -0.0612923 + ], + [ + 109.305558, + -0.061636 + ], + [ + 109.3055081, + -0.0616922 + ], + [ + 109.3052807, + -0.0619016 + ], + [ + 109.3049993, + -0.0622073 + ], + [ + 109.3048185, + -0.0623881 + ], + [ + 109.3047583, + -0.0624456 + ], + [ + 109.3046479, + -0.0625519 + ], + [ + 109.3045375, + -0.0626582 + ], + [ + 109.3042647, + -0.0629347 + ], + [ + 109.3040434, + -0.0631603 + ], + [ + 109.3039681, + -0.0632362 + ], + [ + 109.3039351, + -0.0632695 + ] + ] + }, + "id": "way/189799240" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799241", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311179, + -0.0229106 + ], + [ + 109.3118191, + -0.0226699 + ] + ] + }, + "id": "way/189799241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799242", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046203, + -0.041632 + ], + [ + 109.3039438, + -0.042247 + ], + [ + 109.3037655, + -0.0419496 + ], + [ + 109.3036876, + -0.0418196 + ], + [ + 109.3035407, + -0.0415708 + ], + [ + 109.3034072, + -0.0413448 + ], + [ + 109.3033406, + -0.0412277 + ], + [ + 109.3032016, + -0.0409831 + ], + [ + 109.3030652, + -0.0407305 + ], + [ + 109.3030364, + -0.0406785 + ], + [ + 109.3029127, + -0.0404497 + ], + [ + 109.3028713, + -0.0403435 + ], + [ + 109.3028185, + -0.0402422 + ], + [ + 109.3027636, + -0.0401367 + ], + [ + 109.3026795, + -0.0400341 + ], + [ + 109.3025894, + -0.0399067 + ], + [ + 109.3023698, + -0.0396104 + ], + [ + 109.3022844, + -0.0394951 + ], + [ + 109.3020792, + -0.039218 + ], + [ + 109.3016225, + -0.0385651 + ], + [ + 109.3013919, + -0.0382353 + ], + [ + 109.3012613, + -0.0380486 + ], + [ + 109.3010998, + -0.0381964 + ], + [ + 109.30108, + -0.0382125 + ], + [ + 109.3010544, + -0.0382172 + ], + [ + 109.3010294, + -0.0382102 + ], + [ + 109.3010124, + -0.0381934 + ], + [ + 109.3009483, + -0.0380962 + ], + [ + 109.3006095, + -0.037582 + ], + [ + 109.3003721, + -0.0372063 + ] + ] + }, + "id": "way/189799242" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799243", + "highway": "residential", + "name": "Gang Wonorejo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093114, + -0.0527928 + ], + [ + 109.3092765, + -0.0529255 + ], + [ + 109.3092007, + -0.0533209 + ], + [ + 109.3091425, + -0.053625 + ], + [ + 109.3090694, + -0.0538609 + ], + [ + 109.3089843, + -0.0541419 + ], + [ + 109.3089079, + -0.0546054 + ], + [ + 109.3088625, + -0.0547963 + ], + [ + 109.3088256, + -0.0549643 + ], + [ + 109.3087819, + -0.0551381 + ], + [ + 109.3087146, + -0.0554038 + ] + ] + }, + "id": "way/189799243" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799244", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090815, + -0.0338689 + ], + [ + 109.3089531, + -0.0339521 + ], + [ + 109.3088263, + -0.0340413 + ], + [ + 109.3087054, + -0.0341204 + ], + [ + 109.3085287, + -0.0342323 + ], + [ + 109.3084395, + -0.034284 + ], + [ + 109.3082872, + -0.0343911 + ], + [ + 109.3081675, + -0.0344566 + ], + [ + 109.3080291, + -0.0345565 + ], + [ + 109.3079055, + -0.0346384 + ], + [ + 109.3077644, + -0.0347319 + ], + [ + 109.3075427, + -0.0348643 + ], + [ + 109.3072548, + -0.0350396 + ], + [ + 109.3067986, + -0.0353571 + ] + ] + }, + "id": "way/189799244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799245", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237279, + -0.0420611 + ], + [ + 109.3231504, + -0.0425525 + ], + [ + 109.3226391, + -0.0429529 + ], + [ + 109.3224983, + -0.0430441 + ], + [ + 109.3222234, + -0.0432439 + ], + [ + 109.3219189, + -0.0435081 + ], + [ + 109.3218624, + -0.0435629 + ], + [ + 109.3216909, + -0.0437294 + ], + [ + 109.3215161, + -0.0439079 + ], + [ + 109.3211425, + -0.044268 + ], + [ + 109.3204049, + -0.0449836 + ], + [ + 109.3200923, + -0.0452837 + ], + [ + 109.3195586, + -0.0458292 + ] + ] + }, + "id": "way/189799245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799246", + "highway": "residential", + "name": "Gang Pak Abu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170286, + -0.0482234 + ], + [ + 109.3168032, + -0.048012 + ], + [ + 109.3166721, + -0.0478664 + ], + [ + 109.3165932, + -0.0477787 + ], + [ + 109.3161527, + -0.0472864 + ] + ] + }, + "id": "way/189799246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799247", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179962, + -0.0431192 + ], + [ + 109.3177259, + -0.042796 + ], + [ + 109.3175918, + -0.0426348 + ], + [ + 109.3174998, + -0.0425221 + ], + [ + 109.3174785, + -0.0424815 + ], + [ + 109.3174691, + -0.042454 + ], + [ + 109.317449, + -0.0423809 + ], + [ + 109.3174376, + -0.0423487 + ], + [ + 109.3174236, + -0.0423253 + ], + [ + 109.3173933, + -0.0422819 + ], + [ + 109.3171284, + -0.0419524 + ], + [ + 109.316915, + -0.0416979 + ], + [ + 109.3166073, + -0.0413113 + ], + [ + 109.3165417, + -0.0412211 + ], + [ + 109.3164863, + -0.0411447 + ], + [ + 109.3163388, + -0.0409319 + ], + [ + 109.3162709, + -0.0408621 + ], + [ + 109.3160138, + -0.0406112 + ], + [ + 109.3159942, + -0.0405951 + ], + [ + 109.3155125, + -0.0400516 + ], + [ + 109.3151302, + -0.0395449 + ] + ] + }, + "id": "way/189799247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799248", + "highway": "residential", + "name": "Gang Haji Nawawi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119978, + -0.0502037 + ], + [ + 109.3084501, + -0.0475666 + ] + ] + }, + "id": "way/189799248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799249", + "highway": "residential", + "name": "Gang Karya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178857, + -0.0445365 + ], + [ + 109.3181397, + -0.0448278 + ], + [ + 109.3182912, + -0.0449927 + ], + [ + 109.3184568, + -0.0451775 + ], + [ + 109.3186641, + -0.0454017 + ], + [ + 109.3187587, + -0.0455059 + ], + [ + 109.3188652, + -0.0456217 + ], + [ + 109.3190523, + -0.0458381 + ], + [ + 109.319062, + -0.0458502 + ], + [ + 109.3190654, + -0.0458572 + ], + [ + 109.3190669, + -0.0458636 + ], + [ + 109.3190676, + -0.045869 + ], + [ + 109.3190674, + -0.0458743 + ], + [ + 109.3190666, + -0.0458801 + ], + [ + 109.3190647, + -0.0458859 + ], + [ + 109.3190607, + -0.0458943 + ], + [ + 109.3190067, + -0.045957 + ], + [ + 109.3189088, + -0.0460616 + ], + [ + 109.318713, + -0.0462768 + ], + [ + 109.31819, + -0.0468817 + ], + [ + 109.3177535, + -0.0473685 + ], + [ + 109.317589, + -0.0475595 + ], + [ + 109.3175591, + -0.0475942 + ], + [ + 109.3174227, + -0.0477586 + ], + [ + 109.3170856, + -0.0481631 + ], + [ + 109.3170286, + -0.0482234 + ], + [ + 109.3169032, + -0.0483642 + ], + [ + 109.3168387, + -0.0484345 + ], + [ + 109.316813, + -0.0484625 + ], + [ + 109.3167389, + -0.0485446 + ], + [ + 109.3166454, + -0.0486482 + ], + [ + 109.3164686, + -0.0488376 + ], + [ + 109.3162024, + -0.0491385 + ], + [ + 109.3161691, + -0.0491789 + ], + [ + 109.3159292, + -0.0494932 + ] + ] + }, + "id": "way/189799249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799250", + "highway": "residential", + "name": "Gang Jambu Mente 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106604, + -0.0535856 + ], + [ + 109.3102878, + -0.0541308 + ], + [ + 109.3102366, + -0.0542328 + ], + [ + 109.3101945, + -0.0543034 + ], + [ + 109.3101565, + -0.054416 + ], + [ + 109.3100955, + -0.0546035 + ], + [ + 109.3100199, + -0.0548538 + ], + [ + 109.3100133, + -0.054918 + ] + ] + }, + "id": "way/189799250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799251", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141752, + -0.0530117 + ], + [ + 109.3137793, + -0.0526672 + ], + [ + 109.3137313, + -0.0526127 + ], + [ + 109.3135733, + -0.0524593 + ], + [ + 109.3135208, + -0.0524193 + ], + [ + 109.3133412, + -0.0522624 + ], + [ + 109.3132147, + -0.0521543 + ], + [ + 109.3129495, + -0.0519274 + ], + [ + 109.3127269, + -0.051737 + ], + [ + 109.312588, + -0.0516185 + ], + [ + 109.3124983, + -0.0515329 + ], + [ + 109.3124012, + -0.0514401 + ], + [ + 109.3121257, + -0.0511836 + ], + [ + 109.3119642, + -0.0510033 + ], + [ + 109.3118989, + -0.0509352 + ], + [ + 109.3115682, + -0.0506888 + ], + [ + 109.3103097, + -0.0497609 + ], + [ + 109.3095311, + -0.0491743 + ] + ] + }, + "id": "way/189799251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799252", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096791, + -0.0328045 + ], + [ + 109.3093516, + -0.0320515 + ], + [ + 109.3092405, + -0.0318012 + ], + [ + 109.3091367, + -0.0315571 + ], + [ + 109.3091142, + -0.0315041 + ], + [ + 109.3090262, + -0.031307 + ], + [ + 109.3088914, + -0.0310157 + ], + [ + 109.3089639, + -0.0309795 + ], + [ + 109.3101105, + -0.0305088 + ], + [ + 109.3101843, + -0.0304779 + ], + [ + 109.3106045, + -0.0303339 + ], + [ + 109.3108553, + -0.0302354 + ], + [ + 109.3110211, + -0.0302365 + ], + [ + 109.3110909, + -0.0302124 + ], + [ + 109.3111941, + -0.0301896 + ] + ] + }, + "id": "way/189799252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799253", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2892836, + -0.0368676 + ], + [ + 109.288735, + -0.0374041 + ], + [ + 109.2885663, + -0.0375859 + ], + [ + 109.2883451, + -0.0378246 + ], + [ + 109.2881817, + -0.0379729 + ], + [ + 109.2876135, + -0.0385052 + ] + ] + }, + "id": "way/189799253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799254", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3126868, + -0.0350099 + ], + [ + 109.312906, + -0.0347796 + ], + [ + 109.313123, + -0.0345517 + ], + [ + 109.3126399, + -0.0340474 + ], + [ + 109.3124242, + -0.033828 + ], + [ + 109.3123233, + -0.03371 + ], + [ + 109.3120819, + -0.0334364 + ], + [ + 109.311803, + -0.0331266 + ], + [ + 109.3115938, + -0.032912 + ], + [ + 109.3115161, + -0.0328639 + ], + [ + 109.3114717, + -0.0328611 + ], + [ + 109.3113953, + -0.0328638 + ], + [ + 109.3110614, + -0.032853 + ], + [ + 109.3106041, + -0.0328181 + ], + [ + 109.3105361, + -0.032816 + ], + [ + 109.3102246, + -0.0328058 + ], + [ + 109.3101227, + -0.0328088 + ], + [ + 109.3096791, + -0.0328045 + ], + [ + 109.3094616, + -0.0328765 + ] + ] + }, + "id": "way/189799254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799255", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035365, + -0.0261038 + ], + [ + 109.3030607, + -0.0263379 + ], + [ + 109.3026429, + -0.0265649 + ], + [ + 109.3023831, + -0.0266915 + ], + [ + 109.3020364, + -0.0268516 + ], + [ + 109.3017346, + -0.0270115 + ], + [ + 109.3017057, + -0.027033 + ], + [ + 109.301651, + -0.0270795 + ], + [ + 109.3013392, + -0.027282 + ], + [ + 109.3012571, + -0.0273229 + ], + [ + 109.3008923, + -0.0275237 + ], + [ + 109.3005679, + -0.0277193 + ], + [ + 109.2999383, + -0.028127 + ], + [ + 109.2997917, + -0.0282159 + ], + [ + 109.2996517, + -0.028308 + ] + ] + }, + "id": "way/189799255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799256", + "highway": "residential", + "name": "Jalan Karya Sosial" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048185, + -0.0623881 + ], + [ + 109.3043659, + -0.0620187 + ], + [ + 109.3038673, + -0.0615865 + ], + [ + 109.303623, + -0.0613642 + ], + [ + 109.3034632, + -0.0612303 + ], + [ + 109.3033072, + -0.0610912 + ], + [ + 109.303078, + -0.060885 + ], + [ + 109.3024049, + -0.060234 + ], + [ + 109.3021983, + -0.0600342 + ], + [ + 109.302193, + -0.0600184 + ], + [ + 109.302196, + -0.0600003 + ], + [ + 109.3022379, + -0.0599339 + ], + [ + 109.3022406, + -0.0599269 + ], + [ + 109.3022349, + -0.0599095 + ], + [ + 109.3020887, + -0.059718 + ], + [ + 109.3018245, + -0.059376 + ], + [ + 109.3016116, + -0.0591335 + ], + [ + 109.301541, + -0.0590625 + ], + [ + 109.3012216, + -0.0586928 + ], + [ + 109.3009964, + -0.0584373 + ], + [ + 109.3009561, + -0.0583908 + ], + [ + 109.300763, + -0.0581622 + ], + [ + 109.3005316, + -0.0578922 + ], + [ + 109.2992309, + -0.0589269 + ], + [ + 109.2982065, + -0.0596961 + ], + [ + 109.2979452, + -0.0599272 + ], + [ + 109.2978699, + -0.0599907 + ] + ] + }, + "id": "way/189799256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3054762, + -0.0325541 + ], + [ + 109.3050607, + -0.032748 + ], + [ + 109.3047263, + -0.0328886 + ], + [ + 109.3045676, + -0.0329458 + ], + [ + 109.304348, + -0.0330596 + ], + [ + 109.3038738, + -0.0333078 + ], + [ + 109.3035297, + -0.0335017 + ], + [ + 109.3033748, + -0.0335849 + ], + [ + 109.3030809, + -0.0337525 + ], + [ + 109.3024485, + -0.0340344 + ], + [ + 109.302391, + -0.034088 + ], + [ + 109.3023012, + -0.0341666 + ], + [ + 109.3019828, + -0.0344624 + ], + [ + 109.3016579, + -0.0347401 + ], + [ + 109.301321, + -0.0350204 + ], + [ + 109.3007272, + -0.0355024 + ], + [ + 109.3004636, + -0.0357263 + ], + [ + 109.3000918, + -0.0360422 + ], + [ + 109.2999627, + -0.0361532 + ], + [ + 109.3002773, + -0.0365346 + ], + [ + 109.3002878, + -0.0365472 + ], + [ + 109.3003105, + -0.0365866 + ], + [ + 109.3006086, + -0.0370548 + ] + ] + }, + "id": "way/189799257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799258", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127728, + -0.027874 + ], + [ + 109.3130938, + -0.0277917 + ] + ] + }, + "id": "way/189799258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799259", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004725, + -0.0262642 + ], + [ + 109.3007971, + -0.0268798 + ] + ] + }, + "id": "way/189799259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799260", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316439, + -0.0380436 + ], + [ + 109.3157318, + -0.0374206 + ], + [ + 109.3154369, + -0.0371608 + ] + ] + }, + "id": "way/189799260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799261", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141347, + -0.0283592 + ], + [ + 109.3141685, + -0.0284954 + ], + [ + 109.3142116, + -0.0286835 + ] + ] + }, + "id": "way/189799261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799262", + "access": "no", + "highway": "residential", + "maxspeed": "40", + "motor_vehicle": "yes", + "name": "Jalan Ujung Pandang Komplek Kurnia 5 C", + "oneway": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010161, + -0.0315674 + ], + [ + 109.3018194, + -0.0331405 + ], + [ + 109.3022484, + -0.0341011 + ] + ] + }, + "id": "way/189799262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799263", + "highway": "residential", + "name": "Jalan Kemakmuran" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3137788, + -0.0352058 + ], + [ + 109.3144691, + -0.0358424 + ], + [ + 109.315196, + -0.036478 + ], + [ + 109.3155666, + -0.0368151 + ], + [ + 109.3166755, + -0.0377788 + ] + ] + }, + "id": "way/189799263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799264", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3082339, + -0.040834 + ], + [ + 109.3079054, + -0.0412256 + ], + [ + 109.3074559, + -0.0417626 + ] + ] + }, + "id": "way/189799264" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799265", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2933698, + -0.0367674 + ], + [ + 109.2937002, + -0.0364627 + ] + ] + }, + "id": "way/189799265" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799266", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089786, + -0.0371826 + ], + [ + 109.3096078, + -0.0365399 + ] + ] + }, + "id": "way/189799266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799267", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991144, + -0.0513243 + ], + [ + 109.2990918, + -0.051352 + ], + [ + 109.2988935, + -0.051595 + ], + [ + 109.2985247, + -0.0520188 + ], + [ + 109.2979548, + -0.052666 + ], + [ + 109.2970669, + -0.0536522 + ], + [ + 109.2972937, + -0.0538967 + ] + ] + }, + "id": "way/189799267" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799268", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3078376, + -0.0373787 + ], + [ + 109.3079681, + -0.037524 + ] + ] + }, + "id": "way/189799268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799269", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097414, + -0.0432892 + ], + [ + 109.31067, + -0.0438331 + ] + ] + }, + "id": "way/189799269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799271", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109528, + -0.0349706 + ], + [ + 109.3109755, + -0.0349291 + ], + [ + 109.3109876, + -0.0348901 + ], + [ + 109.311002, + -0.0346287 + ], + [ + 109.3110017, + -0.0346146 + ], + [ + 109.3110007, + -0.0345968 + ], + [ + 109.3109992, + -0.0345546 + ], + [ + 109.3110154, + -0.0345723 + ], + [ + 109.3110342, + -0.0345908 + ], + [ + 109.3110697, + -0.0346183 + ], + [ + 109.3113524, + -0.0348419 + ], + [ + 109.3115569, + -0.0350178 + ], + [ + 109.311732, + -0.0351461 + ] + ] + }, + "id": "way/189799271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799273", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059034, + -0.0519324 + ], + [ + 109.3042866, + -0.0509061 + ], + [ + 109.3038073, + -0.0505717 + ], + [ + 109.3035686, + -0.0504228 + ] + ] + }, + "id": "way/189799273" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799274", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072091, + -0.0398646 + ], + [ + 109.3076759, + -0.0396437 + ], + [ + 109.3079017, + -0.0395197 + ], + [ + 109.3081029, + -0.0393963 + ], + [ + 109.3082289, + -0.0393232 + ], + [ + 109.3082765, + -0.039287 + ], + [ + 109.3082947, + -0.0392608 + ], + [ + 109.3083014, + -0.0392367 + ], + [ + 109.3083134, + -0.0392025 + ], + [ + 109.3083342, + -0.0391737 + ], + [ + 109.3084401, + -0.0390291 + ], + [ + 109.3087272, + -0.0387255 + ], + [ + 109.3096259, + -0.0377037 + ] + ] + }, + "id": "way/189799274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799275", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153633, + -0.0448779 + ], + [ + 109.3145353, + -0.0439832 + ], + [ + 109.3141873, + -0.0436071 + ] + ] + }, + "id": "way/189799275" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799276", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046191, + -0.0360594 + ], + [ + 109.3048755, + -0.0365808 + ] + ] + }, + "id": "way/189799276" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799277", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092856, + -0.0523942 + ], + [ + 109.3091241, + -0.0526946 + ] + ] + }, + "id": "way/189799277" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799278", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195059, + -0.0423627 + ], + [ + 109.3194138, + -0.0422648 + ] + ] + }, + "id": "way/189799278" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799279", + "highway": "residential", + "name": "Gang Sukma 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075937, + -0.0402241 + ], + [ + 109.3061819, + -0.0418376 + ] + ] + }, + "id": "way/189799279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799280", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313123, + -0.0345517 + ], + [ + 109.3133433, + -0.0347714 + ], + [ + 109.3137788, + -0.0352058 + ] + ] + }, + "id": "way/189799280" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799281", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2929299, + -0.0443935 + ], + [ + 109.2953056, + -0.0420288 + ], + [ + 109.2959903, + -0.041451 + ] + ] + }, + "id": "way/189799281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799282", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030333, + -0.0529786 + ], + [ + 109.3032889, + -0.0532914 + ] + ] + }, + "id": "way/189799282" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799283", + "highway": "residential", + "import": "yes", + "name": "Jalan Komplek Taman Firdaus", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2964688, + -0.0348752 + ], + [ + 109.2954707, + -0.0334925 + ], + [ + 109.2951276, + -0.0329375 + ], + [ + 109.295059, + -0.0328279 + ], + [ + 109.294889, + -0.0325406 + ], + [ + 109.2945269, + -0.0320148 + ], + [ + 109.2946719, + -0.0319086 + ] + ] + }, + "id": "way/189799283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799284", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147751, + -0.0340874 + ], + [ + 109.3142067, + -0.0335664 + ] + ] + }, + "id": "way/189799284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799285", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138654, + -0.0444605 + ], + [ + 109.3147199, + -0.0453613 + ] + ] + }, + "id": "way/189799285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799286", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2989578, + -0.050969 + ], + [ + 109.3002809, + -0.049879 + ], + [ + 109.3015977, + -0.0488256 + ], + [ + 109.3016401, + -0.048784 + ], + [ + 109.3016528, + -0.0487726 + ], + [ + 109.3016622, + -0.0487699 + ], + [ + 109.3016931, + -0.0487813 + ], + [ + 109.3017065, + -0.0487793 + ], + [ + 109.3017279, + -0.0487746 + ], + [ + 109.3029817, + -0.0479864 + ] + ] + }, + "id": "way/189799286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799287", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056791, + -0.0531655 + ], + [ + 109.3087819, + -0.0551381 + ] + ] + }, + "id": "way/189799287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799288", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155441, + -0.041616 + ], + [ + 109.3152034, + -0.0419149 + ] + ] + }, + "id": "way/189799288" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799289", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030032, + -0.0260986 + ], + [ + 109.3028994, + -0.0258803 + ] + ] + }, + "id": "way/189799289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799290", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051573, + -0.0556955 + ], + [ + 109.3049652, + -0.0554332 + ] + ] + }, + "id": "way/189799290" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799292", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102519, + -0.0568944 + ], + [ + 109.3093325, + -0.0563811 + ], + [ + 109.3093052, + -0.056368 + ], + [ + 109.3092784, + -0.05638 + ], + [ + 109.3092629, + -0.0564035 + ], + [ + 109.3092465, + -0.0564189 + ], + [ + 109.3092227, + -0.0564149 + ], + [ + 109.3091831, + -0.0563914 + ], + [ + 109.3086138, + -0.0560582 + ] + ] + }, + "id": "way/189799292" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799293", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019385, + -0.0309397 + ], + [ + 109.3023839, + -0.0318412 + ] + ] + }, + "id": "way/189799293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799294", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141966, + -0.0485857 + ], + [ + 109.314503, + -0.0482662 + ], + [ + 109.3145589, + -0.0482079 + ] + ] + }, + "id": "way/189799294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799295", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101227, + -0.0328088 + ], + [ + 109.3101198, + -0.0334885 + ] + ] + }, + "id": "way/189799295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799296", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2927258, + -0.0359795 + ], + [ + 109.2930622, + -0.0356929 + ] + ] + }, + "id": "way/189799296" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799300", + "highway": "residential", + "name": "Gang Selamat Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3082082, + -0.0587327 + ], + [ + 109.3073375, + -0.0581844 + ] + ] + }, + "id": "way/189799300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799302", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213416, + -0.0458557 + ], + [ + 109.3212321, + -0.0457439 + ], + [ + 109.3205577, + -0.0450557 + ] + ] + }, + "id": "way/189799302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799303", + "highway": "residential", + "name": "Gang Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062288, + -0.0609506 + ], + [ + 109.3053395, + -0.0601452 + ], + [ + 109.3044149, + -0.0593436 + ] + ] + }, + "id": "way/189799303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799304", + "highway": "residential", + "name": "Gang Sepakat 2A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105461, + -0.0383941 + ], + [ + 109.3097833, + -0.0392106 + ], + [ + 109.3090591, + -0.0399913 + ], + [ + 109.3087047, + -0.0403017 + ], + [ + 109.3084663, + -0.0405229 + ], + [ + 109.3081826, + -0.0407744 + ] + ] + }, + "id": "way/189799304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799305", + "highway": "residential", + "name": "Gang Kemuning Jalur 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131265, + -0.0503176 + ], + [ + 109.3124725, + -0.0497867 + ], + [ + 109.3121701, + -0.0495293 + ], + [ + 109.3121604, + -0.0495203 + ], + [ + 109.312158, + -0.0495124 + ], + [ + 109.3121582, + -0.0495027 + ], + [ + 109.3121601, + -0.0494928 + ], + [ + 109.3122415, + -0.0493664 + ], + [ + 109.3122466, + -0.049352 + ], + [ + 109.3122496, + -0.0493436 + ], + [ + 109.3122486, + -0.0493315 + ], + [ + 109.3122479, + -0.0493218 + ], + [ + 109.3122455, + -0.0493134 + ], + [ + 109.3122365, + -0.049303 + ], + [ + 109.3121021, + -0.0492083 + ], + [ + 109.3118704, + -0.0490224 + ] + ] + }, + "id": "way/189799305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799306", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075396, + -0.0360047 + ], + [ + 109.3063192, + -0.0373804 + ] + ] + }, + "id": "way/189799306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799307", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066195, + -0.0592811 + ], + [ + 109.3070688, + -0.058873 + ] + ] + }, + "id": "way/189799307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799308", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2943884, + -0.046037 + ], + [ + 109.2943052, + -0.0461215 + ] + ] + }, + "id": "way/189799308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799309", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132097, + -0.0511203 + ], + [ + 109.313654, + -0.0506253 + ] + ] + }, + "id": "way/189799309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799310", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2974029, + -0.0279835 + ], + [ + 109.2981192, + -0.0290455 + ] + ] + }, + "id": "way/189799310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799312", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2929405, + -0.0362368 + ], + [ + 109.2933119, + -0.0359495 + ] + ] + }, + "id": "way/189799312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799313", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2902201, + -0.0413449 + ], + [ + 109.2905407, + -0.0410207 + ] + ] + }, + "id": "way/189799313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799314", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093691, + -0.0342761 + ], + [ + 109.3087939, + -0.0347682 + ], + [ + 109.3085749, + -0.0349492 + ] + ] + }, + "id": "way/189799314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799315", + "highway": "residential", + "name": "Gang Sentarum Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096561, + -0.0460167 + ], + [ + 109.3082041, + -0.045035 + ], + [ + 109.3076489, + -0.0446755 + ], + [ + 109.3071292, + -0.0443437 + ], + [ + 109.3068062, + -0.0441214 + ] + ] + }, + "id": "way/189799315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151061, + -0.0337158 + ], + [ + 109.3147806, + -0.0334216 + ] + ] + }, + "id": "way/189799316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799317", + "highway": "residential", + "name": "Komplek Bank Duta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128051, + -0.0421828 + ], + [ + 109.3139799, + -0.0433846 + ] + ] + }, + "id": "way/189799317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062357, + -0.0343667 + ], + [ + 109.3048722, + -0.0350399 + ], + [ + 109.3044311, + -0.0352642 + ] + ] + }, + "id": "way/189799319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799320", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091425, + -0.053625 + ], + [ + 109.309879, + -0.0540342 + ], + [ + 109.3102366, + -0.0542328 + ] + ] + }, + "id": "way/189799320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011882, + -0.0573044 + ], + [ + 109.3019164, + -0.0582641 + ] + ] + }, + "id": "way/189799321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799322", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946032, + -0.0368286 + ], + [ + 109.2954846, + -0.0379276 + ], + [ + 109.2964229, + -0.0391399 + ] + ] + }, + "id": "way/189799322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799323", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3006378, + -0.0527935 + ], + [ + 109.3015791, + -0.0520583 + ], + [ + 109.3023605, + -0.0514414 + ], + [ + 109.3028283, + -0.0510344 + ] + ] + }, + "id": "way/189799323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799324", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094346, + -0.04181 + ], + [ + 109.3091186, + -0.04226 + ] + ] + }, + "id": "way/189799324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799325", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995726, + -0.0266646 + ], + [ + 109.2996101, + -0.0267308 + ], + [ + 109.2998574, + -0.0271674 + ] + ] + }, + "id": "way/189799325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799326", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991297, + -0.0333188 + ], + [ + 109.2999127, + -0.0343886 + ], + [ + 109.2999473, + -0.0343614 + ] + ] + }, + "id": "way/189799326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799327", + "highway": "residential", + "name": "Nurhadi 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121278, + -0.0430129 + ], + [ + 109.3136597, + -0.0446568 + ] + ] + }, + "id": "way/189799327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799328", + "highway": "residential", + "name": "Gang Putri Bungsu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3044, + -0.0569096 + ], + [ + 109.305141, + -0.0563834 + ], + [ + 109.3054617, + -0.0561635 + ], + [ + 109.3060289, + -0.0557745 + ], + [ + 109.3068436, + -0.0551864 + ] + ] + }, + "id": "way/189799328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799329", + "highway": "residential", + "name": "Jalan Komplek Anugrah Indah 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063691, + -0.0432346 + ], + [ + 109.3060135, + -0.0435807 + ], + [ + 109.3055038, + -0.0440725 + ], + [ + 109.3053154, + -0.0442546 + ], + [ + 109.3047809, + -0.0447694 + ], + [ + 109.3046643, + -0.0448817 + ], + [ + 109.3046505, + -0.0448894 + ], + [ + 109.3046351, + -0.0448894 + ], + [ + 109.304617, + -0.0448848 + ], + [ + 109.3046006, + -0.0448727 + ], + [ + 109.3045845, + -0.044811 + ], + [ + 109.3045617, + -0.0446071 + ], + [ + 109.3045603, + -0.0445347 + ], + [ + 109.3045785, + -0.0445019 + ], + [ + 109.3046099, + -0.0444703 + ], + [ + 109.3046548, + -0.0444307 + ] + ] + }, + "id": "way/189799329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799330", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3044615, + -0.054798 + ], + [ + 109.3035093, + -0.0555201 + ], + [ + 109.30328, + -0.0557037 + ] + ] + }, + "id": "way/189799330" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799331", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088263, + -0.0340413 + ], + [ + 109.3090482, + -0.0343742 + ] + ] + }, + "id": "way/189799331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799333", + "highway": "residential", + "name": "Gang Bersama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068349, + -0.0497624 + ], + [ + 109.3064528, + -0.0494841 + ], + [ + 109.3063074, + -0.0493799 + ], + [ + 109.3060565, + -0.0491905 + ], + [ + 109.3057827, + -0.0490137 + ], + [ + 109.3055009, + -0.0488364 + ], + [ + 109.3049119, + -0.0484592 + ], + [ + 109.3045891, + -0.0482434 + ], + [ + 109.3042411, + -0.0480109 + ], + [ + 109.3039842, + -0.0478369 + ], + [ + 109.3038633, + -0.0477711 + ], + [ + 109.3038499, + -0.0477752 + ], + [ + 109.3038439, + -0.0477809 + ] + ] + }, + "id": "way/189799333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799334", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026664, + -0.030463 + ], + [ + 109.302801, + -0.0310229 + ] + ] + }, + "id": "way/189799334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799335", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986911, + -0.039613 + ], + [ + 109.2978311, + -0.0403403 + ] + ] + }, + "id": "way/189799335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799336", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135967, + -0.0378971 + ], + [ + 109.3132455, + -0.0376072 + ] + ] + }, + "id": "way/189799336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799339", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145801, + -0.0342892 + ], + [ + 109.3138136, + -0.0335827 + ] + ] + }, + "id": "way/189799339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799340", + "highway": "residential", + "name": "Gang Sadar Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146433, + -0.046516 + ], + [ + 109.3157726, + -0.0476402 + ] + ] + }, + "id": "way/189799340" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799341", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171284, + -0.0419524 + ], + [ + 109.316836, + -0.0422189 + ] + ] + }, + "id": "way/189799341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799343", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170558, + -0.0393899 + ], + [ + 109.3173153, + -0.0391758 + ] + ] + }, + "id": "way/189799343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799344", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3027636, + -0.0401367 + ], + [ + 109.304422, + -0.0386783 + ] + ] + }, + "id": "way/189799344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799345", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3201553, + -0.03872 + ], + [ + 109.3206513, + -0.0383398 + ] + ] + }, + "id": "way/189799345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799346", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163464, + -0.0449167 + ], + [ + 109.3158516, + -0.0443735 + ] + ] + }, + "id": "way/189799346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799347", + "highway": "residential", + "name": "Gang Hidayah 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307164, + -0.0561379 + ], + [ + 109.3063935, + -0.0566598 + ] + ] + }, + "id": "way/189799347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799348", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2937899, + -0.0453985 + ], + [ + 109.293739, + -0.0454514 + ] + ] + }, + "id": "way/189799348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799349", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159103, + -0.0452737 + ], + [ + 109.3161582, + -0.0455553 + ], + [ + 109.3164023, + -0.045796 + ] + ] + }, + "id": "way/189799349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799350", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056196, + -0.0330826 + ], + [ + 109.3026645, + -0.0345651 + ] + ] + }, + "id": "way/189799350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799351", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023784, + -0.054483 + ], + [ + 109.3034952, + -0.0536621 + ], + [ + 109.3048227, + -0.0526746 + ] + ] + }, + "id": "way/189799351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799352", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3000337, + -0.026496 + ], + [ + 109.3003051, + -0.0269333 + ] + ] + }, + "id": "way/189799352" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799354", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059166, + -0.0518603 + ], + [ + 109.3071999, + -0.0526845 + ] + ] + }, + "id": "way/189799354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799355", + "highway": "residential", + "name": "Gang Melati II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035363, + -0.0603623 + ], + [ + 109.3048066, + -0.0615034 + ], + [ + 109.3052807, + -0.0619016 + ] + ] + }, + "id": "way/189799355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799356", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060106, + -0.0388299 + ], + [ + 109.3053851, + -0.0394714 + ] + ] + }, + "id": "way/189799356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799357", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109893, + -0.0537588 + ], + [ + 109.3125479, + -0.0519707 + ] + ] + }, + "id": "way/189799357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799358", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3125599, + -0.0388949 + ], + [ + 109.312152, + -0.0385345 + ], + [ + 109.3113763, + -0.0379008 + ] + ] + }, + "id": "way/189799358" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799359", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315073, + -0.0409695 + ], + [ + 109.315262, + -0.0408408 + ] + ] + }, + "id": "way/189799359" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799360", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011658, + -0.0347918 + ], + [ + 109.3009014, + -0.0350302 + ] + ] + }, + "id": "way/189799360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799361", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3152139, + -0.0482013 + ], + [ + 109.3147521, + -0.0477588 + ] + ] + }, + "id": "way/189799361" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799362", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064941, + -0.0502254 + ], + [ + 109.3050825, + -0.0492471 + ], + [ + 109.3035674, + -0.048243 + ] + ] + }, + "id": "way/189799362" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799363", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2931776, + -0.0365292 + ], + [ + 109.2935029, + -0.0362361 + ] + ] + }, + "id": "way/189799363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799365", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129779, + -0.0419692 + ], + [ + 109.3128558, + -0.0418505 + ] + ] + }, + "id": "way/189799365" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799366", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042213, + -0.0628847 + ], + [ + 109.3040051, + -0.0626034 + ], + [ + 109.3036711, + -0.0622561 + ], + [ + 109.3033896, + -0.0619221 + ], + [ + 109.3030832, + -0.0615587 + ] + ] + }, + "id": "way/189799366" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799367", + "highway": "residential", + "name": "Gang Sepakat 6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085287, + -0.0342323 + ], + [ + 109.308788, + -0.0345851 + ] + ] + }, + "id": "way/189799367" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799368", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151933, + -0.0336178 + ], + [ + 109.3159075, + -0.0342507 + ] + ] + }, + "id": "way/189799368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799370", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030652, + -0.0407305 + ], + [ + 109.302499, + -0.041087 + ], + [ + 109.3023965, + -0.0411625 + ] + ] + }, + "id": "way/189799370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799371", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2992747, + -0.05165 + ], + [ + 109.2981879, + -0.0528822 + ], + [ + 109.2972937, + -0.0538967 + ] + ] + }, + "id": "way/189799371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799372", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2954146, + -0.0294196 + ], + [ + 109.2956065, + -0.029679 + ] + ] + }, + "id": "way/189799372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799373", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312758, + -0.038666 + ], + [ + 109.3124252, + -0.0383938 + ] + ] + }, + "id": "way/189799373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799374", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2900444, + -0.034627 + ], + [ + 109.290525, + -0.035287 + ] + ] + }, + "id": "way/189799374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799376", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Danau Famili" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097181, + -0.045943 + ], + [ + 109.3112504, + -0.0470786 + ], + [ + 109.3128138, + -0.0482297 + ] + ] + }, + "id": "way/189799376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799377", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156608, + -0.0318394 + ], + [ + 109.3143791, + -0.0322328 + ], + [ + 109.3134309, + -0.0324854 + ], + [ + 109.3127816, + -0.0326584 + ] + ] + }, + "id": "way/189799377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799378", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315695, + -0.0298617 + ], + [ + 109.3141016, + -0.0302634 + ], + [ + 109.3140832, + -0.030268 + ], + [ + 109.3125189, + -0.0306545 + ] + ] + }, + "id": "way/189799378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799379", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111625, + -0.0409217 + ], + [ + 109.3107869, + -0.0406764 + ], + [ + 109.3107703, + -0.0406531 + ], + [ + 109.3107681, + -0.0406294 + ], + [ + 109.3107829, + -0.040604 + ], + [ + 109.310821, + -0.0405456 + ] + ] + }, + "id": "way/189799379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799380", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307702, + -0.0403253 + ], + [ + 109.3085146, + -0.0395384 + ], + [ + 109.3085548, + -0.0395049 + ], + [ + 109.3086098, + -0.0394714 + ], + [ + 109.3086742, + -0.0394285 + ], + [ + 109.3087467, + -0.0393487 + ], + [ + 109.3087587, + -0.0393329 + ], + [ + 109.3087684, + -0.0393265 + ], + [ + 109.3087791, + -0.0393239 + ], + [ + 109.3087905, + -0.0393252 + ], + [ + 109.3090121, + -0.0394938 + ] + ] + }, + "id": "way/189799380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799381", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3012001, + -0.0258086 + ], + [ + 109.3013917, + -0.026086 + ], + [ + 109.3014573, + -0.0261994 + ], + [ + 109.3015587, + -0.0264072 + ] + ] + }, + "id": "way/189799381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799382", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156204, + -0.0446357 + ], + [ + 109.3147653, + -0.0437721 + ], + [ + 109.313961, + -0.0428802 + ], + [ + 109.3137529, + -0.0426444 + ] + ] + }, + "id": "way/189799382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799383", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304563, + -0.0360891 + ], + [ + 109.304276, + -0.0355381 + ] + ] + }, + "id": "way/189799383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799384", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112212, + -0.0333578 + ], + [ + 109.3123688, + -0.0343361 + ] + ] + }, + "id": "way/189799384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799385", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.287002, + -0.0391144 + ], + [ + 109.2891754, + -0.0416688 + ] + ] + }, + "id": "way/189799385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799386", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079622, + -0.0405685 + ], + [ + 109.3077564, + -0.0408036 + ], + [ + 109.3075533, + -0.0410357 + ], + [ + 109.307346, + -0.0412725 + ], + [ + 109.3071092, + -0.041543 + ], + [ + 109.3068707, + -0.0418155 + ], + [ + 109.3066429, + -0.0420757 + ], + [ + 109.3065358, + -0.0421982 + ] + ] + }, + "id": "way/189799386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799388", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030901, + -0.0580787 + ], + [ + 109.303379, + -0.058332 + ] + ] + }, + "id": "way/189799388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799389", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155297, + -0.0513819 + ], + [ + 109.3149165, + -0.0507788 + ] + ] + }, + "id": "way/189799389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799390", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074297, + -0.0426782 + ], + [ + 109.307763, + -0.0422756 + ], + [ + 109.3086588, + -0.0412118 + ] + ] + }, + "id": "way/189799390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799391", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091142, + -0.0315041 + ], + [ + 109.3097738, + -0.0312041 + ] + ] + }, + "id": "way/189799391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799392", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995712, + -0.0280664 + ], + [ + 109.2994719, + -0.0279303 + ] + ] + }, + "id": "way/189799392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799393", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3032537, + -0.0484876 + ], + [ + 109.3031029, + -0.0485775 + ], + [ + 109.3022183, + -0.0490913 + ] + ] + }, + "id": "way/189799393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057861, + -0.0525658 + ], + [ + 109.3072358, + -0.053508 + ], + [ + 109.3089079, + -0.0546054 + ] + ] + }, + "id": "way/189799394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799395", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316915, + -0.0416979 + ], + [ + 109.3167062, + -0.0418756 + ] + ] + }, + "id": "way/189799395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799398", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995413, + -0.0356637 + ], + [ + 109.297368, + -0.0371851 + ] + ] + }, + "id": "way/189799398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799400", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311058, + -0.0320054 + ], + [ + 109.3110614, + -0.032853 + ] + ] + }, + "id": "way/189799400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799401", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.288622, + -0.0372827 + ], + [ + 109.2886931, + -0.0373645 + ] + ] + }, + "id": "way/189799401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799402", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030809, + -0.0337525 + ], + [ + 109.3023259, + -0.0321546 + ] + ] + }, + "id": "way/189799402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799403", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314079, + -0.0484527 + ], + [ + 109.3144368, + -0.0480614 + ], + [ + 109.3145128, + -0.0479884 + ], + [ + 109.3147521, + -0.0477588 + ] + ] + }, + "id": "way/189799403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799404", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2998424, + -0.041891 + ], + [ + 109.2989794, + -0.0425473 + ] + ] + }, + "id": "way/189799404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799405", + "highway": "residential", + "name": "Gang Umar Jambul" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023409, + -0.0466503 + ], + [ + 109.3032447, + -0.0460756 + ], + [ + 109.3042349, + -0.0454259 + ] + ] + }, + "id": "way/189799405" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799407", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3032074, + -0.0358102 + ], + [ + 109.3014123, + -0.0373549 + ] + ] + }, + "id": "way/189799407" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799408", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3139783, + -0.0252704 + ], + [ + 109.3140574, + -0.0255896 + ] + ] + }, + "id": "way/189799408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799409", + "highway": "residential", + "name": "Gang Sepakat 6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3082872, + -0.0343911 + ], + [ + 109.3085512, + -0.0347759 + ] + ] + }, + "id": "way/189799409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799410", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199261, + -0.0446454 + ], + [ + 109.3200393, + -0.0447774 + ] + ] + }, + "id": "way/189799410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799411", + "highway": "residential", + "name": "Gang Keluarga Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059006, + -0.0612923 + ], + [ + 109.3048695, + -0.0603631 + ], + [ + 109.3041287, + -0.0596765 + ] + ] + }, + "id": "way/189799411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799412", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116264, + -0.0488268 + ], + [ + 109.3118296, + -0.0484994 + ] + ] + }, + "id": "way/189799412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799413", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3168545, + -0.0405071 + ], + [ + 109.3170499, + -0.0403368 + ], + [ + 109.3172688, + -0.040146 + ] + ] + }, + "id": "way/189799413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799414", + "highway": "residential", + "name": "Gang Taman Siswa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143857, + -0.0403443 + ], + [ + 109.3130056, + -0.0389749 + ], + [ + 109.3127312, + -0.0387016 + ] + ] + }, + "id": "way/189799414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799415", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314208, + -0.0492527 + ], + [ + 109.3138607, + -0.0489292 + ] + ] + }, + "id": "way/189799415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799416", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2876252, + -0.0381917 + ], + [ + 109.2871132, + -0.0375858 + ] + ] + }, + "id": "way/189799416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799417", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140224, + -0.0349206 + ], + [ + 109.3132869, + -0.0342339 + ], + [ + 109.3129692, + -0.0338772 + ] + ] + }, + "id": "way/189799417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799418", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079125, + -0.0363082 + ], + [ + 109.3071488, + -0.0371403 + ], + [ + 109.306905, + -0.037406 + ], + [ + 109.3066418, + -0.0376928 + ] + ] + }, + "id": "way/189799418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799419", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073729, + -0.0434145 + ], + [ + 109.3102972, + -0.0451879 + ] + ] + }, + "id": "way/189799419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799420", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296095, + -0.0479381 + ], + [ + 109.2960187, + -0.0480148 + ] + ] + }, + "id": "way/189799420" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799422", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2868106, + -0.0392995 + ], + [ + 109.2876057, + -0.0402822 + ], + [ + 109.2889781, + -0.0418738 + ] + ] + }, + "id": "way/189799422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305813, + -0.0523604 + ], + [ + 109.3034887, + -0.0508357 + ], + [ + 109.3032259, + -0.0506634 + ] + ] + }, + "id": "way/189799423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799424", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039871, + -0.0369881 + ], + [ + 109.3048755, + -0.0365808 + ], + [ + 109.3051603, + -0.0364488 + ] + ] + }, + "id": "way/189799424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799425", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102359, + -0.0523058 + ], + [ + 109.3096551, + -0.0518992 + ] + ] + }, + "id": "way/189799425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799426", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030984, + -0.0623248 + ], + [ + 109.3032395, + -0.0622035 + ] + ] + }, + "id": "way/189799426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799427", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014298, + -0.0570402 + ], + [ + 109.3021597, + -0.0579945 + ] + ] + }, + "id": "way/189799427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799428", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091237, + -0.0495967 + ], + [ + 109.3092515, + -0.0494558 + ], + [ + 109.3095311, + -0.0491743 + ] + ] + }, + "id": "way/189799428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799429", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107394, + -0.0353328 + ], + [ + 109.3100757, + -0.0359502 + ] + ] + }, + "id": "way/189799429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799430", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941164, + -0.0372227 + ], + [ + 109.2949748, + -0.0383231 + ], + [ + 109.2958888, + -0.0395098 + ] + ] + }, + "id": "way/189799430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011791, + -0.0533959 + ], + [ + 109.302365, + -0.0524191 + ], + [ + 109.3029752, + -0.0519403 + ], + [ + 109.3032702, + -0.0516976 + ], + [ + 109.3036034, + -0.0514143 + ] + ] + }, + "id": "way/189799431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799432", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315127, + -0.0459897 + ], + [ + 109.3151115, + -0.0459766 + ], + [ + 109.314575, + -0.0455223 + ] + ] + }, + "id": "way/189799432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799433", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996947, + -0.0280452 + ], + [ + 109.2997736, + -0.028175 + ] + ] + }, + "id": "way/189799433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799434", + "highway": "residential", + "name": "Gang 8 Saudara" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046437, + -0.0571758 + ], + [ + 109.3053447, + -0.0567167 + ], + [ + 109.3059666, + -0.0562792 + ], + [ + 109.3067419, + -0.0557452 + ], + [ + 109.3071922, + -0.0554351 + ] + ] + }, + "id": "way/189799434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799435", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300253, + -0.0552641 + ], + [ + 109.2999891, + -0.0550143 + ] + ] + }, + "id": "way/189799435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799436", + "highway": "residential", + "name": "Gang Mufakat Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019327, + -0.0458964 + ], + [ + 109.3044259, + -0.0443765 + ] + ] + }, + "id": "way/189799436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799438", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131443, + -0.028024 + ], + [ + 109.314203, + -0.0276987 + ] + ] + }, + "id": "way/189799438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799440", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2965715, + -0.0285258 + ], + [ + 109.2970954, + -0.0292586 + ] + ] + }, + "id": "way/189799440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799441", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2988905, + -0.0400183 + ], + [ + 109.2961395, + -0.0422664 + ] + ] + }, + "id": "way/189799441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799443", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107511, + -0.0446521 + ], + [ + 109.3107092, + -0.0446307 + ] + ] + }, + "id": "way/189799443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799444", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017628, + -0.0310579 + ], + [ + 109.3002232, + -0.0282971 + ] + ] + }, + "id": "way/189799444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799445", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149141, + -0.0339373 + ], + [ + 109.3143554, + -0.0334727 + ] + ] + }, + "id": "way/189799445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799446", + "highway": "residential", + "name": "Gang Sepakat 5A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080291, + -0.0345565 + ], + [ + 109.3083023, + -0.0349765 + ] + ] + }, + "id": "way/189799446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799448", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112089, + -0.0441116 + ], + [ + 109.3128133, + -0.0458623 + ] + ] + }, + "id": "way/189799448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799449", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2933787, + -0.0316317 + ], + [ + 109.2936211, + -0.0319136 + ] + ] + }, + "id": "way/189799449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799451", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121596, + -0.0370236 + ], + [ + 109.3117884, + -0.0366874 + ] + ] + }, + "id": "way/189799451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799453", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118704, + -0.0490224 + ], + [ + 109.3117983, + -0.0491656 + ], + [ + 109.3116166, + -0.0494073 + ] + ] + }, + "id": "way/189799453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799454", + "highway": "residential", + "import": "yes", + "name": "Gang Sukma 17", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048977, + -0.0379078 + ], + [ + 109.303906, + -0.0388588 + ], + [ + 109.3038823, + -0.0388785 + ], + [ + 109.3038666, + -0.0388825 + ], + [ + 109.3038482, + -0.0388798 + ], + [ + 109.3037959, + -0.0388646 + ], + [ + 109.3037716, + -0.0388624 + ], + [ + 109.3037492, + -0.0388681 + ], + [ + 109.3037193, + -0.0388884 + ], + [ + 109.3035848, + -0.0389954 + ], + [ + 109.3034176, + -0.0391343 + ] + ] + }, + "id": "way/189799454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799456", + "highway": "residential", + "name": "Gang Sukarela 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3054486, + -0.0580488 + ], + [ + 109.3058089, + -0.0577701 + ], + [ + 109.3060905, + -0.0575716 + ], + [ + 109.3062876, + -0.0574223 + ], + [ + 109.3067896, + -0.0570339 + ] + ] + }, + "id": "way/189799456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799457", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2942371, + -0.0458838 + ], + [ + 109.2941529, + -0.0459614 + ] + ] + }, + "id": "way/189799457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799459", + "highway": "residential", + "name": "Gang Karya IV" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161854, + -0.0450557 + ], + [ + 109.3168229, + -0.0458108 + ] + ] + }, + "id": "way/189799459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799460", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2907358, + -0.0419158 + ], + [ + 109.2914128, + -0.0412221 + ] + ] + }, + "id": "way/189799460" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799461", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143684, + -0.0345439 + ], + [ + 109.3135165, + -0.0337358 + ] + ] + }, + "id": "way/189799461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799462", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3152942, + -0.049017 + ], + [ + 109.3149634, + -0.0493577 + ] + ] + }, + "id": "way/189799462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799463", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302542, + -0.0548984 + ], + [ + 109.3026707, + -0.0547928 + ], + [ + 109.3034097, + -0.054247 + ], + [ + 109.3038469, + -0.0539372 + ], + [ + 109.3043517, + -0.0535665 + ] + ] + }, + "id": "way/189799463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799464", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066279, + -0.0443231 + ], + [ + 109.3066766, + -0.0443567 + ], + [ + 109.3078685, + -0.0451806 + ], + [ + 109.3083924, + -0.0455428 + ], + [ + 109.3094514, + -0.0462748 + ] + ] + }, + "id": "way/189799464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799465", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163388, + -0.0409319 + ], + [ + 109.3165861, + -0.0407413 + ] + ] + }, + "id": "way/189799465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799466", + "highway": "residential", + "name": "Nurhadi 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123346, + -0.0427728 + ], + [ + 109.3139067, + -0.0444206 + ] + ] + }, + "id": "way/189799466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799467", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092183, + -0.0544379 + ], + [ + 109.3100199, + -0.0548538 + ] + ] + }, + "id": "way/189799467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799468", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306328, + -0.0390798 + ], + [ + 109.3060289, + -0.039413 + ], + [ + 109.3057225, + -0.0397265 + ], + [ + 109.3053603, + -0.0401151 + ], + [ + 109.304899, + -0.0405684 + ], + [ + 109.3044564, + -0.0409949 + ], + [ + 109.3042036, + -0.0412371 + ] + ] + }, + "id": "way/189799468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799469", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008229, + -0.0576975 + ], + [ + 109.301475, + -0.0585648 + ] + ] + }, + "id": "way/189799469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799470", + "highway": "residential", + "name": "Jalan Komplek Sepakat Griya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122368, + -0.0369369 + ], + [ + 109.3130873, + -0.0376392 + ] + ] + }, + "id": "way/189799470" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799471", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946909, + -0.0301265 + ], + [ + 109.2951767, + -0.0308527 + ] + ] + }, + "id": "way/189799471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799472", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014367, + -0.0312953 + ], + [ + 109.3011002, + -0.0307107 + ] + ] + }, + "id": "way/189799472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799473", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.308206, + -0.0479002 + ], + [ + 109.3096392, + -0.0489679 + ], + [ + 109.3117228, + -0.0505173 + ] + ] + }, + "id": "way/189799473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799474", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088199, + -0.0320186 + ], + [ + 109.3092405, + -0.0318012 + ] + ] + }, + "id": "way/189799474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799475", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034436, + -0.0488485 + ], + [ + 109.3027189, + -0.0492568 + ] + ] + }, + "id": "way/189799475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799476", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094923, + -0.0424546 + ], + [ + 109.309288, + -0.0423682 + ], + [ + 109.3092092, + -0.0423217 + ], + [ + 109.3091186, + -0.04226 + ], + [ + 109.3089907, + -0.0421964 + ], + [ + 109.3088858, + -0.0421429 + ], + [ + 109.308565, + -0.0419229 + ] + ] + }, + "id": "way/189799476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799477", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3007272, + -0.0355024 + ], + [ + 109.300318, + -0.0349599 + ], + [ + 109.3002385, + -0.0348544 + ] + ] + }, + "id": "way/189799477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799478", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146822, + -0.0469895 + ], + [ + 109.3145583, + -0.047108 + ] + ] + }, + "id": "way/189799478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799479", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011844, + -0.044456 + ], + [ + 109.2989443, + -0.0459946 + ] + ] + }, + "id": "way/189799479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042083, + -0.0567082 + ], + [ + 109.304789, + -0.0563197 + ], + [ + 109.3053084, + -0.0559556 + ], + [ + 109.3053952, + -0.0559019 + ], + [ + 109.3066397, + -0.0550416 + ] + ] + }, + "id": "way/189799480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799481", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156694, + -0.0313179 + ], + [ + 109.3152679, + -0.0314488 + ], + [ + 109.3136223, + -0.0319008 + ] + ] + }, + "id": "way/189799481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799483", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046167, + -0.0551134 + ], + [ + 109.3034826, + -0.0559223 + ] + ] + }, + "id": "way/189799483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799484", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033748, + -0.0335849 + ], + [ + 109.3029275, + -0.0322408 + ] + ] + }, + "id": "way/189799484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799485", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Cahaya Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312624, + -0.0484794 + ], + [ + 109.3110529, + -0.0473388 + ], + [ + 109.3095113, + -0.0462053 + ] + ] + }, + "id": "way/189799485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799486", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2873267, + -0.0373923 + ], + [ + 109.2878072, + -0.0379956 + ] + ] + }, + "id": "way/189799486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799487", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079808, + -0.0426551 + ], + [ + 109.3077858, + -0.0429164 + ], + [ + 109.3077675, + -0.0429375 + ] + ] + }, + "id": "way/189799487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799488", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193137, + -0.0440765 + ], + [ + 109.3198787, + -0.0446891 + ] + ] + }, + "id": "way/189799488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799489", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2997704, + -0.0266398 + ], + [ + 109.2998399, + -0.0267483 + ], + [ + 109.2999053, + -0.0268504 + ], + [ + 109.3001243, + -0.0271922 + ] + ] + }, + "id": "way/189799489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799490", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156546, + -0.0281579 + ], + [ + 109.3147586, + -0.0283613 + ] + ] + }, + "id": "way/189799490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799492", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099218, + -0.0456705 + ], + [ + 109.3112356, + -0.046688 + ] + ] + }, + "id": "way/189799492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799493", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156721, + -0.0290081 + ], + [ + 109.3126446, + -0.0297776 + ] + ] + }, + "id": "way/189799493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799495", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048648, + -0.0573985 + ], + [ + 109.3044168, + -0.0579096 + ], + [ + 109.3039202, + -0.0584844 + ], + [ + 109.3033722, + -0.0591045 + ] + ] + }, + "id": "way/189799495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799496", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156629, + -0.0454956 + ], + [ + 109.3160741, + -0.0459189 + ] + ] + }, + "id": "way/189799496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799497", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3055177, + -0.0327724 + ], + [ + 109.3025333, + -0.0342192 + ] + ] + }, + "id": "way/189799497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799499", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151893, + -0.0451196 + ], + [ + 109.3155875, + -0.0455681 + ] + ] + }, + "id": "way/189799499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799500", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035782, + -0.0490995 + ], + [ + 109.3033513, + -0.0492427 + ] + ] + }, + "id": "way/189799500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799501", + "highway": "residential", + "name": "Gang Hidayatullah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305871, + -0.0520662 + ], + [ + 109.3069703, + -0.0527785 + ], + [ + 109.3078903, + -0.0534222 + ], + [ + 109.3089843, + -0.0541419 + ] + ] + }, + "id": "way/189799501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799502", + "highway": "residential", + "name": "Gang Sepakat 5A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077644, + -0.0347319 + ], + [ + 109.3080557, + -0.0351752 + ] + ] + }, + "id": "way/189799502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799503", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049993, + -0.0622073 + ], + [ + 109.3042321, + -0.0615533 + ] + ] + }, + "id": "way/189799503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799504", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941274, + -0.0367299 + ], + [ + 109.294355, + -0.0370269 + ], + [ + 109.2952175, + -0.0381286 + ], + [ + 109.2961503, + -0.0393463 + ] + ] + }, + "id": "way/189799504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799505", + "highway": "residential", + "name": "Gang Sarikaton Dalam 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138482, + -0.0472986 + ], + [ + 109.3143941, + -0.0478725 + ] + ] + }, + "id": "way/189799505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799506", + "highway": "residential", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061754, + -0.0507828 + ], + [ + 109.3045423, + -0.0496843 + ] + ] + }, + "id": "way/189799506" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799508", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026645, + -0.0345651 + ], + [ + 109.3002773, + -0.0365346 + ] + ] + }, + "id": "way/189799508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799509", + "highway": "residential", + "name": "Gang Budi Mulya", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122107, + -0.0429083 + ], + [ + 109.3113524, + -0.0423293 + ], + [ + 109.3110202, + -0.0420986 + ], + [ + 109.3107714, + -0.0419257 + ], + [ + 109.3105531, + -0.0417741 + ], + [ + 109.3104938, + -0.0417329 + ], + [ + 109.3102098, + -0.0415359 + ], + [ + 109.3092774, + -0.040889 + ], + [ + 109.3091032, + -0.0407681 + ], + [ + 109.3088981, + -0.0406258 + ] + ] + }, + "id": "way/189799509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799510", + "highway": "residential", + "name": "Jalan Petani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957853, + -0.0353592 + ], + [ + 109.2973145, + -0.0372265 + ], + [ + 109.2977994, + -0.0378516 + ], + [ + 109.2978541, + -0.0379426 + ], + [ + 109.2980077, + -0.0382236 + ], + [ + 109.2981412, + -0.038495 + ], + [ + 109.2982177, + -0.0386492 + ], + [ + 109.2983266, + -0.0388686 + ], + [ + 109.2983854, + -0.0389892 + ], + [ + 109.2985133, + -0.0392514 + ], + [ + 109.2986911, + -0.039613 + ], + [ + 109.2988612, + -0.0399652 + ], + [ + 109.2988905, + -0.0400183 + ], + [ + 109.2989711, + -0.0401842 + ], + [ + 109.2991582, + -0.0405711 + ], + [ + 109.2993077, + -0.0408798 + ], + [ + 109.2995324, + -0.0413439 + ], + [ + 109.2997429, + -0.0417011 + ], + [ + 109.2998424, + -0.041891 + ], + [ + 109.300052, + -0.0422503 + ], + [ + 109.3001484, + -0.0424156 + ], + [ + 109.3002655, + -0.0426163 + ], + [ + 109.300308, + -0.042712 + ], + [ + 109.3004074, + -0.0429649 + ], + [ + 109.3005826, + -0.0432766 + ], + [ + 109.3007895, + -0.0436741 + ], + [ + 109.3009805, + -0.0440788 + ], + [ + 109.3011844, + -0.044456 + ], + [ + 109.3013753, + -0.044814 + ] + ] + }, + "id": "way/189799510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799511", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312786, + -0.025719 + ], + [ + 109.312791, + -0.0260437 + ], + [ + 109.3128007, + -0.0263781 + ], + [ + 109.3128071, + -0.0265635 + ], + [ + 109.3128131, + -0.0267397 + ], + [ + 109.3128044, + -0.0269214 + ], + [ + 109.3127974, + -0.0271099 + ], + [ + 109.312777, + -0.0275739 + ], + [ + 109.3127734, + -0.0278322 + ], + [ + 109.3127728, + -0.027874 + ], + [ + 109.312766, + -0.0283602 + ], + [ + 109.3127604, + -0.0287664 + ], + [ + 109.3127726, + -0.0289813 + ], + [ + 109.3127699, + -0.0290892 + ], + [ + 109.3127075, + -0.0294302 + ], + [ + 109.3126446, + -0.0297776 + ], + [ + 109.3126131, + -0.029959 + ], + [ + 109.3125751, + -0.030178 + ], + [ + 109.3125189, + -0.0306545 + ], + [ + 109.3124644, + -0.0312593 + ], + [ + 109.3124577, + -0.0313333 + ], + [ + 109.3124461, + -0.0314618 + ], + [ + 109.3124709, + -0.0316393 + ], + [ + 109.312499, + -0.0317721 + ] + ] + }, + "id": "way/189799511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799512", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2909258, + -0.0348759 + ], + [ + 109.2909515, + -0.0349143 + ] + ] + }, + "id": "way/189799512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799513", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040434, + -0.0631603 + ], + [ + 109.3037678, + -0.0628247 + ], + [ + 109.3032395, + -0.0622035 + ], + [ + 109.3028326, + -0.061724 + ] + ] + }, + "id": "way/189799513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799514", + "highway": "residential", + "name": "Gang Sukarela" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057197, + -0.0583298 + ], + [ + 109.3067807, + -0.0574991 + ], + [ + 109.3068912, + -0.0573959 + ], + [ + 109.3070113, + -0.0572774 + ] + ] + }, + "id": "way/189799514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799515", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2920221, + -0.0341278 + ], + [ + 109.29213, + -0.0340172 + ] + ] + }, + "id": "way/189799515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799516", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026924, + -0.0262413 + ], + [ + 109.3026674, + -0.0261441 + ], + [ + 109.3026209, + -0.0259449 + ] + ] + }, + "id": "way/189799516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799517", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127612, + -0.046107 + ], + [ + 109.3136655, + -0.0470544 + ], + [ + 109.3138682, + -0.047278 + ] + ] + }, + "id": "way/189799517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799519", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146799, + -0.0499462 + ], + [ + 109.3144078, + -0.0496806 + ], + [ + 109.3142824, + -0.0495518 + ] + ] + }, + "id": "way/189799519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799520", + "highway": "residential", + "name": "Gang Karya V" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169897, + -0.0465363 + ], + [ + 109.3174819, + -0.0470909 + ], + [ + 109.3177535, + -0.0473685 + ] + ] + }, + "id": "way/189799520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799521", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163942, + -0.0505063 + ], + [ + 109.3162382, + -0.0503393 + ], + [ + 109.3161072, + -0.0502203 + ] + ] + }, + "id": "way/189799521" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799522", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029111, + -0.0303229 + ], + [ + 109.3032565, + -0.03221 + ], + [ + 109.3035297, + -0.0335017 + ] + ] + }, + "id": "way/189799522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799523", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3177622, + -0.0365728 + ], + [ + 109.3184597, + -0.0373765 + ], + [ + 109.318982, + -0.0379989 + ], + [ + 109.3190678, + -0.0380979 + ], + [ + 109.3190782, + -0.03811 + ], + [ + 109.3190915, + -0.0381246 + ], + [ + 109.3191246, + -0.0380964 + ], + [ + 109.3194672, + -0.0377986 + ] + ] + }, + "id": "way/189799523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067384, + -0.0498929 + ], + [ + 109.3079516, + -0.0507138 + ], + [ + 109.3083837, + -0.0510376 + ] + ] + }, + "id": "way/189799524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799525", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141209, + -0.0274305 + ], + [ + 109.314203, + -0.0276987 + ], + [ + 109.3142894, + -0.0279446 + ] + ] + }, + "id": "way/189799525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799526", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297931, + -0.0338422 + ], + [ + 109.2966496, + -0.0319176 + ], + [ + 109.2965698, + -0.0317616 + ] + ] + }, + "id": "way/189799526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799527", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311058, + -0.0320054 + ], + [ + 109.3110468, + -0.0313721 + ], + [ + 109.3110211, + -0.0302365 + ] + ] + }, + "id": "way/189799527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799528", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314269, + -0.0288391 + ], + [ + 109.3142116, + -0.0286835 + ] + ] + }, + "id": "way/189799528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799529", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113256, + -0.0439641 + ], + [ + 109.3116447, + -0.0442994 + ], + [ + 109.3119954, + -0.0446729 + ], + [ + 109.312031, + -0.0447003 + ], + [ + 109.3120538, + -0.0447071 + ], + [ + 109.3120699, + -0.0447091 + ], + [ + 109.3120833, + -0.0447134 + ], + [ + 109.3120943, + -0.0447229 + ], + [ + 109.3124326, + -0.0450893 + ], + [ + 109.3124507, + -0.0451087 + ], + [ + 109.3124782, + -0.0451315 + ], + [ + 109.3124916, + -0.0451396 + ], + [ + 109.3125109, + -0.0451453 + ], + [ + 109.3125245, + -0.0451456 + ], + [ + 109.312548, + -0.0451443 + ], + [ + 109.3125634, + -0.0451362 + ], + [ + 109.3126224, + -0.0450759 + ], + [ + 109.3126728, + -0.0450191 + ] + ] + }, + "id": "way/189799529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799530", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3032165, + -0.0379393 + ], + [ + 109.3032457, + -0.0379858 + ], + [ + 109.3033382, + -0.0380895 + ] + ] + }, + "id": "way/189799530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799531", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011738, + -0.0314735 + ], + [ + 109.3006, + -0.0305709 + ], + [ + 109.3002136, + -0.0298759 + ] + ] + }, + "id": "way/189799531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799532", + "highway": "residential", + "name": "Gang Sarikaton Dalam 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144167, + -0.0467187 + ], + [ + 109.3146822, + -0.0469895 + ], + [ + 109.3149546, + -0.0472792 + ], + [ + 109.315518, + -0.0478784 + ] + ] + }, + "id": "way/189799532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799533", + "highway": "residential", + "name": "Gang Morodadi 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119642, + -0.0510033 + ], + [ + 109.3117457, + -0.0511936 + ], + [ + 109.3100583, + -0.0532423 + ] + ] + }, + "id": "way/189799533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799534", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2998256, + -0.0416534 + ], + [ + 109.2997737, + -0.04169 + ] + ] + }, + "id": "way/189799534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799535", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008923, + -0.0275237 + ], + [ + 109.3021897, + -0.030092 + ], + [ + 109.3024665, + -0.0305912 + ] + ] + }, + "id": "way/189799535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799537", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090631, + -0.0372454 + ], + [ + 109.3084828, + -0.0378972 + ], + [ + 109.3077307, + -0.038742 + ], + [ + 109.3076584, + -0.0386719 + ], + [ + 109.3075772, + -0.0385931 + ] + ] + }, + "id": "way/189799537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799540", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105244, + -0.0449197 + ], + [ + 109.3105563, + -0.0449298 + ], + [ + 109.3105713, + -0.044936 + ], + [ + 109.3105916, + -0.0449458 + ], + [ + 109.3106047, + -0.0449531 + ], + [ + 109.311412, + -0.0457203 + ], + [ + 109.3124702, + -0.0468374 + ] + ] + }, + "id": "way/189799540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3069306, + -0.0355206 + ], + [ + 109.3055953, + -0.0366267 + ], + [ + 109.304238, + -0.0372741 + ] + ] + }, + "id": "way/189799542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799544", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2911369, + -0.0423967 + ], + [ + 109.292165, + -0.0413391 + ] + ] + }, + "id": "way/189799544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799545", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101654, + -0.0369336 + ], + [ + 109.310694, + -0.0374477 + ], + [ + 109.3112912, + -0.0379947 + ] + ] + }, + "id": "way/189799545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799546", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198154, + -0.0431722 + ], + [ + 109.3197725, + -0.0432114 + ], + [ + 109.3197349, + -0.0432427 + ] + ] + }, + "id": "way/189799546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799547", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302096, + -0.0256997 + ], + [ + 109.3022817, + -0.0256056 + ], + [ + 109.3023344, + -0.0255801 + ] + ] + }, + "id": "way/189799547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799548", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2916801, + -0.0330295 + ], + [ + 109.2922004, + -0.0336754 + ] + ] + }, + "id": "way/189799548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799549", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969704, + -0.0299464 + ], + [ + 109.2970338, + -0.0300503 + ] + ] + }, + "id": "way/189799549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799550", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005775, + -0.0318007 + ], + [ + 109.3018888, + -0.0343145 + ], + [ + 109.3019828, + -0.0344624 + ] + ] + }, + "id": "way/189799550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799551", + "highway": "residential", + "lanes": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084219, + -0.0367395 + ], + [ + 109.3078376, + -0.0373787 + ], + [ + 109.3072424, + -0.0380339 + ] + ] + }, + "id": "way/189799551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799553", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017485, + -0.0540205 + ], + [ + 109.3030333, + -0.0529786 + ], + [ + 109.3042917, + -0.0519581 + ] + ] + }, + "id": "way/189799553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799555", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038043, + -0.056263 + ], + [ + 109.3043813, + -0.0558396 + ], + [ + 109.3046985, + -0.0556143 + ], + [ + 109.3049652, + -0.0554332 + ], + [ + 109.3055809, + -0.0550074 + ], + [ + 109.3060838, + -0.0546346 + ] + ] + }, + "id": "way/189799555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799556", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156859, + -0.0293452 + ], + [ + 109.3129024, + -0.0300965 + ], + [ + 109.3125751, + -0.030178 + ] + ] + }, + "id": "way/189799556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799557", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188149, + -0.0434377 + ], + [ + 109.319104, + -0.0436825 + ], + [ + 109.3194264, + -0.0439693 + ] + ] + }, + "id": "way/189799557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799558", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121427, + -0.0345968 + ], + [ + 109.3126868, + -0.0350099 + ], + [ + 109.3133742, + -0.0356599 + ] + ] + }, + "id": "way/189799558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799559", + "highway": "residential", + "name": "Gang Bulan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064619, + -0.0591075 + ], + [ + 109.3071493, + -0.0585057 + ], + [ + 109.3071695, + -0.0585023 + ], + [ + 109.3072017, + -0.058511 + ], + [ + 109.3081187, + -0.0590684 + ] + ] + }, + "id": "way/189799559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799560", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136655, + -0.0470544 + ], + [ + 109.3134576, + -0.0473195 + ], + [ + 109.3134492, + -0.0473262 + ], + [ + 109.3134364, + -0.0473292 + ], + [ + 109.313414, + -0.0473279 + ], + [ + 109.3134006, + -0.0473212 + ], + [ + 109.3133898, + -0.0473121 + ], + [ + 109.3133768, + -0.0472974 + ], + [ + 109.3108103, + -0.0445821 + ] + ] + }, + "id": "way/189799560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799561", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3044241, + -0.0294811 + ], + [ + 109.3046634, + -0.0306823 + ], + [ + 109.3050607, + -0.032748 + ] + ] + }, + "id": "way/189799561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799562", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307975, + -0.0416902 + ], + [ + 109.3078531, + -0.0415752 + ], + [ + 109.3078273, + -0.0415679 + ], + [ + 109.3078078, + -0.0415756 + ], + [ + 109.3069406, + -0.0426325 + ] + ] + }, + "id": "way/189799562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799563", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2902651, + -0.0355415 + ], + [ + 109.2897929, + -0.034885 + ] + ] + }, + "id": "way/189799563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799564", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3041329, + -0.0296475 + ], + [ + 109.3042995, + -0.0305235 + ], + [ + 109.3044588, + -0.0314003 + ], + [ + 109.3047263, + -0.0328886 + ] + ] + }, + "id": "way/189799564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799565", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2892836, + -0.0368676 + ], + [ + 109.2895956, + -0.0365626 + ], + [ + 109.2898974, + -0.0362688 + ], + [ + 109.2899299, + -0.0362259 + ], + [ + 109.2899336, + -0.0362075 + ], + [ + 109.2899323, + -0.036188 + ], + [ + 109.2899121, + -0.0361575 + ] + ] + }, + "id": "way/189799565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799566", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2918691, + -0.0339558 + ], + [ + 109.291909, + -0.0339957 + ] + ] + }, + "id": "way/189799566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799567", + "highway": "service", + "name": "Komplek Kehutanan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119529, + -0.0424921 + ], + [ + 109.3120736, + -0.0423626 + ], + [ + 109.3121483, + -0.0422683 + ], + [ + 109.3122511, + -0.0421481 + ], + [ + 109.3122674, + -0.0421352 + ], + [ + 109.3122939, + -0.0421295 + ], + [ + 109.3123273, + -0.0421397 + ], + [ + 109.3123582, + -0.0421643 + ], + [ + 109.3124016, + -0.0422108 + ], + [ + 109.3126153, + -0.0424101 + ] + ] + }, + "id": "way/189799567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799568", + "highway": "residential", + "name": "Gang Sukma 8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061519, + -0.0408738 + ], + [ + 109.3057714, + -0.0413107 + ], + [ + 109.3056044, + -0.0414904 + ], + [ + 109.3054736, + -0.0416172 + ], + [ + 109.3050834, + -0.0420114 + ] + ] + }, + "id": "way/189799568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799569", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3162382, + -0.0503393 + ], + [ + 109.316301, + -0.0502679 + ], + [ + 109.3163047, + -0.0502539 + ], + [ + 109.3163051, + -0.0502428 + ], + [ + 109.3163027, + -0.0502227 + ], + [ + 109.316295, + -0.0502063 + ], + [ + 109.3161566, + -0.0500818 + ] + ] + }, + "id": "way/189799569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799570", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2928541, + -0.0321157 + ], + [ + 109.292939, + -0.0322793 + ], + [ + 109.2926401, + -0.0325022 + ] + ] + }, + "id": "way/189799570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799571", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130421, + -0.040553 + ], + [ + 109.3128588, + -0.0407518 + ], + [ + 109.3127095, + -0.0409333 + ], + [ + 109.3126863, + -0.0409615 + ], + [ + 109.3126432, + -0.0410123 + ], + [ + 109.3126211, + -0.0410197 + ], + [ + 109.3126048, + -0.0410209 + ], + [ + 109.3125895, + -0.0410123 + ], + [ + 109.3124733, + -0.0409078 + ] + ] + }, + "id": "way/189799571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799573", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083234, + -0.0422267 + ], + [ + 109.3087178, + -0.0424528 + ], + [ + 109.3090256, + -0.0426055 + ], + [ + 109.3090343, + -0.0426126 + ], + [ + 109.309039, + -0.042622 + ], + [ + 109.3090423, + -0.042632 + ], + [ + 109.3090423, + -0.0426421 + ], + [ + 109.3090413, + -0.0426501 + ], + [ + 109.3090339, + -0.0426639 + ], + [ + 109.3090051, + -0.0427103 + ], + [ + 109.3089696, + -0.0427675 + ], + [ + 109.3089625, + -0.0427863 + ], + [ + 109.3089605, + -0.042799 + ], + [ + 109.3089635, + -0.0428097 + ], + [ + 109.3089706, + -0.0428189 + ] + ] + }, + "id": "way/189799573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799577", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064246, + -0.0391586 + ], + [ + 109.3074022, + -0.0385916 + ], + [ + 109.307477, + -0.038551 + ], + [ + 109.3075071, + -0.0385195 + ], + [ + 109.3075353, + -0.0385497 + ], + [ + 109.3075772, + -0.0385931 + ] + ] + }, + "id": "way/189799577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799580", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2975129, + -0.0541357 + ], + [ + 109.2977033, + -0.0543563 + ], + [ + 109.2977267, + -0.054361 + ], + [ + 109.2977516, + -0.0543543 + ], + [ + 109.2986798, + -0.0533035 + ], + [ + 109.2991815, + -0.0527181 + ], + [ + 109.2991812, + -0.052702 + ], + [ + 109.2991725, + -0.0526866 + ], + [ + 109.298981, + -0.0524754 + ] + ] + }, + "id": "way/189799580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799581", + "highway": "residential", + "name": "Gang Mentari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222527, + -0.0403861 + ], + [ + 109.321641, + -0.0408661 + ], + [ + 109.3215756, + -0.0409186 + ] + ] + }, + "id": "way/189799581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799582", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062068, + -0.0588468 + ], + [ + 109.3060637, + -0.0589784 + ], + [ + 109.3058586, + -0.0591876 + ], + [ + 109.3055516, + -0.0595212 + ] + ] + }, + "id": "way/189799582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799583", + "highway": "residential", + "name": "Jalan Komplek Sepakat Asri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101781, + -0.038098 + ], + [ + 109.3093354, + -0.0391068 + ], + [ + 109.3091903, + -0.0392805 + ], + [ + 109.3090121, + -0.0394938 + ], + [ + 109.3088846, + -0.0396204 + ], + [ + 109.3087967, + -0.0396984 + ], + [ + 109.3087392, + -0.0397322 + ], + [ + 109.3086909, + -0.0397604 + ], + [ + 109.3078846, + -0.040493 + ] + ] + }, + "id": "way/189799583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799586", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102477, + -0.0349658 + ], + [ + 109.3103452, + -0.034866 + ], + [ + 109.3103566, + -0.0348452 + ], + [ + 109.310362, + -0.0348184 + ], + [ + 109.3103814, + -0.0342186 + ] + ] + }, + "id": "way/189799586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161873, + -0.0383179 + ], + [ + 109.3170558, + -0.0393899 + ], + [ + 109.3173844, + -0.0398059 + ] + ] + }, + "id": "way/189799587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799589", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142804, + -0.0468383 + ], + [ + 109.3145583, + -0.047108 + ], + [ + 109.314666, + -0.0472062 + ] + ] + }, + "id": "way/189799589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799590", + "highway": "residential", + "name": "Gang Morodadi III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124012, + -0.0514401 + ], + [ + 109.3122119, + -0.0516394 + ], + [ + 109.3106117, + -0.0535546 + ] + ] + }, + "id": "way/189799590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799591", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216653, + -0.0396558 + ], + [ + 109.3213812, + -0.0399108 + ], + [ + 109.3212895, + -0.0399954 + ] + ] + }, + "id": "way/189799591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799593", + "highway": "residential", + "name": "Gang Sudiharjo 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130873, + -0.0334572 + ], + [ + 109.3143626, + -0.0330318 + ], + [ + 109.3153598, + -0.0326991 + ], + [ + 109.3156799, + -0.0325561 + ] + ] + }, + "id": "way/189799593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799594", + "highway": "residential", + "name": "Gang Murni" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090179, + -0.0581407 + ], + [ + 109.3079064, + -0.0575859 + ], + [ + 109.3077039, + -0.05746 + ] + ] + }, + "id": "way/189799594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799597", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200501, + -0.0434011 + ], + [ + 109.3198154, + -0.0431722 + ], + [ + 109.3195231, + -0.0428872 + ], + [ + 109.3194634, + -0.0428302 + ] + ] + }, + "id": "way/189799597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799598", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204437, + -0.0409848 + ], + [ + 109.3199897, + -0.0413793 + ], + [ + 109.3198884, + -0.0414665 + ] + ] + }, + "id": "way/189799598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799599", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994895, + -0.0518973 + ], + [ + 109.298981, + -0.0524754 + ], + [ + 109.2984345, + -0.0531019 + ], + [ + 109.2975129, + -0.0541357 + ], + [ + 109.2972937, + -0.0538967 + ] + ] + }, + "id": "way/189799599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799600", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093848, + -0.0375068 + ], + [ + 109.3089651, + -0.0379667 + ], + [ + 109.3083844, + -0.038603 + ], + [ + 109.3080258, + -0.0389959 + ], + [ + 109.308001, + -0.0390248 + ], + [ + 109.3080016, + -0.0390342 + ], + [ + 109.308011, + -0.0390489 + ], + [ + 109.3081267, + -0.0391908 + ] + ] + }, + "id": "way/189799600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799602", + "highway": "residential", + "name": "Jalan Ujung Pandang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2898525, + -0.0410127 + ], + [ + 109.2892083, + -0.0416311 + ], + [ + 109.2891754, + -0.0416688 + ], + [ + 109.2889781, + -0.0418738 + ], + [ + 109.2889138, + -0.0419423 + ], + [ + 109.2887621, + -0.0420973 + ], + [ + 109.2886867, + -0.0421741 + ], + [ + 109.2885777, + -0.042285 + ], + [ + 109.2883015, + -0.042572 + ], + [ + 109.2881459, + -0.0427276 + ], + [ + 109.2880955, + -0.0427802 + ], + [ + 109.2878911, + -0.0429931 + ], + [ + 109.2878542, + -0.0430343 + ], + [ + 109.2876959, + -0.0431869 + ], + [ + 109.2875907, + -0.0432882 + ], + [ + 109.2873904, + -0.0434718 + ], + [ + 109.2873375, + -0.0435487 + ], + [ + 109.2872903, + -0.0435751 + ], + [ + 109.287128, + -0.0436865 + ], + [ + 109.2870247, + -0.0437388 + ], + [ + 109.2869416, + -0.0437951 + ], + [ + 109.2866188, + -0.0440977 + ], + [ + 109.286448, + -0.0442578 + ] + ] + }, + "id": "way/189799602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799603", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020364, + -0.0268516 + ], + [ + 109.3023959, + -0.027574 + ], + [ + 109.3028184, + -0.028369 + ] + ] + }, + "id": "way/189799603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799604", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019756, + -0.0542951 + ], + [ + 109.3032433, + -0.053329 + ], + [ + 109.3032889, + -0.0532914 + ], + [ + 109.3045067, + -0.0523601 + ], + [ + 109.3045248, + -0.052356 + ], + [ + 109.3045456, + -0.0523648 + ], + [ + 109.3046435, + -0.0524633 + ], + [ + 109.3048227, + -0.0526746 + ] + ] + }, + "id": "way/189799604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799605", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063803, + -0.0445846 + ], + [ + 109.3066279, + -0.0443231 + ], + [ + 109.3068062, + -0.0441214 + ], + [ + 109.3070916, + -0.0437972 + ], + [ + 109.3073729, + -0.0434145 + ], + [ + 109.3075824, + -0.0431573 + ] + ] + }, + "id": "way/189799605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799606", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098416, + -0.0426836 + ], + [ + 109.3098718, + -0.0427008 + ], + [ + 109.3098926, + -0.0427028 + ], + [ + 109.309914, + -0.0427001 + ], + [ + 109.3099315, + -0.0426907 + ], + [ + 109.3099538, + -0.0426594 + ], + [ + 109.3101471, + -0.04233 + ] + ] + }, + "id": "way/189799606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799607", + "highway": "residential", + "name": "Gang Hanura 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995461, + -0.032521 + ], + [ + 109.3005702, + -0.0339598 + ], + [ + 109.3009207, + -0.0344489 + ], + [ + 109.3011658, + -0.0347918 + ], + [ + 109.301321, + -0.0350204 + ] + ] + }, + "id": "way/189799607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799608", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2951233, + -0.0467975 + ], + [ + 109.2960472, + -0.0459091 + ], + [ + 109.2975473, + -0.044517 + ], + [ + 109.2976248, + -0.0444482 + ], + [ + 109.2976423, + -0.044416 + ], + [ + 109.2976463, + -0.0443785 + ], + [ + 109.297602, + -0.0443114 + ], + [ + 109.2975873, + -0.0442578 + ], + [ + 109.2976007, + -0.0442323 + ], + [ + 109.2987715, + -0.0433847 + ] + ] + }, + "id": "way/189799608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799609", + "highway": "unclassified", + "name": "Gang Suka Mulia", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117332, + -0.0434862 + ], + [ + 109.310815, + -0.0428114 + ], + [ + 109.31019, + -0.0423616 + ], + [ + 109.3101471, + -0.04233 + ], + [ + 109.3097557, + -0.0420412 + ], + [ + 109.3094346, + -0.04181 + ], + [ + 109.3090069, + -0.0414969 + ], + [ + 109.3086588, + -0.0412118 + ], + [ + 109.308479, + -0.0410515 + ], + [ + 109.3082339, + -0.040834 + ], + [ + 109.3081826, + -0.0407744 + ], + [ + 109.3080091, + -0.0406154 + ], + [ + 109.3079622, + -0.0405685 + ], + [ + 109.3078846, + -0.040493 + ], + [ + 109.307702, + -0.0403253 + ], + [ + 109.3076491, + -0.0402758 + ], + [ + 109.3075937, + -0.0402241 + ], + [ + 109.3074964, + -0.0401332 + ], + [ + 109.3073523, + -0.0399984 + ], + [ + 109.3072091, + -0.0398646 + ], + [ + 109.3071194, + -0.0397808 + ], + [ + 109.3068857, + -0.0395624 + ], + [ + 109.3067304, + -0.03942 + ], + [ + 109.3066389, + -0.0393361 + ], + [ + 109.3064246, + -0.0391586 + ], + [ + 109.306328, + -0.0390798 + ], + [ + 109.3060106, + -0.0388299 + ], + [ + 109.3058312, + -0.0386887 + ], + [ + 109.3056435, + -0.038541 + ], + [ + 109.3056246, + -0.0385261 + ], + [ + 109.3054967, + -0.0384173 + ], + [ + 109.3053804, + -0.0383184 + ], + [ + 109.3052679, + -0.0382227 + ], + [ + 109.305137, + -0.0381114 + ], + [ + 109.305128, + -0.0381038 + ], + [ + 109.3051181, + -0.0380953 + ], + [ + 109.3050616, + -0.0380473 + ], + [ + 109.3048977, + -0.0379078 + ], + [ + 109.3046966, + -0.0377235 + ], + [ + 109.3044414, + -0.0374987 + ], + [ + 109.3044184, + -0.0374784 + ], + [ + 109.304238, + -0.0372741 + ], + [ + 109.3041067, + -0.0371346 + ], + [ + 109.3039871, + -0.0369881 + ], + [ + 109.3038546, + -0.0368137 + ], + [ + 109.3036705, + -0.0365714 + ], + [ + 109.303495, + -0.036312 + ], + [ + 109.3034328, + -0.0362035 + ], + [ + 109.3034043, + -0.0361537 + ], + [ + 109.3032549, + -0.0358931 + ], + [ + 109.3032074, + -0.0358102 + ], + [ + 109.3031183, + -0.035615 + ], + [ + 109.3030406, + -0.035445 + ], + [ + 109.3029807, + -0.035314 + ], + [ + 109.3028621, + -0.0350543 + ] + ] + }, + "id": "way/189799609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799610", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039563, + -0.0297324 + ], + [ + 109.3037429, + -0.0298453 + ], + [ + 109.3035906, + -0.0299286 + ], + [ + 109.3035323, + -0.0299627 + ], + [ + 109.3032511, + -0.0301346 + ], + [ + 109.3030227, + -0.0302608 + ], + [ + 109.3029755, + -0.0302851 + ], + [ + 109.3029111, + -0.0303229 + ], + [ + 109.3027865, + -0.0303977 + ], + [ + 109.3026664, + -0.030463 + ], + [ + 109.3024665, + -0.0305912 + ], + [ + 109.30232, + -0.0306961 + ], + [ + 109.3022666, + -0.0307216 + ], + [ + 109.3021261, + -0.0308063 + ], + [ + 109.3019385, + -0.0309397 + ], + [ + 109.3017628, + -0.0310579 + ], + [ + 109.3014367, + -0.0312953 + ], + [ + 109.3012569, + -0.0314194 + ], + [ + 109.3011738, + -0.0314735 + ], + [ + 109.3010161, + -0.0315674 + ], + [ + 109.3009177, + -0.0316228 + ], + [ + 109.3008668, + -0.0316514 + ], + [ + 109.3005775, + -0.0318007 + ], + [ + 109.3004681, + -0.0318583 + ], + [ + 109.3004002, + -0.0318941 + ], + [ + 109.3001681, + -0.0320487 + ], + [ + 109.3001202, + -0.0320807 + ], + [ + 109.2999287, + -0.0322258 + ], + [ + 109.2998851, + -0.0322588 + ], + [ + 109.2995461, + -0.032521 + ], + [ + 109.2989282, + -0.0330338 + ], + [ + 109.2989141, + -0.0330431 + ], + [ + 109.2986723, + -0.033246 + ], + [ + 109.2983109, + -0.0335491 + ], + [ + 109.2981345, + -0.0336852 + ], + [ + 109.297931, + -0.0338422 + ], + [ + 109.297282, + -0.0343113 + ], + [ + 109.2967537, + -0.0346776 + ], + [ + 109.2964688, + -0.0348752 + ], + [ + 109.2961517, + -0.0351009 + ], + [ + 109.295866, + -0.0352911 + ] + ] + }, + "id": "way/189799610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092405, + -0.0318012 + ], + [ + 109.3097893, + -0.0316018 + ] + ] + }, + "id": "way/189799611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156874, + -0.0301793 + ], + [ + 109.3151356, + -0.0303774 + ], + [ + 109.314931, + -0.0304218 + ], + [ + 109.3143414, + -0.0305575 + ] + ] + }, + "id": "way/189799612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799613", + "highway": "residential", + "name": "Gang Danau Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089558, + -0.0469126 + ], + [ + 109.3116264, + -0.0488268 + ], + [ + 109.3118704, + -0.0490224 + ] + ] + }, + "id": "way/189799613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799614", + "highway": "residential", + "motor_vehicle": "no", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3012989, + -0.0407214 + ], + [ + 109.3017079, + -0.0413799 + ], + [ + 109.3016689, + -0.041469 + ], + [ + 109.301477, + -0.0415726 + ], + [ + 109.3013142, + -0.0416923 + ] + ] + }, + "id": "way/189799614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799615", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3172437, + -0.0371544 + ], + [ + 109.3181406, + -0.0381316 + ], + [ + 109.3184079, + -0.0384455 + ], + [ + 109.3188656, + -0.0389831 + ], + [ + 109.3197287, + -0.0399742 + ] + ] + }, + "id": "way/189799615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799616", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311902, + -0.054281 + ], + [ + 109.3126953, + -0.0533405 + ], + [ + 109.3131013, + -0.0528645 + ], + [ + 109.3135208, + -0.0524193 + ] + ] + }, + "id": "way/189799616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799617", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142564, + -0.052008 + ], + [ + 109.3140071, + -0.0518326 + ], + [ + 109.3139158, + -0.0517532 + ], + [ + 109.3135631, + -0.0514462 + ], + [ + 109.3134046, + -0.0513061 + ], + [ + 109.3132097, + -0.0511203 + ], + [ + 109.3127255, + -0.0507124 + ] + ] + }, + "id": "way/189799617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084583, + -0.0312169 + ], + [ + 109.3085918, + -0.031504 + ], + [ + 109.308699, + -0.0317458 + ], + [ + 109.3088199, + -0.0320186 + ], + [ + 109.3092004, + -0.0328955 + ], + [ + 109.3093289, + -0.0331837 + ], + [ + 109.3094453, + -0.0334447 + ] + ] + }, + "id": "way/189799618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799619", + "highway": "residential", + "name": "Gang Sukamulya 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090069, + -0.0414969 + ], + [ + 109.3085977, + -0.0418818 + ], + [ + 109.308565, + -0.0419229 + ], + [ + 109.3083234, + -0.0422267 + ], + [ + 109.3080891, + -0.0425122 + ] + ] + }, + "id": "way/189799619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799620", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061236, + -0.0443714 + ], + [ + 109.3052088, + -0.0452939 + ], + [ + 109.3050535, + -0.0454403 + ], + [ + 109.3049041, + -0.0455942 + ], + [ + 109.3046937, + -0.0457953 + ] + ] + }, + "id": "way/189799620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799621", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995324, + -0.0413439 + ], + [ + 109.296847, + -0.0433519 + ] + ] + }, + "id": "way/189799621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799622", + "highway": "residential", + "name": "Gang Haji Rademan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109656, + -0.0443989 + ], + [ + 109.3094339, + -0.0435044 + ], + [ + 109.3079808, + -0.0426551 + ] + ] + }, + "id": "way/189799622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799624", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2858647, + -0.0398951 + ], + [ + 109.2859049, + -0.0399448 + ] + ] + }, + "id": "way/189799624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799625", + "highway": "residential", + "name": "Gang Sriwijaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118071, + -0.0374194 + ], + [ + 109.3125352, + -0.0380353 + ], + [ + 109.3125812, + -0.0380782 + ], + [ + 109.3129644, + -0.0384291 + ] + ] + }, + "id": "way/189799625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799626", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315616, + -0.0250728 + ], + [ + 109.3140574, + -0.0255896 + ], + [ + 109.3140088, + -0.0256111 + ], + [ + 109.312791, + -0.0260437 + ] + ] + }, + "id": "way/189799626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799627", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941928, + -0.030754 + ], + [ + 109.2943478, + -0.0309272 + ], + [ + 109.2944794, + -0.0309498 + ], + [ + 109.2945334, + -0.0309938 + ] + ] + }, + "id": "way/189799627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799628", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159292, + -0.0494932 + ], + [ + 109.3155687, + -0.0492229 + ], + [ + 109.3152942, + -0.049017 + ], + [ + 109.3152035, + -0.048949 + ], + [ + 109.3151128, + -0.048881 + ] + ] + }, + "id": "way/189799628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799629", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991588, + -0.0269632 + ], + [ + 109.2993009, + -0.0272014 + ], + [ + 109.299435, + -0.0274282 + ], + [ + 109.2997764, + -0.0279255 + ] + ] + }, + "id": "way/189799629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799630", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068857, + -0.0395624 + ], + [ + 109.3063192, + -0.0402345 + ], + [ + 109.3061614, + -0.0404227 + ], + [ + 109.3059296, + -0.0406616 + ], + [ + 109.3054156, + -0.0411915 + ], + [ + 109.3047925, + -0.0417794 + ] + ] + }, + "id": "way/189799630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799632", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303128, + -0.0612161 + ], + [ + 109.3031723, + -0.0612624 + ], + [ + 109.3032528, + -0.0613562 + ], + [ + 109.303592, + -0.0617009 + ], + [ + 109.3038308, + -0.0619201 + ], + [ + 109.3039582, + -0.0620341 + ], + [ + 109.3040494, + -0.062123 + ], + [ + 109.304162, + -0.0622541 + ], + [ + 109.3043538, + -0.062468 + ], + [ + 109.3045375, + -0.0626582 + ] + ] + }, + "id": "way/189799632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799633", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131673, + -0.0477645 + ], + [ + 109.313059, + -0.0478953 + ], + [ + 109.3128138, + -0.0482297 + ], + [ + 109.312624, + -0.0484794 + ], + [ + 109.312557, + -0.0485694 + ], + [ + 109.3123339, + -0.048861 + ] + ] + }, + "id": "way/189799633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799635", + "highway": "residential", + "name": "Gang Melati I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305558, + -0.061636 + ], + [ + 109.3054928, + -0.0615852 + ], + [ + 109.3054117, + -0.0615083 + ], + [ + 109.3051927, + -0.0613126 + ], + [ + 109.3049811, + -0.0611373 + ], + [ + 109.3046373, + -0.0608099 + ], + [ + 109.3037975, + -0.0600657 + ] + ] + }, + "id": "way/189799635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799637", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307683, + -0.0457704 + ], + [ + 109.3071303, + -0.0453763 + ], + [ + 109.3068157, + -0.0451628 + ], + [ + 109.3064673, + -0.044909 + ], + [ + 109.3062008, + -0.0452013 + ], + [ + 109.3060254, + -0.0453783 + ] + ] + }, + "id": "way/189799637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799638", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3177045, + -0.0348021 + ], + [ + 109.3172877, + -0.0351865 + ], + [ + 109.3172076, + -0.0352576 + ], + [ + 109.3171855, + -0.0352677 + ], + [ + 109.317164, + -0.0352704 + ], + [ + 109.317142, + -0.0352671 + ], + [ + 109.3163682, + -0.0345009 + ], + [ + 109.3168426, + -0.0339141 + ] + ] + }, + "id": "way/189799638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799639", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2939945, + -0.0373073 + ], + [ + 109.2941164, + -0.0372227 + ], + [ + 109.294355, + -0.0370269 + ], + [ + 109.2946032, + -0.0368286 + ], + [ + 109.2947637, + -0.0366814 + ] + ] + }, + "id": "way/189799639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799640", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097557, + -0.0420412 + ], + [ + 109.3095235, + -0.0424 + ], + [ + 109.309511, + -0.0424238 + ], + [ + 109.3094923, + -0.0424546 + ], + [ + 109.3095319, + -0.0424748 + ], + [ + 109.3098416, + -0.0426836 + ], + [ + 109.3096886, + -0.0428855 + ] + ] + }, + "id": "way/189799640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799642", + "highway": "residential", + "name": "Gang Metropolitan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2989158, + -0.0440158 + ], + [ + 109.2986193, + -0.0442404 + ], + [ + 109.2981861, + -0.0445434 + ], + [ + 109.2979775, + -0.0446916 + ], + [ + 109.2979057, + -0.0447484 + ] + ] + }, + "id": "way/189799642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799643", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314269, + -0.0288391 + ], + [ + 109.3143108, + -0.0289826 + ], + [ + 109.3142988, + -0.0290148 + ], + [ + 109.3142787, + -0.0290349 + ], + [ + 109.3127075, + -0.0294302 + ] + ] + }, + "id": "way/189799643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799645", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156265, + -0.026688 + ], + [ + 109.3149529, + -0.0268884 + ], + [ + 109.3140895, + -0.0271481 + ], + [ + 109.312777, + -0.0275739 + ] + ] + }, + "id": "way/189799645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799647", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091155, + -0.0403933 + ], + [ + 109.3088981, + -0.0406258 + ], + [ + 109.308479, + -0.0410515 + ], + [ + 109.307975, + -0.0416902 + ], + [ + 109.3076219, + -0.0421379 + ] + ] + }, + "id": "way/189799647" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799648", + "highway": "residential", + "name": "Gang Sentarum Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113939, + -0.0438823 + ], + [ + 109.3100395, + -0.042985 + ], + [ + 109.3100019, + -0.0429717 + ], + [ + 109.3099771, + -0.0429717 + ], + [ + 109.3099616, + -0.0429777 + ], + [ + 109.3099375, + -0.0429985 + ], + [ + 109.3099013, + -0.0430401 + ], + [ + 109.3097414, + -0.0432892 + ] + ] + }, + "id": "way/189799648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799650", + "highway": "service", + "name": "Jalur I", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099161, + -0.0526801 + ], + [ + 109.3096311, + -0.0524546 + ], + [ + 109.3095989, + -0.052411 + ], + [ + 109.3095808, + -0.0523795 + ], + [ + 109.3095707, + -0.0523379 + ], + [ + 109.309554, + -0.0523004 + ], + [ + 109.3095265, + -0.0522776 + ], + [ + 109.3090681, + -0.051978 + ], + [ + 109.3084724, + -0.0515754 + ] + ] + }, + "id": "way/189799650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799651", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025377, + -0.028701 + ], + [ + 109.303126, + -0.0298548 + ], + [ + 109.3032511, + -0.0301346 + ], + [ + 109.3038738, + -0.0333078 + ] + ] + }, + "id": "way/189799651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799652", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026429, + -0.0265649 + ], + [ + 109.303598, + -0.0284068 + ], + [ + 109.304206, + -0.0296114 + ] + ] + }, + "id": "way/189799652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799653", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.292278, + -0.043681 + ], + [ + 109.2924444, + -0.0434989 + ], + [ + 109.2924964, + -0.0435208 + ], + [ + 109.292513, + -0.0435173 + ], + [ + 109.2925286, + -0.0435094 + ], + [ + 109.2929416, + -0.0430822 + ], + [ + 109.2932345, + -0.0427792 + ], + [ + 109.2941859, + -0.041799 + ] + ] + }, + "id": "way/189799653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799654", + "highway": "residential", + "name": "Gang Jambi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128444, + -0.0362548 + ], + [ + 109.3134792, + -0.036811 + ], + [ + 109.3140601, + -0.0373228 + ], + [ + 109.3141047, + -0.037362 + ], + [ + 109.314475, + -0.0376873 + ], + [ + 109.3148536, + -0.0380199 + ], + [ + 109.3154374, + -0.0385181 + ], + [ + 109.3157597, + -0.0388005 + ] + ] + }, + "id": "way/189799654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799655", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318713, + -0.0462768 + ], + [ + 109.3185072, + -0.0460763 + ], + [ + 109.3183811, + -0.0459824 + ], + [ + 109.3182242, + -0.0458638 + ], + [ + 109.318133, + -0.0457853 + ], + [ + 109.3179694, + -0.0456277 + ] + ] + }, + "id": "way/189799655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799657", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.308006, + -0.0313782 + ], + [ + 109.308497, + -0.0325258 + ], + [ + 109.3090815, + -0.0338689 + ], + [ + 109.3091271, + -0.0339669 + ] + ] + }, + "id": "way/189799657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799658", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2926735, + -0.0333002 + ], + [ + 109.2927718, + -0.0334188 + ] + ] + }, + "id": "way/189799658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799659", + "highway": "residential", + "name": "Gang Karya VI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154037, + -0.0457469 + ], + [ + 109.3161294, + -0.0464739 + ], + [ + 109.3165723, + -0.0468949 + ], + [ + 109.3174227, + -0.0477586 + ] + ] + }, + "id": "way/189799659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799660", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314081, + -0.0406605 + ], + [ + 109.3143203, + -0.0409413 + ], + [ + 109.3143549, + -0.0409765 + ], + [ + 109.3146367, + -0.0413297 + ] + ] + }, + "id": "way/189799660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799662", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124783, + -0.0400731 + ], + [ + 109.3123996, + -0.0401965 + ], + [ + 109.3123486, + -0.0402658 + ], + [ + 109.3120916, + -0.0405722 + ] + ] + }, + "id": "way/189799662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799663", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175591, + -0.0475942 + ], + [ + 109.3178949, + -0.0478372 + ], + [ + 109.3182101, + -0.048031 + ], + [ + 109.3186259, + -0.0482856 + ] + ] + }, + "id": "way/189799663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799664", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2904821, + -0.0342158 + ], + [ + 109.2909645, + -0.0348374 + ] + ] + }, + "id": "way/189799664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799665", + "highway": "residential", + "name": "Gang Morodadi 3A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102517, + -0.0533507 + ], + [ + 109.3119207, + -0.0513618 + ], + [ + 109.3121257, + -0.0511836 + ], + [ + 109.3123884, + -0.0509211 + ], + [ + 109.3125373, + -0.050787 + ], + [ + 109.3126477, + -0.0506623 + ] + ] + }, + "id": "way/189799665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799666", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042303, + -0.0543971 + ], + [ + 109.3044615, + -0.054798 + ], + [ + 109.3046167, + -0.0551134 + ], + [ + 109.3047494, + -0.0552887 + ] + ] + }, + "id": "way/189799666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799667", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106045, + -0.0303339 + ], + [ + 109.3106009, + -0.0309748 + ], + [ + 109.3106092, + -0.0315224 + ], + [ + 109.3106125, + -0.031992 + ] + ] + }, + "id": "way/189799667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799668", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107725, + -0.0553626 + ], + [ + 109.3105444, + -0.0556471 + ], + [ + 109.3103219, + -0.0558502 + ], + [ + 109.3099815, + -0.0561514 + ], + [ + 109.3098853, + -0.0562396 + ] + ] + }, + "id": "way/189799668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799669", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3162024, + -0.0491385 + ], + [ + 109.3164441, + -0.0493292 + ], + [ + 109.3166916, + -0.0494986 + ], + [ + 109.3170569, + -0.0498235 + ] + ] + }, + "id": "way/189799669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799670", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060402, + -0.0339488 + ], + [ + 109.3051786, + -0.0343671 + ], + [ + 109.3051719, + -0.0343819 + ], + [ + 109.3051746, + -0.0344047 + ], + [ + 109.3052128, + -0.0345053 + ], + [ + 109.3052155, + -0.0345261 + ], + [ + 109.3052098, + -0.0345416 + ], + [ + 109.3031183, + -0.035615 + ] + ] + }, + "id": "way/189799670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799671", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119596, + -0.0348868 + ], + [ + 109.311732, + -0.0351461 + ], + [ + 109.3118687, + -0.035265 + ], + [ + 109.3118804, + -0.0352734 + ], + [ + 109.3118885, + -0.0352838 + ], + [ + 109.3118881, + -0.0353026 + ], + [ + 109.3118804, + -0.0353193 + ], + [ + 109.3117613, + -0.0354385 + ] + ] + }, + "id": "way/189799671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799672", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188652, + -0.0456217 + ], + [ + 109.3198787, + -0.0446891 + ], + [ + 109.3199261, + -0.0446454 + ], + [ + 109.3207717, + -0.0438656 + ] + ] + }, + "id": "way/189799672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799673", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116457, + -0.0435884 + ], + [ + 109.3127828, + -0.0448167 + ], + [ + 109.3126834, + -0.0449344 + ], + [ + 109.3126747, + -0.0449605 + ], + [ + 109.3126734, + -0.044982 + ], + [ + 109.3126728, + -0.0450191 + ], + [ + 109.3127719, + -0.0451074 + ], + [ + 109.3129074, + -0.0452549 + ], + [ + 109.3134814, + -0.0458812 + ], + [ + 109.3136119, + -0.0460227 + ], + [ + 109.3138332, + -0.0462625 + ], + [ + 109.3143236, + -0.0467942 + ] + ] + }, + "id": "way/189799673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2936557, + -0.0313379 + ], + [ + 109.2938835, + -0.0316657 + ], + [ + 109.2939144, + -0.0317117 + ], + [ + 109.2940717, + -0.031928 + ] + ] + }, + "id": "way/189799674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799675", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983266, + -0.0388686 + ], + [ + 109.2982248, + -0.0389462 + ], + [ + 109.2957706, + -0.0410087 + ], + [ + 109.2956348, + -0.040829 + ] + ] + }, + "id": "way/189799675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799676", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085481, + -0.0368446 + ], + [ + 109.3080137, + -0.0374349 + ], + [ + 109.3079875, + -0.0374862 + ], + [ + 109.3079681, + -0.037524 + ], + [ + 109.3074524, + -0.0380968 + ], + [ + 109.3073525, + -0.0382034 + ], + [ + 109.307239, + -0.0382999 + ], + [ + 109.3065032, + -0.0387156 + ] + ] + }, + "id": "way/189799676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799677", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3157236, + -0.0476857 + ], + [ + 109.3162895, + -0.0482739 + ], + [ + 109.3164809, + -0.0484686 + ], + [ + 109.3166454, + -0.0486482 + ] + ] + }, + "id": "way/189799677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799678", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2880152, + -0.0377805 + ], + [ + 109.2880601, + -0.0378366 + ] + ] + }, + "id": "way/189799678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799679", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207717, + -0.0438656 + ], + [ + 109.3209039, + -0.0437504 + ], + [ + 109.3210237, + -0.0436442 + ], + [ + 109.3211471, + -0.0435282 + ] + ] + }, + "id": "way/189799679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799680", + "highway": "residential", + "name": "Gang Sukarela 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3065682, + -0.0568108 + ], + [ + 109.3059048, + -0.0572605 + ], + [ + 109.3053317, + -0.0576644 + ], + [ + 109.3051921, + -0.0577683 + ] + ] + }, + "id": "way/189799680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799681", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038862, + -0.040902 + ], + [ + 109.3040813, + -0.040733 + ], + [ + 109.3041743, + -0.0406614 + ], + [ + 109.3047622, + -0.0401004 + ], + [ + 109.3053851, + -0.0394714 + ] + ] + }, + "id": "way/189799681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799682", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3036705, + -0.0365714 + ], + [ + 109.304563, + -0.0360891 + ], + [ + 109.3046191, + -0.0360594 + ], + [ + 109.3052262, + -0.0357311 + ], + [ + 109.3065723, + -0.0350031 + ] + ] + }, + "id": "way/189799682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799684", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040315, + -0.0565091 + ], + [ + 109.3050729, + -0.0557857 + ], + [ + 109.3051162, + -0.055743 + ], + [ + 109.3051573, + -0.0556955 + ], + [ + 109.3051853, + -0.0556525 + ], + [ + 109.3052188, + -0.0556176 + ], + [ + 109.3058465, + -0.0551938 + ], + [ + 109.3063688, + -0.0548418 + ] + ] + }, + "id": "way/189799684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799685", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.292939, + -0.0322793 + ], + [ + 109.292974, + -0.0323473 + ], + [ + 109.2930866, + -0.0325407 + ] + ] + }, + "id": "way/189799685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799686", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316439, + -0.0380436 + ], + [ + 109.3167031, + -0.0383854 + ], + [ + 109.3173153, + -0.0391758 + ], + [ + 109.3175599, + -0.0394916 + ], + [ + 109.3176272, + -0.0395747 + ], + [ + 109.3178417, + -0.0398205 + ], + [ + 109.3182979, + -0.0403453 + ], + [ + 109.3183691, + -0.0404272 + ], + [ + 109.3186913, + -0.0407937 + ], + [ + 109.3187171, + -0.0408233 + ], + [ + 109.3188148, + -0.0409315 + ], + [ + 109.3188285, + -0.0409466 + ], + [ + 109.3191881, + -0.0413729 + ] + ] + }, + "id": "way/189799686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799688", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121479, + -0.039795 + ], + [ + 109.3113216, + -0.0408316 + ], + [ + 109.3112451, + -0.0408889 + ], + [ + 109.3111625, + -0.0409217 + ], + [ + 109.3111069, + -0.0409399 + ], + [ + 109.3110774, + -0.0409667 + ], + [ + 109.3110589, + -0.0410081 + ], + [ + 109.3110025, + -0.0411993 + ] + ] + }, + "id": "way/189799688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799689", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999627, + -0.0361532 + ], + [ + 109.2999453, + -0.0361615 + ], + [ + 109.2999312, + -0.0361619 + ], + [ + 109.2999168, + -0.0361548 + ], + [ + 109.2995413, + -0.0356637 + ], + [ + 109.2993636, + -0.0353968 + ], + [ + 109.2993532, + -0.0353897 + ], + [ + 109.2993367, + -0.0353904 + ], + [ + 109.2974059, + -0.0367357 + ] + ] + }, + "id": "way/189799689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799690", + "highway": "residential", + "name": "Gang Sukma 19" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3041067, + -0.0371346 + ], + [ + 109.3032165, + -0.0379393 + ], + [ + 109.303187, + -0.0379641 + ], + [ + 109.3021801, + -0.0388716 + ] + ] + }, + "id": "way/189799690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799691", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023959, + -0.027574 + ], + [ + 109.3022208, + -0.0276623 + ], + [ + 109.3022148, + -0.0276744 + ], + [ + 109.3022161, + -0.0276972 + ], + [ + 109.3023, + -0.0278558 + ], + [ + 109.3023595, + -0.0279627 + ], + [ + 109.3025299, + -0.0283292 + ] + ] + }, + "id": "way/189799691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799692", + "highway": "residential", + "name": "Kompl. Sentarum Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107611, + -0.0487709 + ], + [ + 109.3116166, + -0.0494073 + ], + [ + 109.3119362, + -0.0496459 + ], + [ + 109.3129713, + -0.0504747 + ] + ] + }, + "id": "way/189799692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799693", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3173062, + -0.0451583 + ], + [ + 109.3170326, + -0.0454259 + ], + [ + 109.3170011, + -0.0454621 + ], + [ + 109.3169796, + -0.0454916 + ], + [ + 109.3169689, + -0.0455124 + ], + [ + 109.3169629, + -0.0455432 + ], + [ + 109.3169461, + -0.0456103 + ], + [ + 109.3169334, + -0.0456478 + ], + [ + 109.3169059, + -0.0457028 + ], + [ + 109.3168831, + -0.0457343 + ], + [ + 109.3168229, + -0.0458108 + ], + [ + 109.3161294, + -0.0464739 + ] + ] + }, + "id": "way/189799693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799694", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023831, + -0.0266915 + ], + [ + 109.3038371, + -0.0295571 + ], + [ + 109.3039563, + -0.0297324 + ], + [ + 109.3039991, + -0.0298396 + ], + [ + 109.3041627, + -0.0306925 + ], + [ + 109.304184, + -0.0309059 + ], + [ + 109.3042235, + -0.0311246 + ], + [ + 109.3043176, + -0.0315642 + ], + [ + 109.3045676, + -0.0329458 + ] + ] + }, + "id": "way/189799694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799695", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057128, + -0.0529437 + ], + [ + 109.3042917, + -0.0519581 + ], + [ + 109.3041108, + -0.0518232 + ], + [ + 109.3036034, + -0.0514143 + ], + [ + 109.3034302, + -0.0512595 + ] + ] + }, + "id": "way/189799695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187116, + -0.0418493 + ], + [ + 109.319129, + -0.042351 + ], + [ + 109.3191656, + -0.0424071 + ], + [ + 109.3192144, + -0.0424841 + ], + [ + 109.3192691, + -0.0425722 + ], + [ + 109.3195063, + -0.042792 + ] + ] + }, + "id": "way/189799696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799697", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318873, + -0.0275823 + ], + [ + 109.3188227, + -0.0276063 + ], + [ + 109.318776, + -0.0276376 + ], + [ + 109.3187284, + -0.0276583 + ], + [ + 109.3186797, + -0.0276743 + ], + [ + 109.3181912, + -0.0277418 + ], + [ + 109.3175978, + -0.0278167 + ], + [ + 109.3170657, + -0.0278608 + ], + [ + 109.3165464, + -0.0278988 + ], + [ + 109.3160579, + -0.0279617 + ], + [ + 109.3156372, + -0.0279647 + ] + ] + }, + "id": "way/189799697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799698", + "highway": "residential", + "name": "Gang Pertiwi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093774, + -0.0577813 + ], + [ + 109.3086634, + -0.057365 + ], + [ + 109.3085268, + -0.0572735 + ], + [ + 109.3084597, + -0.0572386 + ], + [ + 109.3082827, + -0.0571465 + ], + [ + 109.3080516, + -0.0570343 + ], + [ + 109.3079203, + -0.0569658 + ], + [ + 109.3077616, + -0.0568842 + ] + ] + }, + "id": "way/189799698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799699", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066989, + -0.0435522 + ], + [ + 109.3074297, + -0.0426782 + ], + [ + 109.3077675, + -0.0429375 + ], + [ + 109.3075824, + -0.0431573 + ], + [ + 109.3105244, + -0.0449197 + ] + ] + }, + "id": "way/189799699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799700", + "highway": "residential", + "name": "Jalan Karya Sosial" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005316, + -0.0578922 + ], + [ + 109.3008229, + -0.0576975 + ], + [ + 109.3009722, + -0.0575374 + ], + [ + 109.3011882, + -0.0573044 + ], + [ + 109.3014298, + -0.0570402 + ], + [ + 109.3028672, + -0.0554499 + ] + ] + }, + "id": "way/189799700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799701", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141047, + -0.037362 + ], + [ + 109.313954, + -0.0375229 + ], + [ + 109.3137278, + -0.0377603 + ], + [ + 109.3135967, + -0.0378971 + ], + [ + 109.3138313, + -0.0380954 + ] + ] + }, + "id": "way/189799701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799702", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013392, + -0.027282 + ], + [ + 109.30175, + -0.0281784 + ], + [ + 109.3022135, + -0.0291666 + ], + [ + 109.3027865, + -0.0303977 + ] + ] + }, + "id": "way/189799702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799704", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3006838, + -0.0261504 + ], + [ + 109.3007634, + -0.0262737 + ], + [ + 109.3008685, + -0.0264474 + ], + [ + 109.3009402, + -0.0265755 + ], + [ + 109.3010338, + -0.0267385 + ], + [ + 109.3011766, + -0.0270306 + ] + ] + }, + "id": "way/189799704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799705", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136107, + -0.0447022 + ], + [ + 109.3144578, + -0.0455398 + ], + [ + 109.3144674, + -0.0455463 + ], + [ + 109.314482, + -0.0455538 + ], + [ + 109.3144956, + -0.0455545 + ], + [ + 109.3145068, + -0.0455545 + ], + [ + 109.3145298, + -0.0455486 + ], + [ + 109.314575, + -0.0455223 + ], + [ + 109.3147199, + -0.0453613 + ], + [ + 109.3148337, + -0.0452528 + ] + ] + }, + "id": "way/189799705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799706", + "highway": "unclassified", + "name": "Jalan Ilham" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099923, + -0.0571474 + ], + [ + 109.3099111, + -0.0571063 + ], + [ + 109.3090766, + -0.0566841 + ], + [ + 109.3086707, + -0.0564597 + ], + [ + 109.3082586, + -0.0562604 + ], + [ + 109.3081123, + -0.0561118 + ] + ] + }, + "id": "way/189799706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799707", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144848, + -0.0512993 + ], + [ + 109.3141562, + -0.0509664 + ], + [ + 109.3139462, + -0.0507401 + ], + [ + 109.3137712, + -0.0505464 + ], + [ + 109.3136802, + -0.0504321 + ] + ] + }, + "id": "way/189799707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099886, + -0.0455798 + ], + [ + 109.3085253, + -0.0446749 + ], + [ + 109.3073807, + -0.0439645 + ], + [ + 109.3070916, + -0.0437972 + ], + [ + 109.3069938, + -0.0437857 + ], + [ + 109.3069291, + -0.0437608 + ], + [ + 109.3068831, + -0.0437294 + ], + [ + 109.3068063, + -0.0436643 + ], + [ + 109.3066989, + -0.0435522 + ] + ] + }, + "id": "way/189799708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799709", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205819, + -0.0429127 + ], + [ + 109.3200501, + -0.0434011 + ], + [ + 109.3194264, + -0.0439693 + ], + [ + 109.3193137, + -0.0440765 + ], + [ + 109.3182912, + -0.0449927 + ] + ] + }, + "id": "way/189799709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799710", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206007, + -0.0411773 + ], + [ + 109.3212232, + -0.0406549 + ], + [ + 109.3212488, + -0.0406268 + ], + [ + 109.3211163, + -0.0404772 + ], + [ + 109.3210478, + -0.0404006 + ] + ] + }, + "id": "way/189799710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799711", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.294871, + -0.03841 + ], + [ + 109.2949748, + -0.0383231 + ], + [ + 109.2952175, + -0.0381286 + ], + [ + 109.2954846, + -0.0379276 + ], + [ + 109.2956644, + -0.0378058 + ], + [ + 109.2956896, + -0.0378024 + ], + [ + 109.2957157, + -0.0378142 + ], + [ + 109.2966455, + -0.0389607 + ] + ] + }, + "id": "way/189799711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799712", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301934, + -0.0274669 + ], + [ + 109.3019172, + -0.0274787 + ], + [ + 109.3017848, + -0.0275645 + ], + [ + 109.3018682, + -0.0277239 + ] + ] + }, + "id": "way/189799712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799713", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153703, + -0.0392619 + ], + [ + 109.3160063, + -0.04008 + ], + [ + 109.3165861, + -0.0407413 + ], + [ + 109.3166061, + -0.0407641 + ], + [ + 109.3177212, + -0.0421413 + ] + ] + }, + "id": "way/189799713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799714", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147181, + -0.0341513 + ], + [ + 109.3155824, + -0.0349183 + ], + [ + 109.3165484, + -0.035837 + ], + [ + 109.3168126, + -0.0360572 + ], + [ + 109.3175705, + -0.036781 + ] + ] + }, + "id": "way/189799714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799715", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028621, + -0.0350543 + ], + [ + 109.3006086, + -0.0370548 + ], + [ + 109.3003721, + -0.0372063 + ], + [ + 109.3000943, + -0.037328 + ] + ] + }, + "id": "way/189799715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799716", + "highway": "residential", + "name": "Gang Kemuning Jalur 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3139232, + -0.0495331 + ], + [ + 109.3133515, + -0.0489746 + ], + [ + 109.3133411, + -0.0489647 + ], + [ + 109.3133283, + -0.0489515 + ], + [ + 109.3133337, + -0.0489379 + ], + [ + 109.3133385, + -0.0489221 + ], + [ + 109.3133784, + -0.0488526 + ] + ] + }, + "id": "way/189799716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799717", + "highway": "residential", + "name": "Gang Bersatu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3041656, + -0.0472368 + ], + [ + 109.3048353, + -0.0476582 + ], + [ + 109.3058394, + -0.0483127 + ] + ] + }, + "id": "way/189799717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799718", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042523, + -0.0567578 + ], + [ + 109.3040778, + -0.0569562 + ], + [ + 109.3030901, + -0.0580787 + ], + [ + 109.3020511, + -0.0592366 + ], + [ + 109.3020458, + -0.059256 + ], + [ + 109.3020565, + -0.0592788 + ], + [ + 109.3022899, + -0.0595128 + ], + [ + 109.30231, + -0.0595189 + ], + [ + 109.3023401, + -0.0595055 + ], + [ + 109.303379, + -0.058332 + ], + [ + 109.3043671, + -0.0572113 + ], + [ + 109.3044019, + -0.0571718 + ], + [ + 109.3045165, + -0.0570433 + ] + ] + }, + "id": "way/189799718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799719", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039438, + -0.042247 + ], + [ + 109.304153, + -0.0426027 + ], + [ + 109.3042878, + -0.0428319 + ], + [ + 109.3043029, + -0.0428738 + ], + [ + 109.3043149, + -0.0429482 + ], + [ + 109.3043324, + -0.0430401 + ], + [ + 109.3043676, + -0.0432478 + ], + [ + 109.3044075, + -0.0436482 + ] + ] + }, + "id": "way/189799719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799720", + "highway": "residential", + "name": "Gang Ikhsan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3018806, + -0.0251897 + ], + [ + 109.3020168, + -0.0255234 + ], + [ + 109.302096, + -0.0256997 + ], + [ + 109.3022676, + -0.0260806 + ], + [ + 109.3023116, + -0.0261774 + ], + [ + 109.3024176, + -0.0263779 + ] + ] + }, + "id": "way/189799720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3167542, + -0.0376961 + ], + [ + 109.3167899, + -0.0377333 + ], + [ + 109.3168174, + -0.0377642 + ], + [ + 109.3168429, + -0.0377944 + ], + [ + 109.3168565, + -0.037811 + ], + [ + 109.3168744, + -0.0378285 + ], + [ + 109.3168927, + -0.0378482 + ], + [ + 109.3169166, + -0.0378714 + ], + [ + 109.3169307, + -0.0378869 + ], + [ + 109.3169514, + -0.0379112 + ], + [ + 109.3175183, + -0.038604 + ], + [ + 109.3176933, + -0.0388176 + ], + [ + 109.3179838, + -0.039152 + ], + [ + 109.3184468, + -0.0396779 + ], + [ + 109.3192944, + -0.0405993 + ] + ] + }, + "id": "way/189799721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799722", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2976239, + -0.0294851 + ], + [ + 109.2977534, + -0.0296988 + ] + ] + }, + "id": "way/189799722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799723", + "highway": "residential", + "name": "Gang Usaha Baru I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311378, + -0.0557622 + ], + [ + 109.3110563, + -0.0555345 + ], + [ + 109.3108253, + -0.0553916 + ], + [ + 109.3107725, + -0.0553626 + ], + [ + 109.3105631, + -0.055242 + ], + [ + 109.3104091, + -0.0551527 + ], + [ + 109.3101987, + -0.0550187 + ], + [ + 109.3100133, + -0.054918 + ] + ] + }, + "id": "way/189799723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799724", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296711, + -0.0485246 + ], + [ + 109.2985312, + -0.0468444 + ], + [ + 109.2986964, + -0.0466919 + ], + [ + 109.2988231, + -0.0465691 + ], + [ + 109.2989223, + -0.04648 + ], + [ + 109.2990454, + -0.0463982 + ], + [ + 109.2999434, + -0.0458119 + ], + [ + 109.3001632, + -0.0456554 + ], + [ + 109.3013753, + -0.044814 + ] + ] + }, + "id": "way/189799724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799726", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155925, + -0.0390042 + ], + [ + 109.316317, + -0.0398473 + ], + [ + 109.3168545, + -0.0405071 + ], + [ + 109.3169256, + -0.0406026 + ], + [ + 109.3170047, + -0.0406886 + ], + [ + 109.3174315, + -0.0411839 + ], + [ + 109.3174894, + -0.041266 + ], + [ + 109.3176797, + -0.0414669 + ] + ] + }, + "id": "way/189799726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799727", + "highway": "residential", + "name": "Gang Hasyim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005679, + -0.0277193 + ], + [ + 109.3006396, + -0.027848 + ], + [ + 109.3006631, + -0.0279017 + ], + [ + 109.3006886, + -0.027952 + ], + [ + 109.301714, + -0.0299449 + ], + [ + 109.3021261, + -0.0308063 + ] + ] + }, + "id": "way/189799727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799728", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136494, + -0.0498092 + ], + [ + 109.3141399, + -0.0503766 + ], + [ + 109.3141511, + -0.0503843 + ], + [ + 109.3141647, + -0.050391 + ], + [ + 109.314172, + -0.0503927 + ], + [ + 109.3141898, + -0.0503927 + ], + [ + 109.3141989, + -0.0503908 + ], + [ + 109.3142086, + -0.0503853 + ], + [ + 109.3142247, + -0.0503736 + ], + [ + 109.3146799, + -0.0499462 + ], + [ + 109.3148472, + -0.0497924 + ], + [ + 109.3150122, + -0.0496175 + ], + [ + 109.3151157, + -0.0495108 + ] + ] + }, + "id": "way/189799728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799729", + "highway": "residential", + "name": "Gang Morodadi II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114163, + -0.0539958 + ], + [ + 109.3116479, + -0.053695 + ], + [ + 109.3118888, + -0.053408 + ], + [ + 109.312501, + -0.0527765 + ], + [ + 109.3125252, + -0.0527611 + ], + [ + 109.3125748, + -0.0527517 + ], + [ + 109.3126144, + -0.0527436 + ], + [ + 109.3126539, + -0.0527309 + ], + [ + 109.3126901, + -0.0527094 + ], + [ + 109.3132147, + -0.0521543 + ] + ] + }, + "id": "way/189799729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799730", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088914, + -0.0310157 + ], + [ + 109.3085575, + -0.0311606 + ], + [ + 109.3084583, + -0.0312169 + ], + [ + 109.3084013, + -0.0312363 + ], + [ + 109.3080319, + -0.0313623 + ], + [ + 109.308006, + -0.0313782 + ], + [ + 109.3076104, + -0.0315141 + ], + [ + 109.3073014, + -0.0316295 + ], + [ + 109.3070267, + -0.0317322 + ], + [ + 109.3068889, + -0.031778 + ], + [ + 109.3066224, + -0.0318935 + ], + [ + 109.3061371, + -0.032094 + ], + [ + 109.3055377, + -0.0323416 + ], + [ + 109.3054421, + -0.0323811 + ] + ] + }, + "id": "way/189799730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799731", + "highway": "residential", + "name": "Gang Marodan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062466, + -0.0447195 + ], + [ + 109.3054389, + -0.045492 + ] + ] + }, + "id": "way/189799731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799732", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182152, + -0.0361329 + ], + [ + 109.3180456, + -0.0359387 + ], + [ + 109.3179775, + -0.0358699 + ], + [ + 109.3176142, + -0.0355136 + ], + [ + 109.3174763, + -0.0353802 + ], + [ + 109.3172877, + -0.0351865 + ] + ] + }, + "id": "way/189799732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959705, + -0.0288972 + ], + [ + 109.2960624, + -0.0290352 + ], + [ + 109.2961138, + -0.0291099 + ], + [ + 109.2961409, + -0.0291453 + ], + [ + 109.2961925, + -0.0292199 + ], + [ + 109.2963848, + -0.0294851 + ] + ] + }, + "id": "way/189799733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799734", + "highway": "unclassified", + "lanes": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3024485, + -0.0340344 + ], + [ + 109.3025333, + -0.0342192 + ], + [ + 109.3026645, + -0.0345651 + ], + [ + 109.3028621, + -0.0350543 + ] + ] + }, + "id": "way/189799734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799735", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005428, + -0.0640463 + ], + [ + 109.300584, + -0.0640269 + ], + [ + 109.3012599, + -0.0635958 + ], + [ + 109.3019621, + -0.0630982 + ], + [ + 109.3030984, + -0.0623248 + ], + [ + 109.3028045, + -0.0619785 + ], + [ + 109.3027857, + -0.0619694 + ], + [ + 109.3027653, + -0.0619731 + ], + [ + 109.3019787, + -0.0625605 + ], + [ + 109.3004315, + -0.0636766 + ] + ] + }, + "id": "way/189799735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799736", + "highway": "residential", + "name": "Gang Rawamangun 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135208, + -0.0524193 + ], + [ + 109.3140071, + -0.0518326 + ], + [ + 109.3142713, + -0.0515608 + ], + [ + 109.3143193, + -0.0514973 + ], + [ + 109.3144848, + -0.0512993 + ], + [ + 109.3149165, + -0.0507788 + ], + [ + 109.3152814, + -0.0503093 + ], + [ + 109.3155638, + -0.049961 + ] + ] + }, + "id": "way/189799736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799737", + "highway": "residential", + "name": "Gang Samarukun" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3174587, + -0.0369026 + ], + [ + 109.3186949, + -0.0382058 + ], + [ + 109.3187557, + -0.0382699 + ], + [ + 109.3192045, + -0.0387972 + ] + ] + }, + "id": "way/189799737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799738", + "highway": "residential", + "name": "Gang Nikita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030607, + -0.0263379 + ], + [ + 109.3037026, + -0.027603 + ], + [ + 109.3037587, + -0.0277135 + ], + [ + 109.3038975, + -0.027987 + ] + ] + }, + "id": "way/189799738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799739", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107794, + -0.0362919 + ], + [ + 109.3109122, + -0.0364324 + ], + [ + 109.3109144, + -0.0364373 + ], + [ + 109.3109148, + -0.036442 + ], + [ + 109.3109145, + -0.0364469 + ], + [ + 109.3108914, + -0.03647 + ], + [ + 109.3108892, + -0.0364752 + ], + [ + 109.3108892, + -0.0364816 + ], + [ + 109.310892, + -0.0364891 + ], + [ + 109.3111705, + -0.0367551 + ], + [ + 109.3114782, + -0.0370279 + ] + ] + }, + "id": "way/189799739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799740", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156198, + -0.0275691 + ], + [ + 109.3142894, + -0.0279446 + ], + [ + 109.3142746, + -0.0279915 + ], + [ + 109.3142451, + -0.0280197 + ], + [ + 109.3133102, + -0.0282875 + ], + [ + 109.3132661, + -0.0282933 + ], + [ + 109.3132308, + -0.0282644 + ], + [ + 109.3132109, + -0.0282181 + ], + [ + 109.312766, + -0.0283602 + ] + ] + }, + "id": "way/189799740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799741", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124686, + -0.0366744 + ], + [ + 109.3128884, + -0.0370343 + ], + [ + 109.3137278, + -0.0377603 + ], + [ + 109.3141874, + -0.0381553 + ], + [ + 109.3142926, + -0.038239 + ], + [ + 109.3149219, + -0.0387904 + ], + [ + 109.3154164, + -0.0392062 + ] + ] + }, + "id": "way/189799741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799742", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113953, + -0.0328638 + ], + [ + 109.3112486, + -0.0332714 + ], + [ + 109.3112212, + -0.0333578 + ], + [ + 109.3111261, + -0.0336847 + ], + [ + 109.3114359, + -0.0339633 + ], + [ + 109.3117624, + -0.0342519 + ], + [ + 109.3121427, + -0.0345968 + ] + ] + }, + "id": "way/189799742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799743", + "highway": "residential", + "name": "Gang Ikhlas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3054924, + -0.0581014 + ], + [ + 109.3044149, + -0.0593436 + ], + [ + 109.3041287, + -0.0596765 + ], + [ + 109.3037975, + -0.0600657 + ], + [ + 109.3035363, + -0.0603623 + ], + [ + 109.3032527, + -0.06069 + ], + [ + 109.303078, + -0.060885 + ] + ] + }, + "id": "way/189799743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799744", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2936566, + -0.0370911 + ], + [ + 109.2935973, + -0.0370242 + ], + [ + 109.2933698, + -0.0367674 + ], + [ + 109.2931776, + -0.0365292 + ], + [ + 109.2929405, + -0.0362368 + ], + [ + 109.2927258, + -0.0359795 + ], + [ + 109.2925985, + -0.0358205 + ] + ] + }, + "id": "way/189799744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799745", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113186, + -0.0481263 + ], + [ + 109.3092167, + -0.0465918 + ], + [ + 109.3078206, + -0.0455968 + ], + [ + 109.3063803, + -0.0445846 + ], + [ + 109.3063667, + -0.0445742 + ], + [ + 109.3061236, + -0.0443714 + ] + ] + }, + "id": "way/189799745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799746", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303861, + -0.0402807 + ], + [ + 109.3038429, + -0.0402794 + ], + [ + 109.3037409, + -0.0402492 + ], + [ + 109.3036618, + -0.0402258 + ], + [ + 109.3036276, + -0.0402345 + ], + [ + 109.303228, + -0.0406039 + ], + [ + 109.3031924, + -0.040618 + ], + [ + 109.3031535, + -0.040616 + ], + [ + 109.3031314, + -0.0406153 + ], + [ + 109.3031059, + -0.0406221 + ], + [ + 109.3030364, + -0.0406785 + ] + ] + }, + "id": "way/189799746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799747", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2998851, + -0.0322588 + ], + [ + 109.2992547, + -0.0312983 + ], + [ + 109.2990536, + -0.0309966 + ], + [ + 109.2984502, + -0.0300187 + ], + [ + 109.2980813, + -0.0294024 + ], + [ + 109.2980595, + -0.0293659 + ] + ] + }, + "id": "way/189799747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799748", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3164606, + -0.0436798 + ], + [ + 109.3162411, + -0.0439012 + ], + [ + 109.3158516, + -0.0443735 + ], + [ + 109.3157869, + -0.0444345 + ], + [ + 109.3157456, + -0.0444836 + ], + [ + 109.3156811, + -0.0445762 + ], + [ + 109.3156204, + -0.0446357 + ], + [ + 109.3153633, + -0.0448779 + ], + [ + 109.3152598, + -0.0449762 + ] + ] + }, + "id": "way/189799748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799749", + "highway": "residential", + "name": "Gang Sepakat 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119304, + -0.0396109 + ], + [ + 109.3125599, + -0.0388949 + ], + [ + 109.3127312, + -0.0387016 + ], + [ + 109.312758, + -0.038666 + ], + [ + 109.3128654, + -0.0385445 + ], + [ + 109.3129644, + -0.0384291 + ], + [ + 109.3130463, + -0.0383241 + ], + [ + 109.3130642, + -0.0383011 + ], + [ + 109.3132168, + -0.0381294 + ] + ] + }, + "id": "way/189799749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799750", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133742, + -0.0356599 + ], + [ + 109.3137141, + -0.035951 + ], + [ + 109.3137295, + -0.0359711 + ], + [ + 109.3137375, + -0.0359952 + ], + [ + 109.3137456, + -0.0360355 + ], + [ + 109.313757, + -0.0360589 + ], + [ + 109.3137798, + -0.0360838 + ], + [ + 109.3139811, + -0.0362604 + ], + [ + 109.3140077, + -0.0362835 + ], + [ + 109.3145085, + -0.0367327 + ], + [ + 109.3145338, + -0.0367613 + ], + [ + 109.3145422, + -0.0367821 + ], + [ + 109.3145439, + -0.0367972 + ], + [ + 109.3145355, + -0.036811 + ], + [ + 109.314517, + -0.0368351 + ], + [ + 109.3140601, + -0.0373228 + ] + ] + }, + "id": "way/189799750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799751", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320154, + -0.0424484 + ], + [ + 109.3202949, + -0.0423233 + ], + [ + 109.3206158, + -0.0420717 + ], + [ + 109.3206992, + -0.042003 + ], + [ + 109.3207906, + -0.0419143 + ], + [ + 109.3208882, + -0.0418046 + ], + [ + 109.320927, + -0.0417539 + ], + [ + 109.3209977, + -0.0416697 + ] + ] + }, + "id": "way/189799751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799752", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066989, + -0.0435522 + ], + [ + 109.3064737, + -0.0433298 + ], + [ + 109.3063691, + -0.0432346 + ], + [ + 109.3062736, + -0.0431321 + ], + [ + 109.306129, + -0.0429894 + ], + [ + 109.305877, + -0.0427319 + ], + [ + 109.3057599, + -0.0426311 + ], + [ + 109.3054621, + -0.0423527 + ], + [ + 109.3053903, + -0.0422869 + ], + [ + 109.3052932, + -0.0421978 + ], + [ + 109.3051497, + -0.0420703 + ], + [ + 109.3050834, + -0.0420114 + ], + [ + 109.3048957, + -0.0418678 + ], + [ + 109.3047925, + -0.0417794 + ], + [ + 109.3046203, + -0.041632 + ], + [ + 109.3045419, + -0.0415546 + ], + [ + 109.3043701, + -0.0413934 + ], + [ + 109.3042036, + -0.0412371 + ], + [ + 109.3038862, + -0.040902 + ], + [ + 109.3034072, + -0.0413448 + ] + ] + }, + "id": "way/189799752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799753", + "highway": "residential", + "name": "Gang Morodadi 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096503, + -0.0530027 + ], + [ + 109.3099161, + -0.0526801 + ], + [ + 109.3101429, + -0.0524293 + ], + [ + 109.3102359, + -0.0523058 + ], + [ + 109.3102724, + -0.0522506 + ], + [ + 109.3105892, + -0.0518635 + ], + [ + 109.311293, + -0.0510033 + ], + [ + 109.3113177, + -0.050974 + ], + [ + 109.3115682, + -0.0506888 + ], + [ + 109.3117228, + -0.0505173 + ], + [ + 109.3119978, + -0.0502037 + ] + ] + }, + "id": "way/189799753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799754", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156265, + -0.0270488 + ], + [ + 109.3150042, + -0.0272499 + ], + [ + 109.3149479, + -0.0272526 + ], + [ + 109.3148325, + -0.0272378 + ], + [ + 109.3141209, + -0.0274305 + ], + [ + 109.3131315, + -0.027735 + ], + [ + 109.3131072, + -0.0277609 + ], + [ + 109.3130938, + -0.0277917 + ], + [ + 109.3131443, + -0.028024 + ], + [ + 109.3132109, + -0.0282181 + ] + ] + }, + "id": "way/189799754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799755", + "highway": "residential", + "name": "Jalan Komplek Graha Bumi Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094841, + -0.0375879 + ], + [ + 109.3101654, + -0.0369336 + ], + [ + 109.3107794, + -0.0362919 + ], + [ + 109.310802, + -0.0362682 + ], + [ + 109.3112667, + -0.0358157 + ] + ] + }, + "id": "way/189799755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799756", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147583, + -0.0463583 + ], + [ + 109.3140829, + -0.0456659 + ], + [ + 109.3133824, + -0.0449241 + ], + [ + 109.3136107, + -0.0447022 + ], + [ + 109.3136597, + -0.0446568 + ], + [ + 109.3138654, + -0.0444605 + ], + [ + 109.3139067, + -0.0444206 + ], + [ + 109.3140909, + -0.0442571 + ], + [ + 109.3140976, + -0.0442512 + ], + [ + 109.3141073, + -0.0442474 + ], + [ + 109.3141162, + -0.0442472 + ], + [ + 109.3141251, + -0.0442491 + ], + [ + 109.3141328, + -0.0442507 + ], + [ + 109.3141405, + -0.0442561 + ], + [ + 109.3149184, + -0.0450611 + ], + [ + 109.3149291, + -0.0450745 + ], + [ + 109.3149338, + -0.0450859 + ], + [ + 109.3149358, + -0.0451107 + ], + [ + 109.3149345, + -0.0451261 + ], + [ + 109.3149291, + -0.0451516 + ], + [ + 109.3149123, + -0.0451751 + ], + [ + 109.3148337, + -0.0452528 + ], + [ + 109.3153554, + -0.0457556 + ], + [ + 109.315372, + -0.0457716 + ] + ] + }, + "id": "way/189799756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799757", + "highway": "residential", + "name": "Gang Pembangunan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087148, + -0.0584457 + ], + [ + 109.3077777, + -0.0579461 + ], + [ + 109.3076154, + -0.0578499 + ], + [ + 109.3074792, + -0.0577492 + ], + [ + 109.3070113, + -0.0572774 + ], + [ + 109.3067896, + -0.0570339 + ], + [ + 109.3067476, + -0.0569904 + ], + [ + 109.3065682, + -0.0568108 + ], + [ + 109.3063935, + -0.0566598 + ] + ] + }, + "id": "way/189799757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799758", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3015681, + -0.0254764 + ], + [ + 109.3016618, + -0.0256433 + ], + [ + 109.3017647, + -0.0258391 + ], + [ + 109.3018016, + -0.0259492 + ], + [ + 109.3018504, + -0.0260897 + ], + [ + 109.3018729, + -0.0261944 + ], + [ + 109.3019081, + -0.0263413 + ], + [ + 109.3019685, + -0.0265932 + ] + ] + }, + "id": "way/189799758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799759", + "highway": "residential", + "name": "Gang Mardirahayu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222234, + -0.0432439 + ], + [ + 109.3220537, + -0.0429831 + ], + [ + 109.3219263, + -0.042802 + ], + [ + 109.3218286, + -0.042675 + ], + [ + 109.3216829, + -0.0425013 + ], + [ + 109.3209977, + -0.0416697 + ], + [ + 109.3208453, + -0.0414794 + ], + [ + 109.3207444, + -0.0413535 + ], + [ + 109.3206007, + -0.0411773 + ], + [ + 109.3204437, + -0.0409848 + ], + [ + 109.3200552, + -0.0404938 + ] + ] + }, + "id": "way/189799759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799760", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132514, + -0.0337583 + ], + [ + 109.3129692, + -0.0338772 + ], + [ + 109.3127422, + -0.0339729 + ], + [ + 109.3126399, + -0.0340474 + ], + [ + 109.3123688, + -0.0343361 + ], + [ + 109.3121427, + -0.0345968 + ], + [ + 109.3119388, + -0.0348456 + ], + [ + 109.3119371, + -0.0348501 + ], + [ + 109.3119368, + -0.0348553 + ], + [ + 109.3119389, + -0.0348615 + ], + [ + 109.3119596, + -0.0348868 + ], + [ + 109.3131453, + -0.0359074 + ] + ] + }, + "id": "way/189799760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799761", + "highway": "residential", + "name": "Gang Sumur Bor" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132168, + -0.0381294 + ], + [ + 109.3132561, + -0.0380974 + ], + [ + 109.3132789, + -0.0380894 + ], + [ + 109.313297, + -0.0380867 + ], + [ + 109.3133211, + -0.0380894 + ], + [ + 109.3133446, + -0.0380981 + ], + [ + 109.3133939, + -0.0381446 + ], + [ + 109.313615, + -0.038353 + ], + [ + 109.3138059, + -0.038485 + ], + [ + 109.3138368, + -0.0384991 + ], + [ + 109.3138676, + -0.0384991 + ], + [ + 109.3139072, + -0.0384998 + ], + [ + 109.313942, + -0.0385071 + ], + [ + 109.3139776, + -0.0385259 + ], + [ + 109.3149472, + -0.0393552 + ], + [ + 109.3151302, + -0.0395449 + ] + ] + }, + "id": "way/189799761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799762", + "highway": "residential", + "name": "Gang Batas Pandang Jalur 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3043049, + -0.0328115 + ], + [ + 109.3041333, + -0.0319796 + ], + [ + 109.3039968, + -0.0311545 + ] + ] + }, + "id": "way/189799762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799764", + "highway": "residential", + "name": "Jalan Perumahan Mitra Raya Lestari 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3078762, + -0.0362936 + ], + [ + 109.308371, + -0.0359044 + ], + [ + 109.3098567, + -0.0346745 + ] + ] + }, + "id": "way/189799764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799765", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2992876, + -0.0563481 + ], + [ + 109.300253, + -0.0552641 + ], + [ + 109.3014507, + -0.0539718 + ], + [ + 109.3014688, + -0.053952 + ] + ] + }, + "id": "way/189799765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799766", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192691, + -0.0425722 + ], + [ + 109.3194623, + -0.0424007 + ], + [ + 109.3195059, + -0.0423627 + ], + [ + 109.3195705, + -0.0423079 + ], + [ + 109.3199863, + -0.0419461 + ], + [ + 109.320037, + -0.0419106 + ], + [ + 109.3200791, + -0.0418877 + ], + [ + 109.3201105, + -0.0418699 + ], + [ + 109.3201389, + -0.0418492 + ], + [ + 109.3202036, + -0.0417963 + ], + [ + 109.3203155, + -0.0417066 + ], + [ + 109.3207444, + -0.0413535 + ] + ] + }, + "id": "way/189799766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799767", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31254, + -0.0319535 + ], + [ + 109.3120657, + -0.0320005 + ], + [ + 109.3118294, + -0.0320168 + ], + [ + 109.311565, + -0.0320122 + ], + [ + 109.3115281, + -0.0320117 + ], + [ + 109.311058, + -0.0320054 + ], + [ + 109.3110409, + -0.0320051 + ], + [ + 109.3106125, + -0.031992 + ], + [ + 109.31058, + -0.0319912 + ], + [ + 109.3102183, + -0.0319821 + ], + [ + 109.3102246, + -0.0328058 + ] + ] + }, + "id": "way/189799767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799768", + "highway": "residential", + "name": "Gang Usaha Baru II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105011, + -0.05664 + ], + [ + 109.3101828, + -0.0564086 + ], + [ + 109.3098853, + -0.0562396 + ], + [ + 109.3098614, + -0.0562228 + ], + [ + 109.3095983, + -0.0560279 + ], + [ + 109.3089002, + -0.0556183 + ], + [ + 109.3088787, + -0.0555941 + ], + [ + 109.308864, + -0.0555646 + ], + [ + 109.3088593, + -0.0555378 + ], + [ + 109.3088479, + -0.0555103 + ], + [ + 109.3087961, + -0.0554661 + ], + [ + 109.3087146, + -0.0554038 + ] + ] + }, + "id": "way/189799768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799769", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107827, + -0.0511068 + ], + [ + 109.310765, + -0.0511222 + ], + [ + 109.3107408, + -0.0511383 + ], + [ + 109.3107221, + -0.0511444 + ], + [ + 109.3107107, + -0.0511413 + ], + [ + 109.3106858, + -0.051133 + ], + [ + 109.308923, + -0.0499198 + ], + [ + 109.3080966, + -0.0493318 + ], + [ + 109.3078778, + -0.0491732 + ], + [ + 109.3074815, + -0.0488892 + ] + ] + }, + "id": "way/189799769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799770", + "highway": "residential", + "name": "Jalan Perumahan Mitra Raya Lestari 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096122, + -0.0344744 + ], + [ + 109.308544, + -0.0353446 + ], + [ + 109.3082014, + -0.0356372 + ], + [ + 109.3081924, + -0.0356543 + ], + [ + 109.3081897, + -0.0356737 + ], + [ + 109.3081934, + -0.0356901 + ], + [ + 109.308371, + -0.0359044 + ] + ] + }, + "id": "way/189799770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799772", + "highway": "residential", + "name": "Gang Bambu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178761, + -0.0364522 + ], + [ + 109.3170541, + -0.0357718 + ], + [ + 109.3165606, + -0.0352904 + ], + [ + 109.3163006, + -0.0350728 + ], + [ + 109.315753, + -0.0345787 + ], + [ + 109.3152666, + -0.0341137 + ], + [ + 109.3149895, + -0.0338521 + ] + ] + }, + "id": "way/189799772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799773", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940064, + -0.0309619 + ], + [ + 109.294235, + -0.0313006 + ], + [ + 109.2942917, + -0.0313776 + ], + [ + 109.2943389, + -0.0314361 + ], + [ + 109.2944874, + -0.0316396 + ], + [ + 109.2945027, + -0.0316704 + ] + ] + }, + "id": "way/189799773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799774", + "highway": "residential", + "name": "Gang Langgar Hali" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314244, + -0.0346751 + ], + [ + 109.3132514, + -0.0337583 + ], + [ + 109.3130873, + -0.0334572 + ], + [ + 109.3127816, + -0.0326584 + ], + [ + 109.31254, + -0.0319535 + ], + [ + 109.312499, + -0.0317721 + ], + [ + 109.3140725, + -0.0313716 + ], + [ + 109.3156827, + -0.0308988 + ] + ] + }, + "id": "way/189799774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799775", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170603, + -0.0373582 + ], + [ + 109.317783, + -0.0381802 + ], + [ + 109.3178995, + -0.0383076 + ], + [ + 109.3181655, + -0.0386358 + ], + [ + 109.3184716, + -0.0390003 + ], + [ + 109.318784, + -0.0393541 + ], + [ + 109.3189055, + -0.0394865 + ], + [ + 109.3194882, + -0.0401427 + ], + [ + 109.3195359, + -0.0401927 + ] + ] + }, + "id": "way/189799775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799776", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3209257, + -0.0387243 + ], + [ + 109.320501, + -0.0391656 + ], + [ + 109.3201735, + -0.0394932 + ], + [ + 109.3199187, + -0.0397735 + ], + [ + 109.3197287, + -0.0399742 + ], + [ + 109.319712, + -0.0399916 + ], + [ + 109.3196812, + -0.0400235 + ], + [ + 109.3196766, + -0.0400303 + ], + [ + 109.3196731, + -0.0400366 + ], + [ + 109.3196714, + -0.0400452 + ], + [ + 109.3196712, + -0.040053 + ], + [ + 109.3196722, + -0.0400606 + ], + [ + 109.3196761, + -0.040072 + ], + [ + 109.3196816, + -0.0400809 + ], + [ + 109.3198731, + -0.0403158 + ], + [ + 109.3199704, + -0.0404386 + ], + [ + 109.3200158, + -0.0404873 + ], + [ + 109.3200421, + -0.040519 + ] + ] + }, + "id": "way/189799776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799779", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072497, + -0.0357999 + ], + [ + 109.3080028, + -0.0352179 + ], + [ + 109.3080557, + -0.0351752 + ], + [ + 109.3083023, + -0.0349765 + ] + ] + }, + "id": "way/189799779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799780", + "highway": "unclassified", + "name": "Jalan Ilham" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056232, + -0.0533196 + ], + [ + 109.3056849, + -0.0534135 + ], + [ + 109.3056947, + -0.0534627 + ], + [ + 109.3057027, + -0.0535037 + ], + [ + 109.3057057, + -0.053531 + ], + [ + 109.3057054, + -0.0535975 + ], + [ + 109.3056979, + -0.0536486 + ], + [ + 109.3056889, + -0.0537488 + ], + [ + 109.3056808, + -0.0538453 + ], + [ + 109.3056561, + -0.0540938 + ], + [ + 109.305652, + -0.0542396 + ], + [ + 109.3056574, + -0.0542839 + ], + [ + 109.3056721, + -0.0543134 + ], + [ + 109.305701, + -0.0543422 + ], + [ + 109.3059129, + -0.0544978 + ], + [ + 109.3060838, + -0.0546346 + ], + [ + 109.3061663, + -0.0546889 + ], + [ + 109.3063688, + -0.0548418 + ], + [ + 109.3066397, + -0.0550416 + ], + [ + 109.3068436, + -0.0551864 + ], + [ + 109.3069144, + -0.0552263 + ], + [ + 109.3071922, + -0.0554351 + ], + [ + 109.3076068, + -0.0557583 + ], + [ + 109.3077153, + -0.0558436 + ], + [ + 109.3078172, + -0.0559147 + ], + [ + 109.3081123, + -0.0561118 + ] + ] + }, + "id": "way/189799780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799781", + "highway": "unclassified", + "name": "Jalan Ampera", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072444, + -0.0599279 + ], + [ + 109.3070934, + -0.0597753 + ], + [ + 109.306914, + -0.059594 + ], + [ + 109.3066195, + -0.0592811 + ], + [ + 109.3064619, + -0.0591075 + ], + [ + 109.3062068, + -0.0588468 + ], + [ + 109.3059345, + -0.0585755 + ], + [ + 109.3057197, + -0.0583298 + ], + [ + 109.3054924, + -0.0581014 + ], + [ + 109.3054486, + -0.0580488 + ], + [ + 109.3052313, + -0.0578145 + ] + ] + }, + "id": "way/189799781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799782", + "highway": "tertiary", + "name": "Jalan Dokter Sutomo", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319098, + -0.0477664 + ], + [ + 109.3190822, + -0.0477527 + ], + [ + 109.3190017, + -0.0476768 + ], + [ + 109.3186882, + -0.0473812 + ], + [ + 109.3185166, + -0.0472176 + ], + [ + 109.31819, + -0.0468817 + ], + [ + 109.3180317, + -0.0466818 + ], + [ + 109.3178802, + -0.0464914 + ], + [ + 109.3178131, + -0.0464062 + ], + [ + 109.3176958, + -0.046244 + ], + [ + 109.3176422, + -0.0461622 + ], + [ + 109.3176177, + -0.0461155 + ], + [ + 109.3176066, + -0.0460837 + ], + [ + 109.3175972, + -0.0460445 + ], + [ + 109.317591, + -0.0459737 + ], + [ + 109.3175724, + -0.0456706 + ], + [ + 109.3175657, + -0.0456049 + ], + [ + 109.317551, + -0.0455379 + ], + [ + 109.3175308, + -0.0454715 + ], + [ + 109.3174987, + -0.0454064 + ], + [ + 109.3174464, + -0.0453273 + ], + [ + 109.3173914, + -0.0452576 + ], + [ + 109.3173062, + -0.0451583 + ], + [ + 109.3170239, + -0.0448096 + ], + [ + 109.316768, + -0.0445177 + ], + [ + 109.3166922, + -0.0444197 + ], + [ + 109.3165998, + -0.0443063 + ], + [ + 109.3165317, + -0.0442224 + ], + [ + 109.3164497, + -0.0441264 + ], + [ + 109.3162411, + -0.0439012 + ], + [ + 109.3154958, + -0.043058 + ], + [ + 109.3150536, + -0.0425313 + ], + [ + 109.3148836, + -0.0423561 + ], + [ + 109.3137459, + -0.0410179 + ] + ] + }, + "id": "way/189799782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799787", + "highway": "unclassified", + "name": "Jalan Pak Benceng" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306142, + -0.0508561 + ], + [ + 109.3067894, + -0.0512523 + ], + [ + 109.3077802, + -0.0518758 + ], + [ + 109.3079252, + -0.0519671 + ], + [ + 109.3085407, + -0.0523252 + ], + [ + 109.3091241, + -0.0526946 + ], + [ + 109.3093114, + -0.0527928 + ], + [ + 109.3096503, + -0.0530027 + ], + [ + 109.3100583, + -0.0532423 + ], + [ + 109.3102517, + -0.0533507 + ], + [ + 109.3104452, + -0.0534647 + ], + [ + 109.3106117, + -0.0535546 + ], + [ + 109.3106604, + -0.0535856 + ], + [ + 109.3109893, + -0.0537588 + ], + [ + 109.311173, + -0.0538641 + ], + [ + 109.3113218, + -0.0539412 + ], + [ + 109.3114163, + -0.0539958 + ], + [ + 109.3117037, + -0.0541694 + ], + [ + 109.311902, + -0.054281 + ], + [ + 109.3124541, + -0.0545547 + ], + [ + 109.3124714, + -0.0545633 + ] + ] + }, + "id": "way/189799787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/189799790", + "bicycle": "yes", + "foot": "yes", + "highway": "track", + "name": "Lapangan Bola SMAN 8 Pontianak", + "sport": "athletics", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296883, + -0.0516263 + ], + [ + 109.2968397, + -0.051615 + ], + [ + 109.2968001, + -0.0516131 + ], + [ + 109.2967567, + -0.0516206 + ], + [ + 109.2966888, + -0.0516451 + ], + [ + 109.2966568, + -0.0516602 + ], + [ + 109.2966304, + -0.0516772 + ], + [ + 109.2965738, + -0.0517243 + ], + [ + 109.2965022, + -0.0518148 + ], + [ + 109.2964871, + -0.0518506 + ], + [ + 109.2964758, + -0.0519317 + ], + [ + 109.2964796, + -0.051977 + ], + [ + 109.2964871, + -0.0520147 + ], + [ + 109.2965022, + -0.052058 + ], + [ + 109.296521, + -0.0520995 + ], + [ + 109.2969151, + -0.0528292 + ], + [ + 109.2969547, + -0.0528707 + ], + [ + 109.2970094, + -0.0529159 + ], + [ + 109.2970735, + -0.0529423 + ], + [ + 109.2971093, + -0.052948 + ], + [ + 109.2971772, + -0.0529517 + ], + [ + 109.2972765, + -0.0529326 + ], + [ + 109.2973371, + -0.0529076 + ], + [ + 109.2973678, + -0.0528886 + ], + [ + 109.2973943, + -0.0528678 + ], + [ + 109.2974213, + -0.0528411 + ], + [ + 109.2974426, + -0.0528147 + ], + [ + 109.2974616, + -0.0527848 + ], + [ + 109.2974788, + -0.0527489 + ], + [ + 109.2974928, + -0.0527054 + ], + [ + 109.2975049, + -0.0526281 + ], + [ + 109.2974922, + -0.0525553 + ], + [ + 109.2974818, + -0.0525217 + ], + [ + 109.2974449, + -0.0524408 + ], + [ + 109.2970565, + -0.0517432 + ], + [ + 109.2970075, + -0.051696 + ], + [ + 109.2969811, + -0.0516753 + ], + [ + 109.2969528, + -0.0516583 + ], + [ + 109.296883, + -0.0516263 + ] + ] + }, + "id": "way/189799790" + }, + { + "type": "Feature", + "properties": { + "@id": "way/208668997", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979159, + -0.0181133 + ], + [ + 109.298971, + -0.0185008 + ], + [ + 109.2995637, + -0.0187046 + ], + [ + 109.3002384, + -0.0189384 + ], + [ + 109.3014193, + -0.0193468 + ], + [ + 109.3014727, + -0.0193653 + ], + [ + 109.3017074, + -0.0192625 + ], + [ + 109.3017518, + -0.0192376 + ], + [ + 109.3020388, + -0.0190969 + ] + ] + }, + "id": "way/208668997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/208668998", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009149, + -0.0215602 + ], + [ + 109.3011068, + -0.0220366 + ], + [ + 109.3012831, + -0.022436 + ], + [ + 109.3022967, + -0.0247106 + ] + ] + }, + "id": "way/208668998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/208668999", + "highway": "residential", + "maxspeed": "20", + "motor_vehicle:conditional": "no @ (22:30-05:30)", + "name": "Gang Zuriyat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3015062, + -0.0212828 + ], + [ + 109.3016869, + -0.0217175 + ], + [ + 109.3019323, + -0.0222798 + ], + [ + 109.3022224, + -0.0229291 + ], + [ + 109.3026359, + -0.0239059 + ], + [ + 109.3028109, + -0.0242586 + ] + ] + }, + "id": "way/208668999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/208669000", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3027827, + -0.0206662 + ], + [ + 109.3020496, + -0.0191196 + ], + [ + 109.3020388, + -0.0190969 + ] + ] + }, + "id": "way/208669000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/208669001", + "highway": "residential", + "name": "Gang Gunung Rinjani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005391, + -0.0217266 + ], + [ + 109.300752, + -0.0221995 + ], + [ + 109.3009885, + -0.0227617 + ], + [ + 109.3012474, + -0.0233775 + ], + [ + 109.3019557, + -0.02501 + ] + ] + }, + "id": "way/208669001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/208669002", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980471, + -0.0177715 + ], + [ + 109.2981592, + -0.0178055 + ], + [ + 109.2989777, + -0.0180944 + ], + [ + 109.2995213, + -0.018263 + ], + [ + 109.3001129, + -0.0184375 + ], + [ + 109.3008956, + -0.0186945 + ], + [ + 109.3019794, + -0.0190316 + ], + [ + 109.3021028, + -0.0190584 + ] + ] + }, + "id": "way/208669002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/208669003", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3001474, + -0.0196359 + ], + [ + 109.3002768, + -0.0199081 + ], + [ + 109.3005356, + -0.020419 + ], + [ + 109.3008663, + -0.021099 + ], + [ + 109.3010735, + -0.0214767 + ], + [ + 109.3012679, + -0.0218928 + ], + [ + 109.3014335, + -0.022286 + ], + [ + 109.3017623, + -0.0230186 + ], + [ + 109.3017828, + -0.0230875 + ] + ] + }, + "id": "way/208669003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/219922410", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096122, + -0.0344744 + ], + [ + 109.3097003, + -0.0345481 + ], + [ + 109.3098567, + -0.0346745 + ] + ] + }, + "id": "way/219922410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/219922411", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029877, + -0.020616 + ], + [ + 109.303176, + -0.0210442 + ], + [ + 109.3037071, + -0.0224328 + ], + [ + 109.3042009, + -0.0236028 + ] + ] + }, + "id": "way/219922411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/219922412", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094265, + -0.0271238 + ], + [ + 109.3095405, + -0.0276728 + ], + [ + 109.3096484, + -0.0282605 + ], + [ + 109.3096555, + -0.028301 + ], + [ + 109.3097285, + -0.0286631 + ], + [ + 109.309743, + -0.028735 + ], + [ + 109.3098127, + -0.0290806 + ], + [ + 109.3099379, + -0.0297016 + ], + [ + 109.3101105, + -0.0305088 + ] + ] + }, + "id": "way/219922412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/219922413", + "highway": "residential", + "name": "Jalan Raden Eddy Martadinata" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131868, + -0.0108343 + ], + [ + 109.3132193, + -0.0108795 + ], + [ + 109.3132552, + -0.0109241 + ], + [ + 109.3137395, + -0.0115342 + ], + [ + 109.3141001, + -0.0119872 + ], + [ + 109.3142853, + -0.0122162 + ], + [ + 109.3145389, + -0.0125767 + ], + [ + 109.314796, + -0.0130189 + ], + [ + 109.3149339, + -0.013259 + ], + [ + 109.315091, + -0.0135131 + ], + [ + 109.3154109, + -0.0140696 + ], + [ + 109.3154302, + -0.0141008 + ], + [ + 109.3155319, + -0.0142941 + ], + [ + 109.3156663, + -0.0145391 + ], + [ + 109.3158566, + -0.0148716 + ], + [ + 109.3159428, + -0.0150254 + ], + [ + 109.3163746, + -0.0157953 + ], + [ + 109.3163817, + -0.0158403 + ], + [ + 109.3163761, + -0.0159421 + ] + ] + }, + "id": "way/219922413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/219922414", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129803, + -0.008644 + ], + [ + 109.3126058, + -0.0084283 + ], + [ + 109.3124605, + -0.0083372 + ], + [ + 109.3123498, + -0.0082812 + ], + [ + 109.3121404, + -0.0081614 + ], + [ + 109.3118975, + -0.0079896 + ], + [ + 109.3117688, + -0.0078196 + ] + ] + }, + "id": "way/219922414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/219922415", + "highway": "residential", + "name": "Gang Bayam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121404, + -0.0081614 + ], + [ + 109.312151, + -0.0078995 + ], + [ + 109.312111, + -0.0066129 + ] + ] + }, + "id": "way/219922415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/219979430", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411431, + -0.0281247 + ], + [ + 109.3411632, + -0.0281552 + ] + ] + }, + "id": "way/219979430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/219979432", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214764, + 0.0012459 + ], + [ + 109.3215528, + 0.0011942 + ], + [ + 109.3216788, + 0.0011346 + ], + [ + 109.3218248, + 0.0010556 + ], + [ + 109.3218858, + 0.0009848 + ], + [ + 109.3219769, + 0.0008552 + ], + [ + 109.3220629, + 0.0007976 + ], + [ + 109.3221844, + 0.000752 + ], + [ + 109.3223745, + 0.0006966 + ], + [ + 109.3226184, + 0.0005738 + ], + [ + 109.3227763, + 0.0004877 + ], + [ + 109.3228542, + 0.0004277 + ], + [ + 109.3229682, + 0.0003923 + ] + ] + }, + "id": "way/219979432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/219982266", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315491, + -0.0442928 + ], + [ + 109.3315932, + -0.0442538 + ], + [ + 109.3316448, + -0.0442203 + ] + ] + }, + "id": "way/219982266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166818", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701134, + -0.0283007 + ], + [ + 109.3696984, + -0.0279884 + ], + [ + 109.3695743, + -0.0278718 + ], + [ + 109.3695012, + -0.0278013 + ], + [ + 109.3692728, + -0.0275635 + ], + [ + 109.3690131, + -0.0273344 + ], + [ + 109.3686541, + -0.02704 + ] + ] + }, + "id": "way/221166818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166819", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3705244, + -0.0276008 + ], + [ + 109.3706924, + -0.0279532 + ], + [ + 109.3710483, + -0.0287319 + ], + [ + 109.3710748, + -0.0287947 + ], + [ + 109.371112, + -0.0288767 + ], + [ + 109.3711883, + -0.0290007 + ], + [ + 109.3712863, + -0.0291315 + ], + [ + 109.3714801, + -0.0294013 + ], + [ + 109.3716383, + -0.029602 + ], + [ + 109.3716748, + -0.0296248 + ] + ] + }, + "id": "way/221166819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166820", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.369872, + -0.0284769 + ], + [ + 109.3699567, + -0.0287862 + ], + [ + 109.3699942, + -0.0289648 + ], + [ + 109.3700193, + -0.0290577 + ], + [ + 109.3700411, + -0.0291241 + ], + [ + 109.3702484, + -0.0293455 + ], + [ + 109.3703119, + -0.0294224 + ], + [ + 109.3704733, + -0.0295641 + ], + [ + 109.3706885, + -0.0297781 + ], + [ + 109.3709033, + -0.0300071 + ], + [ + 109.3711093, + -0.0302379 + ], + [ + 109.3711039, + -0.0302808 + ], + [ + 109.3710771, + -0.0305597 + ], + [ + 109.3710476, + -0.0308749 + ], + [ + 109.3710198, + -0.0311878 + ], + [ + 109.3709953, + -0.0314882 + ], + [ + 109.3709662, + -0.0317732 + ], + [ + 109.3709195, + -0.0322019 + ], + [ + 109.3709195, + -0.0322106 + ], + [ + 109.3709189, + -0.0322274 + ], + [ + 109.3709189, + -0.0322485 + ], + [ + 109.3709219, + -0.0322579 + ], + [ + 109.3709242, + -0.0322676 + ], + [ + 109.3709309, + -0.0322757 + ], + [ + 109.3709591, + -0.0322992 + ], + [ + 109.3712059, + -0.0325325 + ], + [ + 109.3714204, + -0.0327571 + ] + ] + }, + "id": "way/221166820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166821", + "highway": "tertiary", + "name": "Jalan Panglima Aim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618774, + -0.0335309 + ], + [ + 109.3623392, + -0.0332218 + ], + [ + 109.3627275, + -0.0329753 + ], + [ + 109.3632552, + -0.0326403 + ], + [ + 109.363943, + -0.0321842 + ], + [ + 109.3642635, + -0.0319762 + ], + [ + 109.3648665, + -0.0315848 + ], + [ + 109.3653854, + -0.0312391 + ], + [ + 109.3654342, + -0.0312059 + ], + [ + 109.3656914, + -0.031029 + ], + [ + 109.3660375, + -0.030791 + ], + [ + 109.3661512, + -0.0307032 + ], + [ + 109.3663712, + -0.0305115 + ], + [ + 109.3666676, + -0.0302553 + ], + [ + 109.3666791, + -0.0302456 + ], + [ + 109.3671061, + -0.0298865 + ], + [ + 109.3673191, + -0.0297076 + ], + [ + 109.3674159, + -0.0296263 + ], + [ + 109.3680891, + -0.0290416 + ], + [ + 109.3681669, + -0.0289732 + ], + [ + 109.3682313, + -0.0289008 + ], + [ + 109.3682756, + -0.0288324 + ], + [ + 109.3683686, + -0.0284257 + ], + [ + 109.3684902, + -0.0278509 + ], + [ + 109.3685708, + -0.0274218 + ], + [ + 109.3686541, + -0.02704 + ], + [ + 109.3686664, + -0.0269883 + ], + [ + 109.3686822, + -0.0269214 + ], + [ + 109.3686892, + -0.0268909 + ], + [ + 109.3687537, + -0.0265787 + ], + [ + 109.3687946, + -0.0264037 + ], + [ + 109.3690002, + -0.0255335 + ] + ] + }, + "id": "way/221166821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166822", + "highway": "residential", + "junction": "circular", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3729194, + -0.0314247 + ], + [ + 109.3728809, + -0.0314164 + ], + [ + 109.3728474, + -0.0313955 + ], + [ + 109.3728207, + -0.0313594 + ], + [ + 109.3728099, + -0.0313157 + ], + [ + 109.372817, + -0.0312713 + ], + [ + 109.3728489, + -0.0312251 + ], + [ + 109.3728912, + -0.0312018 + ], + [ + 109.3729393, + -0.0311981 + ], + [ + 109.3729846, + -0.0312147 + ], + [ + 109.373019, + -0.0312486 + ], + [ + 109.3730363, + -0.0312937 + ], + [ + 109.3730333, + -0.0313418 + ], + [ + 109.3730107, + -0.0313845 + ], + [ + 109.3729585, + -0.0314194 + ], + [ + 109.3729194, + -0.0314247 + ] + ] + }, + "id": "way/221166822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166823", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3716044, + -0.0298135 + ], + [ + 109.3715855, + -0.029736 + ], + [ + 109.3716001, + -0.0296863 + ], + [ + 109.3716361, + -0.0296445 + ], + [ + 109.3716748, + -0.0296248 + ], + [ + 109.3717352, + -0.0296213 + ], + [ + 109.3717782, + -0.0296377 + ], + [ + 109.3718107, + -0.0296662 + ], + [ + 109.3718322, + -0.029705 + ], + [ + 109.3718384, + -0.0297593 + ], + [ + 109.3718255, + -0.0298033 + ], + [ + 109.3718123, + -0.0298241 + ], + [ + 109.3717562, + -0.0298652 + ], + [ + 109.3717169, + -0.0298731 + ], + [ + 109.3716799, + -0.029869 + ], + [ + 109.3716389, + -0.0298499 + ], + [ + 109.3716209, + -0.0298309 + ], + [ + 109.3716044, + -0.0298135 + ] + ] + }, + "id": "way/221166823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166824", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3684902, + -0.0278509 + ], + [ + 109.3688821, + -0.0279393 + ], + [ + 109.3689079, + -0.02796 + ], + [ + 109.3692331, + -0.0283161 + ], + [ + 109.3694249, + -0.0285119 + ], + [ + 109.3695086, + -0.0286401 + ], + [ + 109.3695333, + -0.028687 + ], + [ + 109.3695563, + -0.0287799 + ], + [ + 109.3696305, + -0.0292187 + ], + [ + 109.3696684, + -0.0292614 + ], + [ + 109.3698335, + -0.0294288 + ], + [ + 109.3700595, + -0.0296538 + ], + [ + 109.3703062, + -0.0299265 + ], + [ + 109.3707084, + -0.0303436 + ], + [ + 109.3707375, + -0.0303809 + ], + [ + 109.3707488, + -0.0304368 + ], + [ + 109.3707097, + -0.0308392 + ], + [ + 109.3706693, + -0.031256 + ], + [ + 109.3706053, + -0.031945 + ], + [ + 109.3705748, + -0.0323781 + ], + [ + 109.3706423, + -0.0324519 + ], + [ + 109.3709541, + -0.0327753 + ], + [ + 109.3715351, + -0.0333638 + ] + ] + }, + "id": "way/221166824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166825", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709724, + -0.0360962 + ], + [ + 109.3715626, + -0.0356412 + ], + [ + 109.371863, + -0.0353984 + ], + [ + 109.3722086, + -0.0350862 + ], + [ + 109.3728152, + -0.0345487 + ], + [ + 109.3735599, + -0.0338309 + ], + [ + 109.3741878, + -0.0331847 + ], + [ + 109.3743186, + -0.033026 + ], + [ + 109.3743575, + -0.0329818 + ], + [ + 109.3746769, + -0.032656 + ], + [ + 109.3748443, + -0.0324869 + ], + [ + 109.3749046, + -0.0324145 + ], + [ + 109.3749623, + -0.0323595 + ], + [ + 109.3751474, + -0.0321691 + ], + [ + 109.3753754, + -0.0319304 + ], + [ + 109.3754639, + -0.0318378 + ], + [ + 109.375543, + -0.0317694 + ], + [ + 109.3756784, + -0.0316259 + ], + [ + 109.3751209, + -0.0310314 + ], + [ + 109.3749226, + -0.0309233 + ], + [ + 109.3748165, + -0.0309011 + ], + [ + 109.374732, + -0.030889 + ], + [ + 109.3743089, + -0.0308576 + ], + [ + 109.3739893, + -0.0308286 + ], + [ + 109.373936, + -0.0308219 + ], + [ + 109.3739169, + -0.0308058 + ], + [ + 109.3739099, + -0.0307884 + ], + [ + 109.3739105, + -0.0304857 + ], + [ + 109.3738969, + -0.0296167 + ], + [ + 109.3739019, + -0.029095 + ], + [ + 109.373887, + -0.02858 + ], + [ + 109.3738767, + -0.0280442 + ], + [ + 109.3738506, + -0.0274173 + ], + [ + 109.3739478, + -0.0274142 + ], + [ + 109.3739562, + -0.027325 + ], + [ + 109.3739881, + -0.0268712 + ], + [ + 109.3740373, + -0.0261705 + ], + [ + 109.3740557, + -0.025951 + ], + [ + 109.3740941, + -0.0257291 + ] + ] + }, + "id": "way/221166825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166826", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709591, + -0.0322992 + ], + [ + 109.3712585, + -0.0320078 + ], + [ + 109.3713411, + -0.0319242 + ], + [ + 109.3713588, + -0.0318955 + ], + [ + 109.3713742, + -0.0318371 + ], + [ + 109.371397, + -0.0316454 + ], + [ + 109.3713969, + -0.0315206 + ], + [ + 109.3714389, + -0.0312185 + ] + ] + }, + "id": "way/221166826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166827", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3774585, + -0.0352629 + ], + [ + 109.3779565, + -0.0347493 + ] + ] + }, + "id": "way/221166827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166828", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718123, + -0.0298241 + ], + [ + 109.3718405, + -0.0298668 + ], + [ + 109.3724772, + -0.0307086 + ], + [ + 109.3728489, + -0.0312251 + ] + ] + }, + "id": "way/221166828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166829", + "highway": "residential", + "name": "Gang Agatis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3699396, + -0.0284239 + ], + [ + 109.3694718, + -0.0279694 + ], + [ + 109.3692479, + -0.0277572 + ], + [ + 109.3689917, + -0.0275153 + ] + ] + }, + "id": "way/221166829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166830", + "highway": "residential", + "name": "Gang Keladan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3710198, + -0.0311878 + ], + [ + 109.3714389, + -0.0312185 + ], + [ + 109.3718083, + -0.0312392 + ] + ] + }, + "id": "way/221166830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166831", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.372817, + -0.0312713 + ], + [ + 109.3717562, + -0.0298652 + ] + ] + }, + "id": "way/221166831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166832", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3736329, + -0.0323543 + ], + [ + 109.3736809, + -0.0323166 + ], + [ + 109.3740127, + -0.0319313 + ], + [ + 109.3742904, + -0.0316179 + ], + [ + 109.3743134, + -0.0315926 + ], + [ + 109.3749226, + -0.0309233 + ] + ] + }, + "id": "way/221166832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166833", + "highway": "residential", + "name": "Gang Kebaca 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3692461, + -0.0288763 + ], + [ + 109.3695333, + -0.028687 + ] + ] + }, + "id": "way/221166833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166834", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3695727, + -0.0315121 + ], + [ + 109.3699155, + -0.031429 + ], + [ + 109.3703057, + -0.0313344 + ], + [ + 109.3703253, + -0.0313286 + ], + [ + 109.3706693, + -0.031256 + ] + ] + }, + "id": "way/221166834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166835", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718328, + -0.0309443 + ], + [ + 109.3710476, + -0.0308749 + ], + [ + 109.3707097, + -0.0308392 + ] + ] + }, + "id": "way/221166835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3782484, + -0.0358208 + ], + [ + 109.3781655, + -0.0354876 + ], + [ + 109.3781481, + -0.0354326 + ], + [ + 109.3781038, + -0.0353783 + ], + [ + 109.3779781, + -0.0352373 + ] + ] + }, + "id": "way/221166836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166837", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.372374, + -0.0318297 + ], + [ + 109.3725944, + -0.0316214 + ], + [ + 109.3728474, + -0.0313955 + ] + ] + }, + "id": "way/221166837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166838", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3758025, + -0.035928 + ], + [ + 109.3760176, + -0.0357158 + ], + [ + 109.376218, + -0.0355061 + ], + [ + 109.3764536, + -0.0352767 + ], + [ + 109.3774818, + -0.0342679 + ], + [ + 109.3777458, + -0.0340094 + ] + ] + }, + "id": "way/221166838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3767116, + -0.0355323 + ], + [ + 109.3769811, + -0.0352616 + ], + [ + 109.3772175, + -0.0350242 + ], + [ + 109.3777181, + -0.0345102 + ] + ] + }, + "id": "way/221166839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166840", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3763701, + -0.0340053 + ], + [ + 109.3763128, + -0.0339533 + ], + [ + 109.3756764, + -0.0333224 + ], + [ + 109.3750206, + -0.0326724 + ], + [ + 109.3748443, + -0.0324869 + ] + ] + }, + "id": "way/221166840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166841", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3771409, + -0.0372784 + ], + [ + 109.3773633, + -0.0370823 + ], + [ + 109.3775846, + -0.0368721 + ], + [ + 109.3778204, + -0.0366339 + ], + [ + 109.3780737, + -0.0363962 + ], + [ + 109.378362, + -0.0361495 + ], + [ + 109.3784089, + -0.0361092 + ], + [ + 109.3784639, + -0.0360918 + ], + [ + 109.3785739, + -0.0360677 + ], + [ + 109.3786902, + -0.0360461 + ] + ] + }, + "id": "way/221166841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166842", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3716119, + -0.030288 + ], + [ + 109.3711039, + -0.0302808 + ] + ] + }, + "id": "way/221166842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166843", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682635, + -0.0328032 + ], + [ + 109.3684946, + -0.0325957 + ], + [ + 109.369154, + -0.0319605 + ], + [ + 109.3692782, + -0.0318558 + ] + ] + }, + "id": "way/221166843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166844", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3749046, + -0.0324145 + ], + [ + 109.3757276, + -0.0332708 + ], + [ + 109.3763769, + -0.0338996 + ], + [ + 109.3764237, + -0.0339645 + ] + ] + }, + "id": "way/221166844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166845", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3776217, + -0.0377751 + ], + [ + 109.377838, + -0.0375657 + ], + [ + 109.3780572, + -0.0373534 + ], + [ + 109.3782992, + -0.0371049 + ], + [ + 109.3786671, + -0.0367838 + ], + [ + 109.3787107, + -0.0367503 + ], + [ + 109.3787516, + -0.0367315 + ], + [ + 109.3790554, + -0.036647 + ], + [ + 109.3792149, + -0.0366001 + ] + ] + }, + "id": "way/221166845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166846", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3791467, + -0.0377796 + ], + [ + 109.3790155, + -0.0377115 + ], + [ + 109.378873, + -0.0376166 + ], + [ + 109.3786919, + -0.037504 + ], + [ + 109.3786181, + -0.0374302 + ], + [ + 109.3785268, + -0.0373315 + ], + [ + 109.3782992, + -0.0371049 + ], + [ + 109.3780694, + -0.0368539 + ], + [ + 109.3778204, + -0.0366339 + ], + [ + 109.3776215, + -0.0364323 + ], + [ + 109.3775622, + -0.0363739 + ], + [ + 109.3774097, + -0.0362112 + ], + [ + 109.3767116, + -0.0355323 + ], + [ + 109.3764536, + -0.0352767 + ], + [ + 109.3762023, + -0.0350079 + ], + [ + 109.376166, + -0.0349306 + ], + [ + 109.3761581, + -0.0347507 + ], + [ + 109.3761754, + -0.0346545 + ], + [ + 109.3762133, + -0.0345819 + ], + [ + 109.3764232, + -0.0343831 + ], + [ + 109.3764355, + -0.0343604 + ], + [ + 109.3764421, + -0.0343389 + ], + [ + 109.3764493, + -0.0340369 + ], + [ + 109.3767103, + -0.0340338 + ], + [ + 109.3767514, + -0.034033 + ], + [ + 109.3767756, + -0.0340199 + ], + [ + 109.3769886, + -0.0338481 + ], + [ + 109.3770169, + -0.0338227 + ], + [ + 109.3770732, + -0.0338039 + ], + [ + 109.3772673, + -0.0338183 + ], + [ + 109.3775029, + -0.0338213 + ], + [ + 109.3775506, + -0.033832 + ], + [ + 109.3776311, + -0.0338843 + ], + [ + 109.3777458, + -0.0340094 + ], + [ + 109.3777794, + -0.0340427 + ], + [ + 109.3784617, + -0.0347275 + ], + [ + 109.3786978, + -0.0349604 + ], + [ + 109.3787388, + -0.0350243 + ], + [ + 109.3787614, + -0.0350664 + ], + [ + 109.3788361, + -0.0352884 + ], + [ + 109.3789209, + -0.0355787 + ], + [ + 109.3789756, + -0.0357659 + ], + [ + 109.3791197, + -0.0362708 + ], + [ + 109.3792149, + -0.0366001 + ], + [ + 109.3793424, + -0.03701 + ], + [ + 109.3794227, + -0.0372578 + ], + [ + 109.3793081, + -0.0375126 + ], + [ + 109.3791467, + -0.0377796 + ] + ] + }, + "id": "way/221166846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166847", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3775622, + -0.0363739 + ], + [ + 109.3778415, + -0.0361362 + ], + [ + 109.3781145, + -0.0359256 + ], + [ + 109.3782484, + -0.0358208 + ], + [ + 109.3785965, + -0.0356886 + ] + ] + }, + "id": "way/221166847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166848", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3695333, + -0.028687 + ], + [ + 109.369872, + -0.0284769 + ], + [ + 109.3699044, + -0.0284519 + ], + [ + 109.3699396, + -0.0284239 + ], + [ + 109.3701134, + -0.0283007 + ] + ] + }, + "id": "way/221166848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166849", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714204, + -0.0327571 + ], + [ + 109.372374, + -0.0318297 + ], + [ + 109.3721875, + -0.0315968 + ], + [ + 109.3719985, + -0.0313362 + ], + [ + 109.3718809, + -0.0311656 + ], + [ + 109.3718237, + -0.0310774 + ] + ] + }, + "id": "way/221166849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166850", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3776995, + -0.0355017 + ], + [ + 109.3779781, + -0.0352373 + ], + [ + 109.378204, + -0.0349976 + ], + [ + 109.3784617, + -0.0347275 + ], + [ + 109.378689, + -0.0344759 + ] + ] + }, + "id": "way/221166850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3780694, + -0.0368539 + ], + [ + 109.3784861, + -0.0364894 + ], + [ + 109.3785645, + -0.0364264 + ], + [ + 109.3786671, + -0.0363935 + ], + [ + 109.378771, + -0.0363634 + ], + [ + 109.3791197, + -0.0362708 + ] + ] + }, + "id": "way/221166851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3685073, + -0.0330661 + ], + [ + 109.3682635, + -0.0328032 + ], + [ + 109.3679579, + -0.0324739 + ], + [ + 109.3677035, + -0.0322106 + ] + ] + }, + "id": "way/221166852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166853", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3743186, + -0.033026 + ], + [ + 109.3739605, + -0.0327042 + ], + [ + 109.3737674, + -0.0325231 + ], + [ + 109.3736329, + -0.0323543 + ], + [ + 109.37301, + -0.0314868 + ], + [ + 109.3729585, + -0.0314194 + ] + ] + }, + "id": "way/221166853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166854", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3774818, + -0.0342679 + ], + [ + 109.3777181, + -0.0345102 + ], + [ + 109.3779565, + -0.0347493 + ], + [ + 109.378204, + -0.0349976 + ] + ] + }, + "id": "way/221166854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166855", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.369154, + -0.0319605 + ], + [ + 109.3689126, + -0.0319344 + ], + [ + 109.3687503, + -0.0319163 + ], + [ + 109.3685458, + -0.0318774 + ], + [ + 109.3685056, + -0.0318774 + ], + [ + 109.3684821, + -0.0318861 + ], + [ + 109.3683681, + -0.0319947 + ], + [ + 109.3683574, + -0.0320175 + ], + [ + 109.3683527, + -0.032049 + ], + [ + 109.3683159, + -0.0323311 + ], + [ + 109.368316, + -0.0323759 + ], + [ + 109.3683239, + -0.0324008 + ], + [ + 109.3683748, + -0.0324608 + ], + [ + 109.3684204, + -0.0325111 + ], + [ + 109.3684946, + -0.0325957 + ] + ] + }, + "id": "way/221166855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166856", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725944, + -0.0316214 + ], + [ + 109.3718507, + -0.0306319 + ], + [ + 109.3716119, + -0.030288 + ], + [ + 109.3714038, + -0.0300081 + ] + ] + }, + "id": "way/221166856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166857", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3781145, + -0.0359256 + ], + [ + 109.3776995, + -0.0355017 + ], + [ + 109.3774585, + -0.0352629 + ], + [ + 109.3772175, + -0.0350242 + ] + ] + }, + "id": "way/221166857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166858", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3730107, + -0.0313845 + ], + [ + 109.3730589, + -0.0314553 + ], + [ + 109.3733811, + -0.0318941 + ], + [ + 109.3736809, + -0.0323166 + ], + [ + 109.3737942, + -0.0324603 + ], + [ + 109.3738706, + -0.0325392 + ], + [ + 109.3743575, + -0.0329818 + ] + ] + }, + "id": "way/221166858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166859", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688494, + -0.0311366 + ], + [ + 109.3690514, + -0.0309795 + ], + [ + 109.3690628, + -0.0309798 + ], + [ + 109.3690722, + -0.0309876 + ], + [ + 109.3690836, + -0.0310204 + ], + [ + 109.3691441, + -0.0312553 + ], + [ + 109.3692203, + -0.0315511 + ], + [ + 109.3692782, + -0.0318558 + ], + [ + 109.3693749, + -0.0322518 + ] + ] + }, + "id": "way/221166859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.378771, + -0.0363634 + ], + [ + 109.3786902, + -0.0360461 + ], + [ + 109.3785965, + -0.0356886 + ], + [ + 109.3785162, + -0.0354373 + ], + [ + 109.3784572, + -0.035271 + ], + [ + 109.3783928, + -0.0351812 + ], + [ + 109.378204, + -0.0349976 + ] + ] + }, + "id": "way/221166860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166861", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3686816, + -0.0287682 + ], + [ + 109.3687852, + -0.0283333 + ], + [ + 109.3688821, + -0.0279393 + ], + [ + 109.3689917, + -0.0275153 + ], + [ + 109.3690131, + -0.0273344 + ] + ] + }, + "id": "way/221166861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166862", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3692979, + -0.0343927 + ], + [ + 109.369637, + -0.0340571 + ], + [ + 109.3698746, + -0.0338162 + ], + [ + 109.370236, + -0.0334736 + ], + [ + 109.370678, + -0.0330383 + ], + [ + 109.3709541, + -0.0327753 + ], + [ + 109.3712059, + -0.0325325 + ], + [ + 109.3717557, + -0.0319813 + ], + [ + 109.3719508, + -0.0318076 + ], + [ + 109.3721875, + -0.0315968 + ] + ] + }, + "id": "way/221166862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166863", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3697121, + -0.0321411 + ], + [ + 109.3696396, + -0.0318026 + ], + [ + 109.3695727, + -0.0315121 + ], + [ + 109.3695631, + -0.0314702 + ], + [ + 109.3694242, + -0.0308665 + ], + [ + 109.3694276, + -0.030826 + ], + [ + 109.3694369, + -0.0307931 + ], + [ + 109.3694678, + -0.0307247 + ], + [ + 109.3695254, + -0.030671 + ], + [ + 109.369658, + -0.0305474 + ], + [ + 109.3697007, + -0.0305022 + ], + [ + 109.3697551, + -0.0304505 + ], + [ + 109.3703062, + -0.0299265 + ] + ] + }, + "id": "way/221166863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3710771, + -0.0305597 + ], + [ + 109.3718507, + -0.0306319 + ], + [ + 109.3718328, + -0.0309443 + ], + [ + 109.3718237, + -0.0310774 + ], + [ + 109.3718083, + -0.0312392 + ], + [ + 109.3717916, + -0.031408 + ], + [ + 109.3717745, + -0.0316071 + ], + [ + 109.3717557, + -0.0319813 + ] + ] + }, + "id": "way/221166864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166865", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3687852, + -0.0283333 + ], + [ + 109.3689837, + -0.0285742 + ], + [ + 109.3690018, + -0.0286036 + ], + [ + 109.3690534, + -0.0286507 + ], + [ + 109.3691438, + -0.0287455 + ], + [ + 109.3692036, + -0.0288257 + ], + [ + 109.3692461, + -0.0288763 + ], + [ + 109.3692358, + -0.0289444 + ], + [ + 109.3692339, + -0.0290238 + ], + [ + 109.3692596, + -0.029345 + ], + [ + 109.3693027, + -0.029442 + ], + [ + 109.3693209, + -0.0294587 + ], + [ + 109.3693489, + -0.0294634 + ], + [ + 109.3694725, + -0.0293682 + ], + [ + 109.3696305, + -0.0292187 + ] + ] + }, + "id": "way/221166865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166866", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3677058, + -0.0326925 + ], + [ + 109.3679579, + -0.0324739 + ], + [ + 109.3680215, + -0.0320688 + ], + [ + 109.3680429, + -0.0318881 + ], + [ + 109.3680543, + -0.0318579 + ], + [ + 109.3680724, + -0.0318271 + ], + [ + 109.3683393, + -0.0315555 + ], + [ + 109.3683714, + -0.0315408 + ], + [ + 109.3684123, + -0.0315388 + ], + [ + 109.3688925, + -0.0316045 + ], + [ + 109.368936, + -0.0316031 + ], + [ + 109.3690091, + -0.031587 + ], + [ + 109.3692203, + -0.0315511 + ], + [ + 109.3695631, + -0.0314702 + ] + ] + }, + "id": "way/221166866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166867", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3661781, + -0.0352952 + ], + [ + 109.3663508, + -0.0351906 + ], + [ + 109.3666314, + -0.0350208 + ], + [ + 109.3669049, + -0.0348553 + ], + [ + 109.3669116, + -0.034817 + ], + [ + 109.3669096, + -0.0347621 + ], + [ + 109.3668573, + -0.0346461 + ], + [ + 109.3668533, + -0.0346394 + ], + [ + 109.3668533, + -0.0346246 + ], + [ + 109.366862, + -0.0345998 + ], + [ + 109.3670039, + -0.0344955 + ], + [ + 109.3671249, + -0.0344154 + ], + [ + 109.3672593, + -0.0342945 + ], + [ + 109.3674873, + -0.0340895 + ], + [ + 109.3677676, + -0.03385 + ], + [ + 109.3678839, + -0.0337328 + ], + [ + 109.3680276, + -0.0336044 + ], + [ + 109.3680835, + -0.0335539 + ], + [ + 109.3682464, + -0.0333889 + ], + [ + 109.3682962, + -0.0333449 + ] + ] + }, + "id": "way/221166867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/221166868", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3716209, + -0.0298309 + ], + [ + 109.3714038, + -0.0300081 + ], + [ + 109.3711093, + -0.0302379 + ] + ] + }, + "id": "way/221166868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328576", + "highway": "residential", + "name": "Jalan Sintang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547049, + -0.0483137 + ], + [ + 109.3551245, + -0.0487382 + ], + [ + 109.3552062, + -0.0488369 + ], + [ + 109.3553922, + -0.0490663 + ], + [ + 109.3554083, + -0.0490921 + ], + [ + 109.3554144, + -0.0491173 + ], + [ + 109.3554149, + -0.0491448 + ], + [ + 109.3554098, + -0.0491711 + ], + [ + 109.3552028, + -0.0494059 + ], + [ + 109.3550449, + -0.0495739 + ], + [ + 109.355011, + -0.0495994 + ], + [ + 109.3549544, + -0.0496108 + ], + [ + 109.3549141, + -0.0496048 + ], + [ + 109.3548732, + -0.049583 + ], + [ + 109.354257, + -0.0489596 + ], + [ + 109.3541409, + -0.0488464 + ] + ] + }, + "id": "way/227328576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328577", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3384635, + -0.0467882 + ], + [ + 109.3383139, + -0.0467842 + ], + [ + 109.3382089, + -0.0467835 + ] + ] + }, + "id": "way/227328577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328578", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547014, + -0.0472878 + ], + [ + 109.3541966, + -0.0477641 + ], + [ + 109.3541844, + -0.0477706 + ], + [ + 109.3541675, + -0.0477732 + ], + [ + 109.3541512, + -0.0477696 + ], + [ + 109.3540312, + -0.0476682 + ], + [ + 109.3540085, + -0.0476581 + ], + [ + 109.3539827, + -0.0476635 + ], + [ + 109.3539646, + -0.0476722 + ], + [ + 109.3538873, + -0.0477419 + ], + [ + 109.3537353, + -0.0478674 + ], + [ + 109.3536783, + -0.0479002 + ], + [ + 109.3536397, + -0.0479343 + ], + [ + 109.3534946, + -0.048128 + ] + ] + }, + "id": "way/227328578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328580", + "highway": "living_street", + "name": "Gang Wisuda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553056, + -0.0761452 + ], + [ + 109.3554646, + -0.0758807 + ], + [ + 109.3550978, + -0.0756378 + ], + [ + 109.3549254, + -0.0755236 + ], + [ + 109.3541312, + -0.0750247 + ], + [ + 109.3530478, + -0.0738928 + ], + [ + 109.3515078, + -0.0722097 + ] + ] + }, + "id": "way/227328580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328581", + "highway": "residential", + "name": "Jalan Tj. Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530952, + -0.0486324 + ], + [ + 109.3529816, + -0.0485453 + ], + [ + 109.3522055, + -0.0481055 + ], + [ + 109.3519426, + -0.0479492 + ], + [ + 109.3516236, + -0.0477312 + ] + ] + }, + "id": "way/227328581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328582", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385778, + -0.0489898 + ], + [ + 109.3385156, + -0.0488196 + ], + [ + 109.3383869, + -0.0484548 + ] + ] + }, + "id": "way/227328582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328583", + "highway": "residential", + "name": "Jalan Tanimbar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247044, + -0.0448043 + ], + [ + 109.3247065, + -0.0446958 + ], + [ + 109.3247044, + -0.0445609 + ], + [ + 109.3247024, + -0.044345 + ], + [ + 109.3247011, + -0.0441854 + ], + [ + 109.3247004, + -0.0440506 + ], + [ + 109.3247024, + -0.0438575 + ], + [ + 109.3247017, + -0.0436992 + ], + [ + 109.3246997, + -0.0435403 + ], + [ + 109.3246977, + -0.043372 + ], + [ + 109.324691, + -0.0432476 + ], + [ + 109.3246863, + -0.0431946 + ], + [ + 109.3246759, + -0.0431504 + ], + [ + 109.3246581, + -0.0431105 + ], + [ + 109.3246367, + -0.0430676 + ], + [ + 109.3245757, + -0.0429831 + ], + [ + 109.3245032, + -0.0428832 + ], + [ + 109.3244539, + -0.0428131 + ] + ] + }, + "id": "way/227328583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328584", + "highway": "residential", + "name": "Jalan Halmahera III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329564, + -0.0406299 + ], + [ + 109.3294819, + -0.0406737 + ], + [ + 109.3292352, + -0.0407944 + ], + [ + 109.3289327, + -0.0409178 + ] + ] + }, + "id": "way/227328584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328585", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247017, + -0.0436992 + ], + [ + 109.3245904, + -0.0437542 + ], + [ + 109.3244885, + -0.0438219 + ], + [ + 109.3244087, + -0.0438883 + ], + [ + 109.324339, + -0.0439547 + ], + [ + 109.324119, + -0.0441632 + ] + ] + }, + "id": "way/227328585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/227328586", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337383, + -0.0486366 + ], + [ + 109.3374027, + -0.0484182 + ], + [ + 109.3374118, + -0.0481745 + ], + [ + 109.3374159, + -0.0477145 + ], + [ + 109.3374228, + -0.0476092 + ] + ] + }, + "id": "way/227328586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/236535908", + "highway": "living_street", + "lanes": "1", + "name": "Gang Dungun" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442773, + -0.0399844 + ], + [ + 109.3441853, + -0.0400615 + ], + [ + 109.3440506, + -0.0401626 + ], + [ + 109.343962, + -0.040262 + ], + [ + 109.3438768, + -0.0403827 + ], + [ + 109.3438151, + -0.0404879 + ], + [ + 109.3437105, + -0.0406549 + ], + [ + 109.3436341, + -0.0407749 + ], + [ + 109.34361, + -0.0408152 + ], + [ + 109.3435121, + -0.0409707 + ], + [ + 109.3434705, + -0.0410324 + ], + [ + 109.343337, + -0.041239 + ], + [ + 109.3433049, + -0.0412993 + ], + [ + 109.3432438, + -0.041424 + ], + [ + 109.3431915, + -0.0415662 + ], + [ + 109.3431349, + -0.0416889 + ], + [ + 109.3431124, + -0.0417365 + ], + [ + 109.343034, + -0.0418753 + ], + [ + 109.3429961, + -0.0419243 + ], + [ + 109.342966, + -0.0419591 + ], + [ + 109.3429489, + -0.0419754 + ], + [ + 109.3428503, + -0.0420697 + ], + [ + 109.3427302, + -0.0422086 + ], + [ + 109.3426705, + -0.0422897 + ], + [ + 109.3426242, + -0.0423762 + ], + [ + 109.3425049, + -0.0426389 + ], + [ + 109.3425016, + -0.0426445 + ], + [ + 109.3424989, + -0.042647 + ], + [ + 109.342495, + -0.0426484 + ], + [ + 109.3424902, + -0.0426496 + ], + [ + 109.3424839, + -0.0426506 + ], + [ + 109.3424779, + -0.0426504 + ], + [ + 109.3424681, + -0.042649 + ] + ] + }, + "id": "way/236535908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/236537091", + "access": "permissive", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lanes": "1", + "maxspeed": "20", + "name": "Gang Syukur 1", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438151, + -0.0404879 + ], + [ + 109.344359, + -0.0409646 + ], + [ + 109.3449795, + -0.041627 + ] + ] + }, + "id": "way/236537091" + }, + { + "type": "Feature", + "properties": { + "@id": "way/236537151", + "access": "permissive", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lanes": "1", + "maxspeed": "20", + "name": "Gang Syukur 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34361, + -0.0408152 + ], + [ + 109.3447451, + -0.0418019 + ] + ] + }, + "id": "way/236537151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/236537306", + "access": "permissive", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lanes": "1", + "maxspeed": "20", + "name": "Gang Syukur 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434705, + -0.0410324 + ], + [ + 109.3446228, + -0.0419296 + ] + ] + }, + "id": "way/236537306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/236537415", + "access": "permissive", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lanes": "1", + "maxspeed": "20", + "name": "Gang Syukur 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431915, + -0.0415662 + ], + [ + 109.3433136, + -0.0416574 + ], + [ + 109.3434578, + -0.0417505 + ], + [ + 109.3436697, + -0.0419276 + ], + [ + 109.3437722, + -0.0420168 + ], + [ + 109.3438629, + -0.0420858 + ], + [ + 109.3440834, + -0.0422689 + ], + [ + 109.3442383, + -0.0424238 + ], + [ + 109.3442917, + -0.0424615 + ] + ] + }, + "id": "way/236537415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/237352781", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lanes": "1", + "maxspeed": "30", + "name": "Jalan Aris Margono", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417012, + -0.0425952 + ], + [ + 109.3415978, + -0.0426173 + ], + [ + 109.3412545, + -0.0427461 + ], + [ + 109.3408406, + -0.0429207 + ], + [ + 109.3406904, + -0.0429998 + ], + [ + 109.3404852, + -0.0431259 + ], + [ + 109.3403264, + -0.043253 + ], + [ + 109.3398402, + -0.0436815 + ], + [ + 109.3397911, + -0.0437248 + ] + ] + }, + "id": "way/237352781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/237352782", + "highway": "residential", + "name": "Gang Syukur 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342966, + -0.0419591 + ], + [ + 109.3430293, + -0.0420248 + ], + [ + 109.3432171, + -0.0421563 + ], + [ + 109.3435309, + -0.0424191 + ], + [ + 109.3439609, + -0.0427698 + ], + [ + 109.3440595, + -0.0428623 + ] + ] + }, + "id": "way/237352782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/237353670", + "highway": "residential", + "name": "Jalan Suprapto IV" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418982, + -0.042553 + ], + [ + 109.3418786, + -0.0424513 + ], + [ + 109.3418558, + -0.0423735 + ], + [ + 109.3418196, + -0.042277 + ], + [ + 109.341774, + -0.042175 + ], + [ + 109.3417159, + -0.0420863 + ], + [ + 109.3415084, + -0.0417915 + ], + [ + 109.3413349, + -0.0415927 + ], + [ + 109.3408674, + -0.0410646 + ], + [ + 109.3404101, + -0.0405234 + ] + ] + }, + "id": "way/237353670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238039063", + "foot": "yes", + "highway": "residential", + "horse": "no", + "maxspeed": "30", + "oneway": "no", + "sidewalk": "both" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408674, + -0.0410646 + ], + [ + 109.3414655, + -0.0405764 + ], + [ + 109.3423009, + -0.0398945 + ], + [ + 109.3423871, + -0.0398241 + ], + [ + 109.3427199, + -0.0394811 + ] + ] + }, + "id": "way/238039063" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238045289", + "highway": "residential", + "name": "Jalan Ismail Marzuki" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3378087, + -0.0335694 + ], + [ + 109.3382898, + -0.0331145 + ], + [ + 109.3383126, + -0.0330951 + ], + [ + 109.3382965, + -0.0330649 + ], + [ + 109.337756, + -0.0323126 + ], + [ + 109.3382621, + -0.031914 + ], + [ + 109.3387377, + -0.031575 + ], + [ + 109.3390474, + -0.0313808 + ], + [ + 109.3398093, + -0.0309876 + ] + ] + }, + "id": "way/238045289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238045908", + "highway": "service", + "name": "Jalan Terminal Hijas", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429108, + -0.0365174 + ], + [ + 109.3432056, + -0.0363399 + ], + [ + 109.3433055, + -0.036293 + ], + [ + 109.3434081, + -0.0362487 + ], + [ + 109.3435711, + -0.0361857 + ], + [ + 109.3439171, + -0.0360449 + ], + [ + 109.344277, + -0.0358767 + ] + ] + }, + "id": "way/238045908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238045909", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344259, + -0.0358021 + ], + [ + 109.3442188, + -0.0357525 + ], + [ + 109.3441692, + -0.0356224 + ], + [ + 109.3441732, + -0.0355849 + ], + [ + 109.3441866, + -0.0355594 + ], + [ + 109.3442108, + -0.0355473 + ], + [ + 109.3442255, + -0.0355527 + ], + [ + 109.3442443, + -0.0355715 + ], + [ + 109.344255, + -0.0356157 + ], + [ + 109.3442698, + -0.0357324 + ], + [ + 109.3442664, + -0.0357646 + ], + [ + 109.344259, + -0.0358021 + ] + ] + }, + "id": "way/238045909" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238045911", + "highway": "residential", + "name": "Jalan Kedah", + "name:id": "Jalan Kedah", + "name:ms": "Jalan Kedah", + "name:zh": "吉打路", + "name:zh-Hans": "吉打路", + "name:zh-Hant": "吉打路" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429108, + -0.0365174 + ], + [ + 109.3428937, + -0.0364865 + ], + [ + 109.3427496, + -0.0361917 + ], + [ + 109.3427416, + -0.0361729 + ], + [ + 109.3427403, + -0.0361568 + ], + [ + 109.3427456, + -0.0361448 + ], + [ + 109.3427523, + -0.0361347 + ], + [ + 109.3427657, + -0.0361226 + ], + [ + 109.3432975, + -0.0357673 + ], + [ + 109.3438715, + -0.0354347 + ], + [ + 109.344652, + -0.035102 + ], + [ + 109.3455133, + -0.0348598 + ], + [ + 109.3456542, + -0.0347861 + ], + [ + 109.3463016, + -0.0344476 + ] + ] + }, + "id": "way/238045911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238077920", + "highway": "residential", + "name": "Rahayu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3209257, + -0.0387243 + ], + [ + 109.3214014, + -0.0382488 + ], + [ + 109.321489, + -0.0381772 + ], + [ + 109.3216465, + -0.0380284 + ], + [ + 109.3217631, + -0.0379303 + ], + [ + 109.3219004, + -0.0377957 + ], + [ + 109.3220301, + -0.0376598 + ], + [ + 109.3220326, + -0.0376545 + ], + [ + 109.3220339, + -0.0376482 + ], + [ + 109.322035, + -0.0376403 + ], + [ + 109.3220349, + -0.0376345 + ], + [ + 109.3220344, + -0.0376289 + ], + [ + 109.3220333, + -0.0376213 + ], + [ + 109.3220291, + -0.0376097 + ] + ] + }, + "id": "way/238077920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238077921", + "highway": "residential", + "name": "Muhibah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211534, + -0.0390185 + ], + [ + 109.3218276, + -0.0384496 + ], + [ + 109.3221624, + -0.0381714 + ], + [ + 109.322321, + -0.0380471 + ], + [ + 109.3224173, + -0.0379634 + ], + [ + 109.3225077, + -0.0378996 + ] + ] + }, + "id": "way/238077921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238080980", + "highway": "residential", + "name": "Gang Gajah Mada 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411013, + -0.0294315 + ], + [ + 109.3401, + -0.0299167 + ], + [ + 109.3395318, + -0.030192 + ] + ] + }, + "id": "way/238080980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238081477", + "highway": "residential", + "name": "Jalan Ketapang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417084, + -0.0349196 + ], + [ + 109.3420716, + -0.0346713 + ], + [ + 109.3421287, + -0.0346223 + ], + [ + 109.3425331, + -0.0342619 + ], + [ + 109.342584, + -0.0342129 + ], + [ + 109.3426484, + -0.0341626 + ], + [ + 109.3427054, + -0.0341237 + ], + [ + 109.3430308, + -0.0339432 + ], + [ + 109.3436252, + -0.0336277 + ], + [ + 109.3440384, + -0.033414 + ], + [ + 109.3442557, + -0.0332971 + ], + [ + 109.344624, + -0.0331045 + ], + [ + 109.3451752, + -0.0328041 + ], + [ + 109.3452229, + -0.032775 + ], + [ + 109.3456404, + -0.0325653 + ] + ] + }, + "id": "way/238081477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238081478", + "highway": "residential", + "name": "Jalan Hijas", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465653, + -0.0356669 + ], + [ + 109.3458671, + -0.0359618 + ], + [ + 109.3458467, + -0.0359704 + ], + [ + 109.3455017, + -0.0361242 + ], + [ + 109.3452021, + -0.0362551 + ], + [ + 109.3448415, + -0.0364012 + ], + [ + 109.3447078, + -0.0364652 + ], + [ + 109.3444504, + -0.036594 + ], + [ + 109.3442397, + -0.0366984 + ], + [ + 109.3439233, + -0.0368553 + ], + [ + 109.3435761, + -0.0370274 + ], + [ + 109.3429547, + -0.0373941 + ], + [ + 109.3428408, + -0.0374613 + ] + ] + }, + "id": "way/238081478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082688", + "highway": "living_street", + "name": "Gang Gajah Mada 20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406354, + -0.0354918 + ], + [ + 109.3416184, + -0.0349165 + ] + ] + }, + "id": "way/238082688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082689", + "highway": "residential", + "name": "Gang Gajah Mada 18" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403073, + -0.0352198 + ], + [ + 109.3413603, + -0.03443 + ] + ] + }, + "id": "way/238082689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082690", + "highway": "residential", + "name": "Jalan Suprapto I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424284, + -0.0386064 + ], + [ + 109.3421791, + -0.038035 + ], + [ + 109.3421361, + -0.0379365 + ], + [ + 109.3419886, + -0.0376488 + ], + [ + 109.3419426, + -0.037563 + ], + [ + 109.3418887, + -0.0374809 + ], + [ + 109.3418276, + -0.0374047 + ], + [ + 109.3417472, + -0.0373213 + ], + [ + 109.3416815, + -0.0372478 + ], + [ + 109.3416234, + -0.0371801 + ], + [ + 109.3415755, + -0.0371181 + ], + [ + 109.3415343, + -0.03705 + ], + [ + 109.3414977, + -0.0369565 + ], + [ + 109.3414669, + -0.0368924 + ], + [ + 109.3414354, + -0.0368183 + ], + [ + 109.341314, + -0.0365358 + ], + [ + 109.3412832, + -0.0364727 + ], + [ + 109.3412606, + -0.0364282 + ] + ] + }, + "id": "way/238082690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082691", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469686, + -0.0394038 + ], + [ + 109.3476896, + -0.0389671 + ] + ] + }, + "id": "way/238082691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082692", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474314, + -0.0399072 + ], + [ + 109.3469686, + -0.0394038 + ], + [ + 109.3469428, + -0.0393772 + ], + [ + 109.3466502, + -0.0391111 + ], + [ + 109.3465362, + -0.0389859 + ], + [ + 109.3464018, + -0.0388492 + ], + [ + 109.3463235, + -0.038826 + ], + [ + 109.346242, + -0.0388623 + ], + [ + 109.3453914, + -0.0396024 + ], + [ + 109.3447623, + -0.0401227 + ] + ] + }, + "id": "way/238082692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082693", + "highway": "residential", + "name": "Jalan Dewi Sartika" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403868, + -0.0367435 + ], + [ + 109.3405352, + -0.0366287 + ], + [ + 109.3410393, + -0.0362726 + ], + [ + 109.3411839, + -0.0361723 + ], + [ + 109.3419716, + -0.0357077 + ] + ] + }, + "id": "way/238082693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082694", + "highway": "residential", + "name": "Gang Gajah Mada 28" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418276, + -0.0374047 + ], + [ + 109.3423866, + -0.0371911 + ], + [ + 109.3424586, + -0.0371533 + ] + ] + }, + "id": "way/238082694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082695", + "highway": "residential", + "name": "Gang Gajah Mada 26" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415343, + -0.03705 + ], + [ + 109.3422829, + -0.036755 + ] + ] + }, + "id": "way/238082695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466502, + -0.0391111 + ], + [ + 109.3467623, + -0.0390535 + ], + [ + 109.3474911, + -0.0386225 + ] + ] + }, + "id": "way/238082696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/238082697", + "highway": "residential", + "name": "Jalan Suprapto 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422367, + -0.0387324 + ], + [ + 109.3425156, + -0.0392018 + ], + [ + 109.3426028, + -0.039346 + ], + [ + 109.3427199, + -0.0394811 + ], + [ + 109.343161, + -0.0398761 + ], + [ + 109.3431724, + -0.0398962 + ], + [ + 109.3431801, + -0.0399284 + ], + [ + 109.3431781, + -0.0399538 + ], + [ + 109.3431704, + -0.0399766 + ], + [ + 109.343158, + -0.0399951 + ], + [ + 109.3427733, + -0.0403446 + ], + [ + 109.3424086, + -0.0406758 + ], + [ + 109.3419081, + -0.0411317 + ] + ] + }, + "id": "way/238082697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/242167980", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3172399, + -0.0437989 + ], + [ + 109.3170722, + -0.0439265 + ] + ] + }, + "id": "way/242167980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/242167981", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236818, + -0.0396591 + ], + [ + 109.3236081, + -0.0395387 + ], + [ + 109.3234747, + -0.0393337 + ], + [ + 109.3234109, + -0.0392147 + ], + [ + 109.3233846, + -0.0391748 + ], + [ + 109.3233428, + -0.0390987 + ], + [ + 109.3232097, + -0.0389049 + ], + [ + 109.3231625, + -0.0388496 + ], + [ + 109.3230459, + -0.0386518 + ], + [ + 109.3229975, + -0.0385861 + ], + [ + 109.3229848, + -0.0385753 + ], + [ + 109.3229574, + -0.0385616 + ] + ] + }, + "id": "way/242167981" + }, + { + "type": "Feature", + "properties": { + "@id": "way/242167984", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248669, + -0.0380982 + ], + [ + 109.324321, + -0.0384888 + ], + [ + 109.3238158, + -0.0388887 + ], + [ + 109.3234109, + -0.0392147 + ] + ] + }, + "id": "way/242167984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/242167985", + "highway": "residential", + "name": "Sukajaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284715, + -0.034727 + ], + [ + 109.3278007, + -0.0353944 + ], + [ + 109.3263978, + -0.0368274 + ], + [ + 109.3261507, + -0.0370929 + ] + ] + }, + "id": "way/242167985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245930672", + "highway": "residential", + "name": "Gang Merak II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337198, + -0.0211919 + ], + [ + 109.3334972, + -0.0214766 + ], + [ + 109.3333183, + -0.0217155 + ], + [ + 109.3331379, + -0.0219663 + ], + [ + 109.3330645, + -0.0220786 + ], + [ + 109.3329918, + -0.0221966 + ], + [ + 109.3328736, + -0.0224411 + ], + [ + 109.3327553, + -0.0227518 + ], + [ + 109.332728, + -0.0228314 + ], + [ + 109.332639, + -0.0230493 + ], + [ + 109.332624, + -0.0230638 + ], + [ + 109.332613, + -0.0230684 + ], + [ + 109.3325971, + -0.0230712 + ], + [ + 109.3325831, + -0.0230707 + ], + [ + 109.33225, + -0.0228762 + ], + [ + 109.3322398, + -0.0228744 + ], + [ + 109.332232, + -0.022875 + ], + [ + 109.3322237, + -0.022877 + ], + [ + 109.3322153, + -0.0228807 + ], + [ + 109.3322052, + -0.022888 + ], + [ + 109.3320909, + -0.0230626 + ], + [ + 109.3319303, + -0.0233272 + ], + [ + 109.3317782, + -0.0236254 + ] + ] + }, + "id": "way/245930672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934471", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185027, + -0.0285533 + ], + [ + 109.3185733, + -0.0286743 + ], + [ + 109.3186539, + -0.0287928 + ], + [ + 109.3186917, + -0.0288449 + ], + [ + 109.3187548, + -0.0289267 + ], + [ + 109.3188199, + -0.0289985 + ], + [ + 109.3189618, + -0.0291954 + ], + [ + 109.3189764, + -0.0292133 + ], + [ + 109.3190339, + -0.0292836 + ], + [ + 109.3190498, + -0.0293054 + ], + [ + 109.3191676, + -0.0294681 + ], + [ + 109.3192585, + -0.0295884 + ], + [ + 109.3194483, + -0.0298234 + ] + ] + }, + "id": "way/245934471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934472", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196284, + -0.0348456 + ], + [ + 109.3191988, + -0.0342257 + ], + [ + 109.3189401, + -0.0338448 + ], + [ + 109.3187281, + -0.0335303 + ], + [ + 109.3185451, + -0.0332413 + ], + [ + 109.3184534, + -0.0331052 + ], + [ + 109.3182805, + -0.0328423 + ], + [ + 109.3179857, + -0.0323831 + ], + [ + 109.3177712, + -0.0320743 + ], + [ + 109.3176021, + -0.031813 + ], + [ + 109.3174046, + -0.0315491 + ] + ] + }, + "id": "way/245934472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934473", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188199, + -0.0289985 + ], + [ + 109.3185504, + -0.0291593 + ], + [ + 109.318376, + -0.0292646 + ], + [ + 109.3181775, + -0.0293919 + ], + [ + 109.317981, + -0.0294961 + ], + [ + 109.3177033, + -0.0296585 + ], + [ + 109.3174466, + -0.0297999 + ], + [ + 109.3172562, + -0.0299152 + ], + [ + 109.3170577, + -0.0300305 + ], + [ + 109.3168931, + -0.0301243 + ], + [ + 109.3166926, + -0.0302379 + ], + [ + 109.3165612, + -0.0303211 + ], + [ + 109.3165117, + -0.0303598 + ], + [ + 109.316466, + -0.0303679 + ], + [ + 109.3163614, + -0.0303331 + ], + [ + 109.3162515, + -0.0303157 + ], + [ + 109.3160867, + -0.0303755 + ], + [ + 109.3158922, + -0.0304721 + ], + [ + 109.3156952, + -0.0305202 + ] + ] + }, + "id": "way/245934473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934474", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187772, + -0.0285021 + ], + [ + 109.3187318, + -0.028512 + ], + [ + 109.3187057, + -0.0285169 + ], + [ + 109.3186728, + -0.028524 + ], + [ + 109.318633, + -0.028532 + ], + [ + 109.3185027, + -0.0285533 + ], + [ + 109.3183437, + -0.0285754 + ], + [ + 109.3180249, + -0.0285995 + ], + [ + 109.3177863, + -0.0286275 + ], + [ + 109.3173672, + -0.0286797 + ], + [ + 109.3169762, + -0.0287338 + ], + [ + 109.3166374, + -0.0287859 + ], + [ + 109.3163171, + -0.0288189 + ], + [ + 109.3160211, + -0.0288634 + ], + [ + 109.3156654, + -0.0288995 + ] + ] + }, + "id": "way/245934474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934475", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156975, + -0.0297176 + ], + [ + 109.3160315, + -0.0296988 + ], + [ + 109.3164901, + -0.0296223 + ], + [ + 109.3167637, + -0.0295874 + ], + [ + 109.3170144, + -0.029552 + ], + [ + 109.3170765, + -0.0296147 + ], + [ + 109.3172562, + -0.0299152 + ], + [ + 109.3174134, + -0.0301621 + ], + [ + 109.3175056, + -0.0302944 + ], + [ + 109.3175222, + -0.0303178 + ], + [ + 109.317735, + -0.0306335 + ], + [ + 109.3177984, + -0.0307155 + ], + [ + 109.3179983, + -0.031022 + ], + [ + 109.3181473, + -0.0312067 + ], + [ + 109.3183217, + -0.0314533 + ], + [ + 109.3184244, + -0.0316321 + ], + [ + 109.3185409, + -0.0318297 + ], + [ + 109.3187247, + -0.0320589 + ], + [ + 109.3188931, + -0.0322915 + ], + [ + 109.3190375, + -0.0325361 + ], + [ + 109.3191538, + -0.0327005 + ], + [ + 109.3193692, + -0.0325591 + ], + [ + 109.3196811, + -0.0323124 + ], + [ + 109.3197536, + -0.0322514 + ], + [ + 109.3198136, + -0.0322008 + ], + [ + 109.3200327, + -0.0320302 + ], + [ + 109.320546, + -0.031628 + ], + [ + 109.3207746, + -0.0314716 + ], + [ + 109.3208128, + -0.0314426 + ], + [ + 109.3211555, + -0.0311909 + ], + [ + 109.3214627, + -0.0309822 + ], + [ + 109.3214757, + -0.0309617 + ], + [ + 109.3214804, + -0.0309433 + ], + [ + 109.3214848, + -0.0309239 + ], + [ + 109.3214904, + -0.0309075 + ], + [ + 109.3216638, + -0.0307559 + ], + [ + 109.3218569, + -0.0306106 + ] + ] + }, + "id": "way/245934475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934476", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184534, + -0.0331052 + ], + [ + 109.3181333, + -0.0333822 + ], + [ + 109.3181197, + -0.0333943 + ], + [ + 109.3178554, + -0.0336289 + ], + [ + 109.317776, + -0.0337012 + ] + ] + }, + "id": "way/245934476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934477", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3172477, + -0.0330867 + ], + [ + 109.3170588, + -0.0332929 + ], + [ + 109.3168281, + -0.0334726 + ], + [ + 109.3165693, + -0.0336551 + ] + ] + }, + "id": "way/245934477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934478", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156372, + -0.0279647 + ], + [ + 109.3152438, + -0.0280784 + ], + [ + 109.3146775, + -0.0282025 + ], + [ + 109.3141347, + -0.0283592 + ], + [ + 109.3127604, + -0.0287664 + ] + ] + }, + "id": "way/245934478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934479", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188535, + -0.0251485 + ], + [ + 109.3186415, + -0.0251807 + ], + [ + 109.3183352, + -0.0252374 + ], + [ + 109.3181708, + -0.0252629 + ], + [ + 109.3178847, + -0.0253175 + ] + ] + }, + "id": "way/245934479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317776, + -0.0337012 + ], + [ + 109.3176648, + -0.033804 + ], + [ + 109.3174703, + -0.0339855 + ], + [ + 109.317317, + -0.0341231 + ], + [ + 109.3171494, + -0.0342518 + ] + ] + }, + "id": "way/245934480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934481", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156608, + -0.0318394 + ], + [ + 109.316003, + -0.0316245 + ], + [ + 109.3164271, + -0.0313228 + ], + [ + 109.3166524, + -0.0311632 + ], + [ + 109.3169743, + -0.0309178 + ], + [ + 109.3170883, + -0.030836 + ] + ] + }, + "id": "way/245934481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934482", + "highway": "residential", + "name": "Gang Kurnia Damai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156874, + -0.0301793 + ], + [ + 109.3159186, + -0.0301698 + ], + [ + 109.3162033, + -0.0301393 + ], + [ + 109.3164666, + -0.0301053 + ], + [ + 109.3166933, + -0.030072 + ], + [ + 109.3167839, + -0.0300687 + ], + [ + 109.3168378, + -0.0301319 + ], + [ + 109.3168931, + -0.0301243 + ] + ] + }, + "id": "way/245934482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934483", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191555, + -0.0352709 + ], + [ + 109.3187765, + -0.0348489 + ], + [ + 109.3185837, + -0.0346319 + ], + [ + 109.3183313, + -0.0343441 + ], + [ + 109.3180577, + -0.0340265 + ], + [ + 109.317776, + -0.0337012 + ] + ] + }, + "id": "way/245934483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934484", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179723, + -0.0257015 + ], + [ + 109.3179268, + -0.0255024 + ], + [ + 109.3178847, + -0.0253175 + ], + [ + 109.3178287, + -0.0251112 + ], + [ + 109.3178333, + -0.0250733 + ], + [ + 109.3178447, + -0.0250545 + ], + [ + 109.3178699, + -0.0250389 + ], + [ + 109.3180599, + -0.0249915 + ], + [ + 109.318084, + -0.0249995 + ], + [ + 109.3181074, + -0.0250275 + ], + [ + 109.3181708, + -0.0252629 + ] + ] + }, + "id": "way/245934484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934485", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185112, + -0.0242699 + ], + [ + 109.3178201, + -0.0244532 + ], + [ + 109.3174416, + -0.0245528 + ], + [ + 109.3171856, + -0.0246202 + ], + [ + 109.3169363, + -0.0246859 + ], + [ + 109.3164597, + -0.0248113 + ], + [ + 109.3160951, + -0.0249073 + ], + [ + 109.3156164, + -0.0250455 + ] + ] + }, + "id": "way/245934485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934486", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156265, + -0.0274793 + ], + [ + 109.3160305, + -0.0274931 + ], + [ + 109.3165899, + -0.027443 + ], + [ + 109.3171052, + -0.0273989 + ], + [ + 109.3175443, + -0.0273468 + ], + [ + 109.3177363, + -0.0273201 + ], + [ + 109.317762, + -0.0273181 + ], + [ + 109.3178473, + -0.0273084 + ] + ] + }, + "id": "way/245934486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934487", + "highway": "residential", + "name": "Gang Merak II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351965, + -0.0195946 + ], + [ + 109.334989, + -0.0198479 + ], + [ + 109.3346191, + -0.0202529 + ], + [ + 109.3343941, + -0.0204916 + ], + [ + 109.3343579, + -0.0205297 + ], + [ + 109.3342632, + -0.0206294 + ], + [ + 109.3341894, + -0.020707 + ], + [ + 109.3340121, + -0.0208905 + ], + [ + 109.3337839, + -0.0211202 + ], + [ + 109.3337198, + -0.0211919 + ] + ] + }, + "id": "way/245934487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934488", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317776, + -0.0337012 + ], + [ + 109.3174948, + -0.0333744 + ], + [ + 109.3173231, + -0.0331693 + ], + [ + 109.3172477, + -0.0330867 + ], + [ + 109.3171417, + -0.0329715 + ], + [ + 109.3171278, + -0.0329516 + ], + [ + 109.3171191, + -0.0329248 + ], + [ + 109.3171191, + -0.0328899 + ], + [ + 109.3171158, + -0.0328701 + ], + [ + 109.3171061, + -0.0328503 + ], + [ + 109.3168194, + -0.0325567 + ], + [ + 109.3165813, + -0.0323099 + ] + ] + }, + "id": "way/245934488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245934489", + "highway": "residential", + "name": "Gang Merak 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343768, + -0.0189283 + ], + [ + 109.3342668, + -0.0190666 + ], + [ + 109.3341658, + -0.0191937 + ], + [ + 109.3341064, + -0.0192684 + ], + [ + 109.3340014, + -0.0194004 + ], + [ + 109.3338799, + -0.0195533 + ], + [ + 109.3337967, + -0.0196579 + ], + [ + 109.3336779, + -0.0197933 + ], + [ + 109.3334777, + -0.0200592 + ], + [ + 109.333197, + -0.0204122 + ], + [ + 109.33308, + -0.0205594 + ] + ] + }, + "id": "way/245934489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245935887", + "alt_name": "BLKI", + "highway": "tertiary", + "name": "Jalan Abdurahman Saleh", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557515, + -0.0582328 + ], + [ + 109.3557956, + -0.0581785 + ], + [ + 109.3559491, + -0.0579893 + ], + [ + 109.356094, + -0.0578108 + ], + [ + 109.3561587, + -0.0577357 + ], + [ + 109.3562315, + -0.0576529 + ], + [ + 109.3563495, + -0.0575122 + ], + [ + 109.3565474, + -0.057273 + ], + [ + 109.3566388, + -0.0571569 + ], + [ + 109.3567117, + -0.0570655 + ], + [ + 109.3568334, + -0.0569262 + ], + [ + 109.3570512, + -0.05665 + ], + [ + 109.3571158, + -0.0565735 + ], + [ + 109.3573528, + -0.0562423 + ], + [ + 109.3575116, + -0.0560084 + ], + [ + 109.3575229, + -0.0559943 + ], + [ + 109.3577316, + -0.0557339 + ], + [ + 109.3578746, + -0.0555405 + ], + [ + 109.3582162, + -0.0551096 + ], + [ + 109.3583028, + -0.0550003 + ], + [ + 109.3585041, + -0.0547338 + ], + [ + 109.3586672, + -0.0545361 + ], + [ + 109.3587422, + -0.0544377 + ], + [ + 109.3588253, + -0.0543385 + ], + [ + 109.3589943, + -0.0541623 + ], + [ + 109.3590088, + -0.0541496 + ], + [ + 109.3592342, + -0.0539044 + ], + [ + 109.3593618, + -0.053781 + ], + [ + 109.3594781, + -0.0537059 + ], + [ + 109.359627, + -0.0536236 + ], + [ + 109.3599134, + -0.0534705 + ], + [ + 109.360265, + -0.0532678 + ], + [ + 109.3605129, + -0.0531342 + ], + [ + 109.360557, + -0.0531104 + ], + [ + 109.3608193, + -0.0529615 + ], + [ + 109.3609793, + -0.0528555 + ] + ] + }, + "id": "way/245935887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245935890", + "alt_name": "BLKI", + "highway": "tertiary", + "name": "Jalan Abdurahman Saleh", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610346, + -0.0529281 + ], + [ + 109.3605443, + -0.0531907 + ], + [ + 109.3602704, + -0.053349 + ], + [ + 109.3600749, + -0.0534439 + ], + [ + 109.3599276, + -0.0535461 + ], + [ + 109.3595574, + -0.0537387 + ], + [ + 109.3594795, + -0.0537796 + ], + [ + 109.3593987, + -0.0538335 + ], + [ + 109.3592725, + -0.0539655 + ], + [ + 109.3591166, + -0.0541355 + ], + [ + 109.3590474, + -0.0542136 + ], + [ + 109.3589408, + -0.0543198 + ], + [ + 109.3588265, + -0.0544646 + ], + [ + 109.358725, + -0.054578 + ], + [ + 109.3585125, + -0.0548374 + ], + [ + 109.3583845, + -0.05499 + ], + [ + 109.3583552, + -0.0550273 + ], + [ + 109.3581057, + -0.0553519 + ], + [ + 109.3580229, + -0.0554704 + ], + [ + 109.35792, + -0.0556015 + ], + [ + 109.3577158, + -0.0558779 + ], + [ + 109.3575193, + -0.0561395 + ], + [ + 109.3574889, + -0.0561799 + ], + [ + 109.3573991, + -0.056303 + ], + [ + 109.3572706, + -0.0564791 + ], + [ + 109.3572335, + -0.0565251 + ], + [ + 109.3570979, + -0.0566962 + ], + [ + 109.3570423, + -0.0567626 + ], + [ + 109.3568566, + -0.0569952 + ], + [ + 109.3567535, + -0.0571159 + ], + [ + 109.3566241, + -0.0572674 + ], + [ + 109.3564916, + -0.0574269 + ], + [ + 109.3564015, + -0.0575353 + ], + [ + 109.3561773, + -0.057812 + ], + [ + 109.3560867, + -0.0579238 + ], + [ + 109.3558433, + -0.0582342 + ] + ] + }, + "id": "way/245935890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938005", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563302, + -0.0634914 + ], + [ + 109.356395, + -0.0635626 + ], + [ + 109.3565155, + -0.06372 + ], + [ + 109.3567176, + -0.0639681 + ], + [ + 109.3570644, + -0.0643583 + ], + [ + 109.3572008, + -0.0645137 + ], + [ + 109.3574744, + -0.0648148 + ], + [ + 109.3578742, + -0.0652728 + ], + [ + 109.3582419, + -0.0656955 + ], + [ + 109.3586476, + -0.0661516 + ], + [ + 109.3590447, + -0.0665943 + ], + [ + 109.3593592, + -0.0669814 + ], + [ + 109.3596676, + -0.0673505 + ], + [ + 109.3602649, + -0.0680657 + ], + [ + 109.3604824, + -0.0683098 + ], + [ + 109.3607165, + -0.0685657 + ], + [ + 109.361037, + -0.0689357 + ], + [ + 109.3612462, + -0.0691772 + ], + [ + 109.3614582, + -0.0694283 + ], + [ + 109.36149, + -0.069466 + ] + ] + }, + "id": "way/245938005" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938006", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562078, + -0.0635619 + ], + [ + 109.3558268, + -0.0631013 + ], + [ + 109.3553421, + -0.0625078 + ], + [ + 109.3551481, + -0.0622766 + ], + [ + 109.3550417, + -0.0621498 + ], + [ + 109.3549963, + -0.0620936 + ], + [ + 109.3549446, + -0.0620298 + ], + [ + 109.3546933, + -0.0617391 + ], + [ + 109.3546154, + -0.061649 + ], + [ + 109.3544583, + -0.0614814 + ], + [ + 109.3540546, + -0.0609937 + ], + [ + 109.3533311, + -0.0601089 + ], + [ + 109.3532882, + -0.0600564 + ], + [ + 109.3528748, + -0.0595609 + ], + [ + 109.3525548, + -0.0591773 + ], + [ + 109.3521492, + -0.0586911 + ], + [ + 109.3518796, + -0.0583679 + ], + [ + 109.3518447, + -0.0583261 + ], + [ + 109.3518185, + -0.0582936 + ] + ] + }, + "id": "way/245938006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938013", + "highway": "residential", + "name": "Gang A.R. Saleh III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551422, + -0.0590545 + ], + [ + 109.355447, + -0.0593612 + ], + [ + 109.3556846, + -0.0595918 + ], + [ + 109.3559021, + -0.0598144 + ], + [ + 109.3561788, + -0.0600831 + ], + [ + 109.3564996, + -0.0603888 + ], + [ + 109.3567974, + -0.0606836 + ], + [ + 109.3570109, + -0.0608891 + ], + [ + 109.3572408, + -0.0611475 + ], + [ + 109.3573536, + -0.0612543 + ], + [ + 109.3575002, + -0.0613803 + ] + ] + }, + "id": "way/245938013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938014", + "highway": "residential", + "name": "Gang Ilham" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599276, + -0.0535461 + ], + [ + 109.3600181, + -0.0536859 + ], + [ + 109.3602147, + -0.0538946 + ], + [ + 109.3604466, + -0.0541367 + ], + [ + 109.3606812, + -0.0543791 + ], + [ + 109.3608428, + -0.0545557 + ], + [ + 109.3609226, + -0.054643 + ], + [ + 109.3610614, + -0.0547948 + ], + [ + 109.3613457, + -0.0551057 + ], + [ + 109.3615588, + -0.0553388 + ], + [ + 109.3616444, + -0.0554324 + ], + [ + 109.3617182, + -0.0555131 + ] + ] + }, + "id": "way/245938014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938015", + "highway": "residential", + "name": "Gang A.R. Saleh IV" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554038, + -0.0587425 + ], + [ + 109.3555612, + -0.0589126 + ], + [ + 109.3557115, + -0.059053 + ], + [ + 109.355966, + -0.0593117 + ], + [ + 109.3561318, + -0.0594662 + ], + [ + 109.3563516, + -0.0596853 + ], + [ + 109.3565529, + -0.0599015 + ], + [ + 109.3567741, + -0.0601028 + ], + [ + 109.3569882, + -0.0603183 + ], + [ + 109.3572632, + -0.0605856 + ], + [ + 109.3574292, + -0.0607371 + ], + [ + 109.3575528, + -0.06086 + ], + [ + 109.3576292, + -0.0609312 + ], + [ + 109.3577215, + -0.0610127 + ] + ] + }, + "id": "way/245938015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938016", + "highway": "residential", + "name": "Gang Panorama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585125, + -0.0548374 + ], + [ + 109.3586052, + -0.0549253 + ], + [ + 109.3587562, + -0.0550912 + ], + [ + 109.3589108, + -0.0552621 + ], + [ + 109.3590603, + -0.0554209 + ], + [ + 109.3592234, + -0.0555959 + ], + [ + 109.3593637, + -0.0557477 + ], + [ + 109.3594772, + -0.0558682 + ], + [ + 109.3595622, + -0.0559639 + ], + [ + 109.3597182, + -0.0561361 + ], + [ + 109.3598189, + -0.0562318 + ], + [ + 109.3599727, + -0.0563817 + ], + [ + 109.3601431, + -0.0565565 + ], + [ + 109.3603206, + -0.0567616 + ], + [ + 109.3605431, + -0.0570195 + ] + ] + }, + "id": "way/245938016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938017", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3579428, + -0.0608925 + ], + [ + 109.357917, + -0.0608667 + ] + ] + }, + "id": "way/245938017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938018", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562484, + -0.063611 + ], + [ + 109.3562078, + -0.0635619 + ] + ] + }, + "id": "way/245938018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938019", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562882, + -0.0634413 + ], + [ + 109.3563302, + -0.0634914 + ] + ] + }, + "id": "way/245938019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938020", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572801, + -0.0617499 + ], + [ + 109.3573405, + -0.0618057 + ] + ] + }, + "id": "way/245938020" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938021", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578465, + -0.0608052 + ], + [ + 109.3575705, + -0.0605602 + ], + [ + 109.3575692, + -0.0605448 + ], + [ + 109.3575732, + -0.0605348 + ], + [ + 109.357636, + -0.0604499 + ], + [ + 109.3576681, + -0.0604181 + ], + [ + 109.3576728, + -0.0604067 + ], + [ + 109.3576708, + -0.0603926 + ], + [ + 109.357017, + -0.0597744 + ] + ] + }, + "id": "way/245938021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938022", + "highway": "residential", + "name": "Gang A.R. Saleh II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548079, + -0.0594614 + ], + [ + 109.3548603, + -0.0595157 + ], + [ + 109.3554998, + -0.0601165 + ], + [ + 109.3558287, + -0.0604184 + ], + [ + 109.3561818, + -0.0607474 + ], + [ + 109.3564187, + -0.0609574 + ], + [ + 109.3567605, + -0.0612794 + ], + [ + 109.3569352, + -0.0614259 + ], + [ + 109.3571008, + -0.0615807 + ], + [ + 109.3572801, + -0.0617499 + ] + ] + }, + "id": "way/245938022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938023", + "highway": "living_street", + "name": "Gang Hijrah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602704, + -0.053349 + ], + [ + 109.3604966, + -0.0536139 + ], + [ + 109.3607329, + -0.0538755 + ], + [ + 109.3609877, + -0.054163 + ], + [ + 109.3612653, + -0.0544531 + ], + [ + 109.361453, + -0.0546683 + ], + [ + 109.3617708, + -0.0549981 + ], + [ + 109.3620937, + -0.0553472 + ] + ] + }, + "id": "way/245938023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938025", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3577215, + -0.0610127 + ], + [ + 109.3577887, + -0.0610689 + ] + ] + }, + "id": "way/245938025" + }, + { + "type": "Feature", + "properties": { + "@id": "way/245938026", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575002, + -0.0613803 + ], + [ + 109.3575628, + -0.0614326 + ] + ] + }, + "id": "way/245938026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/260468475", + "highway": "residential", + "name": "Gang Sumber Agung Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175876, + -0.0593711 + ], + [ + 109.3173239, + -0.0596828 + ], + [ + 109.3170401, + -0.0600309 + ], + [ + 109.3166572, + -0.0605008 + ] + ] + }, + "id": "way/260468475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/260468476", + "highway": "residential", + "name": "Gang Mentari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313708, + -0.0642573 + ], + [ + 109.3139925, + -0.0638767 + ], + [ + 109.3142807, + -0.0634966 + ], + [ + 109.3146017, + -0.0630898 + ], + [ + 109.3152428, + -0.0622738 + ], + [ + 109.3155548, + -0.0618767 + ] + ] + }, + "id": "way/260468476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/260468481", + "highway": "unclassified", + "name": "Nirbaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196417, + -0.0644454 + ], + [ + 109.3192488, + -0.0641759 + ], + [ + 109.3183154, + -0.0635281 + ], + [ + 109.3175349, + -0.0629984 + ], + [ + 109.317219, + -0.0627918 + ], + [ + 109.3169843, + -0.062647 + ], + [ + 109.3168101, + -0.0625495 + ], + [ + 109.3167543, + -0.0625518 + ], + [ + 109.3166072, + -0.0625437 + ], + [ + 109.3165408, + -0.062535 + ], + [ + 109.3164952, + -0.0625189 + ], + [ + 109.3164509, + -0.0624995 + ], + [ + 109.3164046, + -0.0624764 + ], + [ + 109.3159867, + -0.0621851 + ], + [ + 109.3155548, + -0.0618767 + ], + [ + 109.315174, + -0.0616379 + ], + [ + 109.3149453, + -0.0614975 + ], + [ + 109.3144866, + -0.0612176 + ], + [ + 109.3142258, + -0.0610531 + ], + [ + 109.3135846, + -0.0606742 + ], + [ + 109.3130226, + -0.0603418 + ], + [ + 109.3124718, + -0.0600192 + ], + [ + 109.312063, + -0.0597763 + ], + [ + 109.3116373, + -0.0595274 + ], + [ + 109.3113183, + -0.0593352 + ], + [ + 109.3109766, + -0.0591261 + ], + [ + 109.3105305, + -0.0588732 + ], + [ + 109.3098176, + -0.05845 + ], + [ + 109.3092274, + -0.0580709 + ], + [ + 109.3091361, + -0.0580123 + ] + ] + }, + "id": "way/260468481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/266152685", + "access": "yes", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3269529, + -0.0299954 + ], + [ + 109.3270075, + -0.0298815 + ], + [ + 109.3271745, + -0.0297567 + ], + [ + 109.3277099, + -0.0293555 + ], + [ + 109.3278212, + -0.0293175 + ] + ] + }, + "id": "way/266152685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/266152686", + "access": "yes", + "highway": "residential", + "name": "Karimata", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278212, + -0.0293175 + ], + [ + 109.3277657, + -0.0294271 + ], + [ + 109.3272292, + -0.0298453 + ], + [ + 109.3270669, + -0.0299571 + ], + [ + 109.3269529, + -0.0299954 + ] + ] + }, + "id": "way/266152686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/267916283", + "highway": "residential", + "name": "Jalan Padat Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3783848, + -0.0442028 + ], + [ + 109.3783426, + -0.0441471 + ], + [ + 109.3783237, + -0.0441206 + ], + [ + 109.3781176, + -0.0438552 + ], + [ + 109.3779914, + -0.0436828 + ], + [ + 109.3777792, + -0.0434048 + ], + [ + 109.3776234, + -0.0432246 + ], + [ + 109.3774205, + -0.0429784 + ], + [ + 109.3772367, + -0.0427396 + ], + [ + 109.3771848, + -0.0426767 + ], + [ + 109.3769867, + -0.0424367 + ], + [ + 109.3768898, + -0.0423193 + ], + [ + 109.3768762, + -0.042301 + ], + [ + 109.3766707, + -0.042026 + ], + [ + 109.3765411, + -0.0418614 + ], + [ + 109.3764564, + -0.0417652 + ], + [ + 109.3761848, + -0.0414635 + ], + [ + 109.3759649, + -0.0412212 + ], + [ + 109.3757792, + -0.041017 + ], + [ + 109.3756997, + -0.0409239 + ], + [ + 109.3755162, + -0.0407494 + ], + [ + 109.3754075, + -0.040637 + ], + [ + 109.3752674, + -0.0404954 + ], + [ + 109.3751999, + -0.0404237 + ], + [ + 109.3750138, + -0.0402366 + ], + [ + 109.3746601, + -0.0398755 + ], + [ + 109.3744384, + -0.0396492 + ], + [ + 109.3743703, + -0.0395797 + ], + [ + 109.3741884, + -0.0393837 + ], + [ + 109.3739684, + -0.0391467 + ], + [ + 109.3738318, + -0.0389995 + ], + [ + 109.3737536, + -0.0389153 + ], + [ + 109.3736265, + -0.0387784 + ], + [ + 109.3732612, + -0.0383848 + ], + [ + 109.3730886, + -0.0381861 + ], + [ + 109.3730025, + -0.0380725 + ], + [ + 109.3728407, + -0.0379228 + ], + [ + 109.3727127, + -0.0377658 + ], + [ + 109.3725939, + -0.0376542 + ], + [ + 109.3724439, + -0.0374849 + ], + [ + 109.372401, + -0.0374365 + ], + [ + 109.3721563, + -0.03722 + ], + [ + 109.3721111, + -0.0371754 + ], + [ + 109.3718524, + -0.03694 + ], + [ + 109.3715103, + -0.0365934 + ], + [ + 109.3713793, + -0.0364946 + ], + [ + 109.3709724, + -0.0360962 + ] + ] + }, + "id": "way/267916283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/267916284", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3753908, + -0.0355359 + ], + [ + 109.3744808, + -0.0362661 + ], + [ + 109.3740852, + -0.0365666 + ], + [ + 109.3739351, + -0.0366982 + ], + [ + 109.3738765, + -0.0367575 + ], + [ + 109.3727127, + -0.0377658 + ] + ] + }, + "id": "way/267916284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/267916285", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3660375, + -0.030791 + ], + [ + 109.366342, + -0.0311456 + ], + [ + 109.366543, + -0.0313592 + ], + [ + 109.3666447, + -0.0314895 + ], + [ + 109.3668198, + -0.0316925 + ], + [ + 109.3669274, + -0.0318187 + ], + [ + 109.3669353, + -0.031828 + ], + [ + 109.3671342, + -0.032057 + ], + [ + 109.3674461, + -0.0324038 + ], + [ + 109.3677058, + -0.0326925 + ], + [ + 109.3678652, + -0.032877 + ], + [ + 109.3681131, + -0.0331529 + ], + [ + 109.3682656, + -0.0333124 + ], + [ + 109.3682962, + -0.0333449 + ], + [ + 109.3685051, + -0.0335669 + ], + [ + 109.3687139, + -0.0337902 + ], + [ + 109.3689324, + -0.0340181 + ], + [ + 109.3690831, + -0.0341722 + ], + [ + 109.3691664, + -0.0342568 + ], + [ + 109.3692979, + -0.0343927 + ], + [ + 109.3694268, + -0.0345333 + ], + [ + 109.3695016, + -0.034615 + ] + ] + }, + "id": "way/267916285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/267919853", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307444, + -0.0243504 + ], + [ + 109.3075503, + -0.0246673 + ], + [ + 109.3075544, + -0.024685 + ], + [ + 109.3075544, + -0.0246974 + ], + [ + 109.3075282, + -0.0247276 + ], + [ + 109.3075094, + -0.0247558 + ], + [ + 109.3075094, + -0.0247762 + ], + [ + 109.3075159, + -0.0248094 + ], + [ + 109.3077742, + -0.0257088 + ], + [ + 109.3083102, + -0.0274847 + ], + [ + 109.3083181, + -0.0275107 + ], + [ + 109.3083867, + -0.0278887 + ], + [ + 109.3083939, + -0.0279285 + ], + [ + 109.3080589, + -0.027952 + ], + [ + 109.3077093, + -0.028097 + ], + [ + 109.3075242, + -0.0281796 + ], + [ + 109.3074509, + -0.0282185 + ], + [ + 109.3072804, + -0.028293 + ], + [ + 109.3072043, + -0.0283319 + ], + [ + 109.3070627, + -0.0283927 + ], + [ + 109.3069033, + -0.028473 + ], + [ + 109.30676, + -0.0285317 + ], + [ + 109.3066336, + -0.0285974 + ], + [ + 109.3065896, + -0.0286151 + ], + [ + 109.3063722, + -0.028718 + ], + [ + 109.3062826, + -0.0287676 + ], + [ + 109.3060011, + -0.0289082 + ], + [ + 109.3059662, + -0.0289249 + ], + [ + 109.3053162, + -0.0292458 + ], + [ + 109.3048853, + -0.0294498 + ] + ] + }, + "id": "way/267919853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/267919854", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3078332, + -0.0304825 + ], + [ + 109.3077437, + -0.0298427 + ], + [ + 109.3076623, + -0.0294174 + ], + [ + 109.3074509, + -0.0282185 + ] + ] + }, + "id": "way/267919854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/267919855", + "highway": "residential", + "name": "Trijaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219813, + -0.0375171 + ], + [ + 109.3221158, + -0.0374062 + ], + [ + 109.3229497, + -0.0367266 + ], + [ + 109.3246769, + -0.0351979 + ] + ] + }, + "id": "way/267919855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397687", + "highway": "residential", + "name": "Gang Batas Kota" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079857, + -0.0660887 + ], + [ + 109.3062824, + -0.0650404 + ], + [ + 109.3056763, + -0.0646088 + ], + [ + 109.3052953, + -0.0643059 + ], + [ + 109.3049081, + -0.0640223 + ], + [ + 109.3045218, + -0.0637514 + ], + [ + 109.3040475, + -0.0633618 + ], + [ + 109.3039351, + -0.0632695 + ] + ] + }, + "id": "way/283397687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397689", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Sumber Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103114, + -0.0568295 + ], + [ + 109.3140646, + -0.0590656 + ] + ] + }, + "id": "way/283397689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397690", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198382, + -0.0641477 + ], + [ + 109.3184873, + -0.0632556 + ], + [ + 109.3169934, + -0.0622616 + ] + ] + }, + "id": "way/283397690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397691", + "highway": "residential", + "name": "Gang Madyosari II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238818, + -0.0544775 + ], + [ + 109.3238092, + -0.0545541 + ], + [ + 109.3237207, + -0.0546587 + ], + [ + 109.323556, + -0.0548774 + ], + [ + 109.3233911, + -0.0551458 + ], + [ + 109.3231743, + -0.0554972 + ], + [ + 109.322991, + -0.0557462 + ], + [ + 109.3227014, + -0.0561632 + ], + [ + 109.3224724, + -0.0564767 + ] + ] + }, + "id": "way/283397691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397692", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3158177, + -0.0587515 + ], + [ + 109.3173239, + -0.0596828 + ] + ] + }, + "id": "way/283397692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397693", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346773, + -0.0604843 + ], + [ + 109.3357564, + -0.0614257 + ], + [ + 109.3366853, + -0.062221 + ] + ] + }, + "id": "way/283397693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397694", + "highway": "residential", + "name": "Gang Usaha Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135631, + -0.0566052 + ], + [ + 109.3135726, + -0.0566261 + ], + [ + 109.3135735, + -0.05665 + ], + [ + 109.3135649, + -0.0566858 + ], + [ + 109.3135659, + -0.0567005 + ], + [ + 109.3135749, + -0.0567109 + ], + [ + 109.3136706, + -0.0567481 + ], + [ + 109.3152088, + -0.0575991 + ] + ] + }, + "id": "way/283397694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397695", + "highway": "residential", + "name": "Gang Sinar Usaha" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118223, + -0.0553212 + ], + [ + 109.3128021, + -0.0559058 + ], + [ + 109.3132977, + -0.0561742 + ], + [ + 109.3137012, + -0.056405 + ], + [ + 109.3154097, + -0.057352 + ] + ] + }, + "id": "way/283397695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213707, + -0.0520845 + ], + [ + 109.322167, + -0.0507501 + ] + ] + }, + "id": "way/283397696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397697", + "highway": "residential", + "name": "Gang Swakarya 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148548, + -0.0523102 + ], + [ + 109.3156406, + -0.0528319 + ], + [ + 109.3166913, + -0.0534982 + ], + [ + 109.317958, + -0.0543051 + ] + ] + }, + "id": "way/283397697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397698", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189806, + -0.0654419 + ], + [ + 109.3161566, + -0.063522 + ], + [ + 109.3157969, + -0.063243 + ] + ] + }, + "id": "way/283397698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397699", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3393572, + -0.0553592 + ], + [ + 109.3397097, + -0.0556276 + ], + [ + 109.3418255, + -0.0570969 + ] + ] + }, + "id": "way/283397699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397700", + "highway": "residential", + "lanes": "1", + "name": "Gang Punama Indah 1", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3215585, + -0.0615327 + ], + [ + 109.3206382, + -0.0609586 + ], + [ + 109.3186597, + -0.0597194 + ] + ] + }, + "id": "way/283397700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397701", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265887, + -0.060448 + ], + [ + 109.3265766, + -0.0604 + ], + [ + 109.3265503, + -0.0603179 + ], + [ + 109.3263224, + -0.0597482 + ], + [ + 109.3261273, + -0.0592433 + ], + [ + 109.3261179, + -0.0592245 + ], + [ + 109.3261152, + -0.0592084 + ], + [ + 109.3261287, + -0.0591943 + ], + [ + 109.3262286, + -0.0591541 + ] + ] + }, + "id": "way/283397701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397703", + "highway": "residential", + "name": "Gang Usaha Bersama 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149994, + -0.0578605 + ], + [ + 109.3139507, + -0.0572974 + ], + [ + 109.3131241, + -0.0568092 + ], + [ + 109.3126488, + -0.0565506 + ], + [ + 109.3119324, + -0.0561246 + ], + [ + 109.3114698, + -0.0558523 + ], + [ + 109.311378, + -0.0557622 + ] + ] + }, + "id": "way/283397703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397704", + "highway": "residential", + "name": "Gang Wonodadi 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3173018, + -0.0591934 + ], + [ + 109.3175697, + -0.0588664 + ], + [ + 109.317806, + -0.0585534 + ], + [ + 109.3182436, + -0.0579739 + ], + [ + 109.3184407, + -0.0577414 + ], + [ + 109.3189622, + -0.0570804 + ], + [ + 109.3190449, + -0.0569812 + ], + [ + 109.3192523, + -0.0567095 + ], + [ + 109.3194719, + -0.0564466 + ], + [ + 109.3195868, + -0.0563136 + ], + [ + 109.3196736, + -0.0562024 + ], + [ + 109.3198536, + -0.0559717 + ], + [ + 109.3205196, + -0.0551183 + ] + ] + }, + "id": "way/283397704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397707", + "highway": "residential", + "name": "Gang Bersinar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151703, + -0.0631937 + ], + [ + 109.3159867, + -0.0621851 + ] + ] + }, + "id": "way/283397707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397708", + "highway": "residential", + "name": "Gang Perintis 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233911, + -0.0551458 + ], + [ + 109.3235449, + -0.0552959 + ], + [ + 109.323878, + -0.0556327 + ], + [ + 109.3246674, + -0.0563161 + ], + [ + 109.3252492, + -0.0568692 + ] + ] + }, + "id": "way/283397708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397709", + "highway": "residential", + "name": "Gang Sumber Agung 1 Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179702, + -0.0596206 + ], + [ + 109.3175876, + -0.0593711 + ], + [ + 109.3173018, + -0.0591934 + ], + [ + 109.3165877, + -0.0587489 + ], + [ + 109.3163042, + -0.0585938 + ], + [ + 109.3162112, + -0.0585278 + ], + [ + 109.3161298, + -0.0584751 + ], + [ + 109.3160705, + -0.0584319 + ], + [ + 109.3155365, + -0.0581123 + ], + [ + 109.3150394, + -0.0578049 + ] + ] + }, + "id": "way/283397709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397710", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176629, + -0.0512644 + ], + [ + 109.3167187, + -0.0505077 + ] + ] + }, + "id": "way/283397710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397711", + "highway": "residential", + "name": "Gang Kapuas Melawi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3177769, + -0.0545125 + ], + [ + 109.3168942, + -0.0539133 + ], + [ + 109.3156391, + -0.0531553 + ], + [ + 109.3146799, + -0.0524898 + ] + ] + }, + "id": "way/283397711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397712", + "highway": "residential", + "name": "Purnama Madya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304276, + -0.0520885 + ], + [ + 109.3288732, + -0.0508607 + ], + [ + 109.3274271, + -0.0496673 + ] + ] + }, + "id": "way/283397712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397713", + "highway": "residential", + "name": "Gang Wakaf" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244641, + -0.0632878 + ], + [ + 109.3247149, + -0.0628789 + ], + [ + 109.3248285, + -0.0627087 + ], + [ + 109.3248828, + -0.0626054 + ], + [ + 109.3249478, + -0.0624847 + ], + [ + 109.3250531, + -0.0622581 + ], + [ + 109.3251664, + -0.0619939 + ], + [ + 109.3252194, + -0.0618853 + ], + [ + 109.3252482, + -0.0618423 + ], + [ + 109.3255854, + -0.0614047 + ] + ] + }, + "id": "way/283397713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397715", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242147, + -0.05355 + ], + [ + 109.324879, + -0.0525878 + ], + [ + 109.325766, + -0.0512177 + ], + [ + 109.325906, + -0.0509646 + ], + [ + 109.3260192, + -0.0508069 + ], + [ + 109.326089, + -0.0507478 + ], + [ + 109.3261883, + -0.0506461 + ], + [ + 109.3268893, + -0.0496902 + ] + ] + }, + "id": "way/283397715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397716", + "highway": "residential", + "name": "Gang Usaha Maju" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098634, + -0.0572639 + ], + [ + 109.3105074, + -0.0576525 + ], + [ + 109.311051, + -0.0579626 + ], + [ + 109.3115003, + -0.058239 + ], + [ + 109.3121718, + -0.0586346 + ], + [ + 109.3125698, + -0.0588732 + ], + [ + 109.3136909, + -0.0595342 + ] + ] + }, + "id": "way/283397716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397717", + "highway": "residential", + "name": "Gang Rukun" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066567, + -0.0667673 + ], + [ + 109.3057459, + -0.0660641 + ], + [ + 109.3057348, + -0.0660527 + ], + [ + 109.3057328, + -0.0660387 + ], + [ + 109.3058753, + -0.0658144 + ], + [ + 109.3058878, + -0.0657904 + ], + [ + 109.3058897, + -0.0657824 + ], + [ + 109.3058896, + -0.0657721 + ], + [ + 109.3058876, + -0.0657645 + ], + [ + 109.3058831, + -0.0657562 + ], + [ + 109.3058763, + -0.065749 + ], + [ + 109.3058694, + -0.0657408 + ], + [ + 109.3058485, + -0.0657228 + ], + [ + 109.3046147, + -0.0647921 + ], + [ + 109.3033811, + -0.0638175 + ] + ] + }, + "id": "way/283397717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397719", + "highway": "residential", + "name": "Gang Remaja 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202197, + -0.0548275 + ], + [ + 109.3206814, + -0.0541619 + ], + [ + 109.321286, + -0.0532013 + ], + [ + 109.3214662, + -0.0529149 + ], + [ + 109.3218831, + -0.0522525 + ] + ] + }, + "id": "way/283397719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397720", + "highway": "residential", + "name": "Gang Sinar Bersama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147128, + -0.0582247 + ], + [ + 109.3137985, + -0.0577131 + ], + [ + 109.3128424, + -0.0571525 + ], + [ + 109.3120316, + -0.0566972 + ], + [ + 109.3115113, + -0.0564021 + ], + [ + 109.3111575, + -0.0562326 + ], + [ + 109.3110159, + -0.0561118 + ] + ] + }, + "id": "way/283397720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300667, + -0.0654477 + ], + [ + 109.3290995, + -0.064126 + ], + [ + 109.3285326, + -0.0632793 + ], + [ + 109.3279173, + -0.0624545 + ] + ] + }, + "id": "way/283397721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397723", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200153, + -0.063856 + ], + [ + 109.3186675, + -0.0629538 + ], + [ + 109.317162, + -0.0619569 + ] + ] + }, + "id": "way/283397723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397724", + "highway": "residential", + "name": "Jalan Komplek Purnama Permai I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329157, + -0.0595813 + ], + [ + 109.3283402, + -0.0579886 + ], + [ + 109.3278544, + -0.0570596 + ], + [ + 109.3274731, + -0.0563378 + ], + [ + 109.3271687, + -0.0557343 + ], + [ + 109.3269763, + -0.0553655 + ] + ] + }, + "id": "way/283397724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397725", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323948, + -0.0614418 + ], + [ + 109.331344, + -0.0599636 + ] + ] + }, + "id": "way/283397725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397726", + "highway": "residential", + "name": "Blok A - B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257888, + -0.0611242 + ], + [ + 109.3264485, + -0.062185 + ], + [ + 109.3266242, + -0.0624881 + ], + [ + 109.3270796, + -0.0632738 + ] + ] + }, + "id": "way/283397726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397728", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112478, + -0.0586465 + ], + [ + 109.3118821, + -0.0590113 + ], + [ + 109.3119042, + -0.059023 + ], + [ + 109.311921, + -0.0590247 + ], + [ + 109.3119371, + -0.0590153 + ], + [ + 109.3121718, + -0.0586346 + ] + ] + }, + "id": "way/283397728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397729", + "highway": "residential", + "name": "Gang Usaha Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131929, + -0.053971 + ], + [ + 109.3149406, + -0.0549588 + ], + [ + 109.3165792, + -0.0559091 + ] + ] + }, + "id": "way/283397729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397730", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178897, + -0.0609819 + ], + [ + 109.3180942, + -0.0606967 + ], + [ + 109.3181795, + -0.06057 + ], + [ + 109.3182989, + -0.0603928 + ], + [ + 109.3183208, + -0.0603583 + ], + [ + 109.318343, + -0.0603234 + ], + [ + 109.3184857, + -0.0600479 + ], + [ + 109.3186597, + -0.0597194 + ] + ] + }, + "id": "way/283397730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397731", + "highway": "residential", + "name": "Gang Wonodadi 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186597, + -0.0597194 + ], + [ + 109.3184254, + -0.0595806 + ], + [ + 109.3183824, + -0.0595491 + ], + [ + 109.3183684, + -0.0595306 + ], + [ + 109.3183576, + -0.0595105 + ], + [ + 109.3183526, + -0.0594951 + ], + [ + 109.3183513, + -0.0594783 + ], + [ + 109.3183529, + -0.0594615 + ], + [ + 109.3183613, + -0.0594364 + ], + [ + 109.3183784, + -0.0594042 + ], + [ + 109.3185308, + -0.0592213 + ], + [ + 109.3191136, + -0.0585871 + ], + [ + 109.3192702, + -0.0584193 + ], + [ + 109.3195123, + -0.0581182 + ], + [ + 109.319704, + -0.0578635 + ], + [ + 109.3199533, + -0.0574872 + ], + [ + 109.3202151, + -0.057078 + ], + [ + 109.3202931, + -0.0569589 + ], + [ + 109.3203491, + -0.0568795 + ], + [ + 109.3203611, + -0.0568657 + ], + [ + 109.3205503, + -0.0566214 + ], + [ + 109.3206348, + -0.0565269 + ], + [ + 109.3208176, + -0.0563361 + ], + [ + 109.3212623, + -0.0558059 + ] + ] + }, + "id": "way/283397731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397732", + "highway": "residential", + "name": "Gang Mega Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098773, + -0.0663998 + ], + [ + 109.3102102, + -0.0660452 + ], + [ + 109.3108683, + -0.0653103 + ], + [ + 109.3111853, + -0.0649616 + ], + [ + 109.3115791, + -0.0645271 + ], + [ + 109.3125388, + -0.0634682 + ] + ] + }, + "id": "way/283397732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397733", + "highway": "residential", + "name": "Jalan Krakatau" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207354, + -0.04752 + ], + [ + 109.3218793, + -0.0486863 + ] + ] + }, + "id": "way/283397733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397734", + "highway": "residential", + "name": "Gang Dinasti" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260113, + -0.0606219 + ], + [ + 109.3260562, + -0.0607018 + ], + [ + 109.3262016, + -0.0606237 + ], + [ + 109.3264212, + -0.0605154 + ], + [ + 109.3265887, + -0.060448 + ], + [ + 109.3266356, + -0.0605448 + ], + [ + 109.3266664, + -0.0605897 + ], + [ + 109.3267006, + -0.0606333 + ], + [ + 109.3269125, + -0.0608835 + ], + [ + 109.3271117, + -0.061147 + ], + [ + 109.3280384, + -0.0623369 + ] + ] + }, + "id": "way/283397734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397735", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229268, + -0.0447238 + ], + [ + 109.3234089, + -0.0452475 + ], + [ + 109.3240274, + -0.0458893 + ], + [ + 109.3247245, + -0.0465779 + ] + ] + }, + "id": "way/283397735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397736", + "highway": "unclassified", + "name": "Jalan Kesehatan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130226, + -0.0603418 + ], + [ + 109.3133909, + -0.0599105 + ], + [ + 109.3134234, + -0.0598697 + ], + [ + 109.3136909, + -0.0595342 + ], + [ + 109.3139386, + -0.0592138 + ], + [ + 109.3140646, + -0.0590656 + ], + [ + 109.314173, + -0.0589297 + ], + [ + 109.3143301, + -0.0587326 + ], + [ + 109.31447, + -0.0585571 + ], + [ + 109.3147128, + -0.0582247 + ], + [ + 109.3148142, + -0.058088 + ], + [ + 109.3149994, + -0.0578605 + ], + [ + 109.3150394, + -0.0578049 + ], + [ + 109.3152088, + -0.0575991 + ], + [ + 109.3154097, + -0.057352 + ], + [ + 109.3155581, + -0.0571733 + ], + [ + 109.3156388, + -0.0570556 + ], + [ + 109.3156887, + -0.0569845 + ], + [ + 109.3160577, + -0.0565297 + ], + [ + 109.3160963, + -0.0564779 + ], + [ + 109.3162095, + -0.0563191 + ], + [ + 109.3162727, + -0.056243 + ], + [ + 109.316428, + -0.0560738 + ], + [ + 109.3165792, + -0.0559091 + ], + [ + 109.3168635, + -0.0555618 + ], + [ + 109.3171115, + -0.055283 + ], + [ + 109.317352, + -0.055022 + ], + [ + 109.3174163, + -0.054953 + ], + [ + 109.3176136, + -0.0547203 + ], + [ + 109.317759, + -0.0545375 + ], + [ + 109.3177769, + -0.0545125 + ], + [ + 109.317958, + -0.0543051 + ], + [ + 109.3179897, + -0.0542716 + ], + [ + 109.3182706, + -0.0539357 + ], + [ + 109.3184583, + -0.0536943 + ], + [ + 109.3185137, + -0.053614 + ], + [ + 109.318712, + -0.0533217 + ], + [ + 109.3187567, + -0.0532558 + ] + ] + }, + "id": "way/283397736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397737", + "highway": "residential", + "name": "Gang Purnama Indah 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206956, + -0.0627661 + ], + [ + 109.3188631, + -0.0615984 + ], + [ + 109.3186191, + -0.0614507 + ], + [ + 109.3183576, + -0.0612992 + ], + [ + 109.3179042, + -0.0609957 + ], + [ + 109.3178897, + -0.0609819 + ], + [ + 109.3172531, + -0.0605312 + ] + ] + }, + "id": "way/283397737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397739", + "highway": "residential", + "name": "Gang Wonoyoso 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255185, + -0.0504617 + ], + [ + 109.3251993, + -0.0502901 + ], + [ + 109.325162, + -0.0502682 + ], + [ + 109.3249346, + -0.0501347 + ], + [ + 109.3244398, + -0.0498317 + ], + [ + 109.324417, + -0.0498177 + ], + [ + 109.3241629, + -0.0496763 + ], + [ + 109.3238072, + -0.0494747 + ], + [ + 109.3233713, + -0.0492816 + ], + [ + 109.3230292, + -0.049131 + ], + [ + 109.3227544, + -0.048961 + ] + ] + }, + "id": "way/283397739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397740", + "highway": "residential", + "name": "Gang Pemangkat 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3168877, + -0.0503427 + ], + [ + 109.3181688, + -0.0512526 + ], + [ + 109.3188202, + -0.051723 + ], + [ + 109.3189393, + -0.0518099 + ], + [ + 109.3191033, + -0.0519292 + ], + [ + 109.319555, + -0.0522656 + ] + ] + }, + "id": "way/283397740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397741", + "highway": "residential", + "name": "Gang Madyosari 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227834, + -0.0526979 + ], + [ + 109.3226036, + -0.0529946 + ], + [ + 109.3217649, + -0.0543785 + ], + [ + 109.3216344, + -0.0545663 + ], + [ + 109.3215801, + -0.0546427 + ], + [ + 109.3210052, + -0.0555563 + ] + ] + }, + "id": "way/283397741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397742", + "highway": "residential", + "lanes": "1", + "name": "Gang Purnama Indah 4", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3180942, + -0.0606967 + ], + [ + 109.3188847, + -0.0612784 + ], + [ + 109.3198359, + -0.0619097 + ], + [ + 109.3208268, + -0.0625872 + ] + ] + }, + "id": "way/283397742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397746", + "highway": "residential", + "name": "Gang Purnama Agung VII" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290786, + -0.0613254 + ], + [ + 109.3282401, + -0.0601128 + ], + [ + 109.3272451, + -0.0582153 + ], + [ + 109.3267757, + -0.0573061 + ], + [ + 109.3262983, + -0.0563539 + ], + [ + 109.3262011, + -0.0561755 + ] + ] + }, + "id": "way/283397746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397747", + "highway": "residential", + "name": "Gang Sekadim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144195, + -0.0527574 + ], + [ + 109.3150759, + -0.0532076 + ], + [ + 109.3159369, + -0.0537307 + ], + [ + 109.3176136, + -0.0547203 + ] + ] + }, + "id": "way/283397747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397749", + "highway": "residential", + "name": "Gang Madyosari 1A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217648, + -0.0550517 + ], + [ + 109.321815, + -0.0550771 + ], + [ + 109.3218403, + -0.0550849 + ], + [ + 109.3218512, + -0.0550844 + ], + [ + 109.3218629, + -0.055079 + ], + [ + 109.3218715, + -0.0550735 + ], + [ + 109.3218819, + -0.0550635 + ], + [ + 109.3218914, + -0.0550513 + ], + [ + 109.3219672, + -0.0549472 + ], + [ + 109.3221502, + -0.0546907 + ], + [ + 109.3225888, + -0.0539506 + ], + [ + 109.3228507, + -0.0534722 + ], + [ + 109.3229722, + -0.0532503 + ], + [ + 109.3231798, + -0.0529168 + ] + ] + }, + "id": "way/283397749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397750", + "highway": "residential", + "name": "Gang Nurul Hasanah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185308, + -0.0592213 + ], + [ + 109.3217672, + -0.0611801 + ] + ] + }, + "id": "way/283397750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397751", + "highway": "unclassified", + "name": "Jalan Tani Makmur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316382, + -0.050851 + ], + [ + 109.3164269, + -0.0508935 + ], + [ + 109.3166719, + -0.051125 + ], + [ + 109.316869, + -0.0513194 + ], + [ + 109.3170856, + -0.0515494 + ], + [ + 109.3173907, + -0.0518598 + ], + [ + 109.3175042, + -0.0519722 + ], + [ + 109.3179003, + -0.0523815 + ], + [ + 109.3181441, + -0.0526266 + ], + [ + 109.3183187, + -0.0528201 + ], + [ + 109.3185124, + -0.053016 + ], + [ + 109.3186377, + -0.0531389 + ], + [ + 109.3187567, + -0.0532558 + ] + ] + }, + "id": "way/283397751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397753", + "highway": "residential", + "name": "Jalan Gunung Kota" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068525, + -0.0637096 + ], + [ + 109.3064151, + -0.063448 + ], + [ + 109.3059555, + -0.0631675 + ], + [ + 109.3058017, + -0.0630702 + ], + [ + 109.3055454, + -0.0629166 + ], + [ + 109.3051256, + -0.0626792 + ], + [ + 109.3047583, + -0.0624456 + ] + ] + }, + "id": "way/283397753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397754", + "highway": "residential", + "name": "Gang Madyosari 3", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227014, + -0.0561632 + ], + [ + 109.3229503, + -0.0563909 + ], + [ + 109.3244358, + -0.0576587 + ] + ] + }, + "id": "way/283397754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397755", + "highway": "residential", + "name": "Gang Wonodadi 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3165877, + -0.0587489 + ], + [ + 109.3168901, + -0.0584166 + ], + [ + 109.3172432, + -0.0580034 + ], + [ + 109.3175725, + -0.0575599 + ], + [ + 109.3176266, + -0.057485 + ], + [ + 109.3177892, + -0.0572481 + ], + [ + 109.3180368, + -0.0569581 + ], + [ + 109.3182175, + -0.056728 + ], + [ + 109.3182368, + -0.0567007 + ], + [ + 109.3185093, + -0.0563404 + ], + [ + 109.3187169, + -0.056069 + ], + [ + 109.3188362, + -0.055913 + ], + [ + 109.3188819, + -0.0558534 + ], + [ + 109.3189542, + -0.0557588 + ], + [ + 109.319526, + -0.0550131 + ], + [ + 109.3199062, + -0.0545302 + ] + ] + }, + "id": "way/283397755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397757", + "highway": "residential", + "name": "Gang Bina Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121045, + -0.0550378 + ], + [ + 109.3131984, + -0.0556801 + ], + [ + 109.3156388, + -0.0570556 + ] + ] + }, + "id": "way/283397757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397758", + "highway": "residential", + "name": "Jalan Perintis", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207039, + -0.0518585 + ], + [ + 109.321133, + -0.052012 + ], + [ + 109.3213707, + -0.0520845 + ], + [ + 109.3214747, + -0.0521173 + ], + [ + 109.3218831, + -0.0522525 + ], + [ + 109.3220965, + -0.052351 + ], + [ + 109.3223257, + -0.0524659 + ], + [ + 109.322719, + -0.0526631 + ], + [ + 109.3227834, + -0.0526979 + ], + [ + 109.3231798, + -0.0529168 + ], + [ + 109.3233544, + -0.0530095 + ], + [ + 109.3237307, + -0.0532349 + ], + [ + 109.3242147, + -0.05355 + ], + [ + 109.3242866, + -0.0535884 + ], + [ + 109.3244416, + -0.0536495 + ], + [ + 109.3245237, + -0.0536847 + ], + [ + 109.3245904, + -0.0537233 + ], + [ + 109.3246795, + -0.0537865 + ], + [ + 109.3247269, + -0.0538195 + ], + [ + 109.3250763, + -0.0541189 + ], + [ + 109.3253872, + -0.0543794 + ], + [ + 109.3259347, + -0.0548381 + ], + [ + 109.3266535, + -0.0554507 + ] + ] + }, + "id": "way/283397758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397759", + "highway": "residential", + "name": "Jalan Komplek Purnama Permai II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281408, + -0.0581169 + ], + [ + 109.3276493, + -0.0571961 + ], + [ + 109.3271271, + -0.0562412 + ], + [ + 109.3267852, + -0.0555566 + ] + ] + }, + "id": "way/283397759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397760", + "highway": "residential", + "name": "Gamg III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244157, + -0.0521958 + ], + [ + 109.324738, + -0.0517217 + ], + [ + 109.3248982, + -0.0514861 + ], + [ + 109.3249592, + -0.0513965 + ], + [ + 109.3255185, + -0.0504617 + ], + [ + 109.3255413, + -0.0504282 + ], + [ + 109.3256459, + -0.0502884 + ], + [ + 109.3263658, + -0.0493269 + ] + ] + }, + "id": "way/283397760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397761", + "highway": "residential", + "name": "Gang Perintis 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237948, + -0.0543953 + ], + [ + 109.3238818, + -0.0544775 + ], + [ + 109.3247006, + -0.0552375 + ], + [ + 109.3258373, + -0.056292 + ] + ] + }, + "id": "way/283397761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397762", + "highway": "residential", + "name": "Gang Tengah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307089, + -0.0612303 + ], + [ + 109.3069458, + -0.0611401 + ], + [ + 109.3067557, + -0.0610206 + ], + [ + 109.3065888, + -0.0609337 + ], + [ + 109.3064681, + -0.060872 + ], + [ + 109.3063761, + -0.0608097 + ] + ] + }, + "id": "way/283397762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397764", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348866, + -0.0601999 + ], + [ + 109.3359853, + -0.0611652 + ], + [ + 109.3369212, + -0.0619766 + ], + [ + 109.3372671, + -0.0622593 + ], + [ + 109.3372892, + -0.0622774 + ] + ] + }, + "id": "way/283397764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397765", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239246, + -0.0581592 + ], + [ + 109.323951, + -0.0581885 + ] + ] + }, + "id": "way/283397765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397766", + "highway": "residential", + "name": "Gang Teladan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128823, + -0.0542626 + ], + [ + 109.3147273, + -0.0553366 + ], + [ + 109.3162727, + -0.056243 + ] + ] + }, + "id": "way/283397766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397767", + "highway": "residential", + "name": "Gang Purwosari 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223709, + -0.0508875 + ], + [ + 109.3233713, + -0.0492816 + ] + ] + }, + "id": "way/283397767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397768", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3298891, + -0.0564964 + ], + [ + 109.3302412, + -0.0572175 + ], + [ + 109.330638, + -0.0580649 + ], + [ + 109.3312196, + -0.0593201 + ], + [ + 109.3314856, + -0.0598942 + ] + ] + }, + "id": "way/283397768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397769", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188202, + -0.051723 + ], + [ + 109.3186233, + -0.0520063 + ], + [ + 109.3184542, + -0.052232 + ], + [ + 109.318442, + -0.0522487 + ], + [ + 109.3181441, + -0.0526266 + ] + ] + }, + "id": "way/283397769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397770", + "highway": "residential", + "name": "Gang Pemangkat Dalam II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179286, + -0.0515272 + ], + [ + 109.3186233, + -0.0520063 + ], + [ + 109.3190105, + -0.0522734 + ], + [ + 109.3193626, + -0.0525163 + ] + ] + }, + "id": "way/283397770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397771", + "highway": "residential", + "name": "Jalan Kurnia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096639, + -0.0642283 + ], + [ + 109.3090014, + -0.0638043 + ], + [ + 109.3085989, + -0.0635861 + ], + [ + 109.3084453, + -0.0635028 + ], + [ + 109.3079835, + -0.0632268 + ], + [ + 109.3069231, + -0.0625672 + ], + [ + 109.3064734, + -0.0622854 + ], + [ + 109.3055594, + -0.061734 + ], + [ + 109.3055081, + -0.0616922 + ] + ] + }, + "id": "way/283397771" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397772", + "highway": "residential", + "name": "Gang Mekar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.327672, + -0.0486262 + ], + [ + 109.3277277, + -0.0486104 + ], + [ + 109.3278647, + -0.0485715 + ], + [ + 109.3281624, + -0.0484883 + ], + [ + 109.3296998, + -0.0480037 + ], + [ + 109.3306891, + -0.0476984 + ], + [ + 109.3330464, + -0.0469708 + ] + ] + }, + "id": "way/283397772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397773", + "highway": "residential", + "name": "Surya Purnama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331069, + -0.0515154 + ], + [ + 109.3295921, + -0.0502974 + ], + [ + 109.3291268, + -0.0499293 + ], + [ + 109.3281741, + -0.0491755 + ] + ] + }, + "id": "way/283397773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397774", + "highway": "residential", + "name": "Gang Karya Tani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305039, + -0.060429 + ], + [ + 109.3302713, + -0.0599822 + ], + [ + 109.3300159, + -0.0594545 + ], + [ + 109.3297823, + -0.0590102 + ], + [ + 109.3294409, + -0.0583609 + ], + [ + 109.3293647, + -0.058216 + ], + [ + 109.3292534, + -0.0580162 + ], + [ + 109.3288982, + -0.0574279 + ], + [ + 109.3287836, + -0.0572382 + ], + [ + 109.3284605, + -0.0567093 + ], + [ + 109.3282374, + -0.0563213 + ] + ] + }, + "id": "way/283397774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397775", + "highway": "residential", + "name": "Jalan Karya Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287836, + -0.0572382 + ], + [ + 109.3292979, + -0.0568924 + ], + [ + 109.3296654, + -0.0566385 + ], + [ + 109.3298891, + -0.0564964 + ], + [ + 109.330348, + -0.0561966 + ], + [ + 109.3303983, + -0.0561713 + ], + [ + 109.3307448, + -0.0560082 + ], + [ + 109.3309792, + -0.0558919 + ], + [ + 109.3311336, + -0.0558214 + ], + [ + 109.3313359, + -0.055723 + ], + [ + 109.331754, + -0.0555197 + ], + [ + 109.3320033, + -0.0553985 + ], + [ + 109.3321157, + -0.0553426 + ], + [ + 109.3323755, + -0.0552182 + ], + [ + 109.3325178, + -0.0551489 + ], + [ + 109.332919, + -0.0549525 + ], + [ + 109.3331055, + -0.0548636 + ], + [ + 109.3331767, + -0.0548296 + ], + [ + 109.3333103, + -0.054767 + ], + [ + 109.3335121, + -0.0546724 + ], + [ + 109.3336661, + -0.0546002 + ], + [ + 109.333712, + -0.0545787 + ], + [ + 109.3340097, + -0.0544361 + ], + [ + 109.3343165, + -0.0543117 + ], + [ + 109.334407, + -0.054266 + ], + [ + 109.3347254, + -0.0541191 + ], + [ + 109.3350213, + -0.0539517 + ], + [ + 109.3351589, + -0.0538706 + ], + [ + 109.3352785, + -0.0537961 + ], + [ + 109.3353991, + -0.0537291 + ], + [ + 109.3355292, + -0.0536648 + ], + [ + 109.3359623, + -0.053428 + ], + [ + 109.3360788, + -0.053366 + ], + [ + 109.3362135, + -0.053306 + ], + [ + 109.3364836, + -0.0532018 + ], + [ + 109.3366717, + -0.053128 + ], + [ + 109.3371603, + -0.0529458 + ], + [ + 109.3374359, + -0.0528364 + ], + [ + 109.3380645, + -0.0525377 + ], + [ + 109.3382124, + -0.0524565 + ], + [ + 109.3383753, + -0.0523598 + ], + [ + 109.3385466, + -0.0522478 + ], + [ + 109.3387295, + -0.0521351 + ], + [ + 109.3388601, + -0.0520536 + ], + [ + 109.3390142, + -0.0519501 + ], + [ + 109.3394077, + -0.0516403 + ], + [ + 109.3395061, + -0.0515668 + ], + [ + 109.3396765, + -0.0514518 + ], + [ + 109.3397657, + -0.0513995 + ], + [ + 109.3399659, + -0.05131 + ], + [ + 109.3402046, + -0.0512347 + ], + [ + 109.3403108, + -0.0511967 + ], + [ + 109.3406279, + -0.0511236 + ], + [ + 109.3407789, + -0.0510521 + ], + [ + 109.3408027, + -0.0510362 + ], + [ + 109.3408166, + -0.0510141 + ] + ] + }, + "id": "way/283397775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397776", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265927, + -0.053392 + ], + [ + 109.326655, + -0.0533833 + ], + [ + 109.3267013, + -0.053384 + ], + [ + 109.3267355, + -0.0533961 + ], + [ + 109.326771, + -0.0534148 + ], + [ + 109.3268829, + -0.0534944 + ], + [ + 109.3278788, + -0.0543228 + ] + ] + }, + "id": "way/283397776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397778", + "highway": "residential", + "name": "Gang Nirbaya 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113357, + -0.0610409 + ], + [ + 109.312063, + -0.0597763 + ] + ] + }, + "id": "way/283397778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397779", + "highway": "residential", + "name": "Gang Uray Hamid" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171154, + -0.0501151 + ], + [ + 109.3185481, + -0.0511035 + ], + [ + 109.3197924, + -0.0519446 + ] + ] + }, + "id": "way/283397779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397780", + "highway": "residential", + "name": "Gang Selamat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160577, + -0.0565297 + ], + [ + 109.3159986, + -0.0564941 + ], + [ + 109.3157397, + -0.0563583 + ], + [ + 109.3157248, + -0.0563505 + ], + [ + 109.3147177, + -0.0557986 + ], + [ + 109.3141703, + -0.0554844 + ], + [ + 109.3140916, + -0.0554392 + ], + [ + 109.3135317, + -0.0551505 + ], + [ + 109.3125553, + -0.0546036 + ] + ] + }, + "id": "way/283397780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397781", + "highway": "residential", + "name": "Gang Eka Daya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141752, + -0.0530117 + ], + [ + 109.3144191, + -0.0531823 + ], + [ + 109.314734, + -0.0533786 + ], + [ + 109.3174163, + -0.054953 + ] + ] + }, + "id": "way/283397781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397782", + "highway": "residential", + "name": "Gang Kencana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3177018, + -0.0495431 + ], + [ + 109.3183161, + -0.0500004 + ], + [ + 109.3191838, + -0.0506166 + ], + [ + 109.3198582, + -0.0510844 + ] + ] + }, + "id": "way/283397782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397783", + "highway": "residential", + "name": "Gang Al Muchlisin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3167514, + -0.0629551 + ], + [ + 109.318241, + -0.0639566 + ], + [ + 109.319458, + -0.0647512 + ] + ] + }, + "id": "way/283397783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397784", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191136, + -0.0585871 + ], + [ + 109.3191433, + -0.0586063 + ], + [ + 109.3191729, + -0.0586254 + ], + [ + 109.3211644, + -0.0598242 + ], + [ + 109.3221793, + -0.0604482 + ] + ] + }, + "id": "way/283397784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397786", + "highway": "residential", + "name": "Gang Purnma Indah 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179338, + -0.0596673 + ], + [ + 109.3184857, + -0.0600479 + ], + [ + 109.3213174, + -0.0618896 + ] + ] + }, + "id": "way/283397786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397788", + "highway": "unclassified", + "name": "Jalan Harapan Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072444, + -0.0599279 + ], + [ + 109.3073715, + -0.0600082 + ], + [ + 109.307408, + -0.0600313 + ], + [ + 109.3076785, + -0.0602022 + ], + [ + 109.308079, + -0.0604383 + ], + [ + 109.3088005, + -0.0608638 + ], + [ + 109.3090533, + -0.0610128 + ], + [ + 109.3092147, + -0.0611114 + ], + [ + 109.3098291, + -0.0614873 + ], + [ + 109.3102749, + -0.0617512 + ], + [ + 109.3107627, + -0.0620406 + ], + [ + 109.3111842, + -0.0622987 + ], + [ + 109.3112182, + -0.0623171 + ], + [ + 109.3112407, + -0.0623302 + ], + [ + 109.311244, + -0.0625091 + ], + [ + 109.3112994, + -0.0625967 + ], + [ + 109.3113906, + -0.0626718 + ], + [ + 109.3116184, + -0.0628483 + ], + [ + 109.3119796, + -0.0631093 + ], + [ + 109.3125388, + -0.0634682 + ] + ] + }, + "id": "way/283397788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397789", + "highway": "residential", + "name": "Gang Sambas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188002, + -0.0532935 + ], + [ + 109.318991, + -0.0530307 + ], + [ + 109.3193626, + -0.0525163 + ], + [ + 109.319555, + -0.0522656 + ], + [ + 109.3197924, + -0.0519446 + ], + [ + 109.320149, + -0.0514501 + ] + ] + }, + "id": "way/283397789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397791", + "highway": "residential", + "name": "Gang Swakarya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3157385, + -0.0514466 + ], + [ + 109.3170673, + -0.0523945 + ], + [ + 109.3182899, + -0.0532544 + ], + [ + 109.3182976, + -0.0532593 + ], + [ + 109.3183015, + -0.0532606 + ], + [ + 109.3183075, + -0.0532613 + ], + [ + 109.3183172, + -0.0532603 + ], + [ + 109.318327, + -0.0532574 + ], + [ + 109.3183348, + -0.0532539 + ], + [ + 109.3183435, + -0.053248 + ], + [ + 109.3183752, + -0.0532101 + ], + [ + 109.3185124, + -0.053016 + ] + ] + }, + "id": "way/283397791" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397792", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304449, + -0.0641857 + ], + [ + 109.3300956, + -0.0636984 + ], + [ + 109.3297743, + -0.0632308 + ], + [ + 109.3297771, + -0.0632062 + ], + [ + 109.3297872, + -0.0631841 + ], + [ + 109.3297984, + -0.0631557 + ], + [ + 109.329651, + -0.0629384 + ], + [ + 109.3292246, + -0.062303 + ], + [ + 109.3287876, + -0.061622 + ] + ] + }, + "id": "way/283397792" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397793", + "highway": "residential", + "name": "Gang Sambe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3150396, + -0.0521491 + ], + [ + 109.3143193, + -0.0514973 + ] + ] + }, + "id": "way/283397793" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397794", + "highway": "residential", + "name": "Gang Amanah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121198, + -0.0613678 + ], + [ + 109.3133258, + -0.0622205 + ], + [ + 109.3135158, + -0.0623502 + ], + [ + 109.3146017, + -0.0630898 + ], + [ + 109.3154821, + -0.0636743 + ] + ] + }, + "id": "way/283397794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397795", + "highway": "residential", + "name": "Gang Tata Kota" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159867, + -0.0621851 + ], + [ + 109.3163081, + -0.0617448 + ], + [ + 109.3164423, + -0.0615719 + ], + [ + 109.3167197, + -0.0612145 + ], + [ + 109.316974, + -0.0608868 + ], + [ + 109.3170664, + -0.0607678 + ] + ] + }, + "id": "way/283397795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397796", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305039, + -0.060429 + ], + [ + 109.3310055, + -0.0601557 + ], + [ + 109.331344, + -0.0599636 + ], + [ + 109.3314856, + -0.0598942 + ], + [ + 109.3317457, + -0.059745 + ] + ] + }, + "id": "way/283397796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397797", + "highway": "residential", + "name": "Gang Nirbaya 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120469, + -0.0614639 + ], + [ + 109.3117428, + -0.0612849 + ], + [ + 109.3124718, + -0.0600192 + ] + ] + }, + "id": "way/283397797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397798", + "highway": "residential", + "name": "Gang Sumber Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170664, + -0.0607678 + ], + [ + 109.3166572, + -0.0605008 + ], + [ + 109.3162427, + -0.0602216 + ], + [ + 109.3157607, + -0.0599318 + ], + [ + 109.3151166, + -0.0595278 + ], + [ + 109.3146989, + -0.0592639 + ], + [ + 109.314173, + -0.0589297 + ] + ] + }, + "id": "way/283397798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397799", + "highway": "residential", + "name": "Surya Jingga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292504, + -0.0489355 + ], + [ + 109.3301319, + -0.0497402 + ], + [ + 109.3309606, + -0.050427 + ], + [ + 109.3310177, + -0.0504691 + ], + [ + 109.3314522, + -0.0507246 + ], + [ + 109.3314917, + -0.0507574 + ], + [ + 109.3315186, + -0.0507896 + ], + [ + 109.3316332, + -0.0509525 + ], + [ + 109.331707, + -0.0510706 + ] + ] + }, + "id": "way/283397799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397800", + "highway": "residential", + "name": "Blok C - D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255854, + -0.0614047 + ], + [ + 109.3255989, + -0.0614641 + ], + [ + 109.3256304, + -0.0615356 + ], + [ + 109.3263135, + -0.0626914 + ], + [ + 109.3268239, + -0.0635548 + ] + ] + }, + "id": "way/283397800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397801", + "highway": "residential", + "name": "Gang Sederhana 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3100659, + -0.0608886 + ], + [ + 109.3095211, + -0.0605743 + ], + [ + 109.309007, + -0.0602732 + ], + [ + 109.3085139, + -0.0599869 + ], + [ + 109.307689, + -0.0594996 + ] + ] + }, + "id": "way/283397801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397802", + "highway": "residential", + "name": "Jalan Kesehatan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112407, + -0.0623302 + ], + [ + 109.3112996, + -0.0622974 + ], + [ + 109.3117551, + -0.0618117 + ], + [ + 109.3118164, + -0.0617337 + ], + [ + 109.311857, + -0.0616813 + ], + [ + 109.3120469, + -0.0614639 + ], + [ + 109.3121198, + -0.0613678 + ], + [ + 109.3123909, + -0.0610641 + ], + [ + 109.3130226, + -0.0603418 + ] + ] + }, + "id": "way/283397802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185137, + -0.053614 + ], + [ + 109.3179577, + -0.053237 + ], + [ + 109.3174561, + -0.0528969 + ], + [ + 109.3173774, + -0.0528435 + ], + [ + 109.3172074, + -0.0527282 + ] + ] + }, + "id": "way/283397803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397804", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315523, + -0.0590595 + ], + [ + 109.3160855, + -0.0594229 + ], + [ + 109.3165532, + -0.059724 + ], + [ + 109.3170401, + -0.0600309 + ] + ] + }, + "id": "way/283397804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397805", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3150672, + -0.0604826 + ], + [ + 109.3150528, + -0.0605044 + ], + [ + 109.3148114, + -0.0607934 + ], + [ + 109.3147393, + -0.0609049 + ], + [ + 109.3146428, + -0.061039 + ], + [ + 109.314559, + -0.0611409 + ], + [ + 109.3144866, + -0.0612176 + ] + ] + }, + "id": "way/283397805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397806", + "highway": "residential", + "name": "Gang Teluk Pakedai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179365, + -0.049299 + ], + [ + 109.318873, + -0.0499729 + ], + [ + 109.3196404, + -0.0505013 + ], + [ + 109.3199522, + -0.0507186 + ], + [ + 109.3201346, + -0.0508426 + ], + [ + 109.3209748, + -0.0514434 + ] + ] + }, + "id": "way/283397806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397807", + "highway": "residential", + "name": "Gang Budiyusmana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31447, + -0.0585571 + ], + [ + 109.3140112, + -0.0583105 + ], + [ + 109.3107364, + -0.0563772 + ] + ] + }, + "id": "way/283397807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397808", + "highway": "residential", + "name": "Gang Mentari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259723, + -0.0536674 + ], + [ + 109.3260409, + -0.0537415 + ], + [ + 109.3262848, + -0.053963 + ], + [ + 109.3264419, + -0.054092 + ], + [ + 109.3266145, + -0.0542399 + ], + [ + 109.326874, + -0.0545006 + ], + [ + 109.3272606, + -0.0548679 + ] + ] + }, + "id": "way/283397808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397811", + "highway": "residential", + "name": "Gang Keluarga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325766, + -0.0512177 + ], + [ + 109.3259617, + -0.0513764 + ], + [ + 109.3261226, + -0.0515084 + ], + [ + 109.3262183, + -0.0515861 + ], + [ + 109.3262365, + -0.0515993 + ], + [ + 109.3274966, + -0.0526214 + ], + [ + 109.3286822, + -0.0536349 + ] + ] + }, + "id": "way/283397811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397812", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281787, + -0.0647803 + ], + [ + 109.3285212, + -0.0645657 + ], + [ + 109.3288347, + -0.0643415 + ], + [ + 109.3290995, + -0.064126 + ], + [ + 109.3293935, + -0.0638663 + ], + [ + 109.3296859, + -0.0636653 + ], + [ + 109.3301552, + -0.0643369 + ] + ] + }, + "id": "way/283397812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397813", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368522, + -0.0628387 + ], + [ + 109.3368023, + -0.0627962 + ], + [ + 109.3364559, + -0.0625009 + ], + [ + 109.3355142, + -0.0617009 + ], + [ + 109.3346604, + -0.0609469 + ], + [ + 109.3344038, + -0.0607203 + ] + ] + }, + "id": "way/283397813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397814", + "highway": "residential", + "name": "Gang Dinasti" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250431, + -0.0572678 + ], + [ + 109.3250772, + -0.0573282 + ], + [ + 109.3251215, + -0.0574187 + ], + [ + 109.3264212, + -0.0605154 + ] + ] + }, + "id": "way/283397814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397815", + "highway": "residential", + "name": "Gang Purnama Agung VI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287927, + -0.0580274 + ], + [ + 109.328739, + -0.0579147 + ], + [ + 109.3286768, + -0.0578091 + ], + [ + 109.3285623, + -0.0575975 + ], + [ + 109.3281881, + -0.0569057 + ], + [ + 109.3279531, + -0.0564795 + ], + [ + 109.3272015, + -0.0551436 + ] + ] + }, + "id": "way/283397815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397817", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293364, + -0.0663455 + ], + [ + 109.3281787, + -0.0647803 + ], + [ + 109.3273926, + -0.0637031 + ], + [ + 109.3270796, + -0.0632738 + ] + ] + }, + "id": "way/283397817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397819", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095694, + -0.0604777 + ], + [ + 109.3096271, + -0.0603705 + ], + [ + 109.3099959, + -0.059771 + ], + [ + 109.3103123, + -0.0592318 + ], + [ + 109.3105305, + -0.0588732 + ], + [ + 109.311051, + -0.0579626 + ] + ] + }, + "id": "way/283397819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397820", + "highway": "residential", + "name": "Jalan Lombok" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224189, + -0.0462238 + ], + [ + 109.323362, + -0.0472122 + ] + ] + }, + "id": "way/283397820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397822", + "highway": "residential", + "name": "Gang Assalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117551, + -0.0618117 + ], + [ + 109.3131823, + -0.0627574 + ], + [ + 109.3142807, + -0.0634966 + ] + ] + }, + "id": "way/283397822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397823", + "highway": "residential", + "name": "Jalan Parit Demang Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187452, + -0.0724418 + ], + [ + 109.3197618, + -0.0736736 + ], + [ + 109.3200508, + -0.0731559 + ], + [ + 109.3204558, + -0.0724022 + ], + [ + 109.3208648, + -0.0716686 + ], + [ + 109.3209822, + -0.0714708 + ], + [ + 109.3214093, + -0.0707258 + ], + [ + 109.3218351, + -0.0699634 + ], + [ + 109.3220101, + -0.0696663 + ], + [ + 109.322155, + -0.0694424 + ], + [ + 109.3222589, + -0.0692875 + ], + [ + 109.3225855, + -0.0688255 + ], + [ + 109.322735, + -0.0685969 + ], + [ + 109.3228537, + -0.0684205 + ], + [ + 109.3229741, + -0.0682435 + ], + [ + 109.3230596, + -0.0681019 + ], + [ + 109.3232351, + -0.0677957 + ], + [ + 109.3232714, + -0.0677426 + ], + [ + 109.3235768, + -0.0673531 + ], + [ + 109.3236315, + -0.0672805 + ], + [ + 109.3239099, + -0.066949 + ], + [ + 109.324076, + -0.0667149 + ], + [ + 109.3241396, + -0.0666322 + ], + [ + 109.3243052, + -0.0664368 + ], + [ + 109.3243825, + -0.0663582 + ], + [ + 109.3245951, + -0.0661183 + ], + [ + 109.3246767, + -0.0660339 + ], + [ + 109.3249385, + -0.0657101 + ], + [ + 109.325024, + -0.0655954 + ], + [ + 109.3253785, + -0.0651767 + ], + [ + 109.3257135, + -0.0647812 + ] + ] + }, + "id": "way/283397823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397824", + "highway": "residential", + "name": "Jalan Parit Demang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257135, + -0.0647812 + ], + [ + 109.3254147, + -0.0644248 + ], + [ + 109.3253638, + -0.064364 + ], + [ + 109.3244641, + -0.0632878 + ], + [ + 109.3244424, + -0.0632649 + ], + [ + 109.3234641, + -0.0621079 + ], + [ + 109.3228932, + -0.0614206 + ], + [ + 109.3225278, + -0.0609626 + ], + [ + 109.3222203, + -0.0605961 + ] + ] + }, + "id": "way/283397824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397825", + "highway": "residential", + "lanes": "2", + "width": "5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212263, + -0.062234 + ], + [ + 109.3212723, + -0.0622846 + ], + [ + 109.32141, + -0.0624361 + ], + [ + 109.3220257, + -0.0631688 + ], + [ + 109.3224225, + -0.0636411 + ], + [ + 109.3226154, + -0.0638609 + ], + [ + 109.3231844, + -0.0645092 + ] + ] + }, + "id": "way/283397825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397826", + "highway": "residential", + "name": "Gang Widodo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212504, + -0.0510196 + ], + [ + 109.3208702, + -0.0507427 + ], + [ + 109.3206878, + -0.0506032 + ], + [ + 109.3206288, + -0.0505543 + ], + [ + 109.3205316, + -0.0504604 + ], + [ + 109.3203847, + -0.0503169 + ], + [ + 109.3200548, + -0.0499877 + ], + [ + 109.3198919, + -0.049818 + ], + [ + 109.3197893, + -0.0497255 + ], + [ + 109.3195861, + -0.0495189 + ], + [ + 109.3193343, + -0.0492537 + ], + [ + 109.3193138, + -0.0492279 + ], + [ + 109.3193021, + -0.0492081 + ], + [ + 109.3192982, + -0.0491944 + ], + [ + 109.3192951, + -0.0491791 + ], + [ + 109.3192934, + -0.0491612 + ], + [ + 109.3193038, + -0.0484159 + ], + [ + 109.319289, + -0.0481118 + ] + ] + }, + "id": "way/283397826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397827", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191729, + -0.0586254 + ], + [ + 109.3189477, + -0.0588497 + ], + [ + 109.3189283, + -0.0588728 + ], + [ + 109.3189202, + -0.0588896 + ], + [ + 109.3189139, + -0.05891 + ], + [ + 109.3189125, + -0.0589197 + ], + [ + 109.3189142, + -0.0589348 + ], + [ + 109.3189214, + -0.0589449 + ], + [ + 109.318932, + -0.0589546 + ], + [ + 109.3189913, + -0.0589912 + ], + [ + 109.3207063, + -0.0600575 + ], + [ + 109.3208472, + -0.0601296 + ], + [ + 109.3209081, + -0.0601557 + ], + [ + 109.3209232, + -0.0601549 + ], + [ + 109.3209347, + -0.0601532 + ], + [ + 109.3209441, + -0.0601504 + ], + [ + 109.3209552, + -0.0601434 + ], + [ + 109.3209647, + -0.0601339 + ], + [ + 109.3211644, + -0.0598242 + ] + ] + }, + "id": "way/283397827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397828", + "highway": "residential", + "name": "Gang Rindang Papan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145499, + -0.0648206 + ], + [ + 109.3151457, + -0.06408 + ], + [ + 109.3153778, + -0.0637918 + ], + [ + 109.3154821, + -0.0636743 + ], + [ + 109.3157969, + -0.063243 + ], + [ + 109.3163674, + -0.0625283 + ] + ] + }, + "id": "way/283397828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397830", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322719, + -0.0526631 + ], + [ + 109.3229188, + -0.0523204 + ], + [ + 109.322977, + -0.0522279 + ], + [ + 109.3231405, + -0.0519679 + ], + [ + 109.3232815, + -0.0517539 + ], + [ + 109.3234042, + -0.05155 + ], + [ + 109.3238973, + -0.0507624 + ], + [ + 109.324003, + -0.0505932 + ], + [ + 109.3242122, + -0.0501922 + ], + [ + 109.324417, + -0.0498177 + ] + ] + }, + "id": "way/283397830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397831", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109766, + -0.0591261 + ], + [ + 109.3112478, + -0.0586465 + ], + [ + 109.3115003, + -0.058239 + ] + ] + }, + "id": "way/283397831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397833", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3150528, + -0.0605044 + ], + [ + 109.3155775, + -0.0608251 + ], + [ + 109.3161022, + -0.0611903 + ] + ] + }, + "id": "way/283397833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397834", + "highway": "residential", + "name": "Jalan Purwosari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216259, + -0.0504074 + ], + [ + 109.322167, + -0.0507501 + ], + [ + 109.3223709, + -0.0508875 + ], + [ + 109.3225814, + -0.051033 + ], + [ + 109.3228322, + -0.05119 + ], + [ + 109.3234042, + -0.05155 + ], + [ + 109.3240303, + -0.0519267 + ], + [ + 109.3244157, + -0.0521958 + ] + ] + }, + "id": "way/283397834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397835", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304717, + -0.0653605 + ], + [ + 109.3304316, + -0.0653083 + ], + [ + 109.3302982, + -0.0651441 + ], + [ + 109.3301694, + -0.0649671 + ], + [ + 109.3299548, + -0.0646734 + ], + [ + 109.3297872, + -0.0644347 + ], + [ + 109.3293935, + -0.0638663 + ], + [ + 109.3287954, + -0.0630057 + ], + [ + 109.3281957, + -0.0621857 + ] + ] + }, + "id": "way/283397835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397836", + "highway": "residential", + "name": "Gang Purnama Griya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270907, + -0.0602535 + ], + [ + 109.3265248, + -0.0590516 + ], + [ + 109.3255895, + -0.0570881 + ], + [ + 109.3255131, + -0.0569379 + ], + [ + 109.3254729, + -0.0568749 + ] + ] + }, + "id": "way/283397836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397837", + "highway": "residential", + "name": "Jalur A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155365, + -0.0581123 + ], + [ + 109.315744, + -0.0577807 + ], + [ + 109.3157571, + -0.0577723 + ], + [ + 109.3157703, + -0.0577681 + ], + [ + 109.3157869, + -0.05777 + ], + [ + 109.3163055, + -0.0580694 + ], + [ + 109.3168901, + -0.0584166 + ] + ] + }, + "id": "way/283397837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397838", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362284, + -0.0627519 + ], + [ + 109.3362527, + -0.0627382 + ], + [ + 109.3362808, + -0.0627141 + ], + [ + 109.3364559, + -0.0625009 + ], + [ + 109.3366853, + -0.062221 + ], + [ + 109.3369212, + -0.0619766 + ] + ] + }, + "id": "way/283397838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397839", + "highway": "residential", + "name": "Komplek Griya Purnama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276917, + -0.0603437 + ], + [ + 109.3271948, + -0.0593921 + ], + [ + 109.3267509, + -0.058511 + ], + [ + 109.326531, + -0.0580497 + ], + [ + 109.3260382, + -0.057054 + ], + [ + 109.3258129, + -0.0565685 + ] + ] + }, + "id": "way/283397839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397843", + "highway": "living_street", + "lanes": "1", + "motor_vehicle": "permissive", + "name": "Gang Dinasti Dalam 1", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271117, + -0.061147 + ], + [ + 109.3269917, + -0.061267 + ], + [ + 109.3269454, + -0.0613213 + ], + [ + 109.3269132, + -0.0613676 + ], + [ + 109.3269058, + -0.0614105 + ], + [ + 109.3269099, + -0.0614501 + ], + [ + 109.3269333, + -0.0615017 + ], + [ + 109.3269829, + -0.0615788 + ], + [ + 109.3270876, + -0.0617605 + ], + [ + 109.3272954, + -0.0621119 + ], + [ + 109.3275167, + -0.062478 + ], + [ + 109.3276335, + -0.062668 + ] + ] + }, + "id": "way/283397843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397845", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231743, + -0.0554972 + ], + [ + 109.323451, + -0.0557099 + ], + [ + 109.3249825, + -0.0571552 + ] + ] + }, + "id": "way/283397845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283397846", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3158601, + -0.0614912 + ], + [ + 109.3148114, + -0.0607934 + ], + [ + 109.3143732, + -0.0605088 + ], + [ + 109.3141104, + -0.060341 + ], + [ + 109.3138192, + -0.0601468 + ], + [ + 109.3134234, + -0.0598697 + ] + ] + }, + "id": "way/283397846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551583", + "highway": "secondary", + "name": "Jalan Imam Bonjol", + "ref": "001.1", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3524064, + -0.0440119 + ], + [ + 109.3524307, + -0.0440335 + ], + [ + 109.3526831, + -0.0443052 + ], + [ + 109.3528803, + -0.044522 + ], + [ + 109.3530073, + -0.0446519 + ], + [ + 109.3531607, + -0.0448116 + ], + [ + 109.3532351, + -0.0449129 + ], + [ + 109.3532962, + -0.0449883 + ], + [ + 109.3534243, + -0.0451626 + ], + [ + 109.3535452, + -0.0453454 + ], + [ + 109.3536257, + -0.0454823 + ], + [ + 109.3537086, + -0.0456067 + ], + [ + 109.3538477, + -0.0458435 + ], + [ + 109.3539542, + -0.0460511 + ], + [ + 109.3540145, + -0.0461908 + ], + [ + 109.3541415, + -0.0464571 + ], + [ + 109.3542255, + -0.0466294 + ], + [ + 109.3542902, + -0.0467594 + ], + [ + 109.3543398, + -0.0468444 + ], + [ + 109.3544397, + -0.046995 + ], + [ + 109.3545399, + -0.0471116 + ], + [ + 109.3547014, + -0.0472878 + ], + [ + 109.3547483, + -0.0473398 + ], + [ + 109.3551618, + -0.0477824 + ], + [ + 109.3552087, + -0.0478381 + ], + [ + 109.3553831, + -0.0479911 + ], + [ + 109.3555714, + -0.0481644 + ], + [ + 109.3558259, + -0.0483988 + ], + [ + 109.3563222, + -0.0487943 + ], + [ + 109.3563492, + -0.0488188 + ], + [ + 109.3564292, + -0.0488917 + ], + [ + 109.3565, + -0.0489561 + ], + [ + 109.3565924, + -0.0490402 + ], + [ + 109.3569082, + -0.0493275 + ] + ] + }, + "id": "way/283551583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551588", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513924, + -0.065291 + ], + [ + 109.3513944, + -0.0653205 + ], + [ + 109.3514045, + -0.065344 + ], + [ + 109.351894, + -0.065745 + ], + [ + 109.3525099, + -0.0662856 + ], + [ + 109.3538292, + -0.0674542 + ], + [ + 109.3538607, + -0.0674716 + ], + [ + 109.3538989, + -0.0674723 + ], + [ + 109.3539257, + -0.0674522 + ], + [ + 109.3541316, + -0.0671374 + ], + [ + 109.3543187, + -0.0668406 + ], + [ + 109.3543361, + -0.0668004 + ], + [ + 109.3543361, + -0.0667535 + ], + [ + 109.3542664, + -0.0666971 + ], + [ + 109.3530299, + -0.065635 + ], + [ + 109.351843, + -0.0647311 + ], + [ + 109.3518081, + -0.0647244 + ], + [ + 109.351788, + -0.0647331 + ], + [ + 109.3515677, + -0.0650324 + ], + [ + 109.3513924, + -0.065291 + ] + ] + }, + "id": "way/283551588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551590", + "highway": "residential", + "name": "Gang Muslimin 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363695, + -0.0580024 + ], + [ + 109.3637473, + -0.0580668 + ], + [ + 109.3637711, + -0.0581077 + ], + [ + 109.3637701, + -0.0581208 + ], + [ + 109.3637631, + -0.0581385 + ], + [ + 109.363694, + -0.0582385 + ], + [ + 109.3636715, + -0.0582884 + ], + [ + 109.3636725, + -0.0583193 + ], + [ + 109.3636839, + -0.0583424 + ], + [ + 109.3636953, + -0.0583592 + ], + [ + 109.3637108, + -0.0583944 + ], + [ + 109.3637061, + -0.0584232 + ], + [ + 109.3636769, + -0.0584775 + ], + [ + 109.3636353, + -0.0585291 + ], + [ + 109.3634999, + -0.0586875 + ], + [ + 109.3629487, + -0.0581127 + ], + [ + 109.362368, + -0.0574777 + ], + [ + 109.3612396, + -0.0562663 + ] + ] + }, + "id": "way/283551590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551593", + "highway": "residential", + "name": "Jalan Sekadau" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511389, + -0.0558838 + ], + [ + 109.3511411, + -0.0558738 + ], + [ + 109.351811, + -0.0548877 + ], + [ + 109.3520409, + -0.0544951 + ], + [ + 109.3521428, + -0.054355 + ], + [ + 109.3524486, + -0.0539513 + ], + [ + 109.3526872, + -0.0536476 + ], + [ + 109.3527281, + -0.0535959 + ], + [ + 109.3529307, + -0.0533116 + ], + [ + 109.3534123, + -0.0526511 + ] + ] + }, + "id": "way/283551593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551594", + "highway": "residential", + "lanes": "1", + "name": "Jalan Sepakat 1", + "smoothness": "intermediate", + "surface": "concrete", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519151, + -0.0581988 + ], + [ + 109.3519604, + -0.0581279 + ], + [ + 109.3525699, + -0.0571738 + ], + [ + 109.3526829, + -0.056997 + ], + [ + 109.3527356, + -0.0569163 + ], + [ + 109.3528214, + -0.0567851 + ], + [ + 109.3529037, + -0.0566592 + ], + [ + 109.3529418, + -0.056601 + ], + [ + 109.3531452, + -0.0562736 + ], + [ + 109.3533962, + -0.0559101 + ], + [ + 109.353641, + -0.0555401 + ], + [ + 109.3537441, + -0.0553842 + ], + [ + 109.3540949, + -0.054854 + ], + [ + 109.3541163, + -0.0548222 + ], + [ + 109.3544397, + -0.0543403 + ], + [ + 109.3546926, + -0.0540118 + ], + [ + 109.3551483, + -0.053335 + ], + [ + 109.3553617, + -0.0530318 + ], + [ + 109.3555263, + -0.0528005 + ], + [ + 109.3558015, + -0.052347 + ], + [ + 109.3558588, + -0.0522618 + ], + [ + 109.3559265, + -0.0521529 + ], + [ + 109.3559974, + -0.0520566 + ] + ] + }, + "id": "way/283551594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551596", + "highway": "tertiary", + "junction": "roundabout", + "lanes": "2", + "name": "Jalan Daya Nasional", + "oneway": "yes", + "smoothness": "good", + "source": "GPS", + "surface": "asphalt", + "width": "8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522052, + -0.0517568 + ], + [ + 109.352193, + -0.05178 + ], + [ + 109.3521889, + -0.0517879 + ], + [ + 109.3521585, + -0.0518218 + ], + [ + 109.35212, + -0.0518461 + ], + [ + 109.3520763, + -0.0518588 + ], + [ + 109.3520307, + -0.051859 + ], + [ + 109.3519869, + -0.0518466 + ], + [ + 109.351951, + -0.051825 + ], + [ + 109.3519218, + -0.0517949 + ], + [ + 109.3518983, + -0.0517506 + ], + [ + 109.3518892, + -0.0517013 + ], + [ + 109.3518955, + -0.0516516 + ], + [ + 109.3519166, + -0.0516061 + ], + [ + 109.3519469, + -0.051572 + ], + [ + 109.3519855, + -0.0515476 + ], + [ + 109.3520293, + -0.0515348 + ], + [ + 109.3520881, + -0.051537 + ], + [ + 109.3521423, + -0.0515598 + ], + [ + 109.352185, + -0.0516003 + ], + [ + 109.3522106, + -0.0516532 + ], + [ + 109.3522163, + -0.0516879 + ], + [ + 109.3522144, + -0.0517229 + ], + [ + 109.3522052, + -0.0517568 + ] + ] + }, + "id": "way/283551596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551598", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585663, + -0.0492071 + ], + [ + 109.3588124, + -0.0493918 + ], + [ + 109.3590653, + -0.0495649 + ] + ] + }, + "id": "way/283551598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551599", + "highway": "residential", + "name": "Gang Alqadar Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616618, + -0.0647906 + ], + [ + 109.3615787, + -0.0648703 + ], + [ + 109.3615539, + -0.0648907 + ], + [ + 109.3615191, + -0.0649034 + ], + [ + 109.3614929, + -0.0648998 + ], + [ + 109.3614586, + -0.0648965 + ], + [ + 109.3614084, + -0.064894 + ], + [ + 109.3613709, + -0.0648906 + ], + [ + 109.3613299, + -0.0648854 + ], + [ + 109.360834, + -0.0645366 + ], + [ + 109.3606949, + -0.0644264 + ], + [ + 109.360606, + -0.0643494 + ], + [ + 109.3602894, + -0.0640782 + ], + [ + 109.3600995, + -0.0638728 + ], + [ + 109.3600734, + -0.0638289 + ], + [ + 109.3600626, + -0.0638057 + ], + [ + 109.3600525, + -0.0637641 + ] + ] + }, + "id": "way/283551599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551600", + "highway": "residential", + "name": "Gang Sejahtera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611043, + -0.0618145 + ], + [ + 109.3603821, + -0.0610155 + ], + [ + 109.35951, + -0.0600365 + ], + [ + 109.358941, + -0.0594019 + ] + ] + }, + "id": "way/283551600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551603", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564228, + -0.0699118 + ], + [ + 109.3541384, + -0.0674623 + ] + ] + }, + "id": "way/283551603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551604", + "highway": "residential", + "name": "Jalan Karangan Blok B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352087, + -0.0499355 + ], + [ + 109.3516141, + -0.0495682 + ], + [ + 109.350897, + -0.0490111 + ] + ] + }, + "id": "way/283551604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551606", + "highway": "residential", + "name": "Gang Darul Taqwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3603139, + -0.0619137 + ], + [ + 109.3585836, + -0.0599379 + ] + ] + }, + "id": "way/283551606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551607", + "highway": "living_street", + "name": "Gang Karya 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348282, + -0.0712127 + ], + [ + 109.3474797, + -0.0707016 + ], + [ + 109.3468124, + -0.0702458 + ], + [ + 109.3464435, + -0.069981 + ] + ] + }, + "id": "way/283551607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551608", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605431, + -0.0570195 + ], + [ + 109.3605885, + -0.0570633 + ] + ] + }, + "id": "way/283551608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551609", + "highway": "residential", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20", + "name": "Komplek Balimas 1", + "smoothness": "intermediate", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545817, + -0.0741453 + ], + [ + 109.354551, + -0.0741133 + ], + [ + 109.3543919, + -0.0739525 + ], + [ + 109.3519278, + -0.0714275 + ] + ] + }, + "id": "way/283551609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551610", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531452, + -0.0562736 + ], + [ + 109.3542999, + -0.0574073 + ], + [ + 109.3548685, + -0.0579813 + ], + [ + 109.3551314, + -0.0582388 + ], + [ + 109.3554643, + -0.0585844 + ] + ] + }, + "id": "way/283551610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520741, + -0.0602423 + ], + [ + 109.3514072, + -0.0595407 + ], + [ + 109.3511469, + -0.0592639 + ] + ] + }, + "id": "way/283551611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551612", + "highway": "residential", + "name": "Gang Tsafiudin", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591426, + -0.0639117 + ], + [ + 109.3585048, + -0.0631827 + ], + [ + 109.3579584, + -0.062533 + ], + [ + 109.3573667, + -0.0618459 + ] + ] + }, + "id": "way/283551612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551613", + "highway": "residential", + "name": "Gang Sri Lestari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580265, + -0.0584913 + ], + [ + 109.3567535, + -0.0571159 + ] + ] + }, + "id": "way/283551613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551621", + "highway": "residential", + "name": "Gang Redha" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573708, + -0.0630546 + ], + [ + 109.3569388, + -0.0625564 + ] + ] + }, + "id": "way/283551621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551623", + "highway": "service", + "name": "Jalan Profesor Dokter Haji Hadari Nawawi", + "name:id": "Jalan Profesor Dokter Haji Hadari Nawawi", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467946, + -0.0581451 + ], + [ + 109.3481737, + -0.0571512 + ], + [ + 109.3483632, + -0.0568813 + ], + [ + 109.348466, + -0.0567349 + ], + [ + 109.3487882, + -0.056276 + ], + [ + 109.3490773, + -0.0558685 + ], + [ + 109.3491217, + -0.0558141 + ], + [ + 109.3491756, + -0.0557339 + ], + [ + 109.3491961, + -0.0557035 + ], + [ + 109.3492242, + -0.0556609 + ], + [ + 109.3492609, + -0.0556053 + ] + ] + }, + "id": "way/283551623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551624", + "highway": "residential", + "name": "Kurnia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614685, + -0.0576857 + ], + [ + 109.3607472, + -0.0569527 + ] + ] + }, + "id": "way/283551624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551626", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "permissive", + "name": "Acisa Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556571, + -0.0687771 + ], + [ + 109.3553889, + -0.068466 + ], + [ + 109.354247, + -0.0672366 + ] + ] + }, + "id": "way/283551626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551628", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503558, + -0.0640316 + ], + [ + 109.3501367, + -0.0642778 + ] + ] + }, + "id": "way/283551628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551629", + "highway": "residential", + "maxspeed": "20", + "name": "Gang Asoka", + "oneway": "no", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537004, + -0.0751371 + ], + [ + 109.3536834, + -0.0751191 + ], + [ + 109.3513121, + -0.0726138 + ] + ] + }, + "id": "way/283551629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551631", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563906, + -0.0507145 + ], + [ + 109.3556367, + -0.0500942 + ] + ] + }, + "id": "way/283551631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551632", + "highway": "residential", + "name": "Gang Sawit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604097, + -0.0571407 + ], + [ + 109.3593773, + -0.0560447 + ], + [ + 109.3583845, + -0.05499 + ] + ] + }, + "id": "way/283551632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551633", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450034, + -0.0617406 + ], + [ + 109.3452454, + -0.0619339 + ], + [ + 109.3453266, + -0.0620009 + ], + [ + 109.3454572, + -0.0621049 + ], + [ + 109.3456584, + -0.0622651 + ], + [ + 109.3457937, + -0.0623833 + ], + [ + 109.3464424, + -0.06295 + ], + [ + 109.3474218, + -0.0639219 + ], + [ + 109.3474509, + -0.0639604 + ] + ] + }, + "id": "way/283551633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551635", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.366605, + -0.0574194 + ], + [ + 109.3657572, + -0.0580692 + ], + [ + 109.3652634, + -0.0584359 + ] + ] + }, + "id": "way/283551635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551636", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530299, + -0.065635 + ], + [ + 109.3527653, + -0.0659655 + ], + [ + 109.3525099, + -0.0662856 + ] + ] + }, + "id": "way/283551636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551638", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531471, + -0.0539649 + ], + [ + 109.3526872, + -0.0536476 + ] + ] + }, + "id": "way/283551638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551640", + "highway": "residential", + "name": "Jalan Karangan Blok D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515409, + -0.0506345 + ], + [ + 109.3503926, + -0.0497989 + ] + ] + }, + "id": "way/283551640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551642", + "highway": "residential", + "name": "Jalan Silat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353693, + -0.0522917 + ], + [ + 109.3541142, + -0.0526071 + ] + ] + }, + "id": "way/283551642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551646", + "highway": "residential", + "name": "Gang Media Sari 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495209, + -0.0489158 + ], + [ + 109.348988, + -0.0485103 + ] + ] + }, + "id": "way/283551646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551649", + "highway": "living_street", + "name": "Jalan Pemda Jalur 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508902, + -0.0732556 + ], + [ + 109.350866, + -0.0732337 + ] + ] + }, + "id": "way/283551649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551656", + "highway": "residential", + "name": "Gang Anggrek" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496383, + -0.0671752 + ], + [ + 109.3495008, + -0.0670639 + ], + [ + 109.3493727, + -0.0669365 + ], + [ + 109.3491239, + -0.0666918 + ], + [ + 109.3486467, + -0.0662128 + ], + [ + 109.3471043, + -0.0646594 + ] + ] + }, + "id": "way/283551656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551660", + "highway": "residential", + "name": "Gang Palaguna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608654, + -0.0620703 + ], + [ + 109.359777, + -0.060862 + ], + [ + 109.3587744, + -0.0596599 + ] + ] + }, + "id": "way/283551660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551662", + "highway": "residential", + "name": "Gang Perwira" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615048, + -0.0616849 + ], + [ + 109.3608914, + -0.0609921 + ], + [ + 109.3602986, + -0.0603751 + ], + [ + 109.3591615, + -0.0590842 + ] + ] + }, + "id": "way/283551662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551665", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3566123, + -0.0506552 + ], + [ + 109.3557355, + -0.0499643 + ] + ] + }, + "id": "way/283551665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551666", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482005, + -0.0651983 + ], + [ + 109.3478214, + -0.0648229 + ], + [ + 109.3473703, + -0.0643589 + ] + ] + }, + "id": "way/283551666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551669", + "highway": "living_street", + "lanes": "1", + "motorcar": "destination", + "motorcycle": "yes", + "name": "Gang Tegal Sari", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515401, + -0.0719017 + ], + [ + 109.3512814, + -0.071729 + ], + [ + 109.3508449, + -0.0714259 + ], + [ + 109.3504295, + -0.0711281 + ], + [ + 109.3498502, + -0.0707419 + ], + [ + 109.3493923, + -0.0704318 + ], + [ + 109.3491437, + -0.0702638 + ], + [ + 109.3489616, + -0.0701387 + ] + ] + }, + "id": "way/283551669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551673", + "highway": "residential", + "name": "Jalan Karangan Blok A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521433, + -0.0488641 + ], + [ + 109.3519302, + -0.0491588 + ], + [ + 109.3519131, + -0.0491788 + ], + [ + 109.3518953, + -0.0491914 + ], + [ + 109.3518806, + -0.0491934 + ], + [ + 109.3518661, + -0.0491951 + ], + [ + 109.35185, + -0.0491924 + ], + [ + 109.3518262, + -0.049179 + ], + [ + 109.3511317, + -0.0486665 + ] + ] + }, + "id": "way/283551673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461501, + -0.065702 + ], + [ + 109.3479071, + -0.0674539 + ] + ] + }, + "id": "way/283551674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551679", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3617182, + -0.0555131 + ], + [ + 109.3617682, + -0.0555915 + ] + ] + }, + "id": "way/283551679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551683", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616444, + -0.0554324 + ], + [ + 109.3613926, + -0.0556704 + ], + [ + 109.3611798, + -0.0559348 + ], + [ + 109.3611483, + -0.0559462 + ], + [ + 109.3611187, + -0.0559415 + ], + [ + 109.3610664, + -0.0558972 + ], + [ + 109.3602931, + -0.0550644 + ], + [ + 109.3594323, + -0.0541375 + ], + [ + 109.3592725, + -0.0539655 + ] + ] + }, + "id": "way/283551683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551684", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505078, + -0.0614804 + ], + [ + 109.3499785, + -0.0609862 + ] + ] + }, + "id": "way/283551684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551691", + "highway": "residential", + "name": "Gang Alhuda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356207, + -0.0703382 + ], + [ + 109.3556839, + -0.0697964 + ], + [ + 109.3549973, + -0.0690454 + ], + [ + 109.3545173, + -0.0685434 + ], + [ + 109.3538953, + -0.0679032 + ] + ] + }, + "id": "way/283551691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551693", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526034, + -0.0700069 + ], + [ + 109.3517199, + -0.069359 + ], + [ + 109.3506325, + -0.0685145 + ] + ] + }, + "id": "way/283551693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551694", + "highway": "residential", + "name": "Gang Sederhana 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621834, + -0.0607029 + ], + [ + 109.3621422, + -0.0606571 + ], + [ + 109.3615469, + -0.0599946 + ], + [ + 109.3613247, + -0.0597559 + ], + [ + 109.361016, + -0.0593922 + ], + [ + 109.360925, + -0.0592889 + ], + [ + 109.3603945, + -0.0587022 + ], + [ + 109.3600646, + -0.0583569 + ], + [ + 109.3598547, + -0.0581671 + ] + ] + }, + "id": "way/283551694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551695", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626275, + -0.0526705 + ], + [ + 109.3624424, + -0.0527711 + ], + [ + 109.3622037, + -0.0529005 + ], + [ + 109.3620367, + -0.0529897 + ], + [ + 109.3619362, + -0.0530434 + ], + [ + 109.3613377, + -0.0533187 + ] + ] + }, + "id": "way/283551695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551697", + "highway": "residential", + "name": "Gang Sutitah Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610214, + -0.0563373 + ], + [ + 109.3600497, + -0.0552919 + ], + [ + 109.3592517, + -0.0544334 + ], + [ + 109.3591661, + -0.0543427 + ], + [ + 109.3590474, + -0.0542136 + ] + ] + }, + "id": "way/283551697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551701", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3620937, + -0.0553472 + ], + [ + 109.3621393, + -0.0553951 + ] + ] + }, + "id": "way/283551701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551703", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501348, + -0.0455639 + ], + [ + 109.350138, + -0.0455576 + ], + [ + 109.3501411, + -0.0455531 + ], + [ + 109.3501463, + -0.0455469 + ], + [ + 109.3502726, + -0.0454125 + ], + [ + 109.3505229, + -0.0451078 + ], + [ + 109.3507216, + -0.0448488 + ] + ] + }, + "id": "way/283551703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551704", + "access": "no", + "bicycle": "yes", + "bridge": "yes", + "crossing": "bridge", + "crossing:markings": "yes", + "foot": "yes", + "footway": "crossing", + "highway": "footway", + "horse": "no", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359654, + -0.0584057 + ], + [ + 109.3596006, + -0.0583555 + ] + ] + }, + "id": "way/283551704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551705", + "highway": "residential", + "name": "Gang Nusantara" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632732, + -0.0518243 + ], + [ + 109.36306, + -0.0519718 + ], + [ + 109.3629836, + -0.0520456 + ], + [ + 109.3621175, + -0.0526285 + ], + [ + 109.361881, + -0.052789 + ], + [ + 109.3611561, + -0.0530809 + ] + ] + }, + "id": "way/283551705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551707", + "highway": "residential", + "name": "Gang Muslimin 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630807, + -0.0591631 + ], + [ + 109.3622464, + -0.0581722 + ], + [ + 109.3615419, + -0.0573912 + ], + [ + 109.3608853, + -0.0567478 + ] + ] + }, + "id": "way/283551707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551709", + "highway": "residential", + "name": "Villa Gading Raya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573134, + -0.069268 + ], + [ + 109.3601238, + -0.0713158 + ], + [ + 109.360157, + -0.0713396 + ] + ] + }, + "id": "way/283551709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551710", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604792, + -0.0572125 + ], + [ + 109.3604097, + -0.0571407 + ] + ] + }, + "id": "way/283551710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551711", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3538103, + -0.0554519 + ], + [ + 109.3535274, + -0.055857 + ], + [ + 109.3535194, + -0.0558811 + ], + [ + 109.3535221, + -0.0559106 + ], + [ + 109.3535623, + -0.055967 + ], + [ + 109.3544018, + -0.0568065 + ], + [ + 109.35443, + -0.0568132 + ], + [ + 109.3544582, + -0.0568119 + ], + [ + 109.3545141, + -0.0567781 + ], + [ + 109.3548006, + -0.0564873 + ], + [ + 109.3552724, + -0.0560115 + ] + ] + }, + "id": "way/283551711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551712", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488515, + -0.0606768 + ], + [ + 109.3496639, + -0.0612746 + ] + ] + }, + "id": "way/283551712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551713", + "highway": "residential", + "name": "Komplek Permata Agung" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592256, + -0.0729334 + ], + [ + 109.3591733, + -0.0728965 + ] + ] + }, + "id": "way/283551713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551714", + "highway": "tertiary", + "lanes": "2", + "name": "Jalan Daya Nasional", + "oneway": "yes", + "smoothness": "good", + "source": "GPS", + "surface": "asphalt", + "width": "8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522812, + -0.0513456 + ], + [ + 109.3522608, + -0.0514681 + ], + [ + 109.3522106, + -0.0516532 + ] + ] + }, + "id": "way/283551714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551717", + "highway": "residential", + "name": "Jalan Sekadau" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352276, + -0.055202 + ], + [ + 109.351811, + -0.0548877 + ], + [ + 109.3513534, + -0.0545861 + ], + [ + 109.350589, + -0.0540773 + ], + [ + 109.3504771, + -0.0540028 + ] + ] + }, + "id": "way/283551717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551719", + "highway": "residential", + "name": "Gang Abdurahman Saleh VIII" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593001, + -0.0586246 + ], + [ + 109.3588302, + -0.0581859 + ], + [ + 109.3572335, + -0.0565251 + ] + ] + }, + "id": "way/283551719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557515, + -0.0582328 + ], + [ + 109.3547033, + -0.057197 + ], + [ + 109.3544847, + -0.0569811 + ], + [ + 109.3543934, + -0.0568908 + ], + [ + 109.3533962, + -0.0559101 + ] + ] + }, + "id": "way/283551721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551725", + "highway": "residential", + "lanes": "1", + "name": "Jalan M. Syafe'i", + "smoothness": "good", + "surface": "asphalt", + "width": "6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528341, + -0.0522451 + ], + [ + 109.3528454, + -0.0522299 + ], + [ + 109.3539789, + -0.0507008 + ], + [ + 109.3545697, + -0.0501093 + ] + ] + }, + "id": "way/283551725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551728", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485023, + -0.0611903 + ], + [ + 109.3489154, + -0.0614883 + ], + [ + 109.349322, + -0.0617749 + ] + ] + }, + "id": "way/283551728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356094, + -0.0578108 + ], + [ + 109.3548006, + -0.0564873 + ], + [ + 109.3541751, + -0.0558301 + ], + [ + 109.3538103, + -0.0554519 + ] + ] + }, + "id": "way/283551729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551732", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554293, + -0.0561895 + ], + [ + 109.3552724, + -0.0560115 + ], + [ + 109.3542463, + -0.0549477 + ], + [ + 109.3542059, + -0.054922 + ], + [ + 109.3541705, + -0.0549169 + ], + [ + 109.3541416, + -0.0549289 + ], + [ + 109.3538103, + -0.0554519 + ] + ] + }, + "id": "way/283551732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546028, + -0.052499 + ], + [ + 109.3552653, + -0.0529682 + ] + ] + }, + "id": "way/283551733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551734", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346521, + -0.0601547 + ], + [ + 109.3461594, + -0.0597311 + ] + ] + }, + "id": "way/283551734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551735", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618669, + -0.0642654 + ], + [ + 109.36203, + -0.0640599 + ], + [ + 109.3622101, + -0.0638472 + ], + [ + 109.3623271, + -0.0637185 + ], + [ + 109.3624336, + -0.063598 + ], + [ + 109.3638526, + -0.0642409 + ] + ] + }, + "id": "way/283551735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551736", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3629554, + -0.0593117 + ], + [ + 109.3630807, + -0.0591631 + ], + [ + 109.3634999, + -0.0586875 + ] + ] + }, + "id": "way/283551736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551737", + "highway": "residential", + "name": "Gang Haji Salmah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576039, + -0.0476691 + ], + [ + 109.3573511, + -0.0480312 + ], + [ + 109.3571296, + -0.04837 + ], + [ + 109.3565924, + -0.0490402 + ] + ] + }, + "id": "way/283551737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551740", + "highway": "residential", + "name": "Villa Kelapa Gading Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594478, + -0.0725806 + ], + [ + 109.3594667, + -0.0725932 + ] + ] + }, + "id": "way/283551740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551741", + "highway": "residential", + "name": "Jalan Mempawah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534123, + -0.0526511 + ], + [ + 109.3528341, + -0.0522451 + ], + [ + 109.3523781, + -0.051922 + ], + [ + 109.3521889, + -0.0517879 + ] + ] + }, + "id": "way/283551741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551742", + "highway": "residential", + "name": "Gang Haji Hasan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618367, + -0.0496861 + ], + [ + 109.3616678, + -0.0498232 + ], + [ + 109.361615, + -0.049867 + ], + [ + 109.3613809, + -0.0500594 + ], + [ + 109.3612145, + -0.0502401 + ], + [ + 109.3607675, + -0.0508047 + ], + [ + 109.3598542, + -0.0518626 + ] + ] + }, + "id": "way/283551742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551743", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500224, + -0.0745681 + ], + [ + 109.3482997, + -0.0731457 + ], + [ + 109.3475074, + -0.0724923 + ] + ] + }, + "id": "way/283551743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551749", + "access": "permissive", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553082, + -0.0652517 + ], + [ + 109.3552863, + -0.0652432 + ], + [ + 109.3552519, + -0.0652199 + ], + [ + 109.3552293, + -0.0652085 + ] + ] + }, + "id": "way/283551749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551750", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510085, + -0.0451058 + ], + [ + 109.3507216, + -0.0448488 + ], + [ + 109.3504316, + -0.0445743 + ], + [ + 109.3503231, + -0.0444792 + ], + [ + 109.3498104, + -0.044028 + ] + ] + }, + "id": "way/283551750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551751", + "highway": "tertiary", + "lanes": "2", + "name": "Jalan Daya Nasional", + "oneway": "yes", + "smoothness": "good", + "source": "GPS", + "surface": "asphalt", + "width": "8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520293, + -0.0515348 + ], + [ + 109.3521802, + -0.0514255 + ], + [ + 109.3522812, + -0.0513456 + ] + ] + }, + "id": "way/283551751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551752", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610816, + -0.0563986 + ], + [ + 109.3610214, + -0.0563373 + ] + ] + }, + "id": "way/283551752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551753", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3566378, + -0.0669692 + ], + [ + 109.3563259, + -0.0672494 + ], + [ + 109.3560178, + -0.0675322 + ] + ] + }, + "id": "way/283551753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551757", + "highway": "residential", + "name": "Komplek Bali Mas 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557639, + -0.0751257 + ], + [ + 109.3571772, + -0.0760718 + ] + ] + }, + "id": "way/283551757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551759", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513009, + -0.0649004 + ], + [ + 109.3503558, + -0.0640316 + ], + [ + 109.3491068, + -0.0628814 + ] + ] + }, + "id": "way/283551759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551762", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492938, + -0.0607103 + ], + [ + 109.3498029, + -0.0610922 + ] + ] + }, + "id": "way/283551762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551764", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486266, + -0.0610076 + ], + [ + 109.3490562, + -0.0613193 + ], + [ + 109.3493418, + -0.0615218 + ] + ] + }, + "id": "way/283551764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551769", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Alqadar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600525, + -0.0637641 + ], + [ + 109.3588896, + -0.0624491 + ], + [ + 109.3577938, + -0.0611235 + ] + ] + }, + "id": "way/283551769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551770", + "highway": "residential", + "name": "Gang Haji Munaf" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602045, + -0.0488477 + ], + [ + 109.3599783, + -0.0491556 + ], + [ + 109.35965, + -0.0496024 + ], + [ + 109.3586327, + -0.0508522 + ] + ] + }, + "id": "way/283551770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551772", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511225, + -0.0652019 + ], + [ + 109.3501367, + -0.0642778 + ], + [ + 109.3486547, + -0.0629004 + ] + ] + }, + "id": "way/283551772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551773", + "highway": "residential", + "name": "Gang Empat Lima" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602752, + -0.0480521 + ], + [ + 109.360119, + -0.0482107 + ], + [ + 109.3599661, + -0.0483847 + ], + [ + 109.3598018, + -0.0485714 + ], + [ + 109.359323, + -0.0491833 + ], + [ + 109.3590653, + -0.0495649 + ], + [ + 109.3587309, + -0.0500339 + ], + [ + 109.3583236, + -0.0505796 + ] + ] + }, + "id": "way/283551773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551774", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593819, + -0.0586921 + ], + [ + 109.3593001, + -0.0586246 + ] + ] + }, + "id": "way/283551774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551775", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534758, + -0.0686088 + ], + [ + 109.3533784, + -0.0685331 + ] + ] + }, + "id": "way/283551775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551776", + "highway": "residential", + "name": "Gang Belitung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3631575, + -0.055836 + ], + [ + 109.3632796, + -0.0557856 + ], + [ + 109.3634503, + -0.0557185 + ], + [ + 109.3636132, + -0.0556615 + ], + [ + 109.3638224, + -0.0555844 + ], + [ + 109.3640018, + -0.0555167 + ], + [ + 109.3642274, + -0.0554225 + ], + [ + 109.3642871, + -0.0553936 + ], + [ + 109.364387, + -0.055336 + ], + [ + 109.3645265, + -0.0552461 + ], + [ + 109.3646492, + -0.055161 + ], + [ + 109.3647511, + -0.0550952 + ], + [ + 109.3648182, + -0.0550476 + ], + [ + 109.3650106, + -0.0549082 + ], + [ + 109.3650951, + -0.0548447 + ], + [ + 109.3651856, + -0.0547767 + ], + [ + 109.3653506, + -0.054658 + ], + [ + 109.365413, + -0.0546151 + ], + [ + 109.3654949, + -0.0545561 + ] + ] + }, + "id": "way/283551776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551778", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502857, + -0.0449245 + ], + [ + 109.3502843, + -0.0449222 + ], + [ + 109.3502827, + -0.0449211 + ], + [ + 109.3502771, + -0.0449175 + ], + [ + 109.3500743, + -0.0447621 + ], + [ + 109.3499261, + -0.0446401 + ], + [ + 109.3495414, + -0.0443233 + ] + ] + }, + "id": "way/283551778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551779", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483576, + -0.0614242 + ], + [ + 109.3483016, + -0.0613879 + ], + [ + 109.3480799, + -0.0612442 + ], + [ + 109.3479779, + -0.0611758 + ], + [ + 109.3478452, + -0.0611034 + ], + [ + 109.3475287, + -0.0609384 + ], + [ + 109.3472911, + -0.0607779 + ], + [ + 109.3469326, + -0.0605807 + ], + [ + 109.3469004, + -0.0605568 + ], + [ + 109.3467985, + -0.0604811 + ], + [ + 109.3466556, + -0.0603242 + ], + [ + 109.346521, + -0.0601547 + ] + ] + }, + "id": "way/283551779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551780", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552028, + -0.0494059 + ], + [ + 109.355169, + -0.0493694 + ], + [ + 109.354953, + -0.0491307 + ] + ] + }, + "id": "way/283551780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551781", + "highway": "residential", + "name": "Komplek Famili Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354776, + -0.0738728 + ], + [ + 109.35504, + -0.0740358 + ], + [ + 109.3553862, + -0.0742375 + ], + [ + 109.3560572, + -0.0746362 + ], + [ + 109.3565825, + -0.0750026 + ], + [ + 109.3568668, + -0.0752091 + ], + [ + 109.357205, + -0.075472 + ], + [ + 109.3575157, + -0.075689 + ] + ] + }, + "id": "way/283551781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551782", + "highway": "residential", + "name": "Gang Haji Malailamah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615566, + -0.0496929 + ], + [ + 109.3615025, + -0.049624 + ], + [ + 109.3614664, + -0.0495826 + ], + [ + 109.3614463, + -0.0495662 + ], + [ + 109.3614301, + -0.0495593 + ], + [ + 109.3614171, + -0.0495608 + ], + [ + 109.3614042, + -0.0495674 + ], + [ + 109.3613883, + -0.0495776 + ], + [ + 109.3609217, + -0.0500428 + ], + [ + 109.3604911, + -0.0506027 + ], + [ + 109.3596044, + -0.0516641 + ] + ] + }, + "id": "way/283551782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551783", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592308, + -0.0469829 + ], + [ + 109.3592422, + -0.0469973 + ], + [ + 109.3592492, + -0.0470101 + ], + [ + 109.3592512, + -0.0470186 + ], + [ + 109.3592503, + -0.0470285 + ], + [ + 109.3592439, + -0.0470382 + ], + [ + 109.3589229, + -0.0474172 + ], + [ + 109.3582699, + -0.0482171 + ], + [ + 109.3579648, + -0.0479917 + ], + [ + 109.3579411, + -0.0479721 + ], + [ + 109.3576039, + -0.0476691 + ], + [ + 109.3573965, + -0.0474925 + ], + [ + 109.357213, + -0.0473279 + ], + [ + 109.3571576, + -0.0472796 + ], + [ + 109.3568402, + -0.0470032 + ], + [ + 109.3567276, + -0.0469052 + ], + [ + 109.3565378, + -0.0467556 + ], + [ + 109.356482, + -0.0467162 + ], + [ + 109.3563891, + -0.0466528 + ], + [ + 109.3560537, + -0.0464365 + ], + [ + 109.3560257, + -0.0464209 + ], + [ + 109.3556603, + -0.0461618 + ], + [ + 109.3554339, + -0.0459909 + ], + [ + 109.3554192, + -0.0459776 + ], + [ + 109.3551985, + -0.0457572 + ], + [ + 109.3550022, + -0.0455308 + ], + [ + 109.3548875, + -0.0453942 + ], + [ + 109.3547293, + -0.0451534 + ] + ] + }, + "id": "way/283551783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551784", + "highway": "tertiary", + "lanes": "2", + "name": "Jalan Daya Nasional", + "oneway": "yes", + "smoothness": "good", + "source": "GPS", + "surface": "asphalt", + "width": "8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495994, + -0.0550095 + ], + [ + 109.3497026, + -0.0549316 + ], + [ + 109.3499043, + -0.0546604 + ], + [ + 109.3503996, + -0.0539466 + ], + [ + 109.3506279, + -0.0536202 + ], + [ + 109.3507296, + -0.0534747 + ], + [ + 109.3519218, + -0.0517949 + ] + ] + }, + "id": "way/283551784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551785", + "highway": "residential", + "name": "Komplek Mitra Indah Utama 3", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585558, + -0.0714189 + ], + [ + 109.3592488, + -0.0718961 + ], + [ + 109.3596666, + -0.0721686 + ], + [ + 109.3597048, + -0.0721958 + ] + ] + }, + "id": "way/283551785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551786", + "highway": "residential", + "lanes": "1", + "name": "Gang Bansir III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534243, + -0.0451626 + ], + [ + 109.3536488, + -0.0450095 + ], + [ + 109.3538439, + -0.0448774 + ], + [ + 109.3541425, + -0.0446822 + ], + [ + 109.3542758, + -0.0445951 + ], + [ + 109.3544219, + -0.0445025 + ], + [ + 109.3547453, + -0.0442898 + ], + [ + 109.3549497, + -0.0441223 + ], + [ + 109.3551436, + -0.0439438 + ], + [ + 109.3552668, + -0.0438326 + ], + [ + 109.3554888, + -0.0436534 + ] + ] + }, + "id": "way/283551786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551787", + "highway": "residential", + "name": "Komplek Pondok Agung Utama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3589495, + -0.0732437 + ], + [ + 109.3574766, + -0.0722088 + ], + [ + 109.3559877, + -0.0711371 + ] + ] + }, + "id": "way/283551787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551788", + "highway": "living_street", + "name": "Gang Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476967, + -0.0721579 + ], + [ + 109.3459462, + -0.0707567 + ], + [ + 109.3458751, + -0.0707272 + ], + [ + 109.3458228, + -0.0707526 + ], + [ + 109.3451844, + -0.0714075 + ], + [ + 109.3449996, + -0.0715916 + ] + ] + }, + "id": "way/283551788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551789", + "highway": "living_street", + "name": "Gang Karya I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479326, + -0.0718269 + ], + [ + 109.3461011, + -0.0703892 + ], + [ + 109.3460387, + -0.0703315 + ], + [ + 109.3459609, + -0.0702578 + ], + [ + 109.3458878, + -0.070182 + ], + [ + 109.3458053, + -0.0700787 + ], + [ + 109.3456974, + -0.0699426 + ], + [ + 109.3455794, + -0.0697937 + ], + [ + 109.3454647, + -0.0696382 + ] + ] + }, + "id": "way/283551789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551791", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563495, + -0.0575122 + ], + [ + 109.3560648, + -0.0571632 + ], + [ + 109.3560541, + -0.0571471 + ], + [ + 109.3560527, + -0.0571297 + ], + [ + 109.3563102, + -0.0568762 + ], + [ + 109.3563397, + -0.0568682 + ], + [ + 109.3563706, + -0.0568695 + ], + [ + 109.3565476, + -0.0570466 + ], + [ + 109.3566388, + -0.0571569 + ] + ] + }, + "id": "way/283551791" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551792", + "access": "permissive", + "highway": "residential", + "name": "Gang Selasih" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552293, + -0.0652085 + ], + [ + 109.3551776, + -0.0651773 + ], + [ + 109.3551194, + -0.0651332 + ], + [ + 109.3549807, + -0.0650168 + ], + [ + 109.3549176, + -0.0649505 + ], + [ + 109.3542589, + -0.064405 + ], + [ + 109.3537549, + -0.0640184 + ], + [ + 109.3534368, + -0.0638064 + ], + [ + 109.3528166, + -0.0633404 + ], + [ + 109.3528099, + -0.0633108 + ], + [ + 109.3528207, + -0.063276 + ], + [ + 109.3532176, + -0.0629005 + ], + [ + 109.3532588, + -0.0628644 + ], + [ + 109.3540746, + -0.0621481 + ], + [ + 109.3545332, + -0.0617249 + ], + [ + 109.3546154, + -0.061649 + ] + ] + }, + "id": "way/283551792" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551795", + "highway": "residential", + "name": "Gang Keluarga 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621883, + -0.0602746 + ], + [ + 109.3616036, + -0.0596362 + ], + [ + 109.3613808, + -0.0593887 + ], + [ + 109.3612323, + -0.0592332 + ], + [ + 109.3609059, + -0.05887 + ], + [ + 109.360359, + -0.0582536 + ], + [ + 109.360307, + -0.0581997 + ], + [ + 109.360256, + -0.0581369 + ], + [ + 109.3602099, + -0.0580858 + ], + [ + 109.3601653, + -0.0580202 + ], + [ + 109.3600691, + -0.0578963 + ] + ] + }, + "id": "way/283551795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551796", + "access": "destination", + "highway": "residential", + "name": "Gang Mitra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543123, + -0.0744719 + ], + [ + 109.3542941, + -0.0744563 + ], + [ + 109.3538667, + -0.0740907 + ], + [ + 109.3535094, + -0.0737123 + ], + [ + 109.3517211, + -0.0718352 + ] + ] + }, + "id": "way/283551796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551798", + "highway": "residential", + "name": "Gang Harapan Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509619, + -0.0469863 + ], + [ + 109.3512308, + -0.0466443 + ], + [ + 109.3513877, + -0.0464371 + ], + [ + 109.3515265, + -0.0462567 + ], + [ + 109.3515329, + -0.046246 + ], + [ + 109.3515345, + -0.0462385 + ], + [ + 109.3515349, + -0.0462325 + ], + [ + 109.3515339, + -0.0462267 + ], + [ + 109.351533, + -0.0462233 + ], + [ + 109.3515309, + -0.0462198 + ], + [ + 109.3514478, + -0.0461359 + ], + [ + 109.3511591, + -0.0458737 + ] + ] + }, + "id": "way/283551798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551799", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3596006, + -0.0583555 + ], + [ + 109.3594894, + -0.0582536 + ], + [ + 109.3593205, + -0.0580915 + ], + [ + 109.3591434, + -0.0579248 + ], + [ + 109.3588617, + -0.0577412 + ], + [ + 109.35861, + -0.0575162 + ], + [ + 109.3573991, + -0.056303 + ] + ] + }, + "id": "way/283551799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551800", + "highway": "residential", + "name": "Jalan Manggapinoh" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511918, + -0.0510751 + ], + [ + 109.3515409, + -0.0506345 + ], + [ + 109.352087, + -0.0499355 + ], + [ + 109.3525757, + -0.0492926 + ], + [ + 109.3529574, + -0.0488076 + ], + [ + 109.3530952, + -0.0486324 + ] + ] + }, + "id": "way/283551800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551801", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3538465, + -0.0679265 + ], + [ + 109.3537358, + -0.0678448 + ] + ] + }, + "id": "way/283551801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551803", + "highway": "residential", + "name": "Kompl. Haji Anwar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615245, + -0.0535425 + ], + [ + 109.3619824, + -0.0533277 + ], + [ + 109.3621095, + -0.0532663 + ], + [ + 109.3621796, + -0.0532278 + ], + [ + 109.3622694, + -0.0531721 + ], + [ + 109.3623321, + -0.0531228 + ], + [ + 109.3624139, + -0.053044 + ], + [ + 109.362486, + -0.0529763 + ], + [ + 109.3625541, + -0.0529203 + ], + [ + 109.3628642, + -0.0527081 + ], + [ + 109.3631539, + -0.052519 + ], + [ + 109.3635938, + -0.05224 + ] + ] + }, + "id": "way/283551803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551806", + "highway": "residential", + "name": "Gang Muslimin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614958, + -0.055922 + ], + [ + 109.3624672, + -0.0569996 + ], + [ + 109.3633376, + -0.0579484 + ], + [ + 109.3633631, + -0.0579639 + ], + [ + 109.3633879, + -0.0579625 + ], + [ + 109.3634831, + -0.0578807 + ], + [ + 109.3635362, + -0.057831 + ] + ] + }, + "id": "way/283551806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551807", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586654, + -0.0597227 + ], + [ + 109.3586036, + -0.0596574 + ] + ] + }, + "id": "way/283551807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551810", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513686, + -0.047582 + ], + [ + 109.3515262, + -0.0473403 + ], + [ + 109.3513484, + -0.0472503 + ] + ] + }, + "id": "way/283551810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551811", + "highway": "residential", + "name": "Gang Darsyad" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591823, + -0.0483906 + ], + [ + 109.3589364, + -0.0487012 + ], + [ + 109.3585663, + -0.0492071 + ], + [ + 109.3583627, + -0.0494726 + ], + [ + 109.3578289, + -0.0501684 + ] + ] + }, + "id": "way/283551811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551815", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511356, + -0.0677914 + ], + [ + 109.350891, + -0.0681363 + ], + [ + 109.3508346, + -0.0681297 + ], + [ + 109.3508042, + -0.0681059 + ], + [ + 109.3496463, + -0.0671813 + ] + ] + }, + "id": "way/283551815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551816", + "highway": "residential", + "name": "Gang Tj. Harapan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515791, + -0.0454443 + ], + [ + 109.3518387, + -0.0456728 + ], + [ + 109.3520182, + -0.0458342 + ], + [ + 109.3521999, + -0.0459976 + ], + [ + 109.3518965, + -0.0464238 + ], + [ + 109.3517377, + -0.0466469 + ], + [ + 109.3516123, + -0.0468491 + ], + [ + 109.3514783, + -0.047054 + ], + [ + 109.3513484, + -0.0472503 + ] + ] + }, + "id": "way/283551816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551820", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494372, + -0.0664624 + ], + [ + 109.3499052, + -0.0668494 + ], + [ + 109.3500085, + -0.0669186 + ], + [ + 109.3511356, + -0.0677914 + ], + [ + 109.3529162, + -0.0691785 + ] + ] + }, + "id": "way/283551820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551823", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573402, + -0.0683547 + ], + [ + 109.3572688, + -0.0684869 + ], + [ + 109.3571585, + -0.0686914 + ], + [ + 109.3571223, + -0.068741 + ], + [ + 109.3570914, + -0.0687497 + ], + [ + 109.3570629, + -0.068726 + ], + [ + 109.3560178, + -0.0675322 + ], + [ + 109.355755, + -0.0672161 + ], + [ + 109.3554452, + -0.0668648 + ], + [ + 109.3548384, + -0.0662141 + ] + ] + }, + "id": "way/283551823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551827", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3541551, + -0.0671564 + ], + [ + 109.3541316, + -0.0671374 + ], + [ + 109.353989, + -0.067022 + ], + [ + 109.3527653, + -0.0659655 + ], + [ + 109.3515677, + -0.0650324 + ] + ] + }, + "id": "way/283551827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551829", + "highway": "residential", + "name": "Gang Pandu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565, + -0.0489561 + ], + [ + 109.3563987, + -0.0490899 + ], + [ + 109.3559654, + -0.0496622 + ], + [ + 109.3557355, + -0.0499643 + ], + [ + 109.3556367, + -0.0500942 + ], + [ + 109.3554685, + -0.0503153 + ] + ] + }, + "id": "way/283551829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551831", + "highway": "residential", + "name": "Gang Gading" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531187, + -0.0642209 + ], + [ + 109.3529365, + -0.0640836 + ], + [ + 109.3528587, + -0.0640283 + ], + [ + 109.3524067, + -0.0636809 + ], + [ + 109.3520622, + -0.0633979 + ], + [ + 109.3510771, + -0.0626382 + ] + ] + }, + "id": "way/283551831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551834", + "highway": "living_street", + "name": "Gang Masjid Quba" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507022, + -0.073589 + ], + [ + 109.3506769, + -0.0735669 + ] + ] + }, + "id": "way/283551834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551836", + "highway": "residential", + "maxspeed": "20", + "name": "Komplek Mitra Indah Utama I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599351, + -0.0716903 + ], + [ + 109.3594715, + -0.0713719 + ], + [ + 109.3584298, + -0.0706347 + ], + [ + 109.3568306, + -0.0694987 + ], + [ + 109.3567997, + -0.0694544 + ], + [ + 109.3568346, + -0.0693901 + ], + [ + 109.3568721, + -0.0693217 + ], + [ + 109.3570063, + -0.0692519 + ], + [ + 109.3571337, + -0.0692211 + ], + [ + 109.3571927, + -0.0692224 + ], + [ + 109.3572436, + -0.0692385 + ], + [ + 109.3573134, + -0.069268 + ] + ] + }, + "id": "way/283551836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551840", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547739, + -0.0660761 + ], + [ + 109.3546916, + -0.0660077 + ], + [ + 109.35408, + -0.0654687 + ], + [ + 109.3536099, + -0.0650731 + ], + [ + 109.3535314, + -0.064998 + ], + [ + 109.3534523, + -0.0649249 + ], + [ + 109.3522925, + -0.0641135 + ] + ] + }, + "id": "way/283551840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551842", + "highway": "residential", + "name": "Alex Griya Permai I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550483, + -0.0658343 + ], + [ + 109.3556799, + -0.0665268 + ], + [ + 109.3563259, + -0.0672494 + ], + [ + 109.3573402, + -0.0683547 + ], + [ + 109.3575219, + -0.0679906 + ], + [ + 109.3575192, + -0.0679578 + ], + [ + 109.3575072, + -0.0679236 + ], + [ + 109.3566378, + -0.0669692 + ], + [ + 109.3552549, + -0.0654433 + ] + ] + }, + "id": "way/283551842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551846", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616304, + -0.055773 + ], + [ + 109.3627966, + -0.0570525 + ], + [ + 109.3630256, + -0.0572997 + ], + [ + 109.3635362, + -0.057831 + ], + [ + 109.363695, + -0.0580024 + ], + [ + 109.3637354, + -0.0579609 + ], + [ + 109.3641327, + -0.0575722 + ] + ] + }, + "id": "way/283551846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551849", + "highway": "living_street", + "motor_vehicle": "private", + "name": "Komplek Bali Mas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518543, + -0.0713814 + ], + [ + 109.3492133, + -0.0695928 + ] + ] + }, + "id": "way/283551849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551850", + "highway": "residential", + "name": "Gang Demak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545453, + -0.0663979 + ], + [ + 109.3542851, + -0.0662396 + ], + [ + 109.3542337, + -0.0661895 + ], + [ + 109.3533757, + -0.0654344 + ] + ] + }, + "id": "way/283551850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551858", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437525, + -0.0605049 + ], + [ + 109.3439073, + -0.0603434 + ], + [ + 109.3443328, + -0.0598977 + ], + [ + 109.3448065, + -0.0593938 + ], + [ + 109.3449757, + -0.0592156 + ], + [ + 109.3451957, + -0.0589838 + ], + [ + 109.3453129, + -0.0588604 + ], + [ + 109.3462076, + -0.0579495 + ], + [ + 109.3463639, + -0.0577903 + ] + ] + }, + "id": "way/283551858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551859", + "highway": "service", + "name": "Jalan Profesor Dokter Haji Hadari Nawawi", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475993, + -0.0589663 + ], + [ + 109.3470051, + -0.059625 + ], + [ + 109.346521, + -0.0601547 + ], + [ + 109.3463929, + -0.060288 + ], + [ + 109.3462347, + -0.0604526 + ], + [ + 109.3461739, + -0.0605165 + ] + ] + }, + "id": "way/283551859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551860", + "highway": "residential", + "name": "Komplek Mitra Indah Utama 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564336, + -0.0701424 + ], + [ + 109.3564953, + -0.0700097 + ], + [ + 109.3565597, + -0.0698916 + ], + [ + 109.3566053, + -0.0698367 + ], + [ + 109.3566428, + -0.0698313 + ], + [ + 109.3567005, + -0.0698688 + ], + [ + 109.3582064, + -0.0709354 + ], + [ + 109.3586012, + -0.071223 + ], + [ + 109.3586404, + -0.0712515 + ], + [ + 109.3586437, + -0.071277 + ], + [ + 109.3586295, + -0.071306 + ], + [ + 109.3585558, + -0.0714189 + ], + [ + 109.3584573, + -0.071558 + ], + [ + 109.3584379, + -0.0715694 + ], + [ + 109.3584144, + -0.0715606 + ], + [ + 109.3564685, + -0.0702162 + ], + [ + 109.3564457, + -0.070192 + ], + [ + 109.3564336, + -0.0701424 + ] + ] + }, + "id": "way/283551860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551864", + "highway": "residential", + "name": "Jalan Silat Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516464, + -0.0562012 + ], + [ + 109.3516564, + -0.056198 + ], + [ + 109.351663, + -0.0561909 + ], + [ + 109.3520607, + -0.0555478 + ], + [ + 109.352276, + -0.055202 + ], + [ + 109.3525439, + -0.0548215 + ], + [ + 109.3531471, + -0.0539649 + ], + [ + 109.3532592, + -0.0538011 + ], + [ + 109.3537876, + -0.0530246 + ], + [ + 109.3541142, + -0.0526071 + ] + ] + }, + "id": "way/283551864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551866", + "highway": "residential", + "lanes": "1", + "motor_vehicle": "destination", + "motorcar": "yes", + "name": "Gang Balai POM" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600525, + -0.0637641 + ], + [ + 109.3602081, + -0.0635314 + ], + [ + 109.3602353, + -0.0635238 + ], + [ + 109.3602718, + -0.0635355 + ], + [ + 109.3604509, + -0.0636707 + ], + [ + 109.3605897, + -0.0637755 + ], + [ + 109.3609276, + -0.0640435 + ], + [ + 109.361072, + -0.0641532 + ], + [ + 109.3612464, + -0.0642898 + ], + [ + 109.3615318, + -0.0645058 + ], + [ + 109.3617055, + -0.0646379 + ], + [ + 109.3617209, + -0.0646727 + ], + [ + 109.3617088, + -0.0647056 + ], + [ + 109.3616887, + -0.0647559 + ], + [ + 109.3616618, + -0.0647906 + ], + [ + 109.3623278, + -0.0653366 + ], + [ + 109.362659, + -0.0655988 + ], + [ + 109.3628615, + -0.0657576 + ], + [ + 109.362928, + -0.0658058 + ], + [ + 109.3629769, + -0.0658416 + ], + [ + 109.3630939, + -0.0659379 + ], + [ + 109.3630473, + -0.0660191 + ] + ] + }, + "id": "way/283551866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551867", + "highway": "residential", + "name": "Jalan Karangan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519166, + -0.0516061 + ], + [ + 109.3511918, + -0.0510751 + ], + [ + 109.350116, + -0.0502904 + ], + [ + 109.3500972, + -0.0502679 + ], + [ + 109.3500888, + -0.0502529 + ], + [ + 109.3500845, + -0.0502394 + ], + [ + 109.3500851, + -0.0502267 + ], + [ + 109.3500929, + -0.0502116 + ], + [ + 109.3503926, + -0.0497989 + ], + [ + 109.3506371, + -0.049417 + ], + [ + 109.350897, + -0.0490111 + ], + [ + 109.3511317, + -0.0486665 + ], + [ + 109.3513609, + -0.0483555 + ], + [ + 109.3513803, + -0.0483354 + ], + [ + 109.3513957, + -0.048328 + ], + [ + 109.3514128, + -0.0483247 + ], + [ + 109.351433, + -0.0483247 + ], + [ + 109.3514604, + -0.0483357 + ], + [ + 109.3514843, + -0.0483458 + ], + [ + 109.3519863, + -0.048743 + ], + [ + 109.3521433, + -0.0488641 + ], + [ + 109.352291, + -0.0489789 + ], + [ + 109.3523489, + -0.0490356 + ], + [ + 109.3526811, + -0.0486391 + ], + [ + 109.3529574, + -0.0488076 + ] + ] + }, + "id": "way/283551867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551869", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612404, + -0.051528 + ], + [ + 109.3611982, + -0.0514766 + ], + [ + 109.3611825, + -0.0514511 + ], + [ + 109.3611727, + -0.0514267 + ], + [ + 109.361164, + -0.0513871 + ], + [ + 109.3611643, + -0.0513298 + ], + [ + 109.3611617, + -0.0512754 + ], + [ + 109.361158, + -0.051253 + ], + [ + 109.36115, + -0.0512372 + ], + [ + 109.3611292, + -0.0512156 + ], + [ + 109.36102, + -0.0510839 + ], + [ + 109.3609559, + -0.0509976 + ], + [ + 109.3607675, + -0.0508047 + ], + [ + 109.3606276, + -0.0507058 + ], + [ + 109.3604911, + -0.0506027 + ], + [ + 109.3602465, + -0.0503571 + ], + [ + 109.3601118, + -0.0501987 + ], + [ + 109.3600418, + -0.0500963 + ], + [ + 109.3599806, + -0.0499992 + ], + [ + 109.359913, + -0.0498947 + ], + [ + 109.35965, + -0.0496024 + ], + [ + 109.3595342, + -0.0494673 + ], + [ + 109.359323, + -0.0491833 + ], + [ + 109.3591341, + -0.0489491 + ], + [ + 109.359082, + -0.0488856 + ], + [ + 109.3589364, + -0.0487012 + ], + [ + 109.358804, + -0.0485867 + ], + [ + 109.3586907, + -0.0484839 + ], + [ + 109.3586122, + -0.0484266 + ] + ] + }, + "id": "way/283551869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283551870", + "highway": "residential", + "name": "Jalan Karya Kita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468434, + -0.0733718 + ], + [ + 109.3469197, + -0.07326 + ], + [ + 109.3470629, + -0.073052 + ], + [ + 109.3472237, + -0.0728145 + ], + [ + 109.3473852, + -0.0725779 + ], + [ + 109.3474685, + -0.0724547 + ], + [ + 109.3476967, + -0.0721579 + ], + [ + 109.3479326, + -0.0718269 + ], + [ + 109.3481231, + -0.0715098 + ], + [ + 109.3481557, + -0.0714481 + ], + [ + 109.348282, + -0.0712127 + ], + [ + 109.3483538, + -0.0710981 + ], + [ + 109.3485279, + -0.0708233 + ], + [ + 109.348741, + -0.0704978 + ], + [ + 109.3489461, + -0.0701684 + ], + [ + 109.3489616, + -0.0701387 + ], + [ + 109.349022, + -0.0699746 + ], + [ + 109.3492133, + -0.0695928 + ], + [ + 109.349313, + -0.0693867 + ], + [ + 109.3493926, + -0.0692277 + ], + [ + 109.3494848, + -0.0690505 + ], + [ + 109.3495165, + -0.0689858 + ], + [ + 109.3496853, + -0.0686519 + ], + [ + 109.3498088, + -0.068425 + ], + [ + 109.3499964, + -0.0680457 + ] + ] + }, + "id": "way/283551870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573354", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940767, + -0.0234155 + ], + [ + 109.2943627, + -0.0232136 + ], + [ + 109.2943672, + -0.0232059 + ], + [ + 109.2943677, + -0.0231956 + ], + [ + 109.2943615, + -0.0231833 + ], + [ + 109.293988, + -0.0226415 + ], + [ + 109.2939706, + -0.0226169 + ], + [ + 109.2939631, + -0.0226099 + ], + [ + 109.2939541, + -0.0226067 + ], + [ + 109.2939433, + -0.022607 + ], + [ + 109.2939335, + -0.0226095 + ], + [ + 109.2935992, + -0.0227127 + ], + [ + 109.2935926, + -0.0227193 + ], + [ + 109.293591, + -0.0227289 + ], + [ + 109.2935949, + -0.0227442 + ], + [ + 109.2940767, + -0.0234155 + ] + ] + }, + "id": "way/283573354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573357", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995314, + -0.0161853 + ], + [ + 109.2995684, + -0.0160249 + ], + [ + 109.2995962, + -0.0159971 + ], + [ + 109.2996101, + -0.0159929 + ], + [ + 109.3008847, + -0.0162376 + ], + [ + 109.3020347, + -0.0164889 + ] + ] + }, + "id": "way/283573357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573361", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091074, + 0.0055569 + ], + [ + 109.3093889, + 0.0065296 + ], + [ + 109.3096411, + 0.007401 + ], + [ + 109.3099298, + 0.0084619 + ], + [ + 109.3099629, + 0.0085741 + ], + [ + 109.3100393, + 0.0088527 + ], + [ + 109.3101512, + 0.0091724 + ], + [ + 109.3104437, + 0.0100322 + ], + [ + 109.3107113, + 0.0107878 + ], + [ + 109.3107133, + 0.010814 + ], + [ + 109.310708, + 0.0108348 + ], + [ + 109.3105725, + 0.0109508 + ], + [ + 109.3105712, + 0.0109843 + ], + [ + 109.3105779, + 0.0110265 + ], + [ + 109.3107749, + 0.0115575 + ], + [ + 109.3108699, + 0.0117903 + ] + ] + }, + "id": "way/283573361" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573364", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3031321, + -0.01705 + ], + [ + 109.3030027, + -0.016792 + ], + [ + 109.3026557, + -0.0169133 + ], + [ + 109.3021718, + -0.0170964 + ], + [ + 109.3021497, + -0.017087 + ], + [ + 109.3021417, + -0.0170682 + ], + [ + 109.3021189, + -0.0169186 + ], + [ + 109.3020347, + -0.0164889 + ], + [ + 109.3020022, + -0.015758 + ], + [ + 109.3019707, + -0.015349 + ], + [ + 109.3019317, + -0.0149038 + ], + [ + 109.301931, + -0.0148755 + ], + [ + 109.3019246, + -0.0146287 + ], + [ + 109.3019197, + -0.0145919 + ], + [ + 109.3019117, + -0.0145738 + ], + [ + 109.3018949, + -0.0145604 + ], + [ + 109.3005817, + -0.014457 + ], + [ + 109.2991261, + -0.0143702 + ], + [ + 109.2990987, + -0.0143693 + ], + [ + 109.2990758, + -0.0143812 + ], + [ + 109.2990631, + -0.0144039 + ], + [ + 109.2990547, + -0.0146213 + ] + ] + }, + "id": "way/283573364" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573366", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124605, + -0.0083372 + ], + [ + 109.3126351, + -0.0080205 + ], + [ + 109.31282, + -0.0077035 + ], + [ + 109.3129241, + -0.0075249 + ], + [ + 109.3129422, + -0.0074928 + ], + [ + 109.3129613, + -0.0074562 + ], + [ + 109.3129382, + -0.0074432 + ], + [ + 109.3129101, + -0.0074264 + ], + [ + 109.3127803, + -0.0073355 + ], + [ + 109.3124652, + -0.0071404 + ], + [ + 109.3124524, + -0.0071323 + ], + [ + 109.312437, + -0.0071296 + ], + [ + 109.3124276, + -0.007135 + ], + [ + 109.3124232, + -0.0071494 + ], + [ + 109.3124219, + -0.0071736 + ], + [ + 109.3124338, + -0.0075167 + ], + [ + 109.3124427, + -0.0077744 + ], + [ + 109.3124514, + -0.0078609 + ], + [ + 109.3124621, + -0.0078998 + ], + [ + 109.3124823, + -0.0079232 + ], + [ + 109.3126351, + -0.0080205 + ] + ] + }, + "id": "way/283573366" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573371", + "highway": "unclassified", + "lanes": "2", + "name": "Gang Selamat 1", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216022, + -0.0200053 + ], + [ + 109.3215924, + -0.0199237 + ], + [ + 109.3214104, + -0.0184006 + ], + [ + 109.3213972, + -0.01829 + ], + [ + 109.321385, + -0.0181899 + ], + [ + 109.321292, + -0.0173807 + ], + [ + 109.321239, + -0.0169723 + ], + [ + 109.3212075, + -0.0167175 + ], + [ + 109.3212088, + -0.0166683 + ], + [ + 109.3212293, + -0.0166267 + ], + [ + 109.3212678, + -0.0165712 + ] + ] + }, + "id": "way/283573371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573378", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3047702, + -0.0068095 + ], + [ + 109.3048192, + -0.0068376 + ], + [ + 109.3048594, + -0.006898 + ], + [ + 109.3048695, + -0.0069221 + ], + [ + 109.304879, + -0.0069677 + ], + [ + 109.3048825, + -0.0070067 + ], + [ + 109.3048755, + -0.0070478 + ], + [ + 109.3048456, + -0.0071272 + ], + [ + 109.3048365, + -0.0071355 + ], + [ + 109.3047927, + -0.0071627 + ], + [ + 109.3046004, + -0.0071894 + ], + [ + 109.3040258, + -0.0071664 + ], + [ + 109.3040042, + -0.0071648 + ], + [ + 109.3036049, + -0.0071556 + ] + ] + }, + "id": "way/283573378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573385", + "highway": "unclassified", + "name": "Jalan Atot Ahmad" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035958, + -0.0087418 + ], + [ + 109.303597, + -0.0086867 + ], + [ + 109.3035927, + -0.0082416 + ], + [ + 109.3035904, + -0.0080273 + ], + [ + 109.3036049, + -0.0071556 + ], + [ + 109.3036108, + -0.0068024 + ], + [ + 109.3036211, + -0.0061863 + ], + [ + 109.3036263, + -0.0058749 + ], + [ + 109.3036349, + -0.0053579 + ], + [ + 109.3036407, + -0.0049394 + ] + ] + }, + "id": "way/283573385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573389", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2887139, + -0.0302747 + ], + [ + 109.2880989, + -0.0308079 + ], + [ + 109.2879375, + -0.0309328 + ], + [ + 109.287912, + -0.0309608 + ], + [ + 109.2876925, + -0.0311156 + ], + [ + 109.2875738, + -0.0312123 + ], + [ + 109.2873907, + -0.031344 + ], + [ + 109.2871434, + -0.031519 + ], + [ + 109.2870622, + -0.0316135 + ], + [ + 109.2869164, + -0.0317428 + ], + [ + 109.2866681, + -0.0319924 + ], + [ + 109.2864865, + -0.0322425 + ], + [ + 109.2863954, + -0.0323416 + ], + [ + 109.2863796, + -0.0323621 + ], + [ + 109.2862665, + -0.032509 + ], + [ + 109.2861825, + -0.032617 + ], + [ + 109.2861222, + -0.032676 + ], + [ + 109.286031, + -0.0327375 + ], + [ + 109.2860361, + -0.0328062 + ], + [ + 109.2860575, + -0.032836 + ], + [ + 109.2886634, + -0.0364578 + ] + ] + }, + "id": "way/283573389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573401", + "highway": "residential", + "name": "Gang Lamtoro" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075949, + -0.0058785 + ], + [ + 109.3071593, + -0.0072738 + ], + [ + 109.3071487, + -0.0073079 + ], + [ + 109.3070557, + -0.0076646 + ], + [ + 109.3070377, + -0.0077207 + ], + [ + 109.3069419, + -0.0080403 + ], + [ + 109.3069036, + -0.0081644 + ], + [ + 109.3068261, + -0.0084033 + ], + [ + 109.3068059, + -0.0084861 + ], + [ + 109.3067209, + -0.0087905 + ], + [ + 109.3067061, + -0.0088435 + ], + [ + 109.3066149, + -0.0091997 + ], + [ + 109.3064983, + -0.009504 + ], + [ + 109.3064672, + -0.0095785 + ], + [ + 109.3064268, + -0.0096703 + ], + [ + 109.3063146, + -0.0099705 + ], + [ + 109.3063018, + -0.0100213 + ], + [ + 109.3062464, + -0.0101801 + ], + [ + 109.3061981, + -0.010343 + ], + [ + 109.3061683, + -0.0104331 + ], + [ + 109.3060862, + -0.0107346 + ], + [ + 109.3060644, + -0.0108325 + ], + [ + 109.3060497, + -0.0109523 + ], + [ + 109.3060323, + -0.011078 + ], + [ + 109.3060061, + -0.0112114 + ], + [ + 109.3060031, + -0.011317 + ] + ] + }, + "id": "way/283573401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573403", + "highway": "residential", + "name": "Karya Tani 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.292449, + -0.003515 + ], + [ + 109.2919941, + -0.0034893 + ], + [ + 109.2917364, + -0.0034871 + ], + [ + 109.2915623, + -0.0034789 + ], + [ + 109.2913277, + -0.0034413 + ], + [ + 109.2910844, + -0.0033943 + ], + [ + 109.2909441, + -0.0033478 + ], + [ + 109.29087, + -0.0033303 + ], + [ + 109.2904493, + -0.0032304 + ], + [ + 109.2904142, + -0.0032164 + ], + [ + 109.2902868, + -0.0031819 + ], + [ + 109.2899163, + -0.0031018 + ], + [ + 109.2896685, + -0.0030405 + ], + [ + 109.2895342, + -0.0029984 + ], + [ + 109.2892037, + -0.0029246 + ], + [ + 109.2891863, + -0.0029205 + ], + [ + 109.2888688, + -0.0028358 + ] + ] + }, + "id": "way/283573403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573412", + "highway": "unclassified", + "name": "Jalan Haji Haruna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163761, + -0.0159421 + ], + [ + 109.3164898, + -0.0158677 + ], + [ + 109.3167882, + -0.0156828 + ], + [ + 109.3169329, + -0.0156278 + ], + [ + 109.3171191, + -0.0155571 + ], + [ + 109.3173071, + -0.0155094 + ], + [ + 109.3175038, + -0.0154907 + ], + [ + 109.3176916, + -0.0154887 + ], + [ + 109.317844, + -0.0154769 + ], + [ + 109.3178843, + -0.0154766 + ], + [ + 109.3183284, + -0.0154736 + ], + [ + 109.318391, + -0.0154658 + ], + [ + 109.3187532, + -0.0154441 + ], + [ + 109.3187927, + -0.0154374 + ], + [ + 109.3190763, + -0.0154308 + ], + [ + 109.3194892, + -0.0154218 + ], + [ + 109.3195324, + -0.0154093 + ], + [ + 109.3195559, + -0.0153898 + ], + [ + 109.319579, + -0.0153551 + ], + [ + 109.3196459, + -0.0152287 + ], + [ + 109.3197519, + -0.0150372 + ], + [ + 109.3205161, + -0.0135753 + ] + ] + }, + "id": "way/283573412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573415", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2840519, + -0.0349374 + ], + [ + 109.2863138, + -0.0382707 + ] + ] + }, + "id": "way/283573415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573416", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3076458, + 0.010246 + ], + [ + 109.3080618, + 0.0116877 + ] + ] + }, + "id": "way/283573416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573418", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068789, + -0.0020221 + ], + [ + 109.30669, + -0.0027337 + ], + [ + 109.3060123, + -0.0052864 + ], + [ + 109.3059939, + -0.0053558 + ] + ] + }, + "id": "way/283573418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573419", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2869159, + -0.0365822 + ], + [ + 109.2874278, + -0.0372323 + ] + ] + }, + "id": "way/283573419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573421", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023284, + -0.0189661 + ], + [ + 109.3030883, + -0.0205718 + ] + ] + }, + "id": "way/283573421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573423", + "highway": "residential", + "name": "Gang Pala 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315091, + -0.0135131 + ], + [ + 109.3157157, + -0.0121611 + ], + [ + 109.3157462, + -0.0121115 + ], + [ + 109.315771, + -0.0120904 + ], + [ + 109.3157998, + -0.0120746 + ], + [ + 109.3158672, + -0.0120545 + ], + [ + 109.3159001, + -0.0120344 + ], + [ + 109.3159255, + -0.0120103 + ], + [ + 109.3159376, + -0.0119915 + ], + [ + 109.3165776, + -0.0106137 + ] + ] + }, + "id": "way/283573423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573425", + "highway": "residential", + "name": "Gang Berdikari 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993394, + -0.0223126 + ], + [ + 109.2996659, + -0.0229342 + ], + [ + 109.2999878, + -0.0235471 + ], + [ + 109.3007037, + -0.0248731 + ], + [ + 109.3011437, + -0.0257536 + ] + ] + }, + "id": "way/283573425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573427", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060988, + -0.0192835 + ], + [ + 109.3052423, + -0.0176263 + ], + [ + 109.3048178, + -0.0167877 + ], + [ + 109.3046618, + -0.0164979 + ], + [ + 109.3045503, + -0.016281 + ] + ] + }, + "id": "way/283573427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983159, + -0.0171437 + ], + [ + 109.3000308, + -0.0176221 + ], + [ + 109.3004251, + -0.0177318 + ], + [ + 109.3020014, + -0.0181705 + ] + ] + }, + "id": "way/283573431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573432", + "highway": "residential", + "name": "Gang Tebu 1A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103957, + -0.0066754 + ], + [ + 109.3100207, + -0.0080379 + ] + ] + }, + "id": "way/283573432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573434", + "highway": "residential", + "name": "Gang Mangga 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185561, + -0.0094704 + ], + [ + 109.3193644, + -0.0085361 + ], + [ + 109.3194221, + -0.0084694 + ], + [ + 109.3196455, + -0.0082111 + ] + ] + }, + "id": "way/283573434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573436", + "highway": "residential", + "name": "Gang Kurma Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083485, + -0.0061298 + ], + [ + 109.3079637, + -0.0075737 + ] + ] + }, + "id": "way/283573436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573440", + "highway": "residential", + "name": "Gang Kelapa 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3137461, + -0.0076736 + ], + [ + 109.3145666, + -0.0062383 + ] + ] + }, + "id": "way/283573440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573443", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025453, + -0.0077237 + ], + [ + 109.3032239, + -0.0077441 + ] + ] + }, + "id": "way/283573443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573445", + "highway": "residential", + "name": "Gang Apel Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220592, + -0.0147002 + ], + [ + 109.3232409, + -0.0133787 + ] + ] + }, + "id": "way/283573445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573447", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033929, + -0.0189565 + ], + [ + 109.3033131, + -0.018984 + ], + [ + 109.3033057, + -0.0189814 + ], + [ + 109.3032999, + -0.0189761 + ], + [ + 109.3032239, + -0.0188164 + ], + [ + 109.303124, + -0.0185944 + ], + [ + 109.3030603, + -0.0184516 + ], + [ + 109.3029899, + -0.0182953 + ], + [ + 109.3028766, + -0.0180674 + ], + [ + 109.3028695, + -0.0180556 + ], + [ + 109.3028471, + -0.0180097 + ], + [ + 109.3028243, + -0.0179923 + ], + [ + 109.3028109, + -0.0179862 + ], + [ + 109.3027881, + -0.0179842 + ], + [ + 109.3025815, + -0.0180741 + ] + ] + }, + "id": "way/283573447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573449", + "highway": "residential", + "name": "Gang Dahlia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103609, + -0.0093256 + ], + [ + 109.3107579, + -0.0084599 + ] + ] + }, + "id": "way/283573449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573451", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2894128, + -0.0016587 + ], + [ + 109.2892939, + -0.0023389 + ], + [ + 109.2892173, + -0.0028284 + ], + [ + 109.2892037, + -0.0029246 + ] + ] + }, + "id": "way/283573451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573453", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3045449, + -0.0080551 + ], + [ + 109.304533, + -0.0087335 + ] + ] + }, + "id": "way/283573453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573454", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039904, + -0.007786 + ], + [ + 109.3048699, + -0.0078106 + ] + ] + }, + "id": "way/283573454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573456", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305234, + -0.0196593 + ], + [ + 109.3036313, + -0.0166332 + ] + ] + }, + "id": "way/283573456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573458", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2910815, + -0.0334976 + ], + [ + 109.2887327, + -0.0303003 + ], + [ + 109.2887139, + -0.0302747 + ] + ] + }, + "id": "way/283573458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573460", + "highway": "residential", + "name": "Gang Ikrar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307212, + -0.0188478 + ], + [ + 109.3088948, + -0.023364 + ], + [ + 109.3089553, + -0.0235135 + ] + ] + }, + "id": "way/283573460" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573462", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297953, + -0.0231069 + ], + [ + 109.299964, + -0.0264489 + ] + ] + }, + "id": "way/283573462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573464", + "highway": "residential", + "name": "Gang Nanas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199971, + -0.0084692 + ], + [ + 109.3198674, + -0.0086229 + ], + [ + 109.3188794, + -0.0097423 + ] + ] + }, + "id": "way/283573464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573465", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3018956, + -0.0118577 + ], + [ + 109.3051067, + -0.0118716 + ] + ] + }, + "id": "way/283573465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573467", + "highway": "residential", + "name": "Gang Palawija 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138739, + -0.0063574 + ], + [ + 109.313155, + -0.0075475 + ] + ] + }, + "id": "way/283573467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573469", + "highway": "residential", + "name": "Formula" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.289948, + -0.0064793 + ], + [ + 109.2899163, + -0.0031018 + ] + ] + }, + "id": "way/283573469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573471", + "highway": "residential", + "name": "Gang Hasanah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062723, + -0.019213 + ], + [ + 109.3064906, + -0.0198494 + ], + [ + 109.3065117, + -0.0199057 + ], + [ + 109.3067391, + -0.0205172 + ], + [ + 109.3071198, + -0.0215408 + ], + [ + 109.3077019, + -0.0231568 + ] + ] + }, + "id": "way/283573471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573473", + "highway": "residential", + "name": "Lembayu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2895342, + -0.0029984 + ], + [ + 109.2895708, + -0.0063651 + ] + ] + }, + "id": "way/283573473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573475", + "highway": "residential", + "name": "Gang Rumput Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066389, + -0.0227046 + ], + [ + 109.3060309, + -0.0210956 + ], + [ + 109.3054284, + -0.0195698 + ] + ] + }, + "id": "way/283573475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067081, + -0.0172355 + ], + [ + 109.3056823, + -0.0176566 + ] + ] + }, + "id": "way/283573480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573482", + "highway": "residential", + "name": "Gang Timun 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146336, + -0.0091522 + ], + [ + 109.3148997, + -0.0086917 + ], + [ + 109.3149888, + -0.0085375 + ], + [ + 109.3154914, + -0.0076561 + ], + [ + 109.3156978, + -0.0072942 + ], + [ + 109.315823, + -0.0070793 + ] + ] + }, + "id": "way/283573482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573484", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.288602, + -0.027827 + ], + [ + 109.288314, + -0.028125 + ] + ] + }, + "id": "way/283573484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573485", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941977, + -0.025709 + ], + [ + 109.2922342, + -0.023175 + ], + [ + 109.2921961, + -0.0231195 + ], + [ + 109.29216, + -0.0230669 + ], + [ + 109.2920673, + -0.0229222 + ], + [ + 109.2917196, + -0.0222977 + ], + [ + 109.2911471, + -0.0211883 + ], + [ + 109.2906779, + -0.0203446 + ] + ] + }, + "id": "way/283573485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573487", + "highway": "residential", + "name": "Gang Mempelam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193585, + -0.0101305 + ], + [ + 109.3192327, + -0.0102836 + ], + [ + 109.3190396, + -0.0105451 + ], + [ + 109.3187097, + -0.0110038 + ], + [ + 109.3181302, + -0.0117845 + ] + ] + }, + "id": "way/283573487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573489", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246194, + -0.0178364 + ], + [ + 109.3249597, + -0.0177786 + ] + ] + }, + "id": "way/283573489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573493", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019664, + -0.0133704 + ], + [ + 109.3050897, + -0.0132106 + ] + ] + }, + "id": "way/283573493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573495", + "highway": "residential", + "motor_vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2900598, + -0.0248162 + ], + [ + 109.2919023, + -0.0273609 + ] + ] + }, + "id": "way/283573495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573496", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048553, + -0.0252721 + ], + [ + 109.3046857, + -0.0248332 + ], + [ + 109.3045087, + -0.0244363 + ], + [ + 109.30421, + -0.0236891 + ] + ] + }, + "id": "way/283573496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573500", + "highway": "residential", + "name": "Gang Paramas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034439, + -0.0204176 + ], + [ + 109.3040273, + -0.0219512 + ], + [ + 109.3046301, + -0.0234291 + ] + ] + }, + "id": "way/283573500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573505", + "highway": "residential", + "name": "Gang Mandau" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062226, + -0.0227948 + ], + [ + 109.3061535, + -0.0226495 + ], + [ + 109.3056339, + -0.0211626 + ], + [ + 109.3051364, + -0.0197042 + ] + ] + }, + "id": "way/283573505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573508", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056787, + -0.0153616 + ], + [ + 109.3089102, + -0.0161912 + ] + ] + }, + "id": "way/283573508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573509", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2928797, + -0.0228915 + ], + [ + 109.293522, + -0.023815 + ] + ] + }, + "id": "way/283573509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573511", + "highway": "residential", + "name": "Gang Kerinci 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141215, + -0.0180327 + ], + [ + 109.3141405, + -0.0180995 + ], + [ + 109.3151667, + -0.0214235 + ] + ] + }, + "id": "way/283573511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573513", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2912718, + -0.0013608 + ], + [ + 109.2913277, + -0.0034413 + ] + ] + }, + "id": "way/283573513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573515", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302396, + -0.0148649 + ], + [ + 109.3024039, + -0.0146023 + ], + [ + 109.3024148, + -0.0141823 + ] + ] + }, + "id": "way/283573515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573519", + "highway": "residential", + "name": "Gang Jambu Tukal", + "ref": "Jalan Tersier" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198793, + -0.013109 + ], + [ + 109.3203102, + -0.0125021 + ], + [ + 109.3207411, + -0.0118951 + ], + [ + 109.3207998, + -0.0118161 + ], + [ + 109.3209232, + -0.0116462 + ], + [ + 109.3210083, + -0.0115228 + ], + [ + 109.321015, + -0.0114986 + ], + [ + 109.3210164, + -0.0114845 + ], + [ + 109.3210103, + -0.0114721 + ] + ] + }, + "id": "way/283573519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573520", + "highway": "residential", + "name": "Gang Warna Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2976829, + -0.0232955 + ], + [ + 109.2996904, + -0.0265925 + ] + ] + }, + "id": "way/283573520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573522", + "highway": "residential", + "name": "Gang Pala 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151055, + -0.0095046 + ], + [ + 109.3141175, + -0.0119458 + ], + [ + 109.3141001, + -0.0119872 + ] + ] + }, + "id": "way/283573522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573524", + "highway": "residential", + "name": "Gang Pala 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153445, + -0.0096797 + ], + [ + 109.3142853, + -0.0122162 + ] + ] + }, + "id": "way/283573524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573526", + "highway": "residential", + "name": "Gang Bersama 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106239, + -0.0173716 + ], + [ + 109.3121716, + -0.0222739 + ] + ] + }, + "id": "way/283573526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573528", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128391, + -0.0044825 + ], + [ + 109.3122581, + -0.0057453 + ], + [ + 109.3120252, + -0.0062516 + ], + [ + 109.3118491, + -0.0066432 + ] + ] + }, + "id": "way/283573528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573529", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068823, + -0.0056734 + ], + [ + 109.3065311, + -0.0071063 + ] + ] + }, + "id": "way/283573529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573533", + "highway": "residential", + "name": "Gang Sriwijaya VI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042437, + -0.0087356 + ], + [ + 109.3042358, + -0.0080498 + ] + ] + }, + "id": "way/283573533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573537", + "highway": "residential", + "name": "Gang Bhineka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2989364, + -0.0224969 + ], + [ + 109.2998591, + -0.0242177 + ], + [ + 109.300811, + -0.0259911 + ] + ] + }, + "id": "way/283573537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573539", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.285476, + -0.0292151 + ], + [ + 109.2871434, + -0.031519 + ] + ] + }, + "id": "way/283573539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573540", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Sentosa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163289, + -0.0177178 + ], + [ + 109.3171796, + -0.0208902 + ] + ] + }, + "id": "way/283573540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573542", + "highway": "living_street", + "motorcar": "no", + "motorcycle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138827, + -0.0084947 + ], + [ + 109.3132531, + -0.0081404 + ] + ] + }, + "id": "way/283573542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573546", + "highway": "residential", + "name": "Gang Reformasi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077014, + -0.0186492 + ], + [ + 109.3094917, + -0.0233016 + ] + ] + }, + "id": "way/283573546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573550", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129226, + -0.0081478 + ], + [ + 109.3131267, + -0.0077994 + ], + [ + 109.3132165, + -0.007643 + ], + [ + 109.3132246, + -0.0076161 + ], + [ + 109.3132229, + -0.0076 + ], + [ + 109.3132152, + -0.0075853 + ], + [ + 109.313191, + -0.0075645 + ], + [ + 109.313155, + -0.0075475 + ], + [ + 109.3129613, + -0.0074562 + ] + ] + }, + "id": "way/283573550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573555", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302563, + -0.0058492 + ], + [ + 109.3032942, + -0.0058541 + ] + ] + }, + "id": "way/283573555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573556", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025441, + -0.0079522 + ], + [ + 109.3032196, + -0.0079782 + ] + ] + }, + "id": "way/283573556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573558", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319707, + -0.0205691 + ], + [ + 109.319682, + -0.0204089 + ] + ] + }, + "id": "way/283573558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573560", + "highway": "residential", + "name": "Jalur G" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3174085, + -0.0134134 + ], + [ + 109.3162529, + -0.0126366 + ] + ] + }, + "id": "way/283573560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573562", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301953, + -0.0055146 + ], + [ + 109.3019472, + -0.0061481 + ] + ] + }, + "id": "way/283573562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573563", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3027861, + -0.0175896 + ], + [ + 109.3024343, + -0.0177812 + ] + ] + }, + "id": "way/283573563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573564", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304014, + -0.0256226 + ], + [ + 109.3033833, + -0.0240172 + ] + ] + }, + "id": "way/283573564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573566", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2857965, + -0.0307807 + ], + [ + 109.2855341, + -0.0310039 + ] + ] + }, + "id": "way/283573566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573568", + "highway": "residential", + "name": "Jalur F" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3183836, + -0.0133363 + ], + [ + 109.3176675, + -0.0128431 + ], + [ + 109.3165, + -0.0120685 + ] + ] + }, + "id": "way/283573568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573570", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2873257, + -0.0065224 + ], + [ + 109.2881153, + -0.0067686 + ] + ] + }, + "id": "way/283573570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573573", + "highway": "residential", + "name": "Gang Era Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093053, + -0.0178474 + ], + [ + 109.3102869, + -0.020253 + ], + [ + 109.3111933, + -0.0226305 + ] + ] + }, + "id": "way/283573573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573575", + "highway": "residential", + "name": "Gang Bukit Raya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3183284, + -0.0154736 + ], + [ + 109.3183563, + -0.015632 + ] + ] + }, + "id": "way/283573575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573577", + "highway": "residential", + "name": "Gang Langsat 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3139099, + -0.0102742 + ], + [ + 109.3139886, + -0.0100964 + ], + [ + 109.3140317, + -0.0099872 + ], + [ + 109.3142634, + -0.0093571 + ], + [ + 109.3144111, + -0.0089778 + ] + ] + }, + "id": "way/283573577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573578", + "highway": "residential", + "name": "Gang Mempelam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192661, + -0.0100556 + ], + [ + 109.3193616, + -0.0099363 + ], + [ + 109.320299, + -0.0086785 + ] + ] + }, + "id": "way/283573578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573580", + "highway": "residential", + "name": "Gang Natuna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051185, + -0.0106328 + ], + [ + 109.3051658, + -0.0106405 + ], + [ + 109.3060644, + -0.0108325 + ], + [ + 109.3062456, + -0.0108561 + ], + [ + 109.3093127, + -0.0117 + ] + ] + }, + "id": "way/283573580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573581", + "highway": "residential", + "name": "Gang Risa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098423, + -0.0231662 + ], + [ + 109.3089196, + -0.0207898 + ], + [ + 109.3084609, + -0.0196123 + ], + [ + 109.3080186, + -0.0185174 + ] + ] + }, + "id": "way/283573581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573583", + "highway": "residential", + "name": "Kemuning" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2915623, + -0.0034789 + ], + [ + 109.2915153, + -0.0068632 + ] + ] + }, + "id": "way/283573583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573585", + "highway": "residential", + "name": "Gang Dewi Sartika" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2958256, + -0.0078299 + ], + [ + 109.2958346, + -0.0060951 + ] + ] + }, + "id": "way/283573585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2948661, + -0.0220533 + ], + [ + 109.2955681, + -0.0218437 + ], + [ + 109.2964664, + -0.0215897 + ] + ] + }, + "id": "way/283573587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573589", + "highway": "residential", + "name": "Jalan Mitra Utama 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966906, + -0.0239554 + ], + [ + 109.2978148, + -0.0257044 + ], + [ + 109.2986925, + -0.0271532 + ] + ] + }, + "id": "way/283573589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573590", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042892, + -0.0200821 + ], + [ + 109.3027319, + -0.0170593 + ] + ] + }, + "id": "way/283573590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573591", + "highway": "residential", + "name": "Gang Anggur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255905, + -0.01239 + ], + [ + 109.3248258, + -0.013261 + ] + ] + }, + "id": "way/283573591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.298245, + -0.0145997 + ], + [ + 109.2990547, + -0.0146213 + ] + ] + }, + "id": "way/283573592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573593", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020679, + -0.0177576 + ], + [ + 109.3005216, + -0.0173599 + ], + [ + 109.2986201, + -0.0168812 + ], + [ + 109.2984466, + -0.0168375 + ] + ] + }, + "id": "way/283573593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573595", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3065507, + -0.0176778 + ], + [ + 109.3069437, + -0.0185496 + ] + ] + }, + "id": "way/283573595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573597", + "highway": "residential", + "name": "Gang H.M Husin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081085, + -0.0234863 + ], + [ + 109.3080861, + -0.0233831 + ], + [ + 109.3079849, + -0.0229163 + ], + [ + 109.3079074, + -0.0226922 + ], + [ + 109.3076321, + -0.0219136 + ], + [ + 109.3072835, + -0.0209346 + ], + [ + 109.3069267, + -0.0199825 + ], + [ + 109.3066037, + -0.0190917 + ] + ] + }, + "id": "way/283573597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573599", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088953, + -0.01653 + ], + [ + 109.3056573, + -0.0156996 + ] + ] + }, + "id": "way/283573599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573601", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034412, + -0.0123118 + ], + [ + 109.3048638, + -0.0122533 + ], + [ + 109.3048799, + -0.0122527 + ], + [ + 109.304958, + -0.012259 + ], + [ + 109.3051005, + -0.0122654 + ] + ] + }, + "id": "way/283573601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573602", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300155, + -0.0263416 + ], + [ + 109.2981535, + -0.0229712 + ] + ] + }, + "id": "way/283573602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573604", + "highway": "residential", + "name": "Gang Timun 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155671, + -0.0098449 + ], + [ + 109.3163612, + -0.0085603 + ], + [ + 109.316712, + -0.0079927 + ] + ] + }, + "id": "way/283573604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573606", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3055405, + -0.0195153 + ], + [ + 109.3041127, + -0.0167818 + ], + [ + 109.3040326, + -0.0166243 + ] + ] + }, + "id": "way/283573606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573607", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2899782, + -0.0009342 + ], + [ + 109.2899618, + -0.0013804 + ], + [ + 109.2899573, + -0.0016484 + ], + [ + 109.2899163, + -0.0031018 + ] + ] + }, + "id": "way/283573607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573609", + "highway": "residential", + "name": "Gang Tebu Ceria" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079866, + -0.006001 + ], + [ + 109.3075558, + -0.0074465 + ] + ] + }, + "id": "way/283573609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573610", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2824592, + -0.0363741 + ], + [ + 109.2846514, + -0.0396974 + ] + ] + }, + "id": "way/283573610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573611", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254236, + -0.0170276 + ], + [ + 109.3258092, + -0.0164142 + ], + [ + 109.325965, + -0.016171 + ], + [ + 109.3259833, + -0.016143 + ], + [ + 109.3262282, + -0.0157684 + ], + [ + 109.3263919, + -0.0155216 + ], + [ + 109.3265538, + -0.0152819 + ], + [ + 109.3267681, + -0.0149643 + ], + [ + 109.3270493, + -0.0145486 + ], + [ + 109.327574, + -0.013774 + ] + ] + }, + "id": "way/283573611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2883429, + -0.0024568 + ], + [ + 109.2885178, + -0.000338 + ] + ] + }, + "id": "way/283573612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573613", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316247, + -0.0103705 + ], + [ + 109.3156769, + -0.0117597 + ] + ] + }, + "id": "way/283573613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2863796, + -0.0323621 + ], + [ + 109.2863944, + -0.032377 + ], + [ + 109.2865253, + -0.0325091 + ], + [ + 109.2877141, + -0.0342277 + ], + [ + 109.2889437, + -0.0358368 + ] + ] + }, + "id": "way/283573614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573615", + "highway": "living_street", + "name": "Gang Nilam Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099181, + -0.0096514 + ], + [ + 109.306864, + -0.0088832 + ] + ] + }, + "id": "way/283573615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573616", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2878639, + 0.0003711 + ], + [ + 109.2877832, + -0.0001772 + ] + ] + }, + "id": "way/283573616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573617", + "highway": "residential", + "name": "Gang Pala 1A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3158378, + -0.0131658 + ], + [ + 109.3158719, + -0.0130838 + ], + [ + 109.315892, + -0.0130476 + ], + [ + 109.3159222, + -0.0129865 + ], + [ + 109.3159561, + -0.0129067 + ], + [ + 109.3168657, + -0.0108085 + ] + ] + }, + "id": "way/283573617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052295, + -0.0074892 + ], + [ + 109.3060747, + -0.0077674 + ], + [ + 109.3069419, + -0.0080403 + ] + ] + }, + "id": "way/283573618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573619", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039995, + -0.0075426 + ], + [ + 109.3048574, + -0.0075357 + ], + [ + 109.3048734, + -0.0075414 + ] + ] + }, + "id": "way/283573619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2883024, + -0.0368995 + ], + [ + 109.2857042, + -0.0332551 + ] + ] + }, + "id": "way/283573620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573621", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2906668, + -0.0011784 + ], + [ + 109.2906189, + -0.0016791 + ], + [ + 109.2905974, + -0.0019231 + ], + [ + 109.2905125, + -0.0024873 + ], + [ + 109.2904142, + -0.0032164 + ] + ] + }, + "id": "way/283573621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573622", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051556, + -0.0078828 + ], + [ + 109.3059498, + -0.0081339 + ], + [ + 109.3068261, + -0.0084033 + ] + ] + }, + "id": "way/283573622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573623", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2909629, + -0.0012751 + ], + [ + 109.2909441, + -0.0033478 + ] + ] + }, + "id": "way/283573623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573624", + "highway": "residential", + "name": "Gang Tebu 1B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097464, + -0.0079923 + ], + [ + 109.309962, + -0.0072196 + ], + [ + 109.3101486, + -0.0066062 + ] + ] + }, + "id": "way/283573624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573625", + "highway": "residential", + "name": "Gang Kelapa 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134824, + -0.0075369 + ], + [ + 109.3141845, + -0.0063047 + ] + ] + }, + "id": "way/283573625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573626", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073502, + -0.0165155 + ], + [ + 109.3072451, + -0.0168752 + ] + ] + }, + "id": "way/283573626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573627", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2862665, + -0.032509 + ], + [ + 109.2853392, + -0.0313035 + ], + [ + 109.284533, + -0.0301853 + ], + [ + 109.2844303, + -0.0300412 + ] + ] + }, + "id": "way/283573627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573628", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2987678, + -0.0074989 + ], + [ + 109.3006089, + -0.0063205 + ] + ] + }, + "id": "way/283573628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573629", + "highway": "residential", + "name": "Gang Gandaria" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3172758, + -0.0111129 + ], + [ + 109.317304, + -0.0110751 + ], + [ + 109.3175778, + -0.0107079 + ], + [ + 109.3178862, + -0.0102943 + ], + [ + 109.3180038, + -0.0101311 + ], + [ + 109.3185063, + -0.0094337 + ] + ] + }, + "id": "way/283573629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573630", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133949, + -0.0167732 + ], + [ + 109.3137774, + -0.0181415 + ] + ] + }, + "id": "way/283573630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573631", + "highway": "residential", + "name": "Gang Langsat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3137395, + -0.0115342 + ], + [ + 109.3141285, + -0.0105464 + ], + [ + 109.3146737, + -0.009182 + ] + ] + }, + "id": "way/283573631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573632", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969743, + -0.0232067 + ], + [ + 109.2968923, + -0.0234982 + ] + ] + }, + "id": "way/283573632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573634", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981407, + -0.0134337 + ], + [ + 109.3001461, + -0.0135425 + ], + [ + 109.3019405, + -0.0136497 + ], + [ + 109.3019301, + -0.0137395 + ], + [ + 109.3050799, + -0.0136472 + ] + ] + }, + "id": "way/283573634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573635", + "highway": "residential", + "name": "Gang Merapi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039365, + -0.0202341 + ], + [ + 109.3050934, + -0.0232373 + ] + ] + }, + "id": "way/283573635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573636", + "highway": "residential", + "name": "Komplek Tabrani Indah Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2928908, + -0.0285042 + ], + [ + 109.2920305, + -0.0273505 + ] + ] + }, + "id": "way/283573636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573638", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074806, + -0.0120428 + ], + [ + 109.3072701, + -0.0127911 + ] + ] + }, + "id": "way/283573638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573639", + "highway": "residential", + "name": "Gang Sukapadi Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216895, + -0.0144199 + ], + [ + 109.3242226, + -0.0115739 + ] + ] + }, + "id": "way/283573639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573640", + "highway": "residential", + "name": "Makam Kesultanan Pontianak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008251, + 0.0053521 + ], + [ + 109.3009482, + 0.0059411 + ], + [ + 109.301229, + 0.0072848 + ] + ] + }, + "id": "way/283573640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573641", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2903514, + -0.0342449 + ], + [ + 109.287936, + -0.0309933 + ], + [ + 109.287912, + -0.0309608 + ] + ] + }, + "id": "way/283573641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573642", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32564, + -0.0187119 + ], + [ + 109.3254572, + -0.0175407 + ] + ] + }, + "id": "way/283573642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573643", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304833, + -0.0198438 + ], + [ + 109.3058811, + -0.0228201 + ], + [ + 109.3059142, + -0.0229141 + ] + ] + }, + "id": "way/283573643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573644", + "highway": "residential", + "name": "Gang Bersama 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114673, + -0.0225266 + ], + [ + 109.3105289, + -0.020079 + ], + [ + 109.3100381, + -0.0188693 + ], + [ + 109.3095466, + -0.0177457 + ] + ] + }, + "id": "way/283573644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573645", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196904, + -0.0082469 + ], + [ + 109.3205925, + -0.0072362 + ] + ] + }, + "id": "way/283573645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573646", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233843, + -0.015593 + ], + [ + 109.3239138, + -0.0195569 + ] + ] + }, + "id": "way/283573646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573648", + "highway": "residential", + "name": "Jalan Gang Arkarin IX" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.293877, + -0.0259596 + ], + [ + 109.2928084, + -0.0244953 + ], + [ + 109.2920162, + -0.0234098 + ] + ] + }, + "id": "way/283573648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573649", + "highway": "residential", + "name": "Gang Pala 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156263, + -0.009883 + ], + [ + 109.3150833, + -0.0112143 + ], + [ + 109.3148258, + -0.0118875 + ], + [ + 109.3145389, + -0.0125767 + ] + ] + }, + "id": "way/283573649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573650", + "highway": "residential", + "name": "Gang Apel 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199677, + -0.0131818 + ], + [ + 109.3194151, + -0.0142479 + ], + [ + 109.3191007, + -0.0148487 + ], + [ + 109.3188678, + -0.0152939 + ], + [ + 109.3187927, + -0.0154374 + ] + ] + }, + "id": "way/283573650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573651", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Puring" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316052, + -0.0102051 + ], + [ + 109.314796, + -0.0130189 + ] + ] + }, + "id": "way/283573651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573653", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208578, + -0.0113393 + ], + [ + 109.3219527, + -0.0099361 + ], + [ + 109.3224285, + -0.0092831 + ], + [ + 109.3227551, + -0.0088318 + ] + ] + }, + "id": "way/283573653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573654", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210029, + -0.018674 + ], + [ + 109.3211178, + -0.0200871 + ], + [ + 109.3211186, + -0.0200968 + ] + ] + }, + "id": "way/283573654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573655", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185814, + -0.0080866 + ], + [ + 109.318954, + -0.0077152 + ] + ] + }, + "id": "way/283573655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573656", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2872061, + -0.0338628 + ], + [ + 109.2880869, + -0.0351074 + ], + [ + 109.2888203, + -0.0361094 + ] + ] + }, + "id": "way/283573656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573657", + "highway": "residential", + "name": "Blok H-I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2911176, + -0.0090068 + ], + [ + 109.2924842, + -0.0089784 + ] + ] + }, + "id": "way/283573657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573659", + "highway": "residential", + "name": "Gang Palmasari I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2923153, + -0.0271413 + ], + [ + 109.292945, + -0.0280566 + ], + [ + 109.2929551, + -0.0280821 + ], + [ + 109.2929571, + -0.0281142 + ], + [ + 109.2929551, + -0.0281686 + ], + [ + 109.2929638, + -0.02819 + ], + [ + 109.2934003, + -0.0288096 + ], + [ + 109.2937624, + -0.0293058 + ], + [ + 109.2940602, + -0.0297309 + ], + [ + 109.2944028, + -0.0302064 + ], + [ + 109.2944782, + -0.0302936 + ] + ] + }, + "id": "way/283573659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573660", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129034, + -0.0045221 + ], + [ + 109.3132395, + -0.0038444 + ], + [ + 109.3135654, + -0.0031565 + ] + ] + }, + "id": "way/283573660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573661", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2944896, + -0.0225438 + ], + [ + 109.2958071, + -0.0243556 + ] + ] + }, + "id": "way/283573661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573662", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071681, + -0.0330382 + ], + [ + 109.3070407, + -0.0327028 + ], + [ + 109.3070313, + -0.0326861 + ], + [ + 109.3070199, + -0.0326773 + ], + [ + 109.3069656, + -0.0326941 + ], + [ + 109.3069535, + -0.0326948 + ], + [ + 109.306942, + -0.0326844 + ], + [ + 109.3066224, + -0.0318935 + ] + ] + }, + "id": "way/283573662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573663", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.29636, + -0.0241436 + ], + [ + 109.2975033, + -0.025894 + ], + [ + 109.2984164, + -0.0273114 + ] + ] + }, + "id": "way/283573663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573664", + "highway": "residential", + "name": "Komplek Palestin Indah Permai 2 Blok B-C", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2890409, + -0.0255795 + ], + [ + 109.2909103, + -0.0281823 + ] + ] + }, + "id": "way/283573664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573665", + "highway": "living_street", + "motorcar": "destination", + "name": "Gang Angin TImur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2935845, + -0.0207795 + ], + [ + 109.2946047, + -0.020657 + ], + [ + 109.2953071, + -0.0205383 + ], + [ + 109.2968971, + -0.0203078 + ] + ] + }, + "id": "way/283573665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573667", + "highway": "residential", + "name": "Gang Sekawan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198529, + -0.0203385 + ], + [ + 109.3194339, + -0.0178716 + ], + [ + 109.3190763, + -0.0154308 + ] + ] + }, + "id": "way/283573667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573668", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891365, + -0.0298679 + ], + [ + 109.287297, + -0.0273341 + ], + [ + 109.2872963, + -0.0273176 + ], + [ + 109.287301, + -0.0273076 + ], + [ + 109.2872956, + -0.0272915 + ] + ] + }, + "id": "way/283573668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573670", + "highway": "residential", + "name": "Jalan Buntu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148155, + -0.021522 + ], + [ + 109.3138471, + -0.0183588 + ] + ] + }, + "id": "way/283573670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573671", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.298442, + -0.0160022 + ], + [ + 109.2995314, + -0.0161853 + ] + ] + }, + "id": "way/283573671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573672", + "highway": "living_street", + "name": "Gang Waris" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063018, + -0.0100213 + ], + [ + 109.3095519, + -0.0108455 + ] + ] + }, + "id": "way/283573672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573673", + "highway": "residential", + "name": "Gang Amalia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092945, + -0.0233777 + ], + [ + 109.3078655, + -0.0197156 + ], + [ + 109.3074936, + -0.018743 + ] + ] + }, + "id": "way/283573673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573674", + "highway": "residential", + "name": "Gang Thayibah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2972989, + -0.0235379 + ], + [ + 109.2993246, + -0.0268057 + ] + ] + }, + "id": "way/283573674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573675", + "highway": "residential", + "name": "Gang Amanah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3069176, + -0.0189571 + ], + [ + 109.3076697, + -0.0210956 + ], + [ + 109.3084495, + -0.0232886 + ], + [ + 109.308557, + -0.0235959 + ] + ] + }, + "id": "way/283573675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573676", + "highway": "residential", + "name": "Gang Melda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071386, + -0.0228216 + ], + [ + 109.3058809, + -0.019427 + ] + ] + }, + "id": "way/283573676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573677", + "highway": "residential", + "name": "Gang Mitra Utama 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969716, + -0.0237594 + ], + [ + 109.2980798, + -0.0255481 + ], + [ + 109.298969, + -0.0269975 + ] + ] + }, + "id": "way/283573677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573678", + "highway": "residential", + "name": "Gang Gunung Lawit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3201349, + -0.0160867 + ], + [ + 109.3204316, + -0.0180995 + ], + [ + 109.3206943, + -0.0201755 + ] + ] + }, + "id": "way/283573678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573679", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046246, + -0.0199375 + ], + [ + 109.3035659, + -0.0178912 + ] + ] + }, + "id": "way/283573679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062592, + -0.005465 + ], + [ + 109.3071906, + -0.002096 + ] + ] + }, + "id": "way/283573680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573681", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3045867, + -0.0253904 + ], + [ + 109.3039285, + -0.0237964 + ] + ] + }, + "id": "way/283573681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573682", + "highway": "residential", + "name": "Sederhana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2892358, + -0.0062701 + ], + [ + 109.2891863, + -0.0029205 + ] + ] + }, + "id": "way/283573682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573683", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222403, + -0.0153683 + ], + [ + 109.3224851, + -0.0155814 + ] + ] + }, + "id": "way/283573683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573685", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301709, + -0.0056556 + ], + [ + 109.3017094, + -0.0061427 + ] + ] + }, + "id": "way/283573685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573686", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302252, + -0.0064104 + ], + [ + 109.3014608, + -0.0063985 + ] + ] + }, + "id": "way/283573686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573687", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2932434, + -0.0222945 + ], + [ + 109.2941001, + -0.0221137 + ], + [ + 109.2947257, + -0.0219311 + ], + [ + 109.2947334, + -0.0219304 + ], + [ + 109.2947394, + -0.0219312 + ], + [ + 109.2947442, + -0.0219328 + ], + [ + 109.2947481, + -0.0219356 + ], + [ + 109.2947539, + -0.0219417 + ], + [ + 109.2947988, + -0.0220456 + ], + [ + 109.2948072, + -0.0220567 + ], + [ + 109.2948151, + -0.0220616 + ], + [ + 109.2948239, + -0.0220637 + ], + [ + 109.2948321, + -0.0220635 + ], + [ + 109.2948661, + -0.0220533 + ] + ] + }, + "id": "way/283573687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573688", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200092, + -0.0160073 + ], + [ + 109.3214008, + -0.0142079 + ] + ] + }, + "id": "way/283573688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573689", + "highway": "residential", + "name": "Gang Cengkeh" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196582, + -0.0129578 + ], + [ + 109.3190262, + -0.0141755 + ], + [ + 109.3187714, + -0.0146931 + ], + [ + 109.318391, + -0.0154658 + ] + ] + }, + "id": "way/283573689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573690", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2903493, + -0.0206416 + ], + [ + 109.2911372, + -0.0219769 + ], + [ + 109.2914913, + -0.0225681 + ], + [ + 109.2918222, + -0.0231444 + ], + [ + 109.2919161, + -0.0232903 + ], + [ + 109.2919515, + -0.0233339 + ], + [ + 109.2920162, + -0.0234098 + ] + ] + }, + "id": "way/283573690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573692", + "highway": "residential", + "name": "Gang Semangka 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32226, + -0.0125342 + ], + [ + 109.321047, + -0.013964 + ] + ] + }, + "id": "way/283573692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573693", + "highway": "residential", + "name": "Rahmad" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2911197, + -0.0067838 + ], + [ + 109.291131, + -0.0065448 + ], + [ + 109.2911384, + -0.0063493 + ], + [ + 109.2911371, + -0.0059261 + ], + [ + 109.2911433, + -0.0050694 + ], + [ + 109.2910844, + -0.0033943 + ] + ] + }, + "id": "way/283573693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573694", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984821, + -0.0165095 + ], + [ + 109.3019678, + -0.0172589 + ] + ] + }, + "id": "way/283573694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573695", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068065, + -0.0314372 + ], + [ + 109.3064702, + -0.0315871 + ], + [ + 109.3053588, + -0.0320535 + ] + ] + }, + "id": "way/283573695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573696", + "highway": "residential", + "name": "Fajar Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.29087, + -0.0033303 + ], + [ + 109.2909315, + -0.0067317 + ] + ] + }, + "id": "way/283573696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573697", + "highway": "residential", + "name": "JALN KARYA USAHA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959038, + 0.0149697 + ], + [ + 109.2959169, + 0.0150452 + ], + [ + 109.2959558, + 0.0152457 + ], + [ + 109.2959826, + 0.0153496 + ], + [ + 109.2960349, + 0.0155152 + ], + [ + 109.2960738, + 0.0156272 + ], + [ + 109.2961369, + 0.0157774 + ], + [ + 109.29622, + 0.0159531 + ], + [ + 109.2963089, + 0.0161323 + ], + [ + 109.2963682, + 0.0162715 + ], + [ + 109.2964058, + 0.0163735 + ], + [ + 109.2964494, + 0.0165097 + ], + [ + 109.2966867, + 0.0172728 + ], + [ + 109.2967588, + 0.0175418 + ], + [ + 109.29677, + 0.017577 + ], + [ + 109.2968202, + 0.017716 + ], + [ + 109.2969311, + 0.018086 + ], + [ + 109.2970325, + 0.0184126 + ], + [ + 109.2971411, + 0.0187957 + ], + [ + 109.2971725, + 0.0189139 + ], + [ + 109.2972164, + 0.0190848 + ], + [ + 109.297257, + 0.0192285 + ], + [ + 109.297315, + 0.0194581 + ], + [ + 109.2973396, + 0.0195457 + ], + [ + 109.2973696, + 0.0196555 + ], + [ + 109.297423, + 0.0198701 + ], + [ + 109.2976017, + 0.0205936 + ], + [ + 109.2976479, + 0.020747 + ], + [ + 109.2977738, + 0.0211294 + ], + [ + 109.2977873, + 0.0211699 + ], + [ + 109.2979007, + 0.0215163 + ], + [ + 109.2979756, + 0.021742 + ], + [ + 109.2981591, + 0.0223279 + ], + [ + 109.2981646, + 0.0223467 + ], + [ + 109.2983429, + 0.0229238 + ], + [ + 109.2983671, + 0.0230073 + ], + [ + 109.2983866, + 0.0230791 + ], + [ + 109.2984323, + 0.0233026 + ], + [ + 109.2984442, + 0.0233728 + ], + [ + 109.2984873, + 0.0235638 + ], + [ + 109.2985398, + 0.0237819 + ], + [ + 109.298604, + 0.0240452 + ], + [ + 109.2986993, + 0.0244523 + ], + [ + 109.2987852, + 0.0248121 + ], + [ + 109.2988441, + 0.0250833 + ], + [ + 109.298921, + 0.0254437 + ], + [ + 109.2990001, + 0.0257763 + ], + [ + 109.2992045, + 0.0265706 + ], + [ + 109.299404, + 0.0273988 + ] + ] + }, + "id": "way/283573697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573698", + "highway": "unclassified", + "name": "Jalan Tebu 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050938, + -0.0115057 + ], + [ + 109.3050968, + -0.0113794 + ], + [ + 109.3050912, + -0.0110775 + ], + [ + 109.3050894, + -0.0110215 + ], + [ + 109.3050469, + -0.0106281 + ], + [ + 109.305005, + -0.0102195 + ], + [ + 109.3049969, + -0.0101648 + ], + [ + 109.3049545, + -0.0098271 + ], + [ + 109.3049475, + -0.0097729 + ], + [ + 109.3049317, + -0.0095816 + ], + [ + 109.3049187, + -0.0094375 + ], + [ + 109.3048934, + -0.0091137 + ], + [ + 109.3048719, + -0.008767 + ] + ] + }, + "id": "way/283573698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573702", + "highway": "residential", + "name": "Gang Kenari 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228278, + -0.0105374 + ], + [ + 109.3225238, + -0.0108697 + ], + [ + 109.3222012, + -0.011188 + ], + [ + 109.3216196, + -0.0118385 + ], + [ + 109.3212539, + -0.0122784 + ], + [ + 109.3211803, + -0.0123717 + ], + [ + 109.3211373, + -0.0124362 + ], + [ + 109.3206804, + -0.0131033 + ], + [ + 109.320665, + -0.0131348 + ], + [ + 109.320661, + -0.013171 + ], + [ + 109.3206596, + -0.0132843 + ], + [ + 109.320654, + -0.0133223 + ], + [ + 109.3204905, + -0.0135516 + ] + ] + }, + "id": "way/283573702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573703", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049317, + -0.0095816 + ], + [ + 109.3049486, + -0.0095842 + ] + ] + }, + "id": "way/283573703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573706", + "highway": "residential", + "name": "Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.298198, + -0.0079247 + ], + [ + 109.2990685, + -0.0077695 + ], + [ + 109.2991202, + -0.0077315 + ], + [ + 109.2991772, + -0.0076939 + ], + [ + 109.2995829, + -0.0074394 + ], + [ + 109.2999172, + -0.0072318 + ], + [ + 109.3002406, + -0.0070332 + ], + [ + 109.3005468, + -0.0068289 + ], + [ + 109.3008017, + -0.0066454 + ] + ] + }, + "id": "way/283573706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057025, + -0.0164302 + ], + [ + 109.3072451, + -0.0168752 + ], + [ + 109.3088516, + -0.0172768 + ] + ] + }, + "id": "way/283573708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573710", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102247, + -0.0052377 + ], + [ + 109.3104825, + -0.0043314 + ], + [ + 109.3107462, + -0.0033294 + ], + [ + 109.3107598, + -0.0032186 + ], + [ + 109.3111606, + -0.0021511 + ], + [ + 109.3111552, + -0.0021297 + ], + [ + 109.3111338, + -0.0021163 + ], + [ + 109.3110077, + -0.0020626 + ], + [ + 109.3109809, + -0.002076 + ], + [ + 109.3109715, + -0.0021096 + ], + [ + 109.3106094, + -0.0030832 + ], + [ + 109.3106054, + -0.0031047 + ], + [ + 109.3106101, + -0.0031657 + ], + [ + 109.3107598, + -0.0032186 + ] + ] + }, + "id": "way/283573710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573712", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2846944, + -0.0298776 + ], + [ + 109.2855341, + -0.0310039 + ], + [ + 109.2864865, + -0.0322425 + ] + ] + }, + "id": "way/283573712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573713", + "highway": "residential", + "name": "Blok K" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.287153, + -0.0084107 + ], + [ + 109.2880927, + -0.0084546 + ], + [ + 109.2889414, + -0.0084921 + ] + ] + }, + "id": "way/283573713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573715", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2875342, + -0.0270451 + ], + [ + 109.288314, + -0.028125 + ], + [ + 109.2886532, + -0.0285878 + ], + [ + 109.2894127, + -0.0296014 + ] + ] + }, + "id": "way/283573715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573716", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077464, + -0.0059398 + ], + [ + 109.3081209, + -0.0046967 + ], + [ + 109.3081565, + -0.0045571 + ], + [ + 109.3081968, + -0.0043559 + ], + [ + 109.3083547, + -0.0035501 + ], + [ + 109.3086648, + -0.0020298 + ] + ] + }, + "id": "way/283573716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573717", + "highway": "residential", + "name": "Gang Lawu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119933, + -0.0170283 + ], + [ + 109.3121436, + -0.0176838 + ], + [ + 109.3123351, + -0.0183935 + ], + [ + 109.312499, + -0.0189042 + ], + [ + 109.3128648, + -0.0200827 + ], + [ + 109.3135043, + -0.0218874 + ] + ] + }, + "id": "way/283573717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573718", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077852, + -0.0012315 + ], + [ + 109.3075299, + -0.0021915 + ], + [ + 109.3065609, + -0.0055451 + ], + [ + 109.3065511, + -0.0055791 + ] + ] + }, + "id": "way/283573718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573719", + "highway": "residential", + "name": "Gang Sampang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239591, + -0.0145034 + ], + [ + 109.3240471, + -0.0146277 + ], + [ + 109.3241224, + -0.014787 + ], + [ + 109.3243597, + -0.0156048 + ] + ] + }, + "id": "way/283573719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573721", + "highway": "residential", + "name": "Gang Jambu Air" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319567, + -0.0128741 + ], + [ + 109.3200695, + -0.0122067 + ], + [ + 109.3205373, + -0.0115482 + ], + [ + 109.3207117, + -0.0112205 + ] + ] + }, + "id": "way/283573721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573722", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011484, + -0.0271144 + ], + [ + 109.3012424, + -0.0272893 + ] + ] + }, + "id": "way/283573722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573724", + "highway": "residential", + "name": "Sapta Pesona" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2915151, + -0.0083133 + ], + [ + 109.2915093, + -0.0071125 + ], + [ + 109.2915153, + -0.0068632 + ] + ] + }, + "id": "way/283573724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573726", + "highway": "residential", + "name": "Famili" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2882854, + -0.0028539 + ], + [ + 109.2882612, + -0.0035459 + ], + [ + 109.2882325, + -0.0042355 + ], + [ + 109.2882263, + -0.0044893 + ], + [ + 109.288221, + -0.0047073 + ], + [ + 109.2882076, + -0.004887 + ], + [ + 109.2881888, + -0.0050439 + ], + [ + 109.2881668, + -0.0051475 + ], + [ + 109.2880976, + -0.0055052 + ], + [ + 109.2879727, + -0.0058652 + ] + ] + }, + "id": "way/283573726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573727", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2876925, + -0.0311156 + ], + [ + 109.2866262, + -0.0296856 + ], + [ + 109.2859316, + -0.0287236 + ] + ] + }, + "id": "way/283573727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573728", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306682, + -0.0116943 + ], + [ + 109.3066063, + -0.0123263 + ], + [ + 109.3065379, + -0.0126175 + ] + ] + }, + "id": "way/283573728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112672, + -0.0090209 + ], + [ + 109.3116012, + -0.0091793 + ], + [ + 109.3118977, + -0.0093017 + ], + [ + 109.3125161, + -0.0095932 + ] + ] + }, + "id": "way/283573729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573730", + "highway": "residential", + "name": "Hidayah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2910054, + -0.0103114 + ], + [ + 109.2894441, + -0.0101079 + ], + [ + 109.2878375, + -0.009912 + ], + [ + 109.2867305, + -0.0097601 + ] + ] + }, + "id": "way/283573730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573731", + "highway": "residential", + "name": "Gang Tebu Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3069036, + -0.0081644 + ], + [ + 109.308592, + -0.008616 + ], + [ + 109.3092419, + -0.008771 + ], + [ + 109.3101194, + -0.0089899 + ] + ] + }, + "id": "way/283573731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573733", + "highway": "residential", + "name": "Surya Kencana 1 Blok A-B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941795, + -0.0118399 + ], + [ + 109.2955479, + -0.0113449 + ], + [ + 109.2972529, + -0.0107317 + ], + [ + 109.2972735, + -0.0107315 + ], + [ + 109.2972896, + -0.010734 + ], + [ + 109.2973035, + -0.0107438 + ], + [ + 109.2973144, + -0.010761 + ], + [ + 109.2974138, + -0.0110359 + ] + ] + }, + "id": "way/283573733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573734", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2877999, + -0.0267215 + ], + [ + 109.2878523, + -0.0268025 + ], + [ + 109.288602, + -0.027827 + ], + [ + 109.2889629, + -0.028323 + ], + [ + 109.289685, + -0.0293276 + ] + ] + }, + "id": "way/283573734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573737", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034707, + -0.0126532 + ], + [ + 109.3045226, + -0.0125983 + ], + [ + 109.3050952, + -0.0125613 + ] + ] + }, + "id": "way/283573737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573739", + "highway": "residential", + "motorcar": "destination", + "name": "Gang Permatasari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310033, + -0.0092665 + ], + [ + 109.309996, + -0.0092591 + ], + [ + 109.3091789, + -0.0090966 + ], + [ + 109.3090017, + -0.0090501 + ], + [ + 109.306854, + -0.0084985 + ], + [ + 109.3068059, + -0.0084861 + ] + ] + }, + "id": "way/283573739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573740", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147038, + -0.016516 + ], + [ + 109.3154072, + -0.0186018 + ], + [ + 109.3154161, + -0.0186046 + ], + [ + 109.315432, + -0.0186031 + ], + [ + 109.3156277, + -0.0185205 + ] + ] + }, + "id": "way/283573740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573741", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140439, + -0.0082233 + ], + [ + 109.3138827, + -0.0084947 + ], + [ + 109.3137302, + -0.0087579 + ] + ] + }, + "id": "way/283573741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573744", + "access": "yes", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "motor_vehicle": "destination", + "name": "Gang Sederhana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316482, + -0.0210609 + ], + [ + 109.3160822, + -0.0198588 + ], + [ + 109.3158164, + -0.019076 + ], + [ + 109.315687, + -0.018695 + ], + [ + 109.3156277, + -0.0185205 + ], + [ + 109.3149356, + -0.016482 + ] + ] + }, + "id": "way/283573744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573747", + "highway": "residential", + "name": "Jalur 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171583, + -0.013964 + ], + [ + 109.3160121, + -0.0131901 + ] + ] + }, + "id": "way/283573747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573749", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2890581, + -0.0014479 + ], + [ + 109.2887041, + -0.0014075 + ], + [ + 109.2886961, + -0.0014015 + ], + [ + 109.2886911, + -0.0013907 + ], + [ + 109.2887279, + -0.0011332 + ], + [ + 109.288795, + -0.0007309 + ], + [ + 109.2888064, + -0.0006726 + ], + [ + 109.2888245, + -0.0006196 + ], + [ + 109.2888634, + -0.0004734 + ] + ] + }, + "id": "way/283573749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573750", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256896, + -0.0136032 + ], + [ + 109.3262186, + -0.0128296 + ] + ] + }, + "id": "way/283573750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573752", + "highway": "residential", + "name": "Putri Arung" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2879936, + -0.0023989 + ], + [ + 109.2880011, + -0.00368 + ], + [ + 109.2879933, + -0.0049248 + ], + [ + 109.2879782, + -0.0050251 + ], + [ + 109.2879514, + -0.0051767 + ], + [ + 109.2879099, + -0.0053819 + ], + [ + 109.2878251, + -0.0058081 + ] + ] + }, + "id": "way/283573752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573754", + "highway": "residential", + "name": "Gang Rukam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210066, + -0.0091918 + ], + [ + 109.3204562, + -0.0099241 + ], + [ + 109.3199743, + -0.0105592 + ], + [ + 109.3199623, + -0.0105857 + ], + [ + 109.3199505, + -0.0106175 + ], + [ + 109.3199532, + -0.010637 + ], + [ + 109.3199629, + -0.0106564 + ], + [ + 109.3201529, + -0.0107796 + ], + [ + 109.3203654, + -0.0109358 + ] + ] + }, + "id": "way/283573754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573757", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117687, + -0.0260747 + ], + [ + 109.3112773, + -0.0246388 + ], + [ + 109.3107533, + -0.0230897 + ] + ] + }, + "id": "way/283573757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573758", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122185, + -0.0065959 + ], + [ + 109.3123019, + -0.0063998 + ], + [ + 109.3125195, + -0.0058877 + ], + [ + 109.3125573, + -0.0057988 + ], + [ + 109.3130835, + -0.0046241 + ] + ] + }, + "id": "way/283573758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573760", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077093, + -0.028097 + ], + [ + 109.3080114, + -0.0297935 + ], + [ + 109.3080773, + -0.0303518 + ] + ] + }, + "id": "way/283573760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573761", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087054, + -0.0341204 + ], + [ + 109.3080504, + -0.0326663 + ], + [ + 109.3076104, + -0.0315141 + ] + ] + }, + "id": "way/283573761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573762", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049466, + -0.0068001 + ], + [ + 109.3049523, + -0.0067419 + ], + [ + 109.3050328, + -0.0059196 + ], + [ + 109.3051423, + -0.0050268 + ] + ] + }, + "id": "way/283573762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573763", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2866681, + -0.0319924 + ], + [ + 109.2857965, + -0.0307807 + ], + [ + 109.284998, + -0.0297175 + ], + [ + 109.2848907, + -0.029563 + ] + ] + }, + "id": "way/283573763" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573765", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159874, + -0.0132469 + ], + [ + 109.3158378, + -0.0131658 + ], + [ + 109.315575, + -0.0137527 + ], + [ + 109.3154302, + -0.0141008 + ] + ] + }, + "id": "way/283573765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573766", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070434, + -0.0118498 + ], + [ + 109.3070099, + -0.0122593 + ], + [ + 109.3069233, + -0.0127089 + ] + ] + }, + "id": "way/283573766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573767", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2917289, + -0.0000969 + ], + [ + 109.2917062, + -0.0014903 + ], + [ + 109.2917364, + -0.0034871 + ] + ] + }, + "id": "way/283573767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573768", + "highway": "residential", + "name": "Jalan Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249207, + -0.0150266 + ], + [ + 109.3245227, + -0.0146978 + ], + [ + 109.3245053, + -0.0146542 + ], + [ + 109.3245039, + -0.0145711 + ], + [ + 109.3245173, + -0.0145188 + ], + [ + 109.3245421, + -0.014459 + ], + [ + 109.3245541, + -0.0144302 + ], + [ + 109.3250646, + -0.0136478 + ], + [ + 109.3253228, + -0.0133018 + ], + [ + 109.325873, + -0.0125814 + ] + ] + }, + "id": "way/283573768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573771", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3125319, + -0.0103618 + ], + [ + 109.3127116, + -0.0100097 + ], + [ + 109.3128318, + -0.0097445 + ], + [ + 109.3129647, + -0.0094513 + ], + [ + 109.313362, + -0.0085663 + ] + ] + }, + "id": "way/283573771" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573772", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071764, + -0.0173702 + ], + [ + 109.3071906, + -0.0174037 + ], + [ + 109.3075869, + -0.018285 + ] + ] + }, + "id": "way/283573772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573773", + "highway": "living_street", + "motorcar": "no", + "motorcycle": "destination", + "name": "Gang Pakis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133857, + -0.0079151 + ], + [ + 109.3140439, + -0.0082233 + ] + ] + }, + "id": "way/283573773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573774", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2965626, + -0.0233736 + ], + [ + 109.2968923, + -0.0234982 + ], + [ + 109.2971892, + -0.023615 + ] + ] + }, + "id": "way/283573774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573775", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089639, + -0.0309795 + ], + [ + 109.3087809, + -0.0302129 + ], + [ + 109.3086768, + -0.0296451 + ], + [ + 109.3083939, + -0.0279285 + ] + ] + }, + "id": "way/283573775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573776", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.293733, + -0.0236718 + ], + [ + 109.2939469, + -0.0239467 + ], + [ + 109.2943365, + -0.0244475 + ], + [ + 109.2948672, + -0.0252009 + ] + ] + }, + "id": "way/283573776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573777", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070794, + -0.0057227 + ], + [ + 109.3073357, + -0.0045464 + ], + [ + 109.3079678, + -0.0017842 + ] + ] + }, + "id": "way/283573777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573778", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068794, + -0.017537 + ], + [ + 109.3072623, + -0.0184249 + ], + [ + 109.3073975, + -0.0187773 + ] + ] + }, + "id": "way/283573778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573779", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118977, + -0.0093017 + ], + [ + 109.312023, + -0.0090291 + ], + [ + 109.3121821, + -0.0086405 + ], + [ + 109.3123498, + -0.0082812 + ] + ] + }, + "id": "way/283573779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573781", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005817, + -0.014457 + ], + [ + 109.300555, + -0.0148035 + ], + [ + 109.3005334, + -0.0152118 + ] + ] + }, + "id": "way/283573781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573783", + "highway": "residential", + "name": "Blok M" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2889434, + -0.0088772 + ], + [ + 109.2904246, + -0.0089565 + ], + [ + 109.2911192, + -0.0089669 + ] + ] + }, + "id": "way/283573783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573784", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2997981, + -0.0151625 + ], + [ + 109.2998051, + -0.0151568 + ], + [ + 109.2998128, + -0.0151545 + ], + [ + 109.3005334, + -0.0152118 + ], + [ + 109.3019707, + -0.015349 + ] + ] + }, + "id": "way/283573784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573785", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066336, + -0.0285974 + ], + [ + 109.3068882, + -0.0300075 + ], + [ + 109.3071263, + -0.0312064 + ] + ] + }, + "id": "way/283573785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573786", + "highway": "residential", + "name": "Gang Selamat 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322231, + -0.0198904 + ], + [ + 109.3222231, + -0.0197962 + ], + [ + 109.3221563, + -0.0189981 + ], + [ + 109.3220522, + -0.0181923 + ], + [ + 109.3220391, + -0.0180986 + ], + [ + 109.3217456, + -0.0160076 + ] + ] + }, + "id": "way/283573786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573787", + "highway": "residential", + "name": "Gang Rambai 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184963, + -0.0120654 + ], + [ + 109.3190557, + -0.0112975 + ], + [ + 109.3193682, + -0.010867 + ], + [ + 109.3196971, + -0.0104306 + ], + [ + 109.3207284, + -0.0089971 + ] + ] + }, + "id": "way/283573787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573788", + "highway": "residential", + "name": "Gang Mulawarman I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014506, + -0.0074666 + ], + [ + 109.301903, + -0.0074722 + ], + [ + 109.3022216, + -0.0074761 + ] + ] + }, + "id": "way/283573788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573790", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2861552, + -0.0284811 + ], + [ + 109.2868716, + -0.0294949 + ], + [ + 109.2879375, + -0.0309328 + ] + ] + }, + "id": "way/283573790" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573792", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062065, + -0.0113759 + ], + [ + 109.3061675, + -0.0115896 + ], + [ + 109.3061238, + -0.0118997 + ], + [ + 109.3060306, + -0.0124973 + ] + ] + }, + "id": "way/283573792" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573793", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131749, + -0.0082724 + ], + [ + 109.3129226, + -0.0081478 + ], + [ + 109.3126351, + -0.0080205 + ] + ] + }, + "id": "way/283573793" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573794", + "highway": "residential", + "name": "Jalur D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178999, + -0.0123316 + ], + [ + 109.3167447, + -0.0115058 + ] + ] + }, + "id": "way/283573794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573795", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2977801, + -0.0184006 + ], + [ + 109.2999047, + -0.0192395 + ], + [ + 109.3006129, + -0.0194741 + ], + [ + 109.300653, + -0.0194874 + ], + [ + 109.3009006, + -0.0195733 + ], + [ + 109.3009613, + -0.019589 + ], + [ + 109.3010084, + -0.0195778 + ], + [ + 109.3014727, + -0.0193653 + ] + ] + }, + "id": "way/283573795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573796", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081082, + -0.0060414 + ], + [ + 109.3083188, + -0.0054167 + ], + [ + 109.3083671, + -0.0052544 + ], + [ + 109.3084194, + -0.0050063 + ], + [ + 109.3086778, + -0.0037957 + ], + [ + 109.3088399, + -0.0030363 + ], + [ + 109.3090804, + -0.0019167 + ] + ] + }, + "id": "way/283573796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573797", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3069033, + -0.028473 + ], + [ + 109.3071743, + -0.0299478 + ], + [ + 109.3074086, + -0.0311016 + ] + ] + }, + "id": "way/283573797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573798", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060031, + -0.011317 + ], + [ + 109.3062065, + -0.0113759 + ], + [ + 109.3092368, + -0.0121273 + ] + ] + }, + "id": "way/283573798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573800", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2942438, + -0.0186806 + ], + [ + 109.2942736, + -0.0185138 + ], + [ + 109.2942777, + -0.0185055 + ], + [ + 109.2942833, + -0.0184989 + ], + [ + 109.2942919, + -0.0184921 + ], + [ + 109.2943034, + -0.0184874 + ], + [ + 109.2943153, + -0.0184849 + ], + [ + 109.2957688, + -0.0183507 + ], + [ + 109.2964156, + -0.018291 + ], + [ + 109.2978479, + -0.0182664 + ] + ] + }, + "id": "way/283573800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573801", + "highway": "residential", + "name": "Gang Kelapa 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143196, + -0.0081076 + ], + [ + 109.3140453, + -0.0079638 + ], + [ + 109.3140192, + -0.0079393 + ], + [ + 109.3140118, + -0.0079172 + ], + [ + 109.3140104, + -0.0078971 + ], + [ + 109.3140131, + -0.007878 + ], + [ + 109.3149709, + -0.0061681 + ] + ] + }, + "id": "way/283573801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573804", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101896, + -0.023026 + ], + [ + 109.3102275, + -0.0230822 + ] + ] + }, + "id": "way/283573804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573805", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034799, + -0.0128896 + ], + [ + 109.3034707, + -0.0126532 + ], + [ + 109.30346, + -0.0124946 + ], + [ + 109.3034412, + -0.0123118 + ] + ] + }, + "id": "way/283573805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573806", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099721, + -0.0052615 + ], + [ + 109.3102178, + -0.0042754 + ], + [ + 109.3104875, + -0.0032915 + ] + ] + }, + "id": "way/283573806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573807", + "highway": "path", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130234, + -0.0023862 + ], + [ + 109.3130542, + -0.0023359 + ], + [ + 109.3130717, + -0.0023121 + ], + [ + 109.3130897, + -0.002309 + ], + [ + 109.3131146, + -0.0023201 + ], + [ + 109.3133526, + -0.0024332 + ], + [ + 109.3133555, + -0.0024358 + ], + [ + 109.3133602, + -0.0024437 + ], + [ + 109.3133602, + -0.002452 + ], + [ + 109.3133345, + -0.0024971 + ] + ] + }, + "id": "way/283573807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573808", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080589, + -0.027952 + ], + [ + 109.3084412, + -0.0302212 + ], + [ + 109.3085307, + -0.0307207 + ] + ] + }, + "id": "way/283573808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573809", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080462, + -0.0120815 + ], + [ + 109.3080184, + -0.0121846 + ], + [ + 109.3079938, + -0.0123005 + ], + [ + 109.30786, + -0.0129309 + ] + ] + }, + "id": "way/283573809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573811", + "highway": "unclassified", + "name": "Jalan Apel" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140714, + -0.0087349 + ], + [ + 109.3144111, + -0.0089778 + ], + [ + 109.3146336, + -0.0091522 + ], + [ + 109.3146737, + -0.009182 + ], + [ + 109.3151055, + -0.0095046 + ], + [ + 109.3153445, + -0.0096797 + ], + [ + 109.3155671, + -0.0098449 + ], + [ + 109.3156263, + -0.009883 + ], + [ + 109.3157636, + -0.0099739 + ], + [ + 109.3160231, + -0.0101738 + ], + [ + 109.316052, + -0.0102051 + ], + [ + 109.316247, + -0.0103705 + ], + [ + 109.3163275, + -0.010428 + ], + [ + 109.3165776, + -0.0106137 + ], + [ + 109.3168657, + -0.0108085 + ], + [ + 109.3169886, + -0.0109156 + ], + [ + 109.3169984, + -0.0109226 + ], + [ + 109.3172758, + -0.0111129 + ], + [ + 109.3181302, + -0.0117845 + ], + [ + 109.3181631, + -0.0118085 + ], + [ + 109.3184963, + -0.0120654 + ], + [ + 109.3191938, + -0.0125576 + ], + [ + 109.319567, + -0.0128741 + ], + [ + 109.3196582, + -0.0129578 + ], + [ + 109.3198793, + -0.013109 + ], + [ + 109.3199677, + -0.0131818 + ], + [ + 109.320113, + -0.0132912 + ], + [ + 109.3203521, + -0.0134585 + ], + [ + 109.3204905, + -0.0135516 + ], + [ + 109.3205161, + -0.0135753 + ], + [ + 109.3207805, + -0.0137676 + ], + [ + 109.3210089, + -0.013943 + ], + [ + 109.321047, + -0.013964 + ], + [ + 109.3214008, + -0.0142079 + ], + [ + 109.3216895, + -0.0144199 + ], + [ + 109.3218367, + -0.0145315 + ], + [ + 109.3220592, + -0.0147002 + ], + [ + 109.3220846, + -0.01472 + ], + [ + 109.3224906, + -0.0150354 + ] + ] + }, + "id": "way/283573811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573812", + "highway": "living_street", + "name": "Gang Tebu Raya Asri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097233, + -0.0102899 + ], + [ + 109.3093877, + -0.0102141 + ], + [ + 109.3092619, + -0.0101852 + ], + [ + 109.3064983, + -0.009504 + ] + ] + }, + "id": "way/283573812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573813", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080319, + -0.0313623 + ], + [ + 109.3080139, + -0.03098 + ], + [ + 109.3080035, + -0.0308284 + ], + [ + 109.3079783, + -0.0304227 + ] + ] + }, + "id": "way/283573813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573814", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2872235, + -0.007107 + ], + [ + 109.2872316, + -0.0070711 + ], + [ + 109.2872745, + -0.0068535 + ], + [ + 109.2873257, + -0.0065224 + ], + [ + 109.2873977, + -0.0062231 + ], + [ + 109.287445, + -0.0060685 + ], + [ + 109.2875719, + -0.0057225 + ] + ] + }, + "id": "way/283573814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573816", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2821893, + -0.0366568 + ], + [ + 109.2839811, + -0.0393219 + ], + [ + 109.2839831, + -0.0393762 + ], + [ + 109.2839724, + -0.0394647 + ], + [ + 109.2839901, + -0.039531 + ], + [ + 109.2840542, + -0.0396296 + ], + [ + 109.284319, + -0.0399605 + ] + ] + }, + "id": "way/283573816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573817", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049466, + -0.0068001 + ], + [ + 109.3049392, + -0.0068121 + ], + [ + 109.3049171, + -0.0068188 + ], + [ + 109.3047702, + -0.0068095 + ], + [ + 109.3040299, + -0.006798 + ], + [ + 109.3039733, + -0.0067962 + ], + [ + 109.3036108, + -0.0068024 + ] + ] + }, + "id": "way/283573817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573819", + "highway": "living_street", + "motorcar": "no", + "motorcycle": "destination", + "name": "Gang Kentang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314003, + -0.0088943 + ], + [ + 109.3137302, + -0.0087579 + ], + [ + 109.3136552, + -0.0087189 + ], + [ + 109.313362, + -0.0085663 + ], + [ + 109.3131057, + -0.0084274 + ] + ] + }, + "id": "way/283573819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573820", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3218448, + -0.0083503 + ], + [ + 109.3217094, + -0.0085157 + ], + [ + 109.3216534, + -0.0085783 + ], + [ + 109.3211235, + -0.00927 + ] + ] + }, + "id": "way/283573820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573821", + "highway": "residential", + "name": "Tri Darma" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2922661, + -0.0070268 + ], + [ + 109.292449, + -0.003515 + ], + [ + 109.2925567, + -0.0016193 + ], + [ + 109.2926405, + -0.0004316 + ] + ] + }, + "id": "way/283573821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573823", + "highway": "residential", + "name": "Gang Sirsak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169886, + -0.0109156 + ], + [ + 109.3171289, + -0.0107018 + ], + [ + 109.3172297, + -0.0105453 + ], + [ + 109.317269, + -0.0104842 + ], + [ + 109.3172889, + -0.0104533 + ], + [ + 109.3173226, + -0.0103863 + ], + [ + 109.317728, + -0.0097579 + ], + [ + 109.3181933, + -0.0091651 + ] + ] + }, + "id": "way/283573823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573824", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130848, + -0.0064779 + ], + [ + 109.3131381, + -0.006367 + ], + [ + 109.3138039, + -0.0051726 + ], + [ + 109.3143332, + -0.0042105 + ], + [ + 109.3147403, + -0.0034412 + ] + ] + }, + "id": "way/283573824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573825", + "highway": "residential", + "name": "Jalan Matsainin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009975, + -0.0071413 + ], + [ + 109.3014594, + -0.0071405 + ], + [ + 109.3022312, + -0.0071378 + ], + [ + 109.3032375, + -0.0071601 + ], + [ + 109.3036049, + -0.0071556 + ] + ] + }, + "id": "way/283573825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573827", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060011, + -0.0289082 + ], + [ + 109.3052592, + -0.0270837 + ], + [ + 109.3049512, + -0.0263747 + ], + [ + 109.3049359, + -0.02634 + ], + [ + 109.3046129, + -0.0256108 + ] + ] + }, + "id": "way/283573827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573828", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075299, + -0.0021915 + ], + [ + 109.3072734, + -0.002118 + ], + [ + 109.3071906, + -0.002096 + ], + [ + 109.3068789, + -0.0020221 + ], + [ + 109.3068284, + -0.0020164 + ], + [ + 109.306532, + -0.0019462 + ], + [ + 109.3065136, + -0.0019419 + ], + [ + 109.3062594, + -0.0018816 + ], + [ + 109.3061153, + -0.0018475 + ], + [ + 109.3060003, + -0.0018202 + ], + [ + 109.3058322, + -0.0017804 + ] + ] + }, + "id": "way/283573828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573829", + "access": "destination", + "highway": "residential", + "name": "Gang Jarak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246236, + -0.0155937 + ], + [ + 109.3246246, + -0.0155052 + ], + [ + 109.3246327, + -0.0154603 + ], + [ + 109.3246568, + -0.015418 + ], + [ + 109.3249207, + -0.0150266 + ], + [ + 109.3249744, + -0.0149469 + ], + [ + 109.3250197, + -0.0148821 + ], + [ + 109.3253039, + -0.014504 + ], + [ + 109.3258031, + -0.0138047 + ] + ] + }, + "id": "way/283573829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573830", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038958, + -0.0128813 + ], + [ + 109.303814, + -0.0128813 + ], + [ + 109.3034799, + -0.0128896 + ], + [ + 109.3020116, + -0.0129551 + ] + ] + }, + "id": "way/283573830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573832", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.308043, + -0.0028284 + ], + [ + 109.3076693, + -0.0046054 + ], + [ + 109.3076549, + -0.0046965 + ], + [ + 109.3076383, + -0.0047958 + ], + [ + 109.3074099, + -0.0058199 + ] + ] + }, + "id": "way/283573832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573833", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067209, + -0.0087905 + ], + [ + 109.3050828, + -0.0082816 + ], + [ + 109.3049353, + -0.0082564 + ] + ] + }, + "id": "way/283573833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573834", + "access": "destination", + "highway": "residential", + "name": "Gang Gunung Sahari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243756, + -0.0194742 + ], + [ + 109.3243388, + -0.0192238 + ], + [ + 109.324297, + -0.0189339 + ], + [ + 109.3237582, + -0.0155213 + ], + [ + 109.3237854, + -0.0155161 + ], + [ + 109.3238079, + -0.0155052 + ], + [ + 109.3238189, + -0.0154931 + ], + [ + 109.3238226, + -0.0154603 + ], + [ + 109.3237861, + -0.0153012 + ], + [ + 109.3237267, + -0.0151464 + ] + ] + }, + "id": "way/283573834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573835", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153076, + -0.0164144 + ], + [ + 109.3158098, + -0.0178897 + ], + [ + 109.3158199, + -0.017896 + ], + [ + 109.3158323, + -0.0178991 + ], + [ + 109.3159562, + -0.0178412 + ], + [ + 109.3162835, + -0.0177328 + ], + [ + 109.3163289, + -0.0177178 + ], + [ + 109.3167317, + -0.0175976 + ] + ] + }, + "id": "way/283573835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011797, + -0.0081981 + ], + [ + 109.3015309, + -0.0082108 + ], + [ + 109.3019044, + -0.0082126 + ], + [ + 109.3022003, + -0.0082178 + ], + [ + 109.3025427, + -0.0082164 + ], + [ + 109.303223, + -0.0082374 + ], + [ + 109.3035927, + -0.0082416 + ] + ] + }, + "id": "way/283573836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573837", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3032942, + -0.0053447 + ], + [ + 109.3032942, + -0.0056001 + ], + [ + 109.3032942, + -0.0058541 + ], + [ + 109.3032983, + -0.0061796 + ] + ] + }, + "id": "way/283573837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573838", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3032942, + -0.0056001 + ], + [ + 109.302603, + -0.0056045 + ], + [ + 109.3025862, + -0.0056119 + ], + [ + 109.3025815, + -0.0056259 + ], + [ + 109.302563, + -0.0058492 + ], + [ + 109.3025627, + -0.0061621 + ] + ] + }, + "id": "way/283573838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.286529, + -0.0297612 + ], + [ + 109.2866262, + -0.0296856 + ], + [ + 109.2868716, + -0.0294949 + ], + [ + 109.2869976, + -0.029397 + ] + ] + }, + "id": "way/283573839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573844", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122298, + -0.0102146 + ], + [ + 109.3123871, + -0.0098688 + ], + [ + 109.3125161, + -0.0095932 + ], + [ + 109.3126522, + -0.0093077 + ], + [ + 109.3129803, + -0.008644 + ] + ] + }, + "id": "way/283573844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573845", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203654, + -0.0109358 + ], + [ + 109.3205895, + -0.0111258 + ], + [ + 109.3207117, + -0.0112205 + ], + [ + 109.3208578, + -0.0113393 + ], + [ + 109.3210103, + -0.0114721 + ] + ] + }, + "id": "way/283573845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573846", + "highway": "residential", + "name": "Gang Bukit Raya 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176916, + -0.0154887 + ], + [ + 109.31807, + -0.0170675 + ], + [ + 109.3184378, + -0.0192567 + ], + [ + 109.3184683, + -0.0196472 + ], + [ + 109.3184844, + -0.0199997 + ], + [ + 109.3185519, + -0.0205914 + ] + ] + }, + "id": "way/283573846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573847", + "highway": "residential", + "name": "Gang Palawija III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127803, + -0.0073355 + ], + [ + 109.3130464, + -0.0069367 + ], + [ + 109.3130864, + -0.0068893 + ], + [ + 109.3131327, + -0.0068249 + ], + [ + 109.3131685, + -0.0067742 + ], + [ + 109.3133839, + -0.0064316 + ] + ] + }, + "id": "way/283573847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573848", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966317, + -0.0230717 + ], + [ + 109.2969743, + -0.0232067 + ], + [ + 109.2972024, + -0.0233009 + ], + [ + 109.2972174, + -0.0233116 + ], + [ + 109.2972285, + -0.0233218 + ], + [ + 109.2972462, + -0.0233421 + ], + [ + 109.2973586, + -0.0234998 + ] + ] + }, + "id": "way/283573848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573850", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105556, + -0.0083665 + ], + [ + 109.3107579, + -0.0084599 + ], + [ + 109.3110388, + -0.0085895 + ], + [ + 109.311383, + -0.0087547 + ] + ] + }, + "id": "way/283573850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573852", + "highway": "residential", + "name": "Perumahan Apel Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163275, + -0.010428 + ], + [ + 109.3173196, + -0.0090075 + ], + [ + 109.3173314, + -0.0089958 + ], + [ + 109.3173458, + -0.0089891 + ], + [ + 109.3173572, + -0.0089881 + ], + [ + 109.3173746, + -0.0089948 + ], + [ + 109.3175329, + -0.0091168 + ], + [ + 109.3175463, + -0.0091329 + ], + [ + 109.3175496, + -0.0091564 + ], + [ + 109.3175469, + -0.0091812 + ], + [ + 109.3165776, + -0.0106137 + ] + ] + }, + "id": "way/283573852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573853", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025466, + -0.007481 + ], + [ + 109.3025453, + -0.0077237 + ], + [ + 109.3025441, + -0.0079522 + ], + [ + 109.3025427, + -0.0082164 + ] + ] + }, + "id": "way/283573853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573854", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2956346, + -0.02463 + ], + [ + 109.2968041, + -0.0264063 + ], + [ + 109.2973853, + -0.0272901 + ], + [ + 109.2973875, + -0.0273089 + ], + [ + 109.297384, + -0.027322 + ], + [ + 109.2971473, + -0.0274771 + ] + ] + }, + "id": "way/283573854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573855", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3036263, + -0.0058749 + ], + [ + 109.3039962, + -0.0058925 + ], + [ + 109.3042437, + -0.0059004 + ], + [ + 109.3044885, + -0.0059082 + ], + [ + 109.304731, + -0.005916 + ], + [ + 109.3050328, + -0.0059196 + ] + ] + }, + "id": "way/283573855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573856", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2874229, + -0.0022863 + ], + [ + 109.2874297, + -0.0017381 + ], + [ + 109.2874378, + -0.0011976 + ], + [ + 109.2874575, + -0.0001186 + ] + ] + }, + "id": "way/283573856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573857", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3021553, + -0.018774 + ], + [ + 109.3020667, + -0.0186033 + ], + [ + 109.3020347, + -0.0185827 + ], + [ + 109.3000259, + -0.0180238 + ], + [ + 109.2982551, + -0.0174934 + ] + ] + }, + "id": "way/283573857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573858", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.289105, + -0.0011624 + ], + [ + 109.2897036, + -0.0012657 + ], + [ + 109.289709, + -0.001274 + ], + [ + 109.2897116, + -0.0012818 + ], + [ + 109.2897043, + -0.0014008 + ], + [ + 109.2896794, + -0.0020123 + ], + [ + 109.2896809, + -0.002154 + ], + [ + 109.2896685, + -0.0030405 + ] + ] + }, + "id": "way/283573858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573859", + "highway": "living_street", + "name": "Gang Kenari 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320113, + -0.0132912 + ], + [ + 109.3208482, + -0.0122463 + ], + [ + 109.3208533, + -0.0122407 + ], + [ + 109.3211129, + -0.0119197 + ], + [ + 109.3214315, + -0.0115625 + ], + [ + 109.3224852, + -0.0102644 + ] + ] + }, + "id": "way/283573859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062324, + -0.0178016 + ], + [ + 109.3065507, + -0.0176778 + ], + [ + 109.3068794, + -0.017537 + ], + [ + 109.3071906, + -0.0174037 + ] + ] + }, + "id": "way/283573860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573861", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008811, + -0.0067476 + ], + [ + 109.3014714, + -0.0067473 + ], + [ + 109.3022417, + -0.0067733 + ], + [ + 109.3036108, + -0.0068024 + ] + ] + }, + "id": "way/283573861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573862", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039733, + -0.0067962 + ], + [ + 109.3039818, + -0.0064617 + ], + [ + 109.3039881, + -0.0062134 + ], + [ + 109.3039962, + -0.0058925 + ] + ] + }, + "id": "way/283573862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573863", + "highway": "residential", + "name": "Gang Tiong Kandang 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323504, + -0.0196302 + ], + [ + 109.3232372, + -0.0175014 + ], + [ + 109.3229454, + -0.0157034 + ] + ] + }, + "id": "way/283573863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573864", + "highway": "residential", + "name": "Gang Pisang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160231, + -0.0101738 + ], + [ + 109.3166327, + -0.0092661 + ], + [ + 109.3169663, + -0.008662 + ], + [ + 109.3171532, + -0.0082966 + ] + ] + }, + "id": "way/283573864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573865", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095239, + -0.0031785 + ], + [ + 109.3093737, + -0.0038718 + ], + [ + 109.3092701, + -0.0043497 + ], + [ + 109.3091332, + -0.0049815 + ], + [ + 109.3091235, + -0.0049949 + ], + [ + 109.3091084, + -0.005002 + ], + [ + 109.3089934, + -0.0049765 + ], + [ + 109.308981, + -0.0049799 + ], + [ + 109.3089743, + -0.0049896 + ], + [ + 109.3085979, + -0.0061983 + ] + ] + }, + "id": "way/283573865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573866", + "highway": "residential", + "name": "Gang Jagung" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214008, + -0.0142079 + ], + [ + 109.3227555, + -0.0125562 + ], + [ + 109.3234016, + -0.011736 + ], + [ + 109.3237687, + -0.011329 + ] + ] + }, + "id": "way/283573866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573867", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070377, + -0.0077207 + ], + [ + 109.3085201, + -0.0081729 + ], + [ + 109.3085643, + -0.0081798 + ], + [ + 109.3085842, + -0.0081767 + ], + [ + 109.3085998, + -0.0081617 + ], + [ + 109.3086418, + -0.008098 + ], + [ + 109.3087173, + -0.0078184 + ] + ] + }, + "id": "way/283573867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573868", + "highway": "residential", + "name": "Gang Marta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132534, + -0.0183154 + ], + [ + 109.3137774, + -0.0181415 + ], + [ + 109.3141215, + -0.0180327 + ], + [ + 109.3142876, + -0.0179854 + ], + [ + 109.314511, + -0.0186374 + ] + ] + }, + "id": "way/283573868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573869", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3139037, + -0.0035055 + ], + [ + 109.313826, + -0.0036848 + ], + [ + 109.3133546, + -0.0047737 + ], + [ + 109.3133501, + -0.0047928 + ], + [ + 109.3133349, + -0.0048564 + ], + [ + 109.3124926, + -0.0065618 + ] + ] + }, + "id": "way/283573869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573870", + "highway": "residential", + "name": "Perumahan Mandau Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049017, + -0.0161228 + ], + [ + 109.3049685, + -0.016257 + ], + [ + 109.3051562, + -0.0166231 + ], + [ + 109.3055169, + -0.0173356 + ], + [ + 109.3055781, + -0.0174661 + ], + [ + 109.3056823, + -0.0176566 + ], + [ + 109.3058339, + -0.0179573 + ], + [ + 109.3062619, + -0.0188179 + ], + [ + 109.3064235, + -0.0191587 + ] + ] + }, + "id": "way/283573870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573871", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3252588, + -0.0169805 + ], + [ + 109.3254236, + -0.0170276 + ], + [ + 109.3256026, + -0.0171337 + ], + [ + 109.3259357, + -0.0172886 + ], + [ + 109.3260481, + -0.0173542 + ] + ] + }, + "id": "way/283573871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573872", + "highway": "residential", + "name": "Sadpraja" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2921209, + -0.0002369 + ], + [ + 109.2920736, + -0.0015573 + ], + [ + 109.2920687, + -0.0016922 + ], + [ + 109.2920343, + -0.0023539 + ], + [ + 109.292034, + -0.0023824 + ], + [ + 109.2919941, + -0.0034893 + ], + [ + 109.2919385, + -0.0049795 + ], + [ + 109.2918231, + -0.0064213 + ], + [ + 109.2918037, + -0.0065996 + ], + [ + 109.2917816, + -0.0067082 + ], + [ + 109.2917554, + -0.0069125 + ] + ] + }, + "id": "way/283573872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573873", + "highway": "residential", + "name": "Blok A-B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2936265, + -0.0086134 + ], + [ + 109.2930113, + -0.0086161 + ], + [ + 109.2929216, + -0.0086246 + ], + [ + 109.2928553, + -0.0086351 + ], + [ + 109.2924936, + -0.0086815 + ] + ] + }, + "id": "way/283573873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573875", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049409, + -0.0234038 + ], + [ + 109.3055641, + -0.0249491 + ] + ] + }, + "id": "way/283573875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573878", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324297, + -0.0189339 + ], + [ + 109.3244515, + -0.0189094 + ], + [ + 109.3247895, + -0.0188557 + ], + [ + 109.3253023, + -0.0187644 + ], + [ + 109.32564, + -0.0187119 + ], + [ + 109.3257459, + -0.0186955 + ] + ] + }, + "id": "way/283573878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573880", + "access": "destination", + "highway": "residential", + "name": "Gang Sampang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243597, + -0.0156048 + ], + [ + 109.3242665, + -0.0156219 + ], + [ + 109.3242545, + -0.0156326 + ], + [ + 109.3242431, + -0.0156512 + ], + [ + 109.3246194, + -0.0178364 + ], + [ + 109.3247895, + -0.0188557 + ] + ] + }, + "id": "way/283573880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573882", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3032375, + -0.0071601 + ], + [ + 109.3032282, + -0.0075056 + ], + [ + 109.3032239, + -0.0077441 + ], + [ + 109.3032196, + -0.0079782 + ], + [ + 109.303223, + -0.0082374 + ] + ] + }, + "id": "way/283573882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573883", + "highway": "residential", + "name": "Fajar Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2904493, + -0.0032304 + ], + [ + 109.2905203, + -0.005811 + ], + [ + 109.2905183, + -0.0058372 + ], + [ + 109.2905029, + -0.0058586 + ], + [ + 109.290433, + -0.0058946 + ], + [ + 109.2904401, + -0.0066083 + ] + ] + }, + "id": "way/283573883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573884", + "highway": "residential", + "name": "Gang Salak 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231672, + -0.0108271 + ], + [ + 109.322328, + -0.0116622 + ], + [ + 109.3215471, + -0.0124782 + ], + [ + 109.3208715, + -0.0133581 + ], + [ + 109.3208561, + -0.0133923 + ], + [ + 109.3208561, + -0.0134191 + ], + [ + 109.3208682, + -0.0134365 + ], + [ + 109.320946, + -0.0134969 + ], + [ + 109.3209493, + -0.0135344 + ], + [ + 109.320948, + -0.01357 + ], + [ + 109.3207805, + -0.0137676 + ] + ] + }, + "id": "way/283573884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573885", + "highway": "residential", + "name": "Gang Agung" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3173071, + -0.0155094 + ], + [ + 109.3177124, + -0.0173506 + ], + [ + 109.3180539, + -0.0189015 + ], + [ + 109.3180592, + -0.0189257 + ], + [ + 109.3180579, + -0.0189511 + ], + [ + 109.3180478, + -0.0189706 + ], + [ + 109.3180284, + -0.018988 + ], + [ + 109.3180029, + -0.0190155 + ], + [ + 109.3179935, + -0.0190511 + ], + [ + 109.3179942, + -0.0190786 + ], + [ + 109.3179982, + -0.0191255 + ], + [ + 109.3182694, + -0.0206489 + ] + ] + }, + "id": "way/283573885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573886", + "highway": "residential", + "name": "Piska" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2876139, + -0.0023254 + ], + [ + 109.287613, + -0.0025306 + ], + [ + 109.2876081, + -0.0036532 + ], + [ + 109.2876081, + -0.0043116 + ], + [ + 109.2875947, + -0.0046711 + ], + [ + 109.2875839, + -0.0049843 + ], + [ + 109.2875661, + -0.0050761 + ], + [ + 109.2875319, + -0.005206 + ], + [ + 109.2874133, + -0.0056658 + ] + ] + }, + "id": "way/283573886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573887", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3047794, + -0.004989 + ], + [ + 109.3047573, + -0.0054413 + ], + [ + 109.304731, + -0.005916 + ], + [ + 109.3046889, + -0.0062337 + ], + [ + 109.3046678, + -0.006468 + ], + [ + 109.3046646, + -0.0064782 + ], + [ + 109.3046596, + -0.0064846 + ], + [ + 109.3039818, + -0.0064617 + ] + ] + }, + "id": "way/283573887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573888", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099653, + -0.0042101 + ], + [ + 109.3102178, + -0.0042754 + ], + [ + 109.3104825, + -0.0043314 + ], + [ + 109.31075, + -0.0044016 + ], + [ + 109.3107616, + -0.004371 + ], + [ + 109.3110875, + -0.0032288 + ], + [ + 109.3111377, + -0.0030527 + ] + ] + }, + "id": "way/283573888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573889", + "highway": "residential", + "name": "Sapta Marga 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2909773, + -0.0106826 + ], + [ + 109.289778, + -0.0106082 + ], + [ + 109.2889425, + -0.0105639 + ], + [ + 109.2886135, + -0.0105337 + ], + [ + 109.288504, + -0.0105236 + ], + [ + 109.2882264, + -0.0104727 + ], + [ + 109.2877497, + -0.0103653 + ], + [ + 109.2866129, + -0.0100541 + ] + ] + }, + "id": "way/283573889" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573890", + "highway": "residential", + "name": "Maten Berdikari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979996, + -0.0074227 + ], + [ + 109.2981457, + -0.0078112 + ], + [ + 109.298198, + -0.0079247 + ], + [ + 109.2982781, + -0.0081258 + ], + [ + 109.2983668, + -0.0082958 + ], + [ + 109.2985915, + -0.0088271 + ], + [ + 109.2987914, + -0.0092324 + ], + [ + 109.2987435, + -0.0092647 + ], + [ + 109.298895, + -0.0096359 + ], + [ + 109.2993516, + -0.0106992 + ], + [ + 109.2994, + -0.0108244 + ] + ] + }, + "id": "way/283573890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573891", + "access": "destination", + "highway": "residential", + "name": "Gang Suka Maju Dalam 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253216, + -0.0175226 + ], + [ + 109.3252588, + -0.0169805 + ], + [ + 109.3250814, + -0.0157691 + ], + [ + 109.3250842, + -0.0157482 + ], + [ + 109.3251125, + -0.0157056 + ], + [ + 109.3253217, + -0.0153985 + ], + [ + 109.3255381, + -0.015088 + ], + [ + 109.3257595, + -0.014776 + ], + [ + 109.3258628, + -0.0146225 + ] + ] + }, + "id": "way/283573891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573892", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035904, + -0.0080273 + ], + [ + 109.3039809, + -0.0080385 + ], + [ + 109.3042358, + -0.0080498 + ], + [ + 109.3045449, + -0.0080551 + ], + [ + 109.3048585, + -0.0080603 + ] + ] + }, + "id": "way/283573892" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573893", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040042, + -0.0071648 + ], + [ + 109.3039995, + -0.0075426 + ], + [ + 109.3039904, + -0.007786 + ], + [ + 109.3039809, + -0.0080385 + ], + [ + 109.3039549, + -0.0087328 + ] + ] + }, + "id": "way/283573893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573894", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056521, + -0.0160488 + ], + [ + 109.3073502, + -0.0165155 + ], + [ + 109.3079969, + -0.0166981 + ], + [ + 109.3080154, + -0.0167001 + ], + [ + 109.3080573, + -0.0166907 + ], + [ + 109.3081136, + -0.0166565 + ], + [ + 109.3081579, + -0.0166525 + ], + [ + 109.3085169, + -0.0167261 + ] + ] + }, + "id": "way/283573894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573896", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966508, + -0.0229881 + ], + [ + 109.2966317, + -0.0230717 + ], + [ + 109.2965626, + -0.0233736 + ], + [ + 109.2965172, + -0.0236365 + ], + [ + 109.2965151, + -0.0236611 + ], + [ + 109.2965165, + -0.0236787 + ], + [ + 109.2965185, + -0.0236951 + ], + [ + 109.2965233, + -0.0237067 + ], + [ + 109.2966906, + -0.0239554 + ] + ] + }, + "id": "way/283573896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573897", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050688, + -0.0304037 + ], + [ + 109.305536, + -0.0302755 + ], + [ + 109.30586, + -0.0302119 + ], + [ + 109.3061803, + -0.030135 + ], + [ + 109.3065142, + -0.0300705 + ], + [ + 109.3068882, + -0.0300075 + ], + [ + 109.3071743, + -0.0299478 + ], + [ + 109.3074774, + -0.0298869 + ], + [ + 109.3077437, + -0.0298427 + ], + [ + 109.3080114, + -0.0297935 + ] + ] + }, + "id": "way/283573897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573898", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200824, + -0.0204936 + ], + [ + 109.3200886, + -0.0205245 + ], + [ + 109.3201984, + -0.0210739 + ], + [ + 109.3204236, + -0.0221656 + ], + [ + 109.3204853, + -0.0225089 + ], + [ + 109.3207176, + -0.02375 + ], + [ + 109.3207281, + -0.0238063 + ] + ] + }, + "id": "way/283573898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573899", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050828, + -0.0082816 + ], + [ + 109.3051556, + -0.0078828 + ], + [ + 109.3052295, + -0.0074892 + ], + [ + 109.3053669, + -0.0068212 + ], + [ + 109.3053803, + -0.0067561 + ], + [ + 109.305389, + -0.0067282 + ], + [ + 109.3056018, + -0.0051791 + ] + ] + }, + "id": "way/283573899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573901", + "highway": "residential", + "name": "Gang Beringin 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117611, + 0.0047636 + ], + [ + 109.3123358, + 0.0060746 + ], + [ + 109.3124425, + 0.0063297 + ], + [ + 109.3127004, + 0.0068932 + ], + [ + 109.3128647, + 0.0072739 + ], + [ + 109.3130864, + 0.0077918 + ], + [ + 109.313302, + 0.0082629 + ], + [ + 109.313325, + 0.0083178 + ], + [ + 109.3138456, + 0.0091122 + ], + [ + 109.3143504, + 0.0098424 + ], + [ + 109.3145493, + 0.0101353 + ] + ] + }, + "id": "way/283573901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573902", + "highway": "residential", + "motor_vehicle": "permissive" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140795, + -0.0210398 + ], + [ + 109.3136953, + -0.0211673 + ], + [ + 109.3136705, + -0.0211667 + ], + [ + 109.313647, + -0.0211576 + ], + [ + 109.3136313, + -0.0211366 + ], + [ + 109.3130609, + -0.0193588 + ], + [ + 109.3125079, + -0.0175578 + ], + [ + 109.3123582, + -0.0169895 + ] + ] + }, + "id": "way/283573902" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573904", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31933, + -0.020639 + ], + [ + 109.3193413, + -0.0206859 + ], + [ + 109.3195305, + -0.0215084 + ], + [ + 109.3196911, + -0.0221589 + ], + [ + 109.3197853, + -0.0225357 + ], + [ + 109.3201543, + -0.0239606 + ] + ] + }, + "id": "way/283573904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573905", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175038, + -0.0154907 + ], + [ + 109.3175243, + -0.0154027 + ], + [ + 109.3176757, + -0.0150847 + ], + [ + 109.3176864, + -0.0150526 + ], + [ + 109.3176831, + -0.0150244 + ], + [ + 109.317669, + -0.0149949 + ], + [ + 109.3169062, + -0.0144901 + ] + ] + }, + "id": "way/283573905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573906", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312023, + -0.0090291 + ], + [ + 109.312303, + -0.0091502 + ], + [ + 109.3126522, + -0.0093077 + ], + [ + 109.3129647, + -0.0094513 + ] + ] + }, + "id": "way/283573906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573908", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026501, + -0.0173363 + ], + [ + 109.3025153, + -0.0174048 + ], + [ + 109.3024642, + -0.0174308 + ], + [ + 109.3023308, + -0.0174947 + ], + [ + 109.302316, + -0.0175269 + ], + [ + 109.3023173, + -0.0175577 + ], + [ + 109.3023281, + -0.0175825 + ], + [ + 109.3024343, + -0.0177812 + ], + [ + 109.3025815, + -0.0180741 + ], + [ + 109.3036894, + -0.0203126 + ] + ] + }, + "id": "way/283573908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573912", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184953, + -0.0208139 + ], + [ + 109.3185052, + -0.0208441 + ], + [ + 109.3185226, + -0.0208548 + ], + [ + 109.3185556, + -0.0208582 + ], + [ + 109.3186222, + -0.0208467 + ], + [ + 109.3186896, + -0.0211772 + ], + [ + 109.3187392, + -0.0213423 + ], + [ + 109.3188452, + -0.0216023 + ], + [ + 109.3188867, + -0.0217149 + ], + [ + 109.318935, + -0.0218587 + ], + [ + 109.3189739, + -0.0220411 + ], + [ + 109.3190692, + -0.0224794 + ], + [ + 109.3194861, + -0.0241372 + ] + ] + }, + "id": "way/283573912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573914", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.30676, + -0.0285317 + ], + [ + 109.3067384, + -0.028361 + ], + [ + 109.3066867, + -0.0281829 + ], + [ + 109.3053863, + -0.0252702 + ] + ] + }, + "id": "way/283573914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573916", + "highway": "residential", + "name": "Gang Hasia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117407, + -0.022423 + ], + [ + 109.3109407, + -0.0202238 + ], + [ + 109.3108297, + -0.0199186 + ], + [ + 109.3099744, + -0.0176717 + ], + [ + 109.3099498, + -0.0176057 + ] + ] + }, + "id": "way/283573916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573919", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062619, + -0.0188179 + ], + [ + 109.3066155, + -0.0186787 + ], + [ + 109.3069437, + -0.0185496 + ], + [ + 109.3072623, + -0.0184249 + ], + [ + 109.3075869, + -0.018285 + ], + [ + 109.3079131, + -0.0181499 + ], + [ + 109.3082812, + -0.0179842 + ], + [ + 109.3086491, + -0.0177646 + ] + ] + }, + "id": "way/283573919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573921", + "highway": "residential", + "name": "Okta Aulia 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2880927, + -0.0084546 + ], + [ + 109.2881397, + -0.0081088 + ], + [ + 109.2881551, + -0.0078089 + ], + [ + 109.2882022, + -0.0073385 + ], + [ + 109.2882002, + -0.0072742 + ], + [ + 109.2881962, + -0.0072112 + ], + [ + 109.2881462, + -0.0069323 + ], + [ + 109.2881153, + -0.0067686 + ], + [ + 109.2881544, + -0.0065549 + ], + [ + 109.2882147, + -0.0063444 + ], + [ + 109.2883222, + -0.0059885 + ] + ] + }, + "id": "way/283573921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573923", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2990547, + -0.0146213 + ], + [ + 109.2990578, + -0.0146607 + ], + [ + 109.2990691, + -0.0146841 + ], + [ + 109.2990839, + -0.0147019 + ], + [ + 109.2991063, + -0.014714 + ], + [ + 109.300555, + -0.0148035 + ], + [ + 109.3019317, + -0.0149038 + ] + ] + }, + "id": "way/283573923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573926", + "highway": "residential", + "name": "Gang Sebukit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230235, + -0.0197213 + ], + [ + 109.3230205, + -0.0196994 + ], + [ + 109.3228274, + -0.0182975 + ], + [ + 109.3225018, + -0.0157491 + ], + [ + 109.3224876, + -0.0157204 + ], + [ + 109.3224654, + -0.0156802 + ], + [ + 109.3224607, + -0.0156554 + ], + [ + 109.3224634, + -0.0156198 + ], + [ + 109.3224851, + -0.0155814 + ] + ] + }, + "id": "way/283573926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573928", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097103, + -0.001787 + ], + [ + 109.3094649, + -0.0031594 + ], + [ + 109.3095239, + -0.0031785 + ], + [ + 109.3097401, + -0.0032306 + ], + [ + 109.309957, + -0.0032958 + ], + [ + 109.3099684, + -0.0032891 + ], + [ + 109.3099777, + -0.003279 + ], + [ + 109.3100146, + -0.0031798 + ], + [ + 109.3100247, + -0.0031731 + ], + [ + 109.3100394, + -0.0031697 + ], + [ + 109.3102386, + -0.0032218 + ] + ] + }, + "id": "way/283573928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573929", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2937949, + -0.0236201 + ], + [ + 109.2931873, + -0.0228103 + ], + [ + 109.293175, + -0.0227465 + ], + [ + 109.2931717, + -0.0227163 + ], + [ + 109.2931744, + -0.0226823 + ], + [ + 109.2932434, + -0.0222945 + ], + [ + 109.2932671, + -0.0220435 + ] + ] + }, + "id": "way/283573929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573933", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133501, + -0.0047928 + ], + [ + 109.3130835, + -0.0046241 + ], + [ + 109.3129034, + -0.0045221 + ], + [ + 109.3128391, + -0.0044825 + ], + [ + 109.3124584, + -0.0042479 + ], + [ + 109.3122005, + -0.004089 + ] + ] + }, + "id": "way/283573933" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573934", + "highway": "residential", + "name": "Gang Jambu Tukal" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3166934, + -0.0149344 + ], + [ + 109.3169062, + -0.0144901 + ], + [ + 109.3171583, + -0.013964 + ], + [ + 109.3174085, + -0.0134134 + ], + [ + 109.3176675, + -0.0128431 + ], + [ + 109.3178999, + -0.0123316 + ], + [ + 109.318023, + -0.0120713 + ], + [ + 109.3180995, + -0.0118809 + ], + [ + 109.3181302, + -0.0117845 + ] + ] + }, + "id": "way/283573934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573936", + "highway": "residential", + "motorcar": "destination", + "name": "Gang Gunung Pandan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321877, + -0.015826 + ], + [ + 109.3220983, + -0.0158136 + ], + [ + 109.3221045, + -0.0158154 + ], + [ + 109.3221094, + -0.0158207 + ], + [ + 109.3221141, + -0.0158277 + ], + [ + 109.3221154, + -0.0158378 + ], + [ + 109.322486, + -0.018689 + ], + [ + 109.3225071, + -0.0187974 + ], + [ + 109.3225144, + -0.0188137 + ], + [ + 109.3225351, + -0.0188392 + ], + [ + 109.3225513, + -0.0188667 + ], + [ + 109.3225553, + -0.0188804 + ], + [ + 109.3225597, + -0.0189 + ], + [ + 109.3226611, + -0.019743 + ], + [ + 109.3226672, + -0.0197938 + ] + ] + }, + "id": "way/283573936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573943", + "highway": "residential", + "name": "Pancasila / Karya Tani 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2867477, + -0.0022059 + ], + [ + 109.2872284, + -0.0022489 + ], + [ + 109.2874229, + -0.0022863 + ], + [ + 109.2876139, + -0.0023254 + ], + [ + 109.2878081, + -0.0023584 + ], + [ + 109.2879936, + -0.0023989 + ], + [ + 109.2883429, + -0.0024568 + ], + [ + 109.288909, + -0.0025411 + ] + ] + }, + "id": "way/283573943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573946", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2893401, + 0.0009865 + ], + [ + 109.2893631, + 0.0008715 + ], + [ + 109.2893749, + 0.0007726 + ], + [ + 109.289363, + 0.0006588 + ], + [ + 109.2891738, + -0.0005834 + ], + [ + 109.2891649, + -0.0006647 + ], + [ + 109.289105, + -0.0011624 + ], + [ + 109.2890581, + -0.0014479 + ], + [ + 109.288909, + -0.0025411 + ], + [ + 109.2888688, + -0.0028358 + ], + [ + 109.2886263, + -0.0045821 + ], + [ + 109.2884368, + -0.0060144 + ] + ] + }, + "id": "way/283573946" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573947", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991706, + -0.0090522 + ], + [ + 109.3000444, + -0.0088746 + ], + [ + 109.3002638, + -0.0088299 + ], + [ + 109.3005493, + -0.0087699 + ], + [ + 109.3009271, + -0.0086792 + ], + [ + 109.3012056, + -0.0086473 + ], + [ + 109.301257, + -0.0086416 + ], + [ + 109.3021885, + -0.0086295 + ], + [ + 109.303597, + -0.0086867 + ] + ] + }, + "id": "way/283573947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573948", + "highway": "residential", + "name": "Perumahan Mandau Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088398, + -0.0178038 + ], + [ + 109.3086491, + -0.0177646 + ], + [ + 109.3075921, + -0.0174815 + ], + [ + 109.3071764, + -0.0173702 + ], + [ + 109.3067081, + -0.0172355 + ], + [ + 109.3062213, + -0.017091 + ], + [ + 109.3061556, + -0.017087 + ], + [ + 109.30611, + -0.0170924 + ], + [ + 109.3059914, + -0.0171439 + ], + [ + 109.3058456, + -0.0172071 + ], + [ + 109.3055169, + -0.0173356 + ] + ] + }, + "id": "way/283573948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573951", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301351, + -0.0054075 + ], + [ + 109.3014054, + -0.0055817 + ], + [ + 109.3014255, + -0.0056581 + ], + [ + 109.3014399, + -0.0057282 + ], + [ + 109.3014518, + -0.0058162 + ], + [ + 109.3014565, + -0.0061403 + ], + [ + 109.3014608, + -0.0063985 + ], + [ + 109.3014714, + -0.0067473 + ] + ] + }, + "id": "way/283573951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573956", + "highway": "residential", + "name": "Gang Sahang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182463, + -0.0172312 + ], + [ + 109.3180914, + -0.01646 + ], + [ + 109.3180659, + -0.0163373 + ], + [ + 109.3180324, + -0.0161952 + ], + [ + 109.3179868, + -0.0159618 + ], + [ + 109.317844, + -0.0154769 + ], + [ + 109.3179127, + -0.0153299 + ], + [ + 109.3184768, + -0.0141236 + ], + [ + 109.3185259, + -0.0140186 + ], + [ + 109.3191938, + -0.0125576 + ] + ] + }, + "id": "way/283573956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573957", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891649, + -0.0006647 + ], + [ + 109.2899782, + -0.0009342 + ], + [ + 109.2906668, + -0.0011784 + ], + [ + 109.2907407, + -0.0012046 + ], + [ + 109.2908942, + -0.0012508 + ], + [ + 109.2909629, + -0.0012751 + ], + [ + 109.2912029, + -0.0013438 + ], + [ + 109.2912718, + -0.0013608 + ], + [ + 109.2917062, + -0.0014903 + ], + [ + 109.2920736, + -0.0015573 + ], + [ + 109.2922692, + -0.0015828 + ], + [ + 109.2925567, + -0.0016193 + ] + ] + }, + "id": "way/283573957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573958", + "highway": "residential", + "motor_vehicle": "no", + "name": "Gang Kinibalu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179617, + -0.0207147 + ], + [ + 109.3175548, + -0.0189288 + ], + [ + 109.3174948, + -0.0186315 + ], + [ + 109.3174347, + -0.0183342 + ], + [ + 109.3171953, + -0.0174956 + ], + [ + 109.3168529, + -0.0162964 + ], + [ + 109.3168328, + -0.016283 + ], + [ + 109.3166295, + -0.0162939 + ], + [ + 109.3166199, + -0.0162924 + ], + [ + 109.3166122, + -0.0162864 + ], + [ + 109.3166073, + -0.0162762 + ], + [ + 109.3164898, + -0.0158677 + ] + ] + }, + "id": "way/283573958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573959", + "highway": "residential", + "name": "Gang Cempaka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106453, + -0.009455 + ], + [ + 109.3110388, + -0.0085895 + ], + [ + 109.311156, + -0.0083155 + ], + [ + 109.3112817, + -0.0080216 + ], + [ + 109.311336, + -0.0078945 + ], + [ + 109.3113576, + -0.0078315 + ], + [ + 109.3113793, + -0.0077389 + ], + [ + 109.3113992, + -0.0076081 + ] + ] + }, + "id": "way/283573959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573960", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014565, + -0.0061403 + ], + [ + 109.3017094, + -0.0061427 + ], + [ + 109.3019472, + -0.0061481 + ], + [ + 109.3022592, + -0.0061598 + ], + [ + 109.3025627, + -0.0061621 + ], + [ + 109.3032983, + -0.0061796 + ], + [ + 109.3036211, + -0.0061863 + ] + ] + }, + "id": "way/283573960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051722, + -0.0122817 + ], + [ + 109.3060306, + -0.0124973 + ], + [ + 109.3063904, + -0.0125825 + ], + [ + 109.3065379, + -0.0126175 + ], + [ + 109.3069233, + -0.0127089 + ], + [ + 109.3072701, + -0.0127911 + ], + [ + 109.3074828, + -0.0128415 + ], + [ + 109.30786, + -0.0129309 + ], + [ + 109.3091194, + -0.013229 + ] + ] + }, + "id": "way/283573961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573962", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208348, + -0.0203747 + ], + [ + 109.32084, + -0.0203994 + ], + [ + 109.3209493, + -0.0209183 + ], + [ + 109.3212846, + -0.0225008 + ], + [ + 109.3213946, + -0.0229837 + ], + [ + 109.3214133, + -0.0230757 + ], + [ + 109.321416, + -0.0230999 + ], + [ + 109.321416, + -0.023122 + ], + [ + 109.3214113, + -0.0231387 + ], + [ + 109.3214033, + -0.0231495 + ], + [ + 109.3213939, + -0.0231662 + ], + [ + 109.3213858, + -0.023187 + ], + [ + 109.3213852, + -0.0232306 + ], + [ + 109.3213946, + -0.0232856 + ], + [ + 109.3214612, + -0.0236229 + ] + ] + }, + "id": "way/283573962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573963", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067739, + -0.0313207 + ], + [ + 109.3071263, + -0.0312064 + ], + [ + 109.3074086, + -0.0311016 + ], + [ + 109.307626, + -0.0310102 + ], + [ + 109.3076488, + -0.0309976 + ], + [ + 109.3076597, + -0.0309781 + ], + [ + 109.307659, + -0.0309366 + ], + [ + 109.3075682, + -0.0304155 + ], + [ + 109.3075148, + -0.0301038 + ], + [ + 109.3074774, + -0.0298869 + ], + [ + 109.3072043, + -0.0283319 + ] + ] + }, + "id": "way/283573963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2842687, + -0.0346393 + ], + [ + 109.2840261, + -0.0348807 + ], + [ + 109.283923, + -0.034974 + ], + [ + 109.2835714, + -0.0353207 + ], + [ + 109.2830739, + -0.0357816 + ], + [ + 109.2828569, + -0.0359818 + ], + [ + 109.2826992, + -0.0361277 + ], + [ + 109.2824592, + -0.0363741 + ], + [ + 109.2821893, + -0.0366568 + ], + [ + 109.2816957, + -0.0371293 + ], + [ + 109.2816642, + -0.0371594 + ], + [ + 109.281453, + -0.0373626 + ], + [ + 109.2810606, + -0.0377401 + ], + [ + 109.2810109, + -0.0377852 + ], + [ + 109.2807527, + -0.0380218 + ], + [ + 109.2801998, + -0.0385468 + ], + [ + 109.2798981, + -0.0388518 + ], + [ + 109.2794006, + -0.0392649 + ] + ] + }, + "id": "way/283573965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573967", + "highway": "residential", + "name": "Gang Timun 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196971, + -0.0104306 + ], + [ + 109.3193585, + -0.0101305 + ], + [ + 109.3192661, + -0.0100556 + ], + [ + 109.319033, + -0.0098667 + ], + [ + 109.3188794, + -0.0097423 + ], + [ + 109.3188259, + -0.0096983 + ], + [ + 109.3185561, + -0.0094704 + ], + [ + 109.3185063, + -0.0094337 + ], + [ + 109.3183548, + -0.0093037 + ], + [ + 109.3182413, + -0.0092063 + ], + [ + 109.3181933, + -0.0091651 + ], + [ + 109.3179304, + -0.0089439 + ], + [ + 109.3177718, + -0.0088105 + ], + [ + 109.3172124, + -0.0083432 + ], + [ + 109.3171532, + -0.0082966 + ], + [ + 109.3168826, + -0.0081002 + ], + [ + 109.316712, + -0.0079927 + ], + [ + 109.3156978, + -0.0072942 + ] + ] + }, + "id": "way/283573967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573968", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093641, + -0.0063957 + ], + [ + 109.3099653, + -0.0042101 + ], + [ + 109.3102386, + -0.0032218 + ], + [ + 109.3106174, + -0.0020995 + ], + [ + 109.3106201, + -0.0020868 + ], + [ + 109.3106141, + -0.0020707 + ], + [ + 109.3104395, + -0.0020134 + ], + [ + 109.3102647, + -0.0019547 + ], + [ + 109.3099975, + -0.0018728 + ], + [ + 109.3099174, + -0.0018441 + ], + [ + 109.3097103, + -0.001787 + ], + [ + 109.3091054, + -0.0016601 + ] + ] + }, + "id": "way/283573968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573970", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068889, + -0.031778 + ], + [ + 109.3068065, + -0.0314372 + ], + [ + 109.3067739, + -0.0313207 + ], + [ + 109.3065142, + -0.0300705 + ], + [ + 109.3062826, + -0.0287676 + ], + [ + 109.3055202, + -0.0269854 + ], + [ + 109.3049007, + -0.0254803 + ] + ] + }, + "id": "way/283573970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573976", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014518, + -0.0058162 + ], + [ + 109.301709, + -0.0056556 + ], + [ + 109.301953, + -0.0055146 + ], + [ + 109.3020318, + -0.0054697 + ], + [ + 109.3022485, + -0.0054072 + ], + [ + 109.3025358, + -0.0053665 + ], + [ + 109.3032942, + -0.0053447 + ], + [ + 109.3036349, + -0.0053579 + ] + ] + }, + "id": "way/283573976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573978", + "highway": "living_street", + "motorcar": "no", + "motorcycle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129803, + -0.008644 + ], + [ + 109.3130109, + -0.0086002 + ], + [ + 109.313052, + -0.0085356 + ], + [ + 109.3131057, + -0.0084274 + ], + [ + 109.3131749, + -0.0082724 + ], + [ + 109.3132531, + -0.0081404 + ], + [ + 109.3133857, + -0.0079151 + ], + [ + 109.3134762, + -0.0077638 + ] + ] + }, + "id": "way/283573978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573980", + "highway": "residential", + "name": "Gang Alpokat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155319, + -0.0142941 + ], + [ + 109.3157862, + -0.0137095 + ], + [ + 109.3159874, + -0.0132469 + ], + [ + 109.3160121, + -0.0131901 + ], + [ + 109.3162529, + -0.0126366 + ], + [ + 109.3165, + -0.0120685 + ], + [ + 109.3167447, + -0.0115058 + ], + [ + 109.3169713, + -0.010985 + ] + ] + }, + "id": "way/283573980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573982", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2935333, + -0.031378 + ], + [ + 109.2920887, + -0.0294373 + ], + [ + 109.2920428, + -0.0294261 + ], + [ + 109.292001, + -0.0294303 + ], + [ + 109.2919578, + -0.0294512 + ], + [ + 109.2918924, + -0.0294707 + ], + [ + 109.2918451, + -0.0294623 + ], + [ + 109.2918214, + -0.029447 + ], + [ + 109.2909103, + -0.0281823 + ] + ] + }, + "id": "way/283573982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573987", + "highway": "residential", + "name": "Jalan Hasyim Ahmad" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3021885, + -0.0086295 + ], + [ + 109.3022003, + -0.0082178 + ], + [ + 109.3022216, + -0.0074761 + ] + ] + }, + "id": "way/283573987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573989", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210089, + -0.013943 + ], + [ + 109.320391, + -0.0150093 + ], + [ + 109.3198952, + -0.0157754 + ], + [ + 109.3198275, + -0.0158646 + ], + [ + 109.3198258, + -0.0158733 + ], + [ + 109.3198265, + -0.0158814 + ], + [ + 109.3198295, + -0.0158881 + ], + [ + 109.3198369, + -0.0158961 + ], + [ + 109.3199503, + -0.0159702 + ], + [ + 109.3200092, + -0.0160073 + ], + [ + 109.3201349, + -0.0160867 + ], + [ + 109.3202741, + -0.0161831 + ], + [ + 109.3202828, + -0.0161841 + ], + [ + 109.3202915, + -0.0161814 + ], + [ + 109.3203002, + -0.0161761 + ], + [ + 109.3203056, + -0.0161704 + ], + [ + 109.3213676, + -0.0148173 + ], + [ + 109.3216895, + -0.0144199 + ] + ] + }, + "id": "way/283573989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573991", + "highway": "residential", + "name": "Perumahan Warga Sejahtera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2908687, + -0.0117355 + ], + [ + 109.2908823, + -0.0116028 + ], + [ + 109.2908965, + -0.0114651 + ], + [ + 109.2909355, + -0.0110823 + ], + [ + 109.2909773, + -0.0106826 + ], + [ + 109.2910054, + -0.0103114 + ], + [ + 109.2910569, + -0.0097853 + ], + [ + 109.2910937, + -0.0093769 + ], + [ + 109.2911074, + -0.0092226 + ], + [ + 109.2911176, + -0.0090068 + ], + [ + 109.2911192, + -0.0089669 + ], + [ + 109.2911246, + -0.0087201 + ], + [ + 109.2911261, + -0.008578 + ], + [ + 109.2911312, + -0.0083228 + ], + [ + 109.2911226, + -0.0081053 + ], + [ + 109.2911117, + -0.0078859 + ], + [ + 109.2911044, + -0.0077017 + ], + [ + 109.2911197, + -0.0067838 + ] + ] + }, + "id": "way/283573991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573993", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3177718, + -0.0088105 + ], + [ + 109.317795, + -0.008784 + ], + [ + 109.3179428, + -0.0086156 + ], + [ + 109.3184517, + -0.0080353 + ], + [ + 109.3184686, + -0.0080289 + ], + [ + 109.3184991, + -0.0080283 + ], + [ + 109.3185548, + -0.0080617 + ], + [ + 109.3185814, + -0.0080866 + ], + [ + 109.3186909, + -0.0081888 + ], + [ + 109.3188694, + -0.0083555 + ], + [ + 109.3188819, + -0.0083917 + ], + [ + 109.3188597, + -0.0084501 + ], + [ + 109.3183616, + -0.0089845 + ], + [ + 109.3182172, + -0.0091394 + ], + [ + 109.3181933, + -0.0091651 + ] + ] + }, + "id": "way/283573993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573995", + "highway": "residential", + "name": "Flora" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017705, + 0.0126326 + ], + [ + 109.3017852, + 0.0126792 + ] + ] + }, + "id": "way/283573995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283573997", + "highway": "residential", + "name": "Gang Tebu Manis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071487, + -0.0073079 + ], + [ + 109.3073444, + -0.0073745 + ], + [ + 109.3075558, + -0.0074465 + ], + [ + 109.3079637, + -0.0075737 + ], + [ + 109.3082222, + -0.0076576 + ], + [ + 109.3087173, + -0.0078184 + ], + [ + 109.3087342, + -0.0077868 + ], + [ + 109.3087431, + -0.0077796 + ], + [ + 109.3087567, + -0.0077751 + ], + [ + 109.3087749, + -0.0077722 + ], + [ + 109.3087956, + -0.0077732 + ], + [ + 109.3089841, + -0.0078108 + ], + [ + 109.3097464, + -0.0079923 + ], + [ + 109.3100207, + -0.0080379 + ], + [ + 109.3103801, + -0.008117 + ] + ] + }, + "id": "way/283573997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582058", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109567, + -0.0066978 + ], + [ + 109.31094, + -0.006278 + ], + [ + 109.3109474, + -0.006155 + ], + [ + 109.3109722, + -0.00607 + ], + [ + 109.311023, + -0.0059111 + ], + [ + 109.3111066, + -0.0056927 + ], + [ + 109.3114004, + -0.0049252 + ], + [ + 109.3115093, + -0.0046724 + ], + [ + 109.3116206, + -0.0044471 + ], + [ + 109.3116417, + -0.0044039 + ], + [ + 109.3118609, + -0.0039543 + ], + [ + 109.3120743, + -0.0035145 + ], + [ + 109.3121718, + -0.0033111 + ], + [ + 109.3123421, + -0.0029464 + ], + [ + 109.3123401, + -0.0029283 + ], + [ + 109.312328, + -0.0029042 + ], + [ + 109.3122439, + -0.0028795 + ], + [ + 109.3118203, + -0.0027674 + ], + [ + 109.3115441, + -0.0026942 + ] + ] + }, + "id": "way/283582058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582061", + "highway": "residential", + "name": "Sejahtera 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946288, + -0.010163 + ], + [ + 109.2957017, + -0.0097712 + ], + [ + 109.2957745, + -0.00974 + ], + [ + 109.29579, + -0.0097807 + ], + [ + 109.2958033, + -0.0098196 + ], + [ + 109.2958474, + -0.0099527 + ], + [ + 109.2958435, + -0.0099795 + ], + [ + 109.2958257, + -0.0099989 + ], + [ + 109.295748, + -0.0100335 + ], + [ + 109.2946848, + -0.0104328 + ] + ] + }, + "id": "way/283582061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582062", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.299758, + -0.0040565 + ], + [ + 109.2997865, + -0.0043782 + ], + [ + 109.2998464, + -0.0046382 + ], + [ + 109.2998584, + -0.0046603 + ], + [ + 109.2998826, + -0.0046731 + ], + [ + 109.300355, + -0.0046503 + ], + [ + 109.3005726, + -0.0046211 + ], + [ + 109.3005793, + -0.0046107 + ], + [ + 109.3005799, + -0.0045899 + ], + [ + 109.3005498, + -0.0042918 + ], + [ + 109.3005136, + -0.0039722 + ], + [ + 109.300476, + -0.0035925 + ], + [ + 109.3004231, + -0.0029307 + ], + [ + 109.3004097, + -0.0027122 + ], + [ + 109.3003503, + -0.002149 + ] + ] + }, + "id": "way/283582062" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582063", + "highway": "residential", + "name": "Melati 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050938, + -0.0115057 + ], + [ + 109.3033671, + -0.0115247 + ], + [ + 109.3033645, + -0.0114899 + ], + [ + 109.303361, + -0.0112811 + ], + [ + 109.3033443, + -0.0112561 + ] + ] + }, + "id": "way/283582063" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582065", + "highway": "residential", + "name": "Komplek Yuka Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984987, + -0.0071148 + ], + [ + 109.2985454, + -0.0066985 + ], + [ + 109.2986154, + -0.006073 + ], + [ + 109.2986432, + -0.0058246 + ], + [ + 109.2986849, + -0.0054525 + ], + [ + 109.2987138, + -0.0051937 + ], + [ + 109.2987223, + -0.005118 + ], + [ + 109.2987547, + -0.0048289 + ], + [ + 109.2987937, + -0.0044809 + ], + [ + 109.2989291, + -0.003271 + ], + [ + 109.2989542, + -0.0030472 + ], + [ + 109.2989757, + -0.0028549 + ], + [ + 109.2989935, + -0.0026957 + ], + [ + 109.2990159, + -0.002496 + ], + [ + 109.2990317, + -0.0023546 + ], + [ + 109.2990576, + -0.0021201 + ], + [ + 109.2990687, + -0.0020494 + ] + ] + }, + "id": "way/283582065" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582066", + "highway": "residential", + "name": "Gang Maria 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099365, + -0.0204014 + ], + [ + 109.3089598, + -0.0180349 + ] + ] + }, + "id": "way/283582066" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582067", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057292, + -0.0146864 + ], + [ + 109.3089513, + -0.0154858 + ] + ] + }, + "id": "way/283582067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582068", + "highway": "residential", + "name": "Nilam Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2974145, + -0.0105806 + ], + [ + 109.2982653, + -0.0103401 + ], + [ + 109.298628, + -0.0102487 + ], + [ + 109.2985287, + -0.0100295 + ] + ] + }, + "id": "way/283582068" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582069", + "highway": "living_street", + "motorcar": "no", + "motorcycle": "destination", + "name": "Gang Keladi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136552, + -0.0087189 + ], + [ + 109.3136072, + -0.0088198 + ], + [ + 109.313246, + -0.0095789 + ] + ] + }, + "id": "way/283582069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582070", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2924444, + -0.0434989 + ], + [ + 109.2916529, + -0.0426468 + ] + ] + }, + "id": "way/283582070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582071", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128131, + -0.0267397 + ], + [ + 109.3156265, + -0.0258436 + ] + ] + }, + "id": "way/283582071" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582072", + "highway": "residential", + "name": "Alpokat Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297002, + -0.0058403 + ], + [ + 109.2971136, + -0.0058183 + ], + [ + 109.2978394, + -0.0056487 + ], + [ + 109.2986849, + -0.0054525 + ] + ] + }, + "id": "way/283582072" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582073", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3002886, + -0.0105218 + ], + [ + 109.3004496, + -0.011418 + ] + ] + }, + "id": "way/283582073" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582074", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107935, + -0.0227821 + ], + [ + 109.3098595, + -0.0204397 + ] + ] + }, + "id": "way/283582074" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582075", + "highway": "residential", + "name": "Karet Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980422, + -0.0124116 + ], + [ + 109.2988854, + -0.0122996 + ] + ] + }, + "id": "way/283582075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582076", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980698, + -0.0050647 + ], + [ + 109.2981455, + -0.0032348 + ] + ] + }, + "id": "way/283582076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582077", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176999, + -0.0222947 + ], + [ + 109.3180862, + -0.0222134 + ] + ] + }, + "id": "way/283582077" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582078", + "highway": "residential", + "name": "Gang Lestari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058566, + -0.0138651 + ], + [ + 109.3090257, + -0.014613 + ] + ] + }, + "id": "way/283582078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582079", + "highway": "residential", + "name": "Blok E-F" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2956888, + -0.0091574 + ], + [ + 109.294857, + -0.0094821 + ] + ] + }, + "id": "way/283582079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582080", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057766, + -0.0135173 + ], + [ + 109.3090433, + -0.0142528 + ] + ] + }, + "id": "way/283582080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582081", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310606, + -0.0080507 + ], + [ + 109.311156, + -0.0083155 + ] + ] + }, + "id": "way/283582081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582082", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982545, + -0.0023091 + ], + [ + 109.2990317, + -0.0023546 + ] + ] + }, + "id": "way/283582082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582083", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996418, + -0.0080802 + ], + [ + 109.2996889, + -0.0083273 + ], + [ + 109.2997356, + -0.0085709 + ] + ] + }, + "id": "way/283582083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582084", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994, + -0.0108244 + ], + [ + 109.2995027, + -0.0110465 + ], + [ + 109.2996984, + -0.0115027 + ] + ] + }, + "id": "way/283582084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582086", + "highway": "residential", + "name": "Alpokat Sari Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971222, + -0.0064 + ], + [ + 109.2986154, + -0.006073 + ] + ] + }, + "id": "way/283582086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582087", + "highway": "residential", + "name": "Karet Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968855, + -0.0092208 + ], + [ + 109.2985915, + -0.0088271 + ] + ] + }, + "id": "way/283582087" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582088", + "highway": "residential", + "name": "Kartika Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968687, + -0.0089499 + ], + [ + 109.298202, + -0.008641 + ] + ] + }, + "id": "way/283582088" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582089", + "highway": "residential", + "name": "Permai 6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968991, + -0.008388 + ], + [ + 109.2982781, + -0.0081258 + ] + ] + }, + "id": "way/283582089" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582090", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005308, + -0.0058567 + ], + [ + 109.3004288, + -0.0054719 + ] + ] + }, + "id": "way/283582090" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582091", + "highway": "living_street", + "name": "Gang Nusa Dua" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066149, + -0.0091997 + ], + [ + 109.3098244, + -0.0099602 + ] + ] + }, + "id": "way/283582091" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582092", + "highway": "service", + "motor_vehicle": "destination", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127116, + -0.0100097 + ], + [ + 109.3133895, + -0.0103368 + ] + ] + }, + "id": "way/283582092" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582093", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3086418, + -0.008098 + ], + [ + 109.3089424, + -0.0081664 + ], + [ + 109.3094746, + -0.0082881 + ], + [ + 109.3102829, + -0.0084545 + ] + ] + }, + "id": "way/283582093" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582094", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121805, + -0.0106258 + ], + [ + 109.3119591, + -0.0111368 + ] + ] + }, + "id": "way/283582094" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582095", + "highway": "residential", + "name": "Blok F-D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957297, + -0.0094351 + ], + [ + 109.2945322, + -0.0098739 + ] + ] + }, + "id": "way/283582095" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582096", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303982, + -0.0035103 + ], + [ + 109.3040629, + -0.0032015 + ], + [ + 109.3041324, + -0.0028749 + ], + [ + 109.3042243, + -0.002564 + ], + [ + 109.3042948, + -0.0022946 + ], + [ + 109.3042988, + -0.0022624 + ], + [ + 109.3042935, + -0.0022517 + ] + ] + }, + "id": "way/283582096" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582099", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983888, + -0.0050859 + ], + [ + 109.2984758, + -0.0030591 + ] + ] + }, + "id": "way/283582099" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582100", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2974799, + -0.0022012 + ], + [ + 109.2978831, + -0.0022471 + ] + ] + }, + "id": "way/283582100" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582101", + "highway": "residential", + "name": "Surya Kencana 1 Blok E-F" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2975418, + -0.0113291 + ], + [ + 109.2957714, + -0.0119727 + ], + [ + 109.2943729, + -0.0124811 + ] + ] + }, + "id": "way/283582101" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582103", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.295748, + -0.0100335 + ], + [ + 109.2958294, + -0.0102365 + ] + ] + }, + "id": "way/283582103" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582104", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.30517, + -0.0127337 + ], + [ + 109.3057932, + -0.0128803 + ], + [ + 109.3090803, + -0.0136434 + ] + ] + }, + "id": "way/283582104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582105", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2810109, + -0.0377852 + ], + [ + 109.281074, + -0.0378849 + ], + [ + 109.2831869, + -0.0410976 + ] + ] + }, + "id": "way/283582105" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582106", + "highway": "service", + "motor_vehicle": "destination", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128318, + -0.0097445 + ], + [ + 109.3135011, + -0.0100627 + ] + ] + }, + "id": "way/283582106" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582107", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3152248, + -0.01553 + ], + [ + 109.3140627, + -0.0146092 + ], + [ + 109.313505, + -0.0141934 + ], + [ + 109.312473, + -0.013422 + ] + ] + }, + "id": "way/283582107" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582108", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999172, + -0.0072318 + ], + [ + 109.3000069, + -0.0076409 + ], + [ + 109.3000808, + -0.0079779 + ] + ] + }, + "id": "way/283582108" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582109", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005485, + -0.0104703 + ], + [ + 109.3006523, + -0.0109685 + ] + ] + }, + "id": "way/283582109" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582110", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057188, + -0.0150102 + ], + [ + 109.3089359, + -0.0158176 + ] + ] + }, + "id": "way/283582110" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582111", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140878, + -0.0040605 + ], + [ + 109.3143332, + -0.0042105 + ] + ] + }, + "id": "way/283582111" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582112", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312303, + -0.0091502 + ], + [ + 109.3126058, + -0.0084283 + ] + ] + }, + "id": "way/283582112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582113", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074378, + -0.0011185 + ], + [ + 109.3072727, + -0.0017454 + ] + ] + }, + "id": "way/283582113" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582114", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127974, + -0.0271099 + ], + [ + 109.3156278, + -0.0261583 + ] + ] + }, + "id": "way/283582114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582115", + "highway": "residential", + "name": "Jalan Lavista A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2970234, + -0.0096333 + ], + [ + 109.2987435, + -0.0092647 + ] + ] + }, + "id": "way/283582115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582116", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982503, + -0.0026676 + ], + [ + 109.2989935, + -0.0026957 + ] + ] + }, + "id": "way/283582116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582117", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3078277, + -0.0145087 + ], + [ + 109.3090056, + -0.0147916 + ] + ] + }, + "id": "way/283582117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582118", + "highway": "residential", + "name": "Gang Mulawarman V" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019044, + -0.0082126 + ], + [ + 109.3018933, + -0.0077457 + ], + [ + 109.301903, + -0.0074722 + ] + ] + }, + "id": "way/283582118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582119", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.30669, + -0.0027337 + ], + [ + 109.306352, + -0.0026551 + ], + [ + 109.305988, + -0.0025669 + ], + [ + 109.3059742, + -0.0025612 + ], + [ + 109.3059719, + -0.0025535 + ], + [ + 109.3059745, + -0.0025066 + ], + [ + 109.3061153, + -0.0018475 + ] + ] + }, + "id": "way/283582119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582120", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116484, + -0.0110932 + ], + [ + 109.3119071, + -0.0104929 + ] + ] + }, + "id": "way/283582120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582121", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969298, + -0.0080302 + ], + [ + 109.2981457, + -0.0078112 + ] + ] + }, + "id": "way/283582121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582122", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151486, + -0.015927 + ], + [ + 109.3148004, + -0.0157184 + ], + [ + 109.3146086, + -0.0155803 + ], + [ + 109.314227, + -0.0152732 + ], + [ + 109.3141459, + -0.0152101 + ], + [ + 109.3140567, + -0.015127 + ], + [ + 109.3139132, + -0.0149922 + ], + [ + 109.3138703, + -0.0149493 + ], + [ + 109.3138448, + -0.0149158 + ], + [ + 109.3138173, + -0.0148796 + ], + [ + 109.3137925, + -0.014834 + ], + [ + 109.3137576, + -0.0147931 + ], + [ + 109.3137201, + -0.0147595 + ], + [ + 109.3136705, + -0.0147253 + ], + [ + 109.3133027, + -0.0144704 + ], + [ + 109.3124623, + -0.0138255 + ] + ] + }, + "id": "way/283582122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582124", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051027, + -0.0117211 + ], + [ + 109.3051222, + -0.0117245 + ] + ] + }, + "id": "way/283582124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582125", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971494, + -0.0073637 + ], + [ + 109.297278, + -0.0073371 + ], + [ + 109.297356, + -0.007321 + ], + [ + 109.2974302, + -0.0073057 + ], + [ + 109.2975705, + -0.0072767 + ], + [ + 109.2977623, + -0.0072371 + ] + ] + }, + "id": "way/283582125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582126", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156144, + -0.0253979 + ], + [ + 109.3164808, + -0.025257 + ], + [ + 109.3173907, + -0.0250179 + ], + [ + 109.3174577, + -0.0250123 + ], + [ + 109.3174752, + -0.0250297 + ], + [ + 109.317559, + -0.0253563 + ] + ] + }, + "id": "way/283582126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582127", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149709, + -0.0061681 + ], + [ + 109.3164196, + -0.0037555 + ] + ] + }, + "id": "way/283582127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582129", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959508, + -0.0237095 + ], + [ + 109.29499, + -0.0224061 + ] + ] + }, + "id": "way/283582129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582130", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123456, + -0.0110343 + ], + [ + 109.3129736, + -0.0113281 + ] + ] + }, + "id": "way/283582130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582131", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038698, + -0.003491 + ], + [ + 109.3036752, + -0.0044226 + ], + [ + 109.3035714, + -0.0049334 + ] + ] + }, + "id": "way/283582131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582132", + "highway": "residential", + "name": "Gang Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108865, + -0.0076205 + ], + [ + 109.3113992, + -0.0076081 + ], + [ + 109.3117466, + -0.0076014 + ] + ] + }, + "id": "way/283582132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582133", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057487, + -0.0143787 + ], + [ + 109.3089739, + -0.0151467 + ] + ] + }, + "id": "way/283582133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582136", + "highway": "residential", + "name": "Al Mustaqim 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2951531, + -0.0136053 + ], + [ + 109.2978834, + -0.0125609 + ] + ] + }, + "id": "way/283582136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582137", + "highway": "residential", + "name": "Gang Hishak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131231, + -0.0220039 + ], + [ + 109.3125339, + -0.0201993 + ], + [ + 109.312146, + -0.0190112 + ], + [ + 109.3119117, + -0.0182935 + ], + [ + 109.3116074, + -0.0171061 + ] + ] + }, + "id": "way/283582137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582138", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2856729, + -0.0400891 + ], + [ + 109.2857185, + -0.0401433 + ] + ] + }, + "id": "way/283582138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582139", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3007899, + -0.0101275 + ], + [ + 109.2997355, + -0.0103372 + ] + ] + }, + "id": "way/283582139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582140", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062464, + -0.0101801 + ], + [ + 109.3050093, + -0.0098362 + ] + ] + }, + "id": "way/283582140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582141", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306377, + -0.0014604 + ], + [ + 109.3066448, + -0.0015088 + ], + [ + 109.3067075, + -0.0015201 + ], + [ + 109.3067256, + -0.0015108 + ], + [ + 109.3067349, + -0.0014893 + ], + [ + 109.3068239, + -0.0011706 + ] + ] + }, + "id": "way/283582141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582142", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2850494, + -0.0406748 + ], + [ + 109.2850724, + -0.0407082 + ] + ] + }, + "id": "way/283582142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582143", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301273, + -0.0095506 + ], + [ + 109.3007053, + -0.0096501 + ], + [ + 109.2997473, + -0.0098363 + ] + ] + }, + "id": "way/283582143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582144", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038621, + -0.0094143 + ], + [ + 109.3039267, + -0.0091477 + ], + [ + 109.3039441, + -0.0091222 + ], + [ + 109.3039857, + -0.0091135 + ], + [ + 109.3040942, + -0.009115 + ], + [ + 109.3048934, + -0.0091137 + ] + ] + }, + "id": "way/283582144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582145", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122798, + -0.0222932 + ], + [ + 109.3123239, + -0.0224298 + ] + ] + }, + "id": "way/283582145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582146", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145194, + -0.0250787 + ], + [ + 109.3140721, + -0.023582 + ], + [ + 109.3135887, + -0.0220875 + ] + ] + }, + "id": "way/283582146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582147", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalur 2B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309352, + -0.0116294 + ], + [ + 109.3094324, + -0.0116669 + ] + ] + }, + "id": "way/283582147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582148", + "highway": "residential", + "name": "Karet Alam Indah Blok A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.295662, + -0.0089756 + ], + [ + 109.2967239, + -0.0087367 + ] + ] + }, + "id": "way/283582148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582149", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135728, + -0.0050111 + ], + [ + 109.3140878, + -0.0040605 + ], + [ + 109.3142112, + -0.0038683 + ], + [ + 109.3143216, + -0.0036639 + ], + [ + 109.3144289, + -0.003452 + ], + [ + 109.314495, + -0.003335 + ] + ] + }, + "id": "way/283582149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582150", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891635, + -0.0366926 + ], + [ + 109.2891906, + -0.0367288 + ] + ] + }, + "id": "way/283582150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582151", + "highway": "residential", + "name": "Jalan Lavista B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971718, + -0.0100188 + ], + [ + 109.2984093, + -0.0097354 + ], + [ + 109.2987115, + -0.0096735 + ], + [ + 109.298895, + -0.0096359 + ] + ] + }, + "id": "way/283582151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582152", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113171, + -0.0097928 + ], + [ + 109.3114724, + -0.0094503 + ], + [ + 109.3116012, + -0.0091793 + ], + [ + 109.3118914, + -0.008504 + ] + ] + }, + "id": "way/283582152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582154", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993605, + -0.0040966 + ], + [ + 109.299758, + -0.0040565 + ], + [ + 109.3005136, + -0.0039722 + ] + ] + }, + "id": "way/283582154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582155", + "highway": "residential", + "name": "Alpokat Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004169, + -0.0050523 + ], + [ + 109.3000264, + -0.0051357 + ], + [ + 109.2986849, + -0.0054525 + ] + ] + }, + "id": "way/283582155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582156", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061683, + -0.0104331 + ], + [ + 109.3050581, + -0.010227 + ] + ] + }, + "id": "way/283582156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582157", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169363, + -0.0246859 + ], + [ + 109.3164808, + -0.0230187 + ], + [ + 109.3161115, + -0.021421 + ], + [ + 109.3159328, + -0.0214699 + ] + ] + }, + "id": "way/283582157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582159", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013598, + -0.009794 + ], + [ + 109.300749, + -0.0098964 + ], + [ + 109.2998653, + -0.0100633 + ], + [ + 109.2996344, + -0.0101069 + ] + ] + }, + "id": "way/283582159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582161", + "highway": "residential", + "name": "Gang Bougenville" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3126433, + -0.0104138 + ], + [ + 109.312476, + -0.01075 + ], + [ + 109.3123456, + -0.0110343 + ], + [ + 109.3122033, + -0.0113598 + ] + ] + }, + "id": "way/283582161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582162", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2839173, + -0.0417092 + ], + [ + 109.2839603, + -0.0417553 + ] + ] + }, + "id": "way/283582162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582163", + "highway": "residential", + "name": "Karet Alam Indah Blok C-D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957099, + -0.0093006 + ], + [ + 109.2967366, + -0.0090495 + ] + ] + }, + "id": "way/283582163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582164", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2987138, + -0.0051937 + ], + [ + 109.2993307, + -0.005058 + ], + [ + 109.2999872, + -0.0049178 + ], + [ + 109.3000006, + -0.0049205 + ], + [ + 109.30001, + -0.0049359 + ], + [ + 109.3000264, + -0.0051357 + ] + ] + }, + "id": "way/283582164" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582165", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062418, + -0.0091761 + ], + [ + 109.3049367, + -0.0087888 + ] + ] + }, + "id": "way/283582165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582166", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133349, + -0.0048564 + ], + [ + 109.3135728, + -0.0050111 + ], + [ + 109.3138039, + -0.0051726 + ] + ] + }, + "id": "way/283582166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582167", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178201, + -0.0244532 + ], + [ + 109.3174571, + -0.022788 + ], + [ + 109.3170661, + -0.0212904 + ], + [ + 109.3170526, + -0.0212393 + ], + [ + 109.3170386, + -0.0211918 + ] + ] + }, + "id": "way/283582167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582168", + "highway": "residential", + "motorcar": "no", + "name": "Gang Kubu II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013731, + -0.0092881 + ], + [ + 109.300665, + -0.0094228 + ] + ] + }, + "id": "way/283582168" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582169", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3172994, + -0.0254302 + ], + [ + 109.3159591, + -0.0256352 + ], + [ + 109.3156193, + -0.0256873 + ] + ] + }, + "id": "way/283582169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582170", + "highway": "residential", + "name": "Gang Maria 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085932, + -0.0182365 + ], + [ + 109.309525, + -0.0205785 + ] + ] + }, + "id": "way/283582170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582171", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064859, + -0.0011332 + ], + [ + 109.306377, + -0.0014604 + ], + [ + 109.3062594, + -0.0018816 + ] + ] + }, + "id": "way/283582171" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582172", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979048, + -0.0018017 + ], + [ + 109.2978882, + -0.0021421 + ], + [ + 109.2978831, + -0.0022471 + ], + [ + 109.2978417, + -0.0030964 + ], + [ + 109.2977461, + -0.005053 + ] + ] + }, + "id": "way/283582172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582173", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013636, + -0.0053972 + ], + [ + 109.3013431, + -0.0049306 + ], + [ + 109.3013912, + -0.0042929 + ], + [ + 109.301481, + -0.0019712 + ] + ] + }, + "id": "way/283582173" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582174", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2842366, + -0.0414137 + ], + [ + 109.2842728, + -0.0414576 + ] + ] + }, + "id": "way/283582174" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582175", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175881, + -0.021837 + ], + [ + 109.3176999, + -0.0222947 + ], + [ + 109.317869, + -0.023182 + ] + ] + }, + "id": "way/283582175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582176", + "highway": "residential", + "motorcar": "destination", + "name": "Gang Cemp" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3125536, + -0.0128339 + ], + [ + 109.3152449, + -0.0147595 + ], + [ + 109.3152731, + -0.0147723 + ], + [ + 109.3152945, + -0.014777 + ], + [ + 109.3153187, + -0.0147783 + ], + [ + 109.3153542, + -0.0147696 + ], + [ + 109.3156663, + -0.0145391 + ] + ] + }, + "id": "way/283582176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582177", + "highway": "residential", + "name": "Nuansa Alam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2947686, + -0.0131643 + ], + [ + 109.2978302, + -0.0119786 + ] + ] + }, + "id": "way/283582177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582178", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098727, + -0.0098009 + ], + [ + 109.3107129, + -0.0101503 + ] + ] + }, + "id": "way/283582178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582179", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115685, + -0.0083612 + ], + [ + 109.3118914, + -0.008504 + ], + [ + 109.3121821, + -0.0086405 + ] + ] + }, + "id": "way/283582179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582181", + "highway": "residential", + "name": "Jalan Jalur 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128205, + -0.0118661 + ], + [ + 109.3131414, + -0.0121075 + ], + [ + 109.3133982, + -0.0122771 + ], + [ + 109.3134277, + -0.0122631 + ], + [ + 109.3134519, + -0.0122282 + ], + [ + 109.3134753, + -0.0121866 + ], + [ + 109.3137395, + -0.0115342 + ] + ] + }, + "id": "way/283582181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582182", + "highway": "residential", + "name": "Gang Teratai 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099695, + -0.0094921 + ], + [ + 109.3108366, + -0.0098843 + ] + ] + }, + "id": "way/283582182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582183", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2973081, + -0.010322 + ], + [ + 109.2985287, + -0.0100295 + ], + [ + 109.2984093, + -0.0097354 + ] + ] + }, + "id": "way/283582183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582184", + "highway": "residential", + "name": "Karet Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981163, + -0.0131271 + ], + [ + 109.2988224, + -0.0131612 + ], + [ + 109.2998416, + -0.0131574 + ], + [ + 109.3003539, + -0.0131493 + ], + [ + 109.3003754, + -0.0131494 + ], + [ + 109.3019713, + -0.0131547 + ] + ] + }, + "id": "way/283582184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582185", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2987937, + -0.0044809 + ], + [ + 109.2997865, + -0.0043782 + ], + [ + 109.3005498, + -0.0042918 + ] + ] + }, + "id": "way/283582185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582187", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2970767, + -0.0067899 + ], + [ + 109.2976579, + -0.0066901 + ], + [ + 109.2985454, + -0.0066985 + ] + ] + }, + "id": "way/283582187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582188", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2990004, + -0.0087211 + ], + [ + 109.2997356, + -0.0085709 + ], + [ + 109.2999853, + -0.0085224 + ] + ] + }, + "id": "way/283582188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582190", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2836516, + -0.041957 + ], + [ + 109.2836881, + -0.0420007 + ] + ] + }, + "id": "way/283582190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582191", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068399, + -0.0071805 + ], + [ + 109.307084, + -0.0062456 + ], + [ + 109.3070918, + -0.0062385 + ], + [ + 109.3071044, + -0.0062383 + ], + [ + 109.307216, + -0.0062652 + ] + ] + }, + "id": "way/283582191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582192", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2961769, + -0.0233787 + ], + [ + 109.2960363, + -0.0233345 + ], + [ + 109.2953444, + -0.0223175 + ] + ] + }, + "id": "way/283582192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582193", + "highway": "residential", + "name": "Sejahtera 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2958033, + -0.0098196 + ], + [ + 109.2967766, + -0.0094412 + ] + ] + }, + "id": "way/283582193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582194", + "highway": "residential", + "name": "Al Mustaqim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296505, + -0.0134751 + ], + [ + 109.2979413, + -0.0129014 + ] + ] + }, + "id": "way/283582194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582195", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2913369, + -0.0344769 + ], + [ + 109.2913753, + -0.0345187 + ] + ] + }, + "id": "way/283582195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582196", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061677, + -0.0094527 + ], + [ + 109.3062418, + -0.0091761 + ], + [ + 109.3063121, + -0.0089139 + ] + ] + }, + "id": "way/283582196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582197", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121696, + -0.0259309 + ], + [ + 109.3116447, + -0.0243759 + ], + [ + 109.311179, + -0.0229106 + ] + ] + }, + "id": "way/283582197" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582198", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154109, + -0.0140696 + ], + [ + 109.315264, + -0.0142301 + ], + [ + 109.3152416, + -0.0142432 + ], + [ + 109.3152295, + -0.0142459 + ], + [ + 109.3152141, + -0.0142442 + ], + [ + 109.3151956, + -0.0142355 + ], + [ + 109.3137842, + -0.0132267 + ] + ] + }, + "id": "way/283582198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582200", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128853, + -0.0116234 + ], + [ + 109.3125485, + -0.0114839 + ], + [ + 109.3122804, + -0.0113571 + ], + [ + 109.3122621, + -0.011354 + ], + [ + 109.3122395, + -0.0113535 + ], + [ + 109.3122033, + -0.0113598 + ], + [ + 109.312173, + -0.0113655 + ], + [ + 109.3121555, + -0.0113667 + ], + [ + 109.3121341, + -0.0113623 + ], + [ + 109.312098, + -0.0113498 + ], + [ + 109.3119045, + -0.0112692 + ], + [ + 109.3118461, + -0.0112475 + ], + [ + 109.3117936, + -0.0112198 + ], + [ + 109.311757, + -0.0112049 + ] + ] + }, + "id": "way/283582200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582201", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141855, + -0.0219221 + ], + [ + 109.3144959, + -0.0218064 + ], + [ + 109.3152914, + -0.0216256 + ], + [ + 109.3156923, + -0.0215345 + ] + ] + }, + "id": "way/283582201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582202", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121718, + -0.0033111 + ], + [ + 109.3125029, + -0.0034723 + ], + [ + 109.3127722, + -0.0035915 + ], + [ + 109.3132395, + -0.0038444 + ] + ] + }, + "id": "way/283582202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582203", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013874, + -0.0093646 + ], + [ + 109.3030965, + -0.0093974 + ], + [ + 109.3035565, + -0.0094062 + ], + [ + 109.3038621, + -0.0094143 + ], + [ + 109.3049187, + -0.0094375 + ] + ] + }, + "id": "way/283582203" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582204", + "highway": "residential", + "name": "Permai 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009271, + -0.0086792 + ], + [ + 109.3008567, + -0.0083368 + ], + [ + 109.3006262, + -0.0070113 + ], + [ + 109.3005913, + -0.0069074 + ], + [ + 109.3005468, + -0.0068289 + ] + ] + }, + "id": "way/283582204" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582205", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010373, + -0.0061557 + ], + [ + 109.3008706, + -0.0056493 + ], + [ + 109.3009002, + -0.0050176 + ], + [ + 109.3009179, + -0.0049695 + ], + [ + 109.3009313, + -0.004948 + ], + [ + 109.300951, + -0.0049156 + ], + [ + 109.3010906, + -0.0019511 + ], + [ + 109.3010926, + -0.0019091 + ] + ] + }, + "id": "way/283582205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582206", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121434, + -0.0236573 + ], + [ + 109.3118352, + -0.023779 + ], + [ + 109.3118669, + -0.0238612 + ], + [ + 109.3123403, + -0.0252952 + ] + ] + }, + "id": "way/283582206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582207", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064672, + -0.0095785 + ], + [ + 109.3061677, + -0.0094527 + ], + [ + 109.3052371, + -0.0091976 + ] + ] + }, + "id": "way/283582207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582208", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2990159, + -0.002496 + ], + [ + 109.3000502, + -0.0022893 + ], + [ + 109.3000697, + -0.002294 + ], + [ + 109.3000764, + -0.0023161 + ], + [ + 109.3001112, + -0.0025877 + ], + [ + 109.3001086, + -0.0026105 + ], + [ + 109.3001012, + -0.0026245 + ], + [ + 109.2989757, + -0.0028549 + ] + ] + }, + "id": "way/283582208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582209", + "highway": "residential", + "name": "Gang Kenanga 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097804, + -0.0100903 + ], + [ + 109.3105839, + -0.0104231 + ], + [ + 109.3108644, + -0.0105716 + ], + [ + 109.3114067, + -0.0108473 + ] + ] + }, + "id": "way/283582209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582210", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169723, + -0.0045765 + ], + [ + 109.3169342, + -0.0046554 + ], + [ + 109.316904, + -0.0047074 + ], + [ + 109.3167978, + -0.0048904 + ], + [ + 109.3162899, + -0.005766 + ], + [ + 109.3162563, + -0.0058686 + ], + [ + 109.3162239, + -0.0059491 + ] + ] + }, + "id": "way/283582210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582211", + "highway": "residential", + "name": "Gang Jariah 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315167, + -0.016437 + ], + [ + 109.3150811, + -0.0163787 + ], + [ + 109.314225, + -0.015715 + ], + [ + 109.3134618, + -0.0151563 + ], + [ + 109.312445, + -0.0144803 + ] + ] + }, + "id": "way/283582211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582212", + "highway": "residential", + "name": "Patra Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2947464, + -0.0106683 + ], + [ + 109.2958294, + -0.0102365 + ], + [ + 109.2969123, + -0.0098092 + ] + ] + }, + "id": "way/283582212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582214", + "highway": "residential", + "name": "Gang Kaca Piring" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111837, + -0.0112468 + ], + [ + 109.3112411, + -0.0111271 + ], + [ + 109.3112766, + -0.0110567 + ], + [ + 109.3113115, + -0.0109971 + ], + [ + 109.3113577, + -0.0109266 + ], + [ + 109.3114067, + -0.0108473 + ], + [ + 109.3115353, + -0.0105303 + ], + [ + 109.3116098, + -0.0103467 + ], + [ + 109.3117704, + -0.0100038 + ] + ] + }, + "id": "way/283582214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582216", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118191, + -0.0226699 + ], + [ + 109.3123434, + -0.0224819 + ], + [ + 109.3126748, + -0.022381 + ] + ] + }, + "id": "way/283582216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582217", + "highway": "residential", + "name": "Surya Kencana 1 Blok C-D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2942814, + -0.0121703 + ], + [ + 109.2956635, + -0.0116697 + ], + [ + 109.2974138, + -0.0110359 + ] + ] + }, + "id": "way/283582217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582218", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Villa Citra Marga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146134, + -0.0165303 + ], + [ + 109.3145186, + -0.0164504 + ], + [ + 109.3144409, + -0.0163897 + ], + [ + 109.3139394, + -0.0160738 + ], + [ + 109.313757, + -0.015947 + ], + [ + 109.313413, + -0.015766 + ], + [ + 109.313242, + -0.0156822 + ], + [ + 109.3130703, + -0.015591 + ], + [ + 109.3130194, + -0.0155595 + ], + [ + 109.3129563, + -0.0155079 + ], + [ + 109.3129081, + -0.015469 + ], + [ + 109.3128705, + -0.0154341 + ], + [ + 109.3128175, + -0.0153905 + ], + [ + 109.3127344, + -0.0153127 + ], + [ + 109.3123973, + -0.0151442 + ] + ] + }, + "id": "way/283582218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582219", + "highway": "residential", + "name": "Gang Makmur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111837, + -0.0112468 + ], + [ + 109.3111717, + -0.0112559 + ], + [ + 109.3111539, + -0.0112592 + ], + [ + 109.3111385, + -0.0112596 + ], + [ + 109.311118, + -0.0112556 + ], + [ + 109.3100412, + -0.0108001 + ], + [ + 109.3097275, + -0.0106757 + ], + [ + 109.3096136, + -0.0106392 + ] + ] + }, + "id": "way/283582219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582220", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058121, + -0.0133365 + ], + [ + 109.3069495, + -0.0135975 + ], + [ + 109.3070246, + -0.0136109 + ], + [ + 109.3071051, + -0.0136176 + ], + [ + 109.3071976, + -0.0136256 + ], + [ + 109.3090512, + -0.0140711 + ] + ] + }, + "id": "way/283582220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582222", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160951, + -0.0249073 + ], + [ + 109.3157295, + -0.0233877 + ], + [ + 109.3155908, + -0.0227193 + ], + [ + 109.3154237, + -0.0220167 + ] + ] + }, + "id": "way/283582222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582223", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013231, + -0.0090208 + ], + [ + 109.3035765, + -0.0090689 + ] + ] + }, + "id": "way/283582223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582224", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3166514, + -0.0060342 + ], + [ + 109.3172473, + -0.0052093 + ], + [ + 109.3173002, + -0.005131 + ], + [ + 109.3173311, + -0.0050805 + ], + [ + 109.3173505, + -0.0050198 + ], + [ + 109.3173654, + -0.0049295 + ], + [ + 109.3173921, + -0.0047818 + ] + ] + }, + "id": "way/283582224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582225", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3069126, + -0.0016695 + ], + [ + 109.3069194, + -0.0016413 + ], + [ + 109.3072727, + -0.0017454 + ], + [ + 109.3073498, + -0.0017625 + ], + [ + 109.3073545, + -0.0017686 + ], + [ + 109.3073566, + -0.0017823 + ], + [ + 109.3072734, + -0.002118 + ] + ] + }, + "id": "way/283582225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582226", + "highway": "residential", + "name": "Gang Miri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149339, + -0.013259 + ], + [ + 109.3147611, + -0.013411 + ], + [ + 109.314738, + -0.0134245 + ], + [ + 109.3147195, + -0.0134298 + ], + [ + 109.3146957, + -0.0134258 + ], + [ + 109.3146649, + -0.0134077 + ], + [ + 109.3146203, + -0.0133775 + ], + [ + 109.3140373, + -0.0129524 + ], + [ + 109.3134693, + -0.0125387 + ], + [ + 109.313362, + -0.0124629 + ] + ] + }, + "id": "way/283582226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582227", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971171, + -0.0017234 + ], + [ + 109.2970825, + -0.0019487 + ], + [ + 109.2970696, + -0.0020591 + ], + [ + 109.2970416, + -0.0023246 + ], + [ + 109.2970436, + -0.00233 + ], + [ + 109.2970473, + -0.0023344 + ], + [ + 109.2972084, + -0.0023613 + ], + [ + 109.2972144, + -0.0023681 + ], + [ + 109.2972171, + -0.0023818 + ], + [ + 109.2971774, + -0.0030391 + ], + [ + 109.2971742, + -0.0030959 + ], + [ + 109.2971573, + -0.0043786 + ], + [ + 109.2971254, + -0.0050272 + ] + ] + }, + "id": "way/283582227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582228", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014594, + -0.0071405 + ], + [ + 109.3014506, + -0.0074666 + ], + [ + 109.3014654, + -0.00775 + ], + [ + 109.301471, + -0.0077672 + ], + [ + 109.3014896, + -0.0079104 + ], + [ + 109.3015309, + -0.0082108 + ] + ] + }, + "id": "way/283582228" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582229", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116098, + -0.0103467 + ], + [ + 109.3119071, + -0.0104929 + ], + [ + 109.3121805, + -0.0106258 + ], + [ + 109.312476, + -0.01075 + ], + [ + 109.3131031, + -0.0110327 + ] + ] + }, + "id": "way/283582229" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582231", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.291494, + -0.0428054 + ], + [ + 109.2916529, + -0.0426468 + ], + [ + 109.291723, + -0.0425479 + ], + [ + 109.2917401, + -0.042505 + ], + [ + 109.2917602, + -0.0424714 + ], + [ + 109.2920475, + -0.0421845 + ], + [ + 109.2923087, + -0.0419236 + ], + [ + 109.2923395, + -0.0419229 + ], + [ + 109.2923824, + -0.0419457 + ], + [ + 109.2932345, + -0.0427792 + ] + ] + }, + "id": "way/283582231" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582232", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300951, + -0.0049156 + ], + [ + 109.3013431, + -0.0049306 + ], + [ + 109.3016971, + -0.0049165 + ], + [ + 109.3017105, + -0.0048984 + ], + [ + 109.3017145, + -0.0048709 + ], + [ + 109.3017774, + -0.0034422 + ], + [ + 109.301842, + -0.0019897 + ], + [ + 109.3018444, + -0.0019354 + ], + [ + 109.3018725, + -0.0015833 + ] + ] + }, + "id": "way/283582232" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582233", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309525, + -0.0205785 + ], + [ + 109.3098595, + -0.0204397 + ], + [ + 109.3098915, + -0.0204224 + ], + [ + 109.3099365, + -0.0204014 + ], + [ + 109.3100121, + -0.0203671 + ], + [ + 109.3102869, + -0.020253 + ] + ] + }, + "id": "way/283582233" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582235", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2897949, + -0.0360337 + ], + [ + 109.289837, + -0.0360797 + ] + ] + }, + "id": "way/283582235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582239", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3015369, + -0.0103 + ], + [ + 109.3013475, + -0.0103307 + ], + [ + 109.3011207, + -0.010365 + ], + [ + 109.3008522, + -0.010413 + ], + [ + 109.3008241, + -0.0104178 + ], + [ + 109.3005485, + -0.0104703 + ], + [ + 109.3002886, + -0.0105218 + ], + [ + 109.2998494, + -0.0106089 + ], + [ + 109.2995291, + -0.0107625 + ], + [ + 109.2994, + -0.0108244 + ] + ] + }, + "id": "way/283582239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582240", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053803, + -0.0067561 + ], + [ + 109.3056022, + -0.006829 + ], + [ + 109.3061247, + -0.0070301 + ], + [ + 109.3061767, + -0.0070444 + ], + [ + 109.3061998, + -0.0070408 + ], + [ + 109.3062361, + -0.007018 + ], + [ + 109.3062589, + -0.0070113 + ], + [ + 109.3062998, + -0.0070207 + ], + [ + 109.3065311, + -0.0071063 + ], + [ + 109.3068399, + -0.0071805 + ] + ] + }, + "id": "way/283582240" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582241", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982545, + -0.0023091 + ], + [ + 109.2982503, + -0.0026676 + ], + [ + 109.2982585, + -0.0030114 + ], + [ + 109.2982753, + -0.0030363 + ], + [ + 109.2982974, + -0.003047 + ], + [ + 109.2984758, + -0.0030591 + ], + [ + 109.2989542, + -0.0030472 + ] + ] + }, + "id": "way/283582241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582242", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3150811, + -0.0163787 + ], + [ + 109.3151486, + -0.015927 + ], + [ + 109.3152248, + -0.01553 + ], + [ + 109.3152818, + -0.0152028 + ], + [ + 109.3152845, + -0.0151619 + ], + [ + 109.3152739, + -0.015137 + ] + ] + }, + "id": "way/283582242" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582243", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957745, + -0.00974 + ], + [ + 109.2957297, + -0.0094351 + ], + [ + 109.2957099, + -0.0093006 + ], + [ + 109.2956888, + -0.0091574 + ], + [ + 109.295662, + -0.0089756 + ], + [ + 109.2956534, + -0.0089204 + ], + [ + 109.295649, + -0.0089101 + ], + [ + 109.2956433, + -0.0089041 + ], + [ + 109.295637, + -0.0089016 + ], + [ + 109.2956284, + -0.0089007 + ], + [ + 109.2948708, + -0.0091907 + ] + ] + }, + "id": "way/283582243" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582244", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3007899, + -0.0101275 + ], + [ + 109.300749, + -0.0098964 + ], + [ + 109.3007053, + -0.0096501 + ], + [ + 109.300665, + -0.0094228 + ], + [ + 109.3006149, + -0.0091404 + ], + [ + 109.3005493, + -0.0087699 + ] + ] + }, + "id": "way/283582244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582246", + "highway": "residential", + "name": "Alpukat Indah 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986432, + -0.0058246 + ], + [ + 109.3001622, + -0.0055019 + ], + [ + 109.3001971, + -0.0054992 + ], + [ + 109.3002252, + -0.0055039 + ], + [ + 109.3002943, + -0.0055005 + ], + [ + 109.3004288, + -0.0054719 + ], + [ + 109.3004546, + -0.0054127 + ], + [ + 109.3004715, + -0.0053495 + ], + [ + 109.3004586, + -0.0052343 + ], + [ + 109.3004169, + -0.0050523 + ], + [ + 109.300355, + -0.0046503 + ] + ] + }, + "id": "way/283582246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582252", + "highway": "residential", + "name": "Gang Aster" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108748, + -0.007811 + ], + [ + 109.3108786, + -0.0076927 + ], + [ + 109.3108865, + -0.0076205 + ], + [ + 109.3109152, + -0.0074163 + ], + [ + 109.3109239, + -0.0073731 + ], + [ + 109.3109386, + -0.0073506 + ], + [ + 109.3109611, + -0.0073368 + ], + [ + 109.3117413, + -0.0073164 + ] + ] + }, + "id": "way/283582252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582253", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2970441, + -0.0050203 + ], + [ + 109.2971254, + -0.0050272 + ], + [ + 109.2974177, + -0.0050396 + ], + [ + 109.2977461, + -0.005053 + ], + [ + 109.2980698, + -0.0050647 + ], + [ + 109.2983888, + -0.0050859 + ], + [ + 109.2987223, + -0.005118 + ] + ] + }, + "id": "way/283582253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582254", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983668, + -0.0082958 + ], + [ + 109.2987745, + -0.0082125 + ], + [ + 109.2993636, + -0.0081043 + ], + [ + 109.2993813, + -0.0081016 + ], + [ + 109.2996418, + -0.0080802 + ] + ] + }, + "id": "way/283582254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582255", + "highway": "residential", + "name": "Surya Kencana 1 Blok G-H" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946728, + -0.0127489 + ], + [ + 109.2958923, + -0.0123124 + ], + [ + 109.2976157, + -0.0116955 + ] + ] + }, + "id": "way/283582255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582256", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2974177, + -0.0050396 + ], + [ + 109.2974709, + -0.0033615 + ], + [ + 109.2974649, + -0.0033477 + ], + [ + 109.2974558, + -0.003341 + ], + [ + 109.2974025, + -0.0033263 + ], + [ + 109.2973928, + -0.0033166 + ], + [ + 109.2973864, + -0.0032971 + ], + [ + 109.2973867, + -0.0031747 + ], + [ + 109.2973921, + -0.0030576 + ], + [ + 109.2974377, + -0.0025441 + ], + [ + 109.2974799, + -0.0022012 + ], + [ + 109.2974906, + -0.002114 + ], + [ + 109.297535, + -0.0017689 + ] + ] + }, + "id": "way/283582256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582257", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Eka Sapta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2972938, + -0.0103713 + ], + [ + 109.297174, + -0.0104099 + ] + ] + }, + "id": "way/283582257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582258", + "highway": "residential", + "name": "Matan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991706, + -0.0090522 + ], + [ + 109.2993092, + -0.0093829 + ], + [ + 109.2994296, + -0.0096526 + ], + [ + 109.2995496, + -0.0099189 + ], + [ + 109.2996344, + -0.0101069 + ], + [ + 109.2997355, + -0.0103372 + ], + [ + 109.2998494, + -0.0106089 + ], + [ + 109.3000724, + -0.0110754 + ] + ] + }, + "id": "way/283582258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283582259", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033523, + -0.0043748 + ], + [ + 109.303345, + -0.0043663 + ], + [ + 109.3033435, + -0.0043466 + ], + [ + 109.3035599, + -0.0034453 + ], + [ + 109.3035699, + -0.0034332 + ], + [ + 109.3035921, + -0.0034299 + ], + [ + 109.3038698, + -0.003491 + ], + [ + 109.303982, + -0.0035103 + ], + [ + 109.3041577, + -0.0035573 + ], + [ + 109.3041664, + -0.0035663 + ], + [ + 109.3041695, + -0.0035796 + ], + [ + 109.304019, + -0.0042251 + ] + ] + }, + "id": "way/283582259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884857", + "highway": "residential", + "name": "Jalan Sultan Muhammad", + "name:id": "Jalan Sultan Muhammad", + "name:ms": "Jalan Sultan Muhammad", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424526, + -0.0237201 + ], + [ + 109.342584, + -0.023814 + ], + [ + 109.342959, + -0.024228 + ], + [ + 109.3433944, + -0.0246723 + ], + [ + 109.3434556, + -0.024753 + ], + [ + 109.3439045, + -0.025459 + ], + [ + 109.3439137, + -0.0254735 + ], + [ + 109.3443808, + -0.0262144 + ], + [ + 109.3444255, + -0.0262932 + ], + [ + 109.3448519, + -0.0271724 + ] + ] + }, + "id": "way/283884857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884861", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587692, + -0.047022 + ], + [ + 109.3586169, + -0.0471707 + ], + [ + 109.358542, + -0.0472628 + ], + [ + 109.3579648, + -0.0479917 + ] + ] + }, + "id": "way/283884861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352411, + -0.0767113 + ], + [ + 109.3502982, + -0.0743179 + ] + ] + }, + "id": "way/283884864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884866", + "highway": "residential", + "name": "Jalan Wak Dalek" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240043, + -0.0341901 + ], + [ + 109.325436, + -0.0331054 + ], + [ + 109.3264093, + -0.0323759 + ], + [ + 109.3268059, + -0.0320778 + ] + ] + }, + "id": "way/283884866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884867", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452229, + -0.032775 + ], + [ + 109.3454572, + -0.0332547 + ], + [ + 109.3449381, + -0.0334374 + ] + ] + }, + "id": "way/283884867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884868", + "highway": "living_street", + "name": "Gang Tujuh Belas", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459936, + -0.03343 + ], + [ + 109.3458826, + -0.0334661 + ], + [ + 109.3451294, + -0.0337771 + ], + [ + 109.3442572, + -0.0340431 + ] + ] + }, + "id": "way/283884868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884870", + "highway": "residential", + "name": "Gang Landak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345777, + -0.0327112 + ], + [ + 109.3472369, + -0.0318527 + ] + ] + }, + "id": "way/283884870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884871", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364814, + -0.0290594 + ], + [ + 109.3361105, + -0.0293192 + ] + ] + }, + "id": "way/283884871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884872", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453914, + -0.0396024 + ], + [ + 109.3456243, + -0.0398744 + ] + ] + }, + "id": "way/283884872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884874", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3629135, + -0.0530791 + ], + [ + 109.3627536, + -0.0531641 + ], + [ + 109.362595, + -0.0532455 + ], + [ + 109.3622751, + -0.0534175 + ], + [ + 109.3616755, + -0.0537395 + ] + ] + }, + "id": "way/283884874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884875", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3524907, + -0.0771411 + ], + [ + 109.3524087, + -0.0770399 + ], + [ + 109.3501928, + -0.0745097 + ] + ] + }, + "id": "way/283884875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884876", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526966, + -0.042051 + ], + [ + 109.3527818, + -0.0419766 + ], + [ + 109.352881, + -0.0418961 + ], + [ + 109.3529816, + -0.0418022 + ], + [ + 109.3533538, + -0.0414187 + ], + [ + 109.3533742, + -0.0413982 + ], + [ + 109.3533896, + -0.0413858 + ], + [ + 109.3533958, + -0.0413814 + ], + [ + 109.3534044, + -0.0413783 + ], + [ + 109.3534147, + -0.0413763 + ], + [ + 109.3534253, + -0.0413769 + ], + [ + 109.3534356, + -0.0413809 + ], + [ + 109.353449, + -0.0413892 + ], + [ + 109.3535107, + -0.0414509 + ] + ] + }, + "id": "way/283884876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884877", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238434, + -0.036814 + ], + [ + 109.3241197, + -0.0365988 + ], + [ + 109.3251, + -0.0357573 + ], + [ + 109.3277026, + -0.0335005 + ] + ] + }, + "id": "way/283884877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884878", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426186, + -0.0291347 + ], + [ + 109.3424756, + -0.0288443 + ] + ] + }, + "id": "way/283884878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884879", + "highway": "residential", + "name": "Gang Pembangunan", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580229, + -0.0554704 + ], + [ + 109.3592266, + -0.056675 + ] + ] + }, + "id": "way/283884879" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884880", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542191, + -0.0436254 + ], + [ + 109.3544429, + -0.0439025 + ], + [ + 109.354556, + -0.0440481 + ], + [ + 109.3547453, + -0.0442898 + ] + ] + }, + "id": "way/283884880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884881", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280969, + -0.0341285 + ], + [ + 109.3256736, + -0.0364909 + ] + ] + }, + "id": "way/283884881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884882", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592189, + -0.051367 + ], + [ + 109.3599347, + -0.0504309 + ] + ] + }, + "id": "way/283884882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884883", + "highway": "living_street", + "name": "Gang H.M. Nuh" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604273, + -0.0523459 + ], + [ + 109.3612238, + -0.0515437 + ] + ] + }, + "id": "way/283884883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884884", + "highway": "residential", + "name": "Gang Busri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569082, + -0.0493275 + ], + [ + 109.3579411, + -0.0479721 + ] + ] + }, + "id": "way/283884884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884885", + "access": "destination", + "highway": "residential", + "name": "Jalan Gusti Ngurah Rai", + "name:id": "Jalan Gusti Ngurah Rai", + "name:ms": "Jalan Gusti Ngurah Rai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408399, + -0.0243142 + ], + [ + 109.3409056, + -0.0243229 + ], + [ + 109.3409707, + -0.0243283 + ], + [ + 109.3410438, + -0.0243276 + ], + [ + 109.3413351, + -0.0242902 + ], + [ + 109.341424, + -0.024271 + ], + [ + 109.3414801, + -0.0242572 + ], + [ + 109.341554, + -0.0242391 + ] + ] + }, + "id": "way/283884885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884886", + "access": "no", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485613, + -0.0370616 + ], + [ + 109.3488765, + -0.0376126 + ] + ] + }, + "id": "way/283884886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884887", + "highway": "residential", + "name": "Gang Mukti" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357213, + -0.0473279 + ], + [ + 109.3575793, + -0.046906 + ], + [ + 109.35786, + -0.0465646 + ] + ] + }, + "id": "way/283884887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884888", + "highway": "residential", + "name": "Gang Haji Mursyid 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34823, + -0.0396593 + ], + [ + 109.3491253, + -0.0390954 + ] + ] + }, + "id": "way/283884888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884890", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353228, + -0.0761114 + ], + [ + 109.3530817, + -0.0759676 + ], + [ + 109.3529776, + -0.0758596 + ], + [ + 109.3528193, + -0.0756839 + ], + [ + 109.3525001, + -0.0753379 + ], + [ + 109.3523955, + -0.0752096 + ], + [ + 109.3522404, + -0.0750194 + ], + [ + 109.3507795, + -0.0734519 + ] + ] + }, + "id": "way/283884890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884892", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515305, + -0.0765783 + ], + [ + 109.3514272, + -0.0764573 + ], + [ + 109.3500026, + -0.0748556 + ] + ] + }, + "id": "way/283884892" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884894", + "highway": "residential", + "name": "Gang Pagar Alam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470801, + -0.0378399 + ], + [ + 109.3462035, + -0.0381961 + ] + ] + }, + "id": "way/283884894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884896", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354951, + -0.0332902 + ], + [ + 109.3533075, + -0.034111 + ] + ] + }, + "id": "way/283884896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884897", + "highway": "residential", + "name": "Jalan Danau Sentarum", + "name:id": "Jalan Danau Sentarum" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491631, + -0.0827481 + ], + [ + 109.346719, + -0.08094 + ] + ] + }, + "id": "way/283884897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884901", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3374607, + -0.0318384 + ], + [ + 109.337756, + -0.0323126 + ] + ] + }, + "id": "way/283884901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884903", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334799, + -0.0277243 + ], + [ + 109.3343773, + -0.0270893 + ], + [ + 109.3342507, + -0.0268986 + ] + ] + }, + "id": "way/283884903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884904", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534905, + -0.0344872 + ], + [ + 109.3551348, + -0.0335276 + ] + ] + }, + "id": "way/283884904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884905", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583662, + -0.0467163 + ], + [ + 109.3583374, + -0.0467523 + ], + [ + 109.3581792, + -0.0469504 + ], + [ + 109.3579472, + -0.04724 + ], + [ + 109.3576039, + -0.0476691 + ] + ] + }, + "id": "way/283884905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884906", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591453, + -0.0521945 + ], + [ + 109.3589482, + -0.0524369 + ], + [ + 109.3587252, + -0.0526895 + ] + ] + }, + "id": "way/283884906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884907", + "highway": "living_street", + "name": "Gang 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426233, + -0.0323294 + ], + [ + 109.3429866, + -0.032911 + ] + ] + }, + "id": "way/283884907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884909", + "highway": "residential", + "name": "Gang Tanjung Mas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540145, + -0.0461908 + ], + [ + 109.3545102, + -0.0459049 + ] + ] + }, + "id": "way/283884909" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884910", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511556, + -0.0780978 + ], + [ + 109.3503778, + -0.0773344 + ], + [ + 109.3502652, + -0.0772083 + ], + [ + 109.3501629, + -0.0771021 + ], + [ + 109.3492808, + -0.0761693 + ] + ] + }, + "id": "way/283884910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884911", + "highway": "residential", + "name": "Gang Peniti 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504964, + -0.0426045 + ], + [ + 109.3518888, + -0.0412727 + ], + [ + 109.3520473, + -0.0411471 + ], + [ + 109.3523888, + -0.040842 + ] + ] + }, + "id": "way/283884911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884912", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459115, + -0.0910799 + ], + [ + 109.3460805, + -0.0907008 + ] + ] + }, + "id": "way/283884912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884913", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504529, + -0.0405115 + ], + [ + 109.3506571, + -0.0407703 + ] + ] + }, + "id": "way/283884913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884914", + "highway": "residential", + "name": "Gang Setiabudi 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344275, + -0.0314232 + ], + [ + 109.3445943, + -0.0319126 + ], + [ + 109.3447849, + -0.0321775 + ], + [ + 109.3448865, + -0.0323257 + ], + [ + 109.3451752, + -0.0328041 + ] + ] + }, + "id": "way/283884914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884915", + "highway": "residential", + "name": "Jalan Teuku Cik Ditiro", + "note": "Seroja" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403262, + -0.0276478 + ], + [ + 109.3408264, + -0.0274127 + ], + [ + 109.3411471, + -0.0272669 + ], + [ + 109.3416079, + -0.0270408 + ], + [ + 109.3424807, + -0.026574 + ] + ] + }, + "id": "way/283884915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884916", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3393496, + -0.0404296 + ], + [ + 109.3389196, + -0.0407562 + ] + ] + }, + "id": "way/283884916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884917", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651669, + -0.0612402 + ], + [ + 109.3641159, + -0.0608518 + ], + [ + 109.3637855, + -0.0607124 + ], + [ + 109.3634969, + -0.0605981 + ], + [ + 109.3633016, + -0.0605188 + ], + [ + 109.3630333, + -0.0604016 + ], + [ + 109.362771, + -0.0602753 + ], + [ + 109.36272, + -0.0602558 + ], + [ + 109.3626999, + -0.0602625 + ], + [ + 109.3626874, + -0.0602769 + ] + ] + }, + "id": "way/283884917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884918", + "highway": "living_street", + "name": "Gang Satu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463083, + -0.0340956 + ], + [ + 109.3469578, + -0.0338269 + ], + [ + 109.3472302, + -0.0337143 + ] + ] + }, + "id": "way/283884918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884920", + "highway": "living_street", + "motorcar": "destination", + "name": "Gang Haji Aman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600781, + -0.0520514 + ], + [ + 109.3601176, + -0.052008 + ], + [ + 109.3602008, + -0.051882 + ], + [ + 109.3602068, + -0.0518699 + ], + [ + 109.3602112, + -0.0518149 + ], + [ + 109.3602222, + -0.0517924 + ], + [ + 109.3602353, + -0.0517666 + ], + [ + 109.360374, + -0.0516111 + ], + [ + 109.3609559, + -0.0509976 + ] + ] + }, + "id": "way/283884920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884921", + "highway": "residential", + "name": "Gang Peniti 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526966, + -0.042051 + ], + [ + 109.3527238, + -0.0420582 + ], + [ + 109.3527498, + -0.0420626 + ], + [ + 109.3527677, + -0.0420641 + ], + [ + 109.3528109, + -0.0420651 + ], + [ + 109.3528917, + -0.0420644 + ], + [ + 109.3529595, + -0.0420678 + ], + [ + 109.352996, + -0.0420849 + ], + [ + 109.3530269, + -0.042105 + ], + [ + 109.3530688, + -0.0421422 + ], + [ + 109.3531274, + -0.0422035 + ], + [ + 109.3531496, + -0.0422294 + ], + [ + 109.353166, + -0.0422639 + ], + [ + 109.3531724, + -0.0422927 + ], + [ + 109.3531742, + -0.0423157 + ], + [ + 109.353173, + -0.0423363 + ], + [ + 109.35317, + -0.0423522 + ], + [ + 109.353165, + -0.0423692 + ], + [ + 109.3531512, + -0.042397 + ], + [ + 109.3531338, + -0.0424198 + ], + [ + 109.3531093, + -0.0424517 + ], + [ + 109.3530775, + -0.0424862 + ], + [ + 109.3530312, + -0.0425412 + ], + [ + 109.3529313, + -0.0426444 + ] + ] + }, + "id": "way/283884921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884923", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420506, + -0.0334349 + ], + [ + 109.3417438, + -0.0328289 + ] + ] + }, + "id": "way/283884923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884924", + "highway": "residential", + "name": "Gang Madrasah II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294249, + -0.0302316 + ], + [ + 109.3277734, + -0.0317221 + ] + ] + }, + "id": "way/283884924" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884925", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516029, + -0.0751804 + ], + [ + 109.3504998, + -0.0739522 + ] + ] + }, + "id": "way/283884925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884926", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3637225, + -0.0568318 + ], + [ + 109.3639109, + -0.0567263 + ], + [ + 109.3655345, + -0.0558174 + ], + [ + 109.3660279, + -0.0555606 + ] + ] + }, + "id": "way/283884926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884929", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521006, + -0.0357305 + ], + [ + 109.352594, + -0.035432 + ], + [ + 109.3536271, + -0.0347824 + ] + ] + }, + "id": "way/283884929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884930", + "highway": "residential", + "name": "Suprapto VII" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389196, + -0.0407562 + ], + [ + 109.3393877, + -0.0413105 + ] + ] + }, + "id": "way/283884930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884931", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414801, + -0.0242572 + ], + [ + 109.3414944, + -0.0242806 + ], + [ + 109.3415589, + -0.0243867 + ], + [ + 109.3415694, + -0.0243923 + ], + [ + 109.3415816, + -0.0243887 + ], + [ + 109.3417179, + -0.0243083 + ], + [ + 109.3418377, + -0.0242328 + ], + [ + 109.3418447, + -0.0242257 + ], + [ + 109.3418419, + -0.0242146 + ], + [ + 109.3417807, + -0.0241089 + ] + ] + }, + "id": "way/283884931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884932", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272715, + -0.0302021 + ], + [ + 109.3270669, + -0.0299571 + ] + ] + }, + "id": "way/283884932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884933", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551618, + -0.0477824 + ], + [ + 109.3553694, + -0.0474295 + ], + [ + 109.3555699, + -0.0471117 + ], + [ + 109.3560257, + -0.0464209 + ] + ] + }, + "id": "way/283884933" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884934", + "highway": "residential", + "name": "Gang Gajah Mada 15" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428392, + -0.0334723 + ], + [ + 109.3418003, + -0.0340691 + ], + [ + 109.3413776, + -0.0343119 + ] + ] + }, + "id": "way/283884934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884935", + "highway": "service", + "name": "Jalan Kapten Marsan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415577, + -0.0232058 + ], + [ + 109.3420967, + -0.0239253 + ] + ] + }, + "id": "way/283884935" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884939", + "highway": "service", + "name": "Jalan Serayu", + "name:id": "Jalan Serayu", + "name:ms": "Jalan Serayu", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416379, + -0.0252563 + ], + [ + 109.341979, + -0.0249908 + ], + [ + 109.342959, + -0.024228 + ] + ] + }, + "id": "way/283884939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884940", + "highway": "residential", + "name": "Gang Tiga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442557, + -0.0332971 + ], + [ + 109.3440528, + -0.0329797 + ], + [ + 109.3439602, + -0.0328349 + ], + [ + 109.3438607, + -0.0326747 + ], + [ + 109.3436971, + -0.0324265 + ], + [ + 109.3436881, + -0.0324115 + ], + [ + 109.343373, + -0.0319163 + ] + ] + }, + "id": "way/283884940" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884941", + "highway": "living_street", + "name": "Gang Baiduri 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461206, + -0.0337443 + ], + [ + 109.3452095, + -0.0341034 + ], + [ + 109.345117, + -0.0341455 + ], + [ + 109.3443665, + -0.0343727 + ] + ] + }, + "id": "way/283884941" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884942", + "highway": "residential", + "name": "Jalan Komp. Villa Mutiara Mas III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348442, + -0.084281 + ], + [ + 109.3497428, + -0.0850904 + ], + [ + 109.3509675, + -0.085795 + ] + ] + }, + "id": "way/283884942" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884943", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634248, + -0.0544886 + ], + [ + 109.3635314, + -0.0544354 + ], + [ + 109.3636964, + -0.0543479 + ], + [ + 109.3638502, + -0.0542614 + ], + [ + 109.3639253, + -0.0542135 + ], + [ + 109.3640145, + -0.0541504 + ], + [ + 109.3641423, + -0.0540653 + ], + [ + 109.3648687, + -0.053593 + ] + ] + }, + "id": "way/283884943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884944", + "highway": "residential", + "name": "Gang Kelurahan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565527, + -0.0512273 + ], + [ + 109.3568523, + -0.0514596 + ], + [ + 109.3589585, + -0.0532385 + ], + [ + 109.359059, + -0.0533054 + ], + [ + 109.3594781, + -0.0537059 + ] + ] + }, + "id": "way/283884944" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884945", + "highway": "residential", + "name": "Pondok Indah Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487405, + -0.0837207 + ], + [ + 109.3512952, + -0.0852721 + ], + [ + 109.3513461, + -0.085303 + ] + ] + }, + "id": "way/283884945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884946", + "highway": "residential", + "name": "Gang purnama 2A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323592, + -0.0479793 + ], + [ + 109.3325009, + -0.0481456 + ], + [ + 109.332648, + -0.0482862 + ], + [ + 109.333441, + -0.0490022 + ], + [ + 109.3336932, + -0.0492299 + ], + [ + 109.3342269, + -0.0496966 + ], + [ + 109.334479, + -0.0499193 + ], + [ + 109.3347082, + -0.0501385 + ] + ] + }, + "id": "way/283884946" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884947", + "highway": "residential", + "name": "Suprapto V" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385385, + -0.0382634 + ], + [ + 109.3392205, + -0.039009 + ], + [ + 109.3404101, + -0.0405234 + ] + ] + }, + "id": "way/283884947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884948", + "highway": "residential", + "name": "Jalan Pattimura Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3363612, + -0.0286262 + ], + [ + 109.3369877, + -0.0285205 + ], + [ + 109.3374605, + -0.0284457 + ], + [ + 109.3386479, + -0.0282577 + ] + ] + }, + "id": "way/283884948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884949", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472785, + -0.0917005 + ], + [ + 109.3472598, + -0.091692 + ], + [ + 109.3459115, + -0.0910799 + ], + [ + 109.3445963, + -0.0904836 + ] + ] + }, + "id": "way/283884949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884951", + "highway": "living_street", + "name": "Gang Kamboja Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466471, + -0.035691 + ], + [ + 109.3471458, + -0.0355368 + ], + [ + 109.3474447, + -0.0354023 + ] + ] + }, + "id": "way/283884951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884953", + "highway": "residential", + "motor_vehicle": "permissive", + "name": "Gang Ruper 1", + "name:id": "Gang Ruper 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3289761, + -0.03535 + ], + [ + 109.329515, + -0.0347301 + ], + [ + 109.330278, + -0.0338119 + ], + [ + 109.3310562, + -0.0328667 + ] + ] + }, + "id": "way/283884953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884954", + "highway": "residential", + "name": "Gang Haji Ali" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544397, + -0.046995 + ], + [ + 109.3551345, + -0.0462729 + ], + [ + 109.3554192, + -0.0459776 + ] + ] + }, + "id": "way/283884954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884957", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447537, + -0.0900932 + ], + [ + 109.3460805, + -0.0907008 + ], + [ + 109.3474304, + -0.0912678 + ] + ] + }, + "id": "way/283884957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884958", + "highway": "residential", + "name": "Gang Andayani II", + "name:id": "Gang Andayani II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293487, + -0.0361642 + ], + [ + 109.3302924, + -0.0349828 + ], + [ + 109.3304006, + -0.0348646 + ], + [ + 109.3308896, + -0.0342947 + ], + [ + 109.3314933, + -0.0335688 + ] + ] + }, + "id": "way/283884958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884960", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464273, + -0.0406309 + ], + [ + 109.3461558, + -0.0403282 + ], + [ + 109.3457167, + -0.0398372 + ], + [ + 109.3456652, + -0.039873 + ], + [ + 109.3456551, + -0.0398791 + ], + [ + 109.3456397, + -0.0398804 + ], + [ + 109.3456243, + -0.0398744 + ] + ] + }, + "id": "way/283884960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884961", + "highway": "residential", + "name": "Vila Kencana 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494427, + -0.0826124 + ], + [ + 109.3520127, + -0.084164 + ] + ] + }, + "id": "way/283884961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884963", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618455, + -0.0539566 + ], + [ + 109.3625792, + -0.0535503 + ], + [ + 109.3628581, + -0.0534149 + ], + [ + 109.3630687, + -0.0533069 + ], + [ + 109.3632236, + -0.0532231 + ], + [ + 109.3636852, + -0.052968 + ], + [ + 109.364246, + -0.0526519 + ] + ] + }, + "id": "way/283884963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884964", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554339, + -0.0459909 + ], + [ + 109.3555359, + -0.0458745 + ], + [ + 109.3557192, + -0.0456779 + ], + [ + 109.3559086, + -0.04545 + ], + [ + 109.3561821, + -0.0451261 + ], + [ + 109.3562731, + -0.0450318 + ], + [ + 109.3566211, + -0.0447087 + ], + [ + 109.3566257, + -0.0447057 + ], + [ + 109.3566296, + -0.044705 + ], + [ + 109.3566354, + -0.0447065 + ], + [ + 109.3566441, + -0.0447117 + ], + [ + 109.3567674, + -0.0447822 + ], + [ + 109.3568571, + -0.0448435 + ], + [ + 109.3569417, + -0.0449134 + ], + [ + 109.3571008, + -0.045035 + ], + [ + 109.3571913, + -0.0451201 + ], + [ + 109.3572109, + -0.0451388 + ], + [ + 109.357305, + -0.0452281 + ], + [ + 109.3574024, + -0.0453373 + ], + [ + 109.3574404, + -0.04538 + ], + [ + 109.3576356, + -0.0455885 + ], + [ + 109.3577925, + -0.0457219 + ], + [ + 109.3579148, + -0.0458289 + ], + [ + 109.3579621, + -0.045872 + ], + [ + 109.3580111, + -0.045911 + ], + [ + 109.3581031, + -0.0459861 + ], + [ + 109.3581674, + -0.0460363 + ], + [ + 109.3582137, + -0.0460725 + ], + [ + 109.3583735, + -0.0461977 + ], + [ + 109.3584004, + -0.0462204 + ], + [ + 109.3585103, + -0.0463129 + ], + [ + 109.3585271, + -0.0463271 + ], + [ + 109.3587544, + -0.046533 + ], + [ + 109.3588871, + -0.0466591 + ], + [ + 109.358978, + -0.0467455 + ], + [ + 109.3590487, + -0.0468185 + ] + ] + }, + "id": "way/283884964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339238, + -0.0282258 + ], + [ + 109.334799, + -0.0277243 + ] + ] + }, + "id": "way/283884965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884966", + "highway": "residential", + "name": "Gang Perintis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479759, + -0.0392608 + ], + [ + 109.3485891, + -0.0388945 + ] + ] + }, + "id": "way/283884966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884967", + "highway": "residential", + "name": "Gang Purnama Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282333, + -0.0540334 + ], + [ + 109.3270782, + -0.0531037 + ], + [ + 109.3269347, + -0.0530125 + ], + [ + 109.326759, + -0.0528891 + ], + [ + 109.3266021, + -0.0527631 + ], + [ + 109.3264264, + -0.0526021 + ], + [ + 109.3262956, + -0.0524685 + ], + [ + 109.3258517, + -0.0521012 + ] + ] + }, + "id": "way/283884967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884968", + "highway": "residential", + "name": "Komplek Pesona Alam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535685, + -0.0755269 + ], + [ + 109.3541017, + -0.075865 + ], + [ + 109.3551097, + -0.0765228 + ], + [ + 109.356488, + -0.0774004 + ] + ] + }, + "id": "way/283884968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884969", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415545, + -0.0336545 + ], + [ + 109.3420506, + -0.0334349 + ], + [ + 109.3424624, + -0.0332568 + ], + [ + 109.342695, + -0.0331508 + ] + ] + }, + "id": "way/283884969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884970", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.336488, + -0.0291073 + ], + [ + 109.3364814, + -0.0290594 + ] + ] + }, + "id": "way/283884970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884971", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3295945, + -0.0365261 + ], + [ + 109.3301332, + -0.0358692 + ], + [ + 109.3306612, + -0.0351597 + ], + [ + 109.3307116, + -0.0350926 + ] + ] + }, + "id": "way/283884971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884972", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Asean" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465351, + -0.0350953 + ], + [ + 109.3471095, + -0.0349217 + ], + [ + 109.3473822, + -0.034831 + ], + [ + 109.3478563, + -0.0346734 + ], + [ + 109.347884, + -0.0346642 + ] + ] + }, + "id": "way/283884972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884973", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342226, + -0.0289589 + ], + [ + 109.3420207, + -0.0284945 + ], + [ + 109.341897, + -0.0282243 + ], + [ + 109.3418746, + -0.0281753 + ], + [ + 109.3418166, + -0.0282074 + ], + [ + 109.3417043, + -0.0280313 + ] + ] + }, + "id": "way/283884973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884975", + "highway": "living_street", + "name": "Gang Kelantan 1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341434, + -0.031754 + ], + [ + 109.3420065, + -0.0314726 + ], + [ + 109.3425492, + -0.031178 + ], + [ + 109.3425986, + -0.0311512 + ] + ] + }, + "id": "way/283884975" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884977", + "highway": "living_street", + "lanes": "1", + "name": "Gang Fitrah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624906, + -0.0547973 + ], + [ + 109.3638287, + -0.05411 + ], + [ + 109.3638415, + -0.0541132 + ], + [ + 109.3638549, + -0.0541233 + ], + [ + 109.3639253, + -0.0542135 + ] + ] + }, + "id": "way/283884977" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884978", + "highway": "living_street", + "name": "Gang Rangoon" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479822, + -0.034981 + ], + [ + 109.3470094, + -0.0353949 + ], + [ + 109.3466106, + -0.0355113 + ] + ] + }, + "id": "way/283884978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884979", + "highway": "residential", + "name": "Gang Purnama Griya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284624, + -0.0538236 + ], + [ + 109.3273217, + -0.0528353 + ] + ] + }, + "id": "way/283884979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884980", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578116, + -0.0536165 + ], + [ + 109.3576071, + -0.0534309 + ], + [ + 109.3574574, + -0.0533044 + ], + [ + 109.3573992, + -0.0532553 + ], + [ + 109.356522, + -0.0524946 + ], + [ + 109.3563611, + -0.0523453 + ], + [ + 109.3562789, + -0.0522485 + ] + ] + }, + "id": "way/283884980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884981", + "highway": "residential", + "name": "Mitra Indah Utama 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471651, + -0.0801126 + ], + [ + 109.3483959, + -0.0811274 + ], + [ + 109.3496344, + -0.0821142 + ] + ] + }, + "id": "way/283884981" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884982", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230459, + -0.0386518 + ], + [ + 109.3236639, + -0.0381209 + ], + [ + 109.3237016, + -0.0380915 + ], + [ + 109.3240553, + -0.037774 + ], + [ + 109.3243727, + -0.0375037 + ], + [ + 109.3244006, + -0.0374799 + ], + [ + 109.3255978, + -0.0364043 + ] + ] + }, + "id": "way/283884982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884983", + "highway": "residential", + "name": "Taman Sei Raya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482661, + -0.084536 + ], + [ + 109.3497068, + -0.0853743 + ], + [ + 109.3508269, + -0.0860166 + ] + ] + }, + "id": "way/283884983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884984", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558259, + -0.0483988 + ], + [ + 109.3564608, + -0.0476525 + ], + [ + 109.3564758, + -0.0476387 + ], + [ + 109.3564929, + -0.047633 + ], + [ + 109.3565087, + -0.0476367 + ], + [ + 109.3565219, + -0.0476479 + ], + [ + 109.3565563, + -0.0476883 + ] + ] + }, + "id": "way/283884984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884985", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262919, + -0.0305395 + ], + [ + 109.3260862, + -0.030266 + ], + [ + 109.3259976, + -0.030186 + ], + [ + 109.3259047, + -0.0300515 + ], + [ + 109.3258202, + -0.0299804 + ] + ] + }, + "id": "way/283884985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884987", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369812, + -0.0390298 + ], + [ + 109.3362275, + -0.0381026 + ], + [ + 109.3358386, + -0.0376381 + ] + ] + }, + "id": "way/283884987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884988", + "highway": "residential", + "name": "Gang Teratai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609041, + -0.0527802 + ], + [ + 109.3616589, + -0.0522193 + ], + [ + 109.3619868, + -0.0519537 + ], + [ + 109.36234, + -0.0516664 + ] + ] + }, + "id": "way/283884988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884989", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587422, + -0.0544377 + ], + [ + 109.3581503, + -0.0539496 + ], + [ + 109.3578116, + -0.0536165 + ] + ] + }, + "id": "way/283884989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884991", + "highway": "residential", + "name": "Jalan Kapten Marsan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405559, + -0.0239869 + ], + [ + 109.3415577, + -0.0232058 + ] + ] + }, + "id": "way/283884991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884993", + "highway": "residential", + "name": "Gang Surya Nila" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339351, + -0.0503451 + ], + [ + 109.3337381, + -0.0501493 + ], + [ + 109.3334846, + -0.0499146 + ], + [ + 109.3331864, + -0.0496537 + ], + [ + 109.3329543, + -0.0494506 + ], + [ + 109.3322662, + -0.0487927 + ], + [ + 109.3319584, + -0.0484903 + ], + [ + 109.3316915, + -0.0481904 + ] + ] + }, + "id": "way/283884993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884996", + "highway": "residential", + "name": "Jalan D.I. Panjaitan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337159, + -0.0363966 + ], + [ + 109.3337866, + -0.036341 + ], + [ + 109.3342879, + -0.0359466 + ], + [ + 109.3349196, + -0.0354291 + ], + [ + 109.335297, + -0.0351236 + ], + [ + 109.3354237, + -0.0350375 + ], + [ + 109.3355256, + -0.0349815 + ], + [ + 109.3356919, + -0.0349125 + ], + [ + 109.3357348, + -0.0349044 + ], + [ + 109.3357804, + -0.0348776 + ], + [ + 109.3358018, + -0.0348126 + ], + [ + 109.3358087, + -0.0347917 + ], + [ + 109.3359763, + -0.0346616 + ], + [ + 109.3361078, + -0.0345992 + ], + [ + 109.3361293, + -0.0346367 + ], + [ + 109.3363063, + -0.0345321 + ], + [ + 109.3363586, + -0.0345857 + ] + ] + }, + "id": "way/283884996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884997", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544219, + -0.0445025 + ], + [ + 109.3546285, + -0.0448009 + ], + [ + 109.354766, + -0.0449791 + ], + [ + 109.3548177, + -0.0450524 + ], + [ + 109.3548221, + -0.0450656 + ], + [ + 109.3548211, + -0.0450759 + ], + [ + 109.3548177, + -0.0450851 + ], + [ + 109.3548125, + -0.0450928 + ], + [ + 109.3548065, + -0.0450983 + ], + [ + 109.3547293, + -0.0451534 + ], + [ + 109.3545884, + -0.0452403 + ], + [ + 109.3544534, + -0.0453268 + ] + ] + }, + "id": "way/283884997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884998", + "highway": "residential", + "motorcar": "no", + "name": "Gang Belitung 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628002, + -0.0552479 + ], + [ + 109.3632368, + -0.0550296 + ], + [ + 109.3635068, + -0.0549041 + ], + [ + 109.3637257, + -0.0547921 + ], + [ + 109.3638023, + -0.0547484 + ], + [ + 109.3639024, + -0.0546979 + ], + [ + 109.3640473, + -0.0546181 + ], + [ + 109.3644681, + -0.054368 + ], + [ + 109.3648307, + -0.0541608 + ], + [ + 109.3651169, + -0.053982 + ] + ] + }, + "id": "way/283884998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283884999", + "highway": "residential", + "name": "Gang Rawa Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478546, + -0.0417727 + ], + [ + 109.34845, + -0.0412229 + ], + [ + 109.3489066, + -0.0408574 + ], + [ + 109.3493727, + -0.0405523 + ], + [ + 109.349665, + -0.0403431 + ], + [ + 109.3499695, + -0.0401252 + ], + [ + 109.3502704, + -0.0399117 + ], + [ + 109.3509248, + -0.0393332 + ], + [ + 109.3510071, + -0.0394404 + ], + [ + 109.351178, + -0.0392959 + ] + ] + }, + "id": "way/283884999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885000", + "highway": "residential", + "name": "Gang Garuda 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349501, + -0.0417225 + ], + [ + 109.3500977, + -0.041315 + ], + [ + 109.3506571, + -0.0407703 + ], + [ + 109.3515319, + -0.0400857 + ] + ] + }, + "id": "way/283885000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885001", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3637257, + -0.0547921 + ], + [ + 109.3639357, + -0.0552066 + ], + [ + 109.3639512, + -0.0552334 + ], + [ + 109.3639813, + -0.0552454 + ], + [ + 109.3641108, + -0.055169 + ], + [ + 109.3643247, + -0.0550315 + ], + [ + 109.3644514, + -0.054945 + ], + [ + 109.3645211, + -0.0548954 + ], + [ + 109.3645684, + -0.0548612 + ] + ] + }, + "id": "way/283885001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885002", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504731, + -0.0332527 + ], + [ + 109.3504732, + -0.0332485 + ], + [ + 109.3504742, + -0.0332456 + ], + [ + 109.3504771, + -0.0332413 + ], + [ + 109.3506025, + -0.033189 + ], + [ + 109.3506487, + -0.0331717 + ], + [ + 109.3510142, + -0.0330435 + ], + [ + 109.3510826, + -0.0330149 + ], + [ + 109.3513353, + -0.0328824 + ], + [ + 109.3516139, + -0.0327394 + ], + [ + 109.3516329, + -0.0327272 + ], + [ + 109.351984, + -0.0325424 + ], + [ + 109.3522556, + -0.0324 + ], + [ + 109.3522895, + -0.0323822 + ], + [ + 109.3525892, + -0.0322251 + ], + [ + 109.3537674, + -0.0316087 + ] + ] + }, + "id": "way/283885002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885003", + "highway": "residential", + "name": "Gang Purnama II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352125, + -0.0499537 + ], + [ + 109.3349592, + -0.0496939 + ], + [ + 109.3346311, + -0.0494029 + ], + [ + 109.3344844, + -0.0492896 + ], + [ + 109.334382, + -0.0492102 + ], + [ + 109.3342718, + -0.0491247 + ], + [ + 109.333948, + -0.0488983 + ] + ] + }, + "id": "way/283885003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885004", + "access": "permissive", + "highway": "living_street", + "name": "Gang Gajah Mada 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414983, + -0.0314112 + ], + [ + 109.3414099, + -0.031196 + ], + [ + 109.3413039, + -0.0309379 + ], + [ + 109.3412905, + -0.0309326 + ], + [ + 109.3412738, + -0.0309346 + ], + [ + 109.3408608, + -0.0311299 + ], + [ + 109.3404181, + -0.0313743 + ] + ] + }, + "id": "way/283885004" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885005", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492875, + -0.041448 + ], + [ + 109.350205, + -0.0406955 + ], + [ + 109.3504529, + -0.0405115 + ], + [ + 109.3506213, + -0.0403865 + ], + [ + 109.3511993, + -0.0399153 + ] + ] + }, + "id": "way/283885005" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885006", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514724, + -0.0433855 + ], + [ + 109.3518705, + -0.042968 + ], + [ + 109.3521616, + -0.0427017 + ], + [ + 109.3522768, + -0.0425962 + ], + [ + 109.3524116, + -0.0424634 + ] + ] + }, + "id": "way/283885006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885007", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331201, + -0.0256116 + ], + [ + 109.3336354, + -0.026166 + ], + [ + 109.3334397, + -0.0263188 + ], + [ + 109.3337552, + -0.0266963 + ], + [ + 109.3338943, + -0.0268666 + ] + ] + }, + "id": "way/283885007" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885008", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505172, + -0.0415585 + ], + [ + 109.3509588, + -0.0411121 + ], + [ + 109.3516685, + -0.0405491 + ], + [ + 109.3519817, + -0.0403371 + ], + [ + 109.3520327, + -0.0403085 + ] + ] + }, + "id": "way/283885008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885009", + "highway": "residential", + "name": "Komplek Cendana Agung" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530417, + -0.0765203 + ], + [ + 109.3531815, + -0.076606 + ], + [ + 109.3559808, + -0.0782641 + ] + ] + }, + "id": "way/283885009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885010", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471438, + -0.03429 + ], + [ + 109.3472948, + -0.0346393 + ] + ] + }, + "id": "way/283885010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885011", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370183, + -0.0230369 + ], + [ + 109.3374322, + -0.0229852 + ], + [ + 109.337469, + -0.0229775 + ], + [ + 109.3374992, + -0.0229661 + ], + [ + 109.3375267, + -0.0229507 + ], + [ + 109.3376259, + -0.0228712 + ], + [ + 109.3376654, + -0.0228346 + ], + [ + 109.3376923, + -0.0228008 + ], + [ + 109.3377098, + -0.0227706 + ], + [ + 109.3377198, + -0.022727 + ], + [ + 109.3377145, + -0.0226901 + ], + [ + 109.337697, + -0.022662 + ], + [ + 109.337575, + -0.0225527 + ], + [ + 109.3374909, + -0.0224853 + ], + [ + 109.3374526, + -0.0224638 + ], + [ + 109.3374162, + -0.0224531 + ], + [ + 109.3373721, + -0.0224534 + ], + [ + 109.3369627, + -0.0224941 + ] + ] + }, + "id": "way/283885011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885012", + "highway": "residential", + "name": "Gang Rupper II", + "name:id": "Gang Rupper II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307754, + -0.0324156 + ], + [ + 109.3305149, + -0.0326785 + ], + [ + 109.3291515, + -0.0341982 + ], + [ + 109.3291194, + -0.0342398 + ], + [ + 109.3290751, + -0.0342921 + ], + [ + 109.3291286, + -0.0343394 + ], + [ + 109.329515, + -0.0347301 + ] + ] + }, + "id": "way/283885012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885014", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418375, + -0.0294905 + ], + [ + 109.3426186, + -0.0291347 + ], + [ + 109.3426883, + -0.0291214 + ], + [ + 109.3428761, + -0.0296132 + ] + ] + }, + "id": "way/283885014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885015", + "highway": "residential", + "name": "Gang jeruk" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272653, + -0.0309105 + ], + [ + 109.3272786, + -0.0309015 + ], + [ + 109.3272832, + -0.0309008 + ], + [ + 109.3272879, + -0.0308994 + ], + [ + 109.3272932, + -0.0308972 + ], + [ + 109.3273061, + -0.0308883 + ], + [ + 109.328959, + -0.029475 + ] + ] + }, + "id": "way/283885015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885016", + "highway": "residential", + "name": "Pawan Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244719, + -0.0349099 + ], + [ + 109.3251872, + -0.0343591 + ], + [ + 109.3257974, + -0.0339045 + ], + [ + 109.3258343, + -0.0338627 + ], + [ + 109.3259038, + -0.0338119 + ], + [ + 109.3259176, + -0.0337843 + ], + [ + 109.3259485, + -0.0337374 + ], + [ + 109.3260113, + -0.033681 + ], + [ + 109.326271, + -0.0334703 + ], + [ + 109.3265779, + -0.0332366 + ], + [ + 109.3268267, + -0.0330213 + ], + [ + 109.3272143, + -0.032733 + ] + ] + }, + "id": "way/283885016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885017", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556683, + -0.0456177 + ], + [ + 109.3553641, + -0.045258 + ], + [ + 109.3552703, + -0.0451441 + ], + [ + 109.3551093, + -0.0452435 + ], + [ + 109.3548875, + -0.0453942 + ] + ] + }, + "id": "way/283885017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885018", + "highway": "residential", + "name": "Gang Purnama 6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333538, + -0.0504875 + ], + [ + 109.3330836, + -0.0502311 + ], + [ + 109.3325589, + -0.0498242 + ], + [ + 109.3320872, + -0.0494049 + ], + [ + 109.3317113, + -0.0490339 + ], + [ + 109.3311181, + -0.04839 + ] + ] + }, + "id": "way/283885018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885022", + "highway": "living_street", + "name": "Gang Aren", + "name:id": "Gang Aren" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331654, + -0.034681 + ], + [ + 109.3317948, + -0.0348432 + ], + [ + 109.3318136, + -0.0348888 + ], + [ + 109.331822, + -0.034912 + ], + [ + 109.331818, + -0.0349388 + ], + [ + 109.3318009, + -0.0349607 + ], + [ + 109.3310619, + -0.0355986 + ] + ] + }, + "id": "way/283885022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885023", + "highway": "residential", + "name": "Gang Kamboja", + "name:id": "Gang Kamboja" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468408, + -0.0367398 + ], + [ + 109.3477123, + -0.0364301 + ], + [ + 109.3477671, + -0.036411 + ], + [ + 109.3479061, + -0.036344 + ], + [ + 109.34834, + -0.0361347 + ], + [ + 109.3487112, + -0.0359274 + ], + [ + 109.3489497, + -0.0357751 + ], + [ + 109.3493512, + -0.0355771 + ] + ] + }, + "id": "way/283885023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885024", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549744, + -0.0458358 + ], + [ + 109.354711, + -0.0460473 + ], + [ + 109.3546892, + -0.0460599 + ], + [ + 109.3546565, + -0.0460671 + ], + [ + 109.3546296, + -0.0460634 + ], + [ + 109.3546097, + -0.0460515 + ], + [ + 109.3545102, + -0.0459049 + ], + [ + 109.3544421, + -0.0457712 + ], + [ + 109.3544404, + -0.0457531 + ], + [ + 109.3544424, + -0.045734 + ], + [ + 109.3544555, + -0.0457149 + ], + [ + 109.3548875, + -0.0453942 + ] + ] + }, + "id": "way/283885024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885025", + "highway": "residential", + "name": "Gang Martapura" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477611, + -0.0389101 + ], + [ + 109.3487061, + -0.0383494 + ], + [ + 109.3492351, + -0.0380183 + ], + [ + 109.3493159, + -0.0379495 + ], + [ + 109.3496409, + -0.0377279 + ], + [ + 109.3498219, + -0.0376088 + ], + [ + 109.3498952, + -0.0375606 + ], + [ + 109.3501572, + -0.0373882 + ], + [ + 109.3502934, + -0.0372713 + ] + ] + }, + "id": "way/283885025" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885026", + "highway": "living_street", + "name": "Gang Ketapang 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440384, + -0.033414 + ], + [ + 109.3441595, + -0.0337206 + ], + [ + 109.3442328, + -0.0339624 + ], + [ + 109.3442572, + -0.0340431 + ], + [ + 109.3443665, + -0.0343727 + ], + [ + 109.3444065, + -0.0344811 + ], + [ + 109.3444924, + -0.0347141 + ], + [ + 109.3445203, + -0.0347819 + ], + [ + 109.344652, + -0.035102 + ] + ] + }, + "id": "way/283885026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885027", + "highway": "residential", + "name": "Jalan Katamso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3378015, + -0.0413652 + ], + [ + 109.3378296, + -0.0413455 + ], + [ + 109.3385031, + -0.0408753 + ], + [ + 109.3384498, + -0.0408183 + ], + [ + 109.338423, + -0.0407881 + ], + [ + 109.3374048, + -0.0395203 + ] + ] + }, + "id": "way/283885027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885028", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522895, + -0.0323822 + ], + [ + 109.3526005, + -0.0328633 + ], + [ + 109.3527069, + -0.0330186 + ], + [ + 109.3528345, + -0.0331995 + ], + [ + 109.3529036, + -0.0332974 + ], + [ + 109.3530346, + -0.0335122 + ] + ] + }, + "id": "way/283885028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885029", + "highway": "residential", + "name": "Gang Haji Mursyid 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484057, + -0.0401234 + ], + [ + 109.3484691, + -0.0400836 + ], + [ + 109.3490363, + -0.0396375 + ], + [ + 109.3495042, + -0.0392775 + ], + [ + 109.350366, + -0.0386547 + ], + [ + 109.3510201, + -0.0381725 + ] + ] + }, + "id": "way/283885029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885031", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490363, + -0.0396375 + ], + [ + 109.3493043, + -0.0400025 + ], + [ + 109.3493264, + -0.0400239 + ], + [ + 109.3493539, + -0.0400387 + ], + [ + 109.3493821, + -0.0400346 + ], + [ + 109.3494401, + -0.0399904 + ], + [ + 109.3502512, + -0.0394132 + ], + [ + 109.3509501, + -0.0388865 + ], + [ + 109.3509636, + -0.0388806 + ], + [ + 109.3509766, + -0.0388867 + ], + [ + 109.351029, + -0.0389318 + ], + [ + 109.3513913, + -0.0386665 + ] + ] + }, + "id": "way/283885031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885033", + "highway": "residential", + "name": "Gang Bangsir 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530073, + -0.0446519 + ], + [ + 109.3534268, + -0.0442725 + ], + [ + 109.3538097, + -0.0439453 + ], + [ + 109.3542191, + -0.0436254 + ], + [ + 109.3542483, + -0.0436012 + ], + [ + 109.3544805, + -0.0434471 + ], + [ + 109.354954, + -0.0431161 + ] + ] + }, + "id": "way/283885033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885034", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330331, + -0.0274761 + ], + [ + 109.333647, + -0.0269681 + ], + [ + 109.3336606, + -0.0269609 + ], + [ + 109.3336764, + -0.0269589 + ], + [ + 109.3337164, + -0.0269831 + ], + [ + 109.3337317, + -0.026986 + ], + [ + 109.3337461, + -0.026983 + ], + [ + 109.3338943, + -0.0268666 + ], + [ + 109.3340446, + -0.0270395 + ] + ] + }, + "id": "way/283885034" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885036", + "highway": "residential", + "lanes": "1", + "motorcar": "yes", + "name": "Purnama Patra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3299689, + -0.0524908 + ], + [ + 109.3270737, + -0.0501676 + ], + [ + 109.3270682, + -0.0501576 + ], + [ + 109.3270669, + -0.0501478 + ], + [ + 109.3271011, + -0.0500919 + ], + [ + 109.3272262, + -0.0499257 + ] + ] + }, + "id": "way/283885036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885037", + "highway": "living_street", + "name": "Gang Peniti Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501672, + -0.0423337 + ], + [ + 109.351123, + -0.041297 + ], + [ + 109.3512535, + -0.0411966 + ], + [ + 109.3516314, + -0.0408579 + ], + [ + 109.351666, + -0.040842 + ], + [ + 109.3516955, + -0.0408407 + ], + [ + 109.3517572, + -0.0409131 + ], + [ + 109.3517746, + -0.0409305 + ], + [ + 109.3517934, + -0.0409386 + ], + [ + 109.3518628, + -0.0408974 + ], + [ + 109.3522864, + -0.0405816 + ] + ] + }, + "id": "way/283885037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885038", + "highway": "residential", + "name": "Ade Irma Suryani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385385, + -0.0382634 + ], + [ + 109.3384864, + -0.0382783 + ], + [ + 109.338389, + -0.0383177 + ], + [ + 109.3378447, + -0.0385838 + ], + [ + 109.3378165, + -0.0385978 + ], + [ + 109.3369812, + -0.0390298 + ], + [ + 109.3369149, + -0.0390713 + ], + [ + 109.3363096, + -0.039522 + ], + [ + 109.3362705, + -0.0395511 + ] + ] + }, + "id": "way/283885038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885039", + "highway": "residential", + "name": "Gang Haji Haris" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633689, + -0.0561848 + ], + [ + 109.3636501, + -0.056081 + ], + [ + 109.3638858, + -0.0559904 + ], + [ + 109.3639931, + -0.0559556 + ], + [ + 109.3641007, + -0.0559153 + ], + [ + 109.3641989, + -0.0558808 + ], + [ + 109.3642506, + -0.0558664 + ], + [ + 109.3642968, + -0.0558543 + ], + [ + 109.3643625, + -0.0558361 + ], + [ + 109.3645044, + -0.0557759 + ], + [ + 109.3647075, + -0.0556793 + ], + [ + 109.3648792, + -0.055566 + ], + [ + 109.3650321, + -0.0554708 + ], + [ + 109.3653381, + -0.0552588 + ], + [ + 109.3653674, + -0.0552287 + ], + [ + 109.3651984, + -0.0549947 + ], + [ + 109.3650951, + -0.0548447 + ] + ] + }, + "id": "way/283885039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885040", + "highway": "residential", + "name": "Gang Haji Kasim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3589585, + -0.0532385 + ], + [ + 109.3595745, + -0.0525418 + ], + [ + 109.3595725, + -0.052525 + ], + [ + 109.3595691, + -0.0525136 + ], + [ + 109.3595114, + -0.0524734 + ], + [ + 109.3591453, + -0.0521945 + ], + [ + 109.3591091, + -0.0521743 + ], + [ + 109.3587067, + -0.0519231 + ], + [ + 109.3586374, + -0.0518798 + ], + [ + 109.3586147, + -0.0518682 + ], + [ + 109.3585948, + -0.0518657 + ], + [ + 109.3585814, + -0.0518691 + ], + [ + 109.358568, + -0.0518798 + ], + [ + 109.3584798, + -0.0519847 + ], + [ + 109.3584664, + -0.0519953 + ], + [ + 109.35845, + -0.0520005 + ], + [ + 109.3584307, + -0.0519986 + ], + [ + 109.3584097, + -0.0519889 + ], + [ + 109.3571887, + -0.0509735 + ] + ] + }, + "id": "way/283885040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885041", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Jalan Wolter Mongonsidi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369604, + -0.0302191 + ], + [ + 109.3367542, + -0.029768 + ], + [ + 109.3367382, + -0.0297381 + ], + [ + 109.3365546, + -0.0293328 + ], + [ + 109.336501, + -0.0291702 + ], + [ + 109.336488, + -0.0291073 + ], + [ + 109.3365384, + -0.0290889 + ], + [ + 109.337064, + -0.0289782 + ], + [ + 109.337083, + -0.028976 + ], + [ + 109.3372951, + -0.0289339 + ], + [ + 109.3375325, + -0.0288868 + ], + [ + 109.3387027, + -0.0286544 + ] + ] + }, + "id": "way/283885041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885042", + "highway": "residential", + "name": "Gang Martapura 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474933, + -0.0384855 + ], + [ + 109.3480262, + -0.0381799 + ], + [ + 109.3481335, + -0.0381115 + ], + [ + 109.3485567, + -0.0378159 + ], + [ + 109.3486785, + -0.0377459 + ], + [ + 109.3488765, + -0.0376126 + ], + [ + 109.3490229, + -0.0375348 + ], + [ + 109.3490669, + -0.0375308 + ], + [ + 109.3491049, + -0.0375411 + ], + [ + 109.3491449, + -0.0375495 + ], + [ + 109.3491662, + -0.0375456 + ], + [ + 109.3493271, + -0.0374336 + ] + ] + }, + "id": "way/283885042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885043", + "highway": "residential", + "name": "Jalan Gusti Ngurah Rai", + "name:id": "Jalan Gusti Ngurah Rai", + "name:ms": "Jalan Gusti Ngurah Rai", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341554, + -0.0242391 + ], + [ + 109.3414944, + -0.0242806 + ], + [ + 109.3414442, + -0.0243155 + ], + [ + 109.3413763, + -0.0243657 + ], + [ + 109.3412187, + -0.0244774 + ], + [ + 109.3411835, + -0.0244998 + ], + [ + 109.3410625, + -0.0245791 + ] + ] + }, + "id": "way/283885043" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885046", + "highway": "living_street", + "motorcar": "no", + "name": "Mubarak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274219, + -0.0300896 + ], + [ + 109.3274929, + -0.0301769 + ], + [ + 109.3274966, + -0.030178 + ], + [ + 109.3274992, + -0.030178 + ], + [ + 109.327502, + -0.0301776 + ], + [ + 109.3275054, + -0.0301765 + ], + [ + 109.3276908, + -0.0300351 + ] + ] + }, + "id": "way/283885046" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885049", + "highway": "residential", + "name": "Gang Deli Aceh" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3419753, + -0.029072 + ], + [ + 109.342226, + -0.0289589 + ], + [ + 109.3424756, + -0.0288443 + ], + [ + 109.3427999, + -0.0286688 + ], + [ + 109.3429579, + -0.0285709 + ], + [ + 109.3430413, + -0.0285213 + ], + [ + 109.343504, + -0.0282356 + ] + ] + }, + "id": "way/283885049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885050", + "highway": "residential", + "name": "Gang Gajah Mada 9" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403367, + -0.0320109 + ], + [ + 109.3408341, + -0.0318713 + ], + [ + 109.3409257, + -0.0318456 + ], + [ + 109.3411812, + -0.0317044 + ] + ] + }, + "id": "way/283885050" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885051", + "highway": "residential", + "name": "Purnama Sempurna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276049, + -0.0511275 + ], + [ + 109.3276086, + -0.0510988 + ], + [ + 109.3276089, + -0.051084 + ], + [ + 109.3276052, + -0.0510706 + ], + [ + 109.3275663, + -0.0510277 + ], + [ + 109.3268549, + -0.0504583 + ], + [ + 109.326841, + -0.0504555 + ], + [ + 109.326827, + -0.0504564 + ], + [ + 109.3268179, + -0.0504618 + ], + [ + 109.3266192, + -0.0507229 + ] + ] + }, + "id": "way/283885051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885053", + "highway": "residential", + "name": "Jalan Kartini" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339402, + -0.0271056 + ], + [ + 109.3340446, + -0.0270395 + ], + [ + 109.3342507, + -0.0268986 + ], + [ + 109.3355704, + -0.0259917 + ], + [ + 109.3356407, + -0.0259836 + ], + [ + 109.3357546, + -0.0260454 + ], + [ + 109.3357952, + -0.0260568 + ], + [ + 109.3358597, + -0.0260496 + ], + [ + 109.3366158, + -0.0255846 + ] + ] + }, + "id": "way/283885053" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885054", + "highway": "residential", + "name": "Dinas Perhubungan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448527, + -0.0898148 + ], + [ + 109.3449315, + -0.0896361 + ], + [ + 109.3449799, + -0.0895261 + ], + [ + 109.3450315, + -0.089544 + ], + [ + 109.3450785, + -0.089565 + ], + [ + 109.3458161, + -0.0899371 + ], + [ + 109.3464806, + -0.090285 + ], + [ + 109.3477034, + -0.090943 + ], + [ + 109.3477333, + -0.090957 + ] + ] + }, + "id": "way/283885054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885056", + "highway": "residential", + "name": "Komplek Sei Raya Lestari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529142, + -0.0765912 + ], + [ + 109.3529834, + -0.0764975 + ], + [ + 109.3530391, + -0.076422 + ], + [ + 109.3530917, + -0.0763553 + ], + [ + 109.3531707, + -0.076227 + ], + [ + 109.353228, + -0.0761114 + ], + [ + 109.3532673, + -0.0760406 + ], + [ + 109.3533543, + -0.0758852 + ] + ] + }, + "id": "way/283885056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283885061", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484562, + -0.0340707 + ], + [ + 109.348692, + -0.0343676 + ], + [ + 109.3487176, + -0.0344146 + ], + [ + 109.3488585, + -0.0346731 + ], + [ + 109.3490493, + -0.0350232 + ], + [ + 109.3493512, + -0.0355771 + ], + [ + 109.3494883, + -0.0358495 + ], + [ + 109.3496702, + -0.0361707 + ], + [ + 109.3497661, + -0.03634 + ], + [ + 109.3502934, + -0.0372713 + ] + ] + }, + "id": "way/283885061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283886661", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270927, + -0.0419376 + ], + [ + 109.3267201, + -0.0421543 + ], + [ + 109.3263886, + -0.0423398 + ], + [ + 109.3259303, + -0.0425963 + ], + [ + 109.325582, + -0.0427955 + ], + [ + 109.3255657, + -0.0428079 + ], + [ + 109.3255563, + -0.0428169 + ], + [ + 109.3255493, + -0.0428263 + ], + [ + 109.3255434, + -0.0428386 + ], + [ + 109.3255401, + -0.0428488 + ], + [ + 109.3255394, + -0.0428597 + ], + [ + 109.3255413, + -0.0428733 + ], + [ + 109.3255453, + -0.0428877 + ], + [ + 109.3255681, + -0.0429422 + ], + [ + 109.3256794, + -0.0431729 + ] + ] + }, + "id": "way/283886661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283886665", + "highway": "residential", + "name": "Gang IV" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266207, + -0.0495044 + ], + [ + 109.3270339, + -0.0489651 + ], + [ + 109.3274493, + -0.0483586 + ] + ] + }, + "id": "way/283886665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283886666", + "highway": "residential", + "name": "Purnama Asri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300129, + -0.0501898 + ], + [ + 109.3306603, + -0.0507045 + ], + [ + 109.3313616, + -0.0512748 + ] + ] + }, + "id": "way/283886666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283886667", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253525, + -0.0434109 + ], + [ + 109.3256931, + -0.0442078 + ], + [ + 109.3257257, + -0.0442766 + ], + [ + 109.3257545, + -0.0443315 + ], + [ + 109.3257827, + -0.0443704 + ] + ] + }, + "id": "way/283886667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283886673", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244188, + -0.0390449 + ], + [ + 109.3249721, + -0.0397406 + ], + [ + 109.3250069, + -0.0397827 + ], + [ + 109.3250746, + -0.0398576 + ], + [ + 109.3252409, + -0.0400568 + ], + [ + 109.3253387, + -0.040205 + ], + [ + 109.3255027, + -0.0404811 + ] + ] + }, + "id": "way/283886673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283886674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253525, + -0.0434109 + ], + [ + 109.3252985, + -0.043437 + ], + [ + 109.3252154, + -0.0434759 + ], + [ + 109.3249016, + -0.0436295 + ], + [ + 109.3247017, + -0.0436992 + ] + ] + }, + "id": "way/283886674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283886675", + "highway": "residential", + "name": "Mutiara Purnama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320968, + -0.0553049 + ], + [ + 109.3313491, + -0.0538005 + ], + [ + 109.3310747, + -0.0532633 + ], + [ + 109.3308225, + -0.0528489 + ], + [ + 109.3304368, + -0.052253 + ] + ] + }, + "id": "way/283886675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892419", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740249, + -0.0618122 + ], + [ + 109.3741364, + -0.0619355 + ], + [ + 109.374281, + -0.0620998 + ], + [ + 109.3743601, + -0.0621917 + ], + [ + 109.3744936, + -0.0623271 + ], + [ + 109.3746585, + -0.0624706 + ], + [ + 109.3746696, + -0.0624798 + ], + [ + 109.3748322, + -0.0626148 + ], + [ + 109.3749531, + -0.0627179 + ], + [ + 109.375032, + -0.0627851 + ], + [ + 109.3752077, + -0.0629152 + ], + [ + 109.3755572, + -0.0632226 + ], + [ + 109.3758447, + -0.0634678 + ], + [ + 109.3758578, + -0.0634725 + ], + [ + 109.3758719, + -0.0634678 + ], + [ + 109.3759175, + -0.0634205 + ], + [ + 109.3760496, + -0.0632408 + ], + [ + 109.3761961, + -0.0630567 + ], + [ + 109.3762846, + -0.0629528 + ], + [ + 109.3765207, + -0.0626882 + ], + [ + 109.3766588, + -0.0625384 + ], + [ + 109.3767909, + -0.0624076 + ], + [ + 109.3769827, + -0.0622427 + ], + [ + 109.377157, + -0.0620938 + ], + [ + 109.3772288, + -0.06202 + ], + [ + 109.3772884, + -0.0619604 + ], + [ + 109.3773763, + -0.0618537 + ], + [ + 109.3774695, + -0.0617324 + ], + [ + 109.3775426, + -0.0616499 + ], + [ + 109.3777015, + -0.061489 + ], + [ + 109.3778329, + -0.0613589 + ], + [ + 109.3779543, + -0.0612409 + ], + [ + 109.3781749, + -0.0610229 + ], + [ + 109.3783887, + -0.0608302 + ] + ] + }, + "id": "way/283892419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892420", + "highway": "residential", + "lanes": "1", + "name": "Gang Angket", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525933, + -0.0237523 + ], + [ + 109.3527221, + -0.0232615 + ], + [ + 109.3527295, + -0.0232427 + ], + [ + 109.3527422, + -0.0232407 + ], + [ + 109.3528022, + -0.0232477 + ], + [ + 109.3528824, + -0.0232594 + ], + [ + 109.3529571, + -0.0232702 + ], + [ + 109.3530031, + -0.0232806 + ], + [ + 109.3530406, + -0.023292 + ], + [ + 109.3531395, + -0.0233101 + ], + [ + 109.3532455, + -0.0233332 + ], + [ + 109.3533417, + -0.023355 + ], + [ + 109.3534989, + -0.0233895 + ], + [ + 109.3538585, + -0.0234548 + ], + [ + 109.3539058, + -0.0234516 + ], + [ + 109.3539056, + -0.0233808 + ], + [ + 109.3539157, + -0.0231327 + ], + [ + 109.3539264, + -0.0227612 + ], + [ + 109.3539271, + -0.0226995 + ], + [ + 109.3544602, + -0.0227713 + ], + [ + 109.3546767, + -0.0228105 + ], + [ + 109.3546922, + -0.0222979 + ], + [ + 109.3546965, + -0.0222885 + ], + [ + 109.3547093, + -0.0222778 + ], + [ + 109.3547311, + -0.0222721 + ], + [ + 109.3547542, + -0.0222731 + ], + [ + 109.3548139, + -0.0222737 + ], + [ + 109.3549651, + -0.0222757 + ], + [ + 109.3551931, + -0.0222727 + ], + [ + 109.3553761, + -0.0222774 + ], + [ + 109.355469, + -0.0222724 + ], + [ + 109.3555773, + -0.0222684 + ], + [ + 109.3558192, + -0.0222631 + ] + ] + }, + "id": "way/283892420" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892430", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3664389, + -0.0268489 + ], + [ + 109.3655893, + -0.0266142 + ], + [ + 109.365478, + -0.0265901 + ], + [ + 109.3654307, + -0.0265907 + ], + [ + 109.3651817, + -0.0265912 + ], + [ + 109.3647393, + -0.0265919 + ], + [ + 109.3643155, + -0.0265927 + ], + [ + 109.3639375, + -0.0265934 + ], + [ + 109.3639121, + -0.0265932 + ], + [ + 109.3633507, + -0.0265908 + ] + ] + }, + "id": "way/283892430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3742763, + -0.0584916 + ], + [ + 109.3742368, + -0.0585352 + ], + [ + 109.3742012, + -0.0585667 + ], + [ + 109.3741368, + -0.058615 + ], + [ + 109.3739612, + -0.0587276 + ], + [ + 109.3738022, + -0.0588275 + ], + [ + 109.3737285, + -0.0588751 + ], + [ + 109.3736534, + -0.0589151 + ], + [ + 109.3734697, + -0.0589992 + ], + [ + 109.3732873, + -0.0590783 + ], + [ + 109.3731941, + -0.0591145 + ], + [ + 109.3730881, + -0.0591595 + ], + [ + 109.3729788, + -0.0592272 + ], + [ + 109.3727092, + -0.0594223 + ], + [ + 109.3723948, + -0.0596845 + ], + [ + 109.3721446, + -0.0598877 + ], + [ + 109.3720957, + -0.0599199 + ], + [ + 109.3720729, + -0.0599205 + ], + [ + 109.3720568, + -0.0599044 + ], + [ + 109.3718499, + -0.0596489 + ], + [ + 109.3715505, + -0.0592922 + ], + [ + 109.3712922, + -0.0589733 + ], + [ + 109.3711395, + -0.0587994 + ], + [ + 109.371002, + -0.0586311 + ], + [ + 109.3707712, + -0.0583283 + ], + [ + 109.3706321, + -0.0581459 + ], + [ + 109.3705729, + -0.058051 + ], + [ + 109.3705353, + -0.0579799 + ], + [ + 109.3704602, + -0.0578123 + ], + [ + 109.3703881, + -0.057654 + ], + [ + 109.3702892, + -0.0574949 + ], + [ + 109.3700737, + -0.0571354 + ], + [ + 109.3699361, + -0.0568759 + ], + [ + 109.3697581, + -0.0565343 + ], + [ + 109.3696206, + -0.0562826 + ], + [ + 109.3695704, + -0.0561928 + ], + [ + 109.3695022, + -0.0560586 + ], + [ + 109.3694074, + -0.0558724 + ], + [ + 109.3693189, + -0.0557162 + ], + [ + 109.3691835, + -0.0555083 + ], + [ + 109.3690118, + -0.0552803 + ], + [ + 109.3690065, + -0.0552778 + ], + [ + 109.3688732, + -0.0551144 + ], + [ + 109.3686573, + -0.0548503 + ], + [ + 109.3684816, + -0.0546046 + ], + [ + 109.3683634, + -0.0544294 + ], + [ + 109.3679885, + -0.0538587 + ], + [ + 109.3678759, + -0.0536864 + ], + [ + 109.3677948, + -0.0535771 + ], + [ + 109.3677547, + -0.0535252 + ], + [ + 109.3677418, + -0.0535084 + ], + [ + 109.3676493, + -0.0533987 + ], + [ + 109.3676318, + -0.0533828 + ], + [ + 109.3676184, + -0.0533823 + ], + [ + 109.3675973, + -0.0533862 + ], + [ + 109.367579, + -0.0533862 + ], + [ + 109.3675586, + -0.0533805 + ], + [ + 109.3675058, + -0.0533096 + ] + ] + }, + "id": "way/283892431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892437", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360188, + -0.0251544 + ], + [ + 109.3599455, + -0.0251882 + ], + [ + 109.3598814, + -0.0251925 + ], + [ + 109.3598444, + -0.025195 + ], + [ + 109.3593817, + -0.025251 + ], + [ + 109.3585532, + -0.025292 + ] + ] + }, + "id": "way/283892437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892438", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793102, + -0.0573091 + ], + [ + 109.3788529, + -0.0576352 + ], + [ + 109.3778349, + -0.058326 + ], + [ + 109.3768281, + -0.0589903 + ] + ] + }, + "id": "way/283892438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892439", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638412, + -0.0295103 + ], + [ + 109.364035, + -0.0297739 + ], + [ + 109.3642509, + -0.0300729 + ], + [ + 109.3646696, + -0.0306579 + ] + ] + }, + "id": "way/283892439" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892441", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373811, + -0.0547506 + ], + [ + 109.3736976, + -0.0548163 + ], + [ + 109.3734743, + -0.0549363 + ], + [ + 109.373304, + -0.0550242 + ], + [ + 109.3731122, + -0.0551254 + ], + [ + 109.3729164, + -0.0552227 + ], + [ + 109.3726301, + -0.0553668 + ], + [ + 109.3724564, + -0.055458 + ] + ] + }, + "id": "way/283892441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892444", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3731907, + -0.053783 + ], + [ + 109.3731196, + -0.0538185 + ], + [ + 109.3730539, + -0.0538514 + ], + [ + 109.3729372, + -0.0539137 + ], + [ + 109.3726315, + -0.054076 + ], + [ + 109.3722399, + -0.0542986 + ], + [ + 109.3718778, + -0.0544944 + ], + [ + 109.3717785, + -0.0545508 + ], + [ + 109.3715787, + -0.0546554 + ], + [ + 109.3713333, + -0.0547774 + ], + [ + 109.3712233, + -0.0548351 + ], + [ + 109.3710718, + -0.0549102 + ], + [ + 109.3708451, + -0.0550429 + ], + [ + 109.3705313, + -0.0552066 + ], + [ + 109.3702027, + -0.0553983 + ], + [ + 109.3698862, + -0.0555847 + ], + [ + 109.3694074, + -0.0558724 + ] + ] + }, + "id": "way/283892444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892446", + "highway": "residential", + "name": "Gang Kurnia Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585981, + -0.0373933 + ], + [ + 109.3570315, + -0.0388432 + ], + [ + 109.3569546, + -0.0388551 + ], + [ + 109.3569104, + -0.0388223 + ], + [ + 109.3563974, + -0.0392513 + ] + ] + }, + "id": "way/283892446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892449", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496678, + -0.0817081 + ], + [ + 109.3486378, + -0.0808203 + ], + [ + 109.3473612, + -0.0797445 + ] + ] + }, + "id": "way/283892449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892450", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362397, + -0.0375102 + ], + [ + 109.3625827, + -0.0378398 + ] + ] + }, + "id": "way/283892450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892451", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635437, + -0.0296471 + ], + [ + 109.3635498, + -0.0296554 + ], + [ + 109.3644132, + -0.0308439 + ], + [ + 109.3648665, + -0.0315848 + ], + [ + 109.3650145, + -0.0318146 + ], + [ + 109.3652621, + -0.0321972 + ], + [ + 109.3658622, + -0.0318251 + ] + ] + }, + "id": "way/283892451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892452", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356693, + -0.0403206 + ], + [ + 109.3570949, + -0.0399302 + ] + ] + }, + "id": "way/283892452" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892455", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363233, + -0.029849 + ], + [ + 109.363248, + -0.0298679 + ], + [ + 109.3640784, + -0.0310587 + ] + ] + }, + "id": "way/283892455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892458", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3659823, + -0.0410914 + ], + [ + 109.366164, + -0.0414401 + ], + [ + 109.3661815, + -0.0414813 + ], + [ + 109.3662982, + -0.0416726 + ] + ] + }, + "id": "way/283892458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892459", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569364, + -0.0289186 + ], + [ + 109.3567221, + -0.0290655 + ], + [ + 109.3564088, + -0.0292669 + ], + [ + 109.3559946, + -0.0295688 + ], + [ + 109.3557617, + -0.0297095 + ], + [ + 109.3555136, + -0.0298999 + ], + [ + 109.3554462, + -0.0299433 + ], + [ + 109.3553741, + -0.0299898 + ], + [ + 109.3547846, + -0.0304009 + ], + [ + 109.3535021, + -0.0312952 + ] + ] + }, + "id": "way/283892459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892460", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3607543, + -0.0244602 + ], + [ + 109.3613634, + -0.0243751 + ], + [ + 109.3612991, + -0.025641 + ] + ] + }, + "id": "way/283892460" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892464", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3607543, + -0.0244602 + ], + [ + 109.360813, + -0.0256523 + ] + ] + }, + "id": "way/283892464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892465", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540954, + -0.0273794 + ], + [ + 109.3548016, + -0.0273978 + ], + [ + 109.3550143, + -0.0274045 + ], + [ + 109.3556419, + -0.0274265 + ], + [ + 109.355896, + -0.0274294 + ], + [ + 109.3561134, + -0.0274367 + ], + [ + 109.3562254, + -0.0274399 + ], + [ + 109.3565147, + -0.0274481 + ], + [ + 109.3565489, + -0.0274491 + ], + [ + 109.3568345, + -0.0274517 + ], + [ + 109.3572254, + -0.0274638 + ], + [ + 109.3575711, + -0.0274687 + ], + [ + 109.3576046, + -0.0274694 + ], + [ + 109.358098, + -0.0274841 + ], + [ + 109.3583546, + -0.0274918 + ], + [ + 109.3584112, + -0.0269804 + ], + [ + 109.3584222, + -0.0267619 + ], + [ + 109.358426, + -0.026709 + ], + [ + 109.3584187, + -0.0262468 + ], + [ + 109.3584211, + -0.0257539 + ] + ] + }, + "id": "way/283892465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892466", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511294, + -0.0313474 + ], + [ + 109.3518073, + -0.0309769 + ], + [ + 109.352726, + -0.0304969 + ], + [ + 109.3527669, + -0.0304755 + ] + ] + }, + "id": "way/283892466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892468", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3700737, + -0.0571354 + ], + [ + 109.3703516, + -0.0569929 + ], + [ + 109.3708719, + -0.0567233 + ], + [ + 109.3713413, + -0.0564833 + ], + [ + 109.3718348, + -0.0562231 + ], + [ + 109.3722707, + -0.0559844 + ], + [ + 109.3726207, + -0.055798 + ], + [ + 109.3729386, + -0.055633 + ], + [ + 109.3733221, + -0.055448 + ], + [ + 109.3735944, + -0.0553112 + ], + [ + 109.373876, + -0.0551583 + ], + [ + 109.374038, + -0.0550673 + ] + ] + }, + "id": "way/283892468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892469", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3694071, + -0.0457279 + ], + [ + 109.3690386, + -0.0459315 + ], + [ + 109.3685954, + -0.0461595 + ], + [ + 109.3678894, + -0.0465143 + ], + [ + 109.3674499, + -0.0466863 + ] + ] + }, + "id": "way/283892469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892471", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493354, + -0.0823756 + ], + [ + 109.3469195, + -0.080578 + ] + ] + }, + "id": "way/283892471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892472", + "highway": "residential", + "name": "Gang Karya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561855, + -0.0390278 + ], + [ + 109.3578747, + -0.0376909 + ], + [ + 109.3581717, + -0.0374611 + ], + [ + 109.3584754, + -0.0372344 + ] + ] + }, + "id": "way/283892472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892473", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522797, + -0.028049 + ], + [ + 109.3514413, + -0.0287988 + ] + ] + }, + "id": "way/283892473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892478", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544602, + -0.0227713 + ], + [ + 109.3544594, + -0.0233893 + ] + ] + }, + "id": "way/283892478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892479", + "highway": "residential", + "name": "Gang Abdullah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3671342, + -0.032057 + ], + [ + 109.369148, + -0.0303742 + ], + [ + 109.3694108, + -0.0301545 + ], + [ + 109.3695841, + -0.0300097 + ] + ] + }, + "id": "way/283892479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633302, + -0.036877 + ], + [ + 109.363547, + -0.0372121 + ] + ] + }, + "id": "way/283892480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892485", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616566, + -0.044533 + ], + [ + 109.3619858, + -0.0441921 + ], + [ + 109.3622339, + -0.0439534 + ], + [ + 109.36224, + -0.0439474 + ], + [ + 109.3623814, + -0.0438085 + ], + [ + 109.3628447, + -0.043317 + ], + [ + 109.3630298, + -0.0431165 + ], + [ + 109.3632129, + -0.0429113 + ], + [ + 109.3635754, + -0.0425085 + ] + ] + }, + "id": "way/283892485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892489", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582989, + -0.0399765 + ], + [ + 109.3595854, + -0.0385105 + ] + ] + }, + "id": "way/283892489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892490", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594316, + -0.0383623 + ], + [ + 109.3615364, + -0.0369622 + ], + [ + 109.3634459, + -0.0357077 + ] + ] + }, + "id": "way/283892490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892492", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556149, + -0.0242948 + ], + [ + 109.355677, + -0.0242886 + ], + [ + 109.3562932, + -0.0242939 + ] + ] + }, + "id": "way/283892492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892493", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670011, + -0.0434407 + ], + [ + 109.3671916, + -0.0437518 + ] + ] + }, + "id": "way/283892493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892494", + "highway": "residential", + "motor_vehicle": "destination", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3676865, + -0.0276182 + ], + [ + 109.368065, + -0.0255279 + ] + ] + }, + "id": "way/283892494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892501", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361382, + -0.03816 + ], + [ + 109.3615893, + -0.0384635 + ] + ] + }, + "id": "way/283892501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892502", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643512, + -0.0290791 + ], + [ + 109.3652061, + -0.0303197 + ] + ] + }, + "id": "way/283892502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892504", + "highway": "residential", + "motor_vehicle": "destination", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3669264, + -0.0268681 + ], + [ + 109.3671758, + -0.0255252 + ] + ] + }, + "id": "way/283892504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892508", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571845, + -0.0416259 + ], + [ + 109.357468, + -0.0413977 + ], + [ + 109.3580685, + -0.0408619 + ] + ] + }, + "id": "way/283892508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892509", + "highway": "residential", + "name": "Gang Arya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3644132, + -0.0370721 + ], + [ + 109.3635401, + -0.0376327 + ], + [ + 109.3630761, + -0.0379251 + ], + [ + 109.3627086, + -0.0381377 + ], + [ + 109.3624035, + -0.0383234 + ], + [ + 109.3621574, + -0.0384857 + ], + [ + 109.3619201, + -0.0386466 + ], + [ + 109.361558, + -0.0388987 + ], + [ + 109.3606205, + -0.0395317 + ] + ] + }, + "id": "way/283892509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892513", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3657261, + -0.0398804 + ], + [ + 109.36582, + -0.040032 + ], + [ + 109.3659035, + -0.0401756 + ] + ] + }, + "id": "way/283892513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892516", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508952, + -0.0280536 + ], + [ + 109.351583, + -0.0274996 + ] + ] + }, + "id": "way/283892516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892528", + "highway": "residential", + "name": "Jalan Sami Sumping" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3668744, + -0.0460079 + ], + [ + 109.3674749, + -0.0457142 + ], + [ + 109.3681025, + -0.0453991 + ], + [ + 109.3687168, + -0.0450987 + ], + [ + 109.3694051, + -0.0447435 + ] + ] + }, + "id": "way/283892528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892531", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512254, + -0.0285151 + ], + [ + 109.3520825, + -0.0277862 + ] + ] + }, + "id": "way/283892531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3673868, + -0.0272258 + ], + [ + 109.365085, + -0.0293229 + ] + ] + }, + "id": "way/283892542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892546", + "highway": "residential", + "motor_vehicle": "destination", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3676519, + -0.0255266 + ], + [ + 109.3673361, + -0.0271624 + ] + ] + }, + "id": "way/283892546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892553", + "highway": "residential", + "name": "Gang Suka Maju" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3750484, + -0.0541422 + ], + [ + 109.3739075, + -0.0548786 + ] + ] + }, + "id": "way/283892553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892554", + "highway": "residential", + "name": "Gang Permata Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609264, + -0.0353323 + ], + [ + 109.3582964, + -0.0370071 + ] + ] + }, + "id": "way/283892554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892558", + "highway": "residential", + "name": "Gang Orde Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681535, + -0.0219378 + ], + [ + 109.3680543, + -0.0222315 + ], + [ + 109.3679644, + -0.0224622 + ], + [ + 109.3678451, + -0.0227948 + ], + [ + 109.3677673, + -0.023016 + ], + [ + 109.3676881, + -0.0232494 + ], + [ + 109.3676117, + -0.0234438 + ], + [ + 109.3675326, + -0.0236316 + ], + [ + 109.3674333, + -0.0238757 + ], + [ + 109.3673059, + -0.0241787 + ], + [ + 109.3672201, + -0.0244282 + ], + [ + 109.3671567, + -0.0246458 + ], + [ + 109.3669277, + -0.0255279 + ] + ] + }, + "id": "way/283892558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892559", + "highway": "living_street", + "name": "Gang Trisakti" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3773025, + -0.0521609 + ], + [ + 109.3771543, + -0.0522635 + ], + [ + 109.3769116, + -0.0524264 + ], + [ + 109.3767312, + -0.0525478 + ], + [ + 109.3765723, + -0.0526625 + ], + [ + 109.3763376, + -0.0528281 + ], + [ + 109.3760882, + -0.0529971 + ], + [ + 109.3758991, + -0.0531225 + ], + [ + 109.3756241, + -0.0533122 + ], + [ + 109.3751889, + -0.0535999 + ], + [ + 109.3737659, + -0.0545465 + ], + [ + 109.3737029, + -0.0545887 + ], + [ + 109.3734334, + -0.0547372 + ], + [ + 109.3731616, + -0.0548894 + ], + [ + 109.373069, + -0.054941 + ], + [ + 109.372962, + -0.0549987 + ], + [ + 109.372831, + -0.0550701 + ] + ] + }, + "id": "way/283892559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892560", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3662518, + -0.0237966 + ], + [ + 109.3662351, + -0.0238871 + ], + [ + 109.3661673, + -0.0241902 + ], + [ + 109.3661432, + -0.0242499 + ], + [ + 109.3661204, + -0.0242767 + ], + [ + 109.3660929, + -0.0242753 + ], + [ + 109.3659152, + -0.0242317 + ], + [ + 109.3657898, + -0.0242224 + ], + [ + 109.3657516, + -0.0242237 + ], + [ + 109.3657154, + -0.0242364 + ], + [ + 109.3656966, + -0.0242452 + ], + [ + 109.3656839, + -0.0242814 + ], + [ + 109.3655491, + -0.0255641 + ] + ] + }, + "id": "way/283892560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892562", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682919, + -0.0426113 + ], + [ + 109.3684705, + -0.0428937 + ] + ] + }, + "id": "way/283892562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892566", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3711939, + -0.0553186 + ], + [ + 109.3712847, + -0.0552716 + ], + [ + 109.3714077, + -0.0552045 + ], + [ + 109.3715234, + -0.0551412 + ], + [ + 109.3716709, + -0.055057 + ], + [ + 109.3717668, + -0.0550037 + ], + [ + 109.3719482, + -0.0549062 + ], + [ + 109.3720927, + -0.05483 + ], + [ + 109.3721705, + -0.0547861 + ], + [ + 109.3722938, + -0.054716 + ], + [ + 109.3726522, + -0.0545213 + ], + [ + 109.3730365, + -0.0543067 + ], + [ + 109.3733912, + -0.0541035 + ] + ] + }, + "id": "way/283892566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892569", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593514, + -0.0267438 + ], + [ + 109.3592955, + -0.0257049 + ] + ] + }, + "id": "way/283892569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892570", + "highway": "residential", + "name": "Gang Mandala" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3653846, + -0.0299972 + ], + [ + 109.3665925, + -0.0289035 + ], + [ + 109.367802, + -0.0277869 + ] + ] + }, + "id": "way/283892570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892576", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496565, + -0.0286378 + ], + [ + 109.3492148, + -0.0282422 + ], + [ + 109.3489662, + -0.0280195 + ], + [ + 109.3488603, + -0.0279247 + ], + [ + 109.3486642, + -0.0277432 + ], + [ + 109.3483969, + -0.0275096 + ] + ] + }, + "id": "way/283892576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892577", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651557, + -0.0296676 + ], + [ + 109.3663779, + -0.0285628 + ], + [ + 109.3675831, + -0.0274695 + ] + ] + }, + "id": "way/283892577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892592", + "highway": "residential", + "name": "Gang Bunga Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632486, + -0.0444911 + ], + [ + 109.3631364, + -0.0445803 + ], + [ + 109.3630104, + -0.044697 + ], + [ + 109.3627395, + -0.0449297 + ], + [ + 109.3623075, + -0.0452789 + ] + ] + }, + "id": "way/283892592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892593", + "highway": "residential", + "name": "G. Mutiara" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585103, + -0.0372827 + ], + [ + 109.3613147, + -0.0354946 + ], + [ + 109.3619791, + -0.035039 + ] + ] + }, + "id": "way/283892593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892598", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542688, + -0.0243334 + ], + [ + 109.3542503, + -0.0244819 + ], + [ + 109.3542302, + -0.0246093 + ], + [ + 109.3541964, + -0.0248886 + ], + [ + 109.3540961, + -0.0255749 + ] + ] + }, + "id": "way/283892598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892599", + "highway": "residential", + "name": "Gang Suka Mulya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3780307, + -0.0524036 + ], + [ + 109.3778484, + -0.0525337 + ], + [ + 109.3775104, + -0.0527751 + ], + [ + 109.3772918, + -0.0529294 + ], + [ + 109.3770061, + -0.0531252 + ], + [ + 109.3766226, + -0.053388 + ], + [ + 109.3761653, + -0.0536898 + ], + [ + 109.3757106, + -0.0539701 + ], + [ + 109.3754143, + -0.0541726 + ], + [ + 109.3750039, + -0.0544421 + ], + [ + 109.3746243, + -0.0546902 + ], + [ + 109.374038, + -0.0550673 + ] + ] + }, + "id": "way/283892599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892601", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588328, + -0.0376663 + ], + [ + 109.3602559, + -0.0367583 + ], + [ + 109.3602863, + -0.0367406 + ], + [ + 109.3602977, + -0.0367355 + ], + [ + 109.3603064, + -0.0367334 + ], + [ + 109.3603155, + -0.0367327 + ], + [ + 109.3603255, + -0.0367328 + ], + [ + 109.3603412, + -0.0367377 + ], + [ + 109.3603671, + -0.0367519 + ], + [ + 109.3603782, + -0.0367577 + ], + [ + 109.3603889, + -0.0367624 + ], + [ + 109.3604011, + -0.0367655 + ], + [ + 109.3604106, + -0.0367669 + ], + [ + 109.3604203, + -0.0367661 + ], + [ + 109.3604305, + -0.0367639 + ], + [ + 109.3604381, + -0.0367613 + ], + [ + 109.3604516, + -0.036755 + ], + [ + 109.3606326, + -0.0366457 + ], + [ + 109.3630359, + -0.0349867 + ] + ] + }, + "id": "way/283892601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892602", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619588, + -0.0249329 + ], + [ + 109.3619483, + -0.0256289 + ] + ] + }, + "id": "way/283892602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892603", + "highway": "residential", + "name": "Gang Suka Bersama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3774704, + -0.0512987 + ], + [ + 109.3763289, + -0.0520751 + ], + [ + 109.3761572, + -0.0521944 + ], + [ + 109.3760057, + -0.0523057 + ], + [ + 109.375834, + -0.0524305 + ], + [ + 109.3755417, + -0.0526397 + ], + [ + 109.375264, + -0.0528395 + ], + [ + 109.375075, + -0.0529656 + ], + [ + 109.3746542, + -0.0532601 + ], + [ + 109.3744111, + -0.0534175 + ], + [ + 109.3740383, + -0.0536737 + ], + [ + 109.3736815, + -0.0539151 + ], + [ + 109.3735327, + -0.054017 + ], + [ + 109.3733912, + -0.0541035 + ] + ] + }, + "id": "way/283892603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892606", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550739, + -0.0295443 + ], + [ + 109.3549634, + -0.0296235 + ], + [ + 109.3545283, + -0.0299064 + ], + [ + 109.3531397, + -0.0308878 + ] + ] + }, + "id": "way/283892606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892607", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3755108, + -0.05983 + ], + [ + 109.3756308, + -0.0597656 + ], + [ + 109.375767, + -0.0596899 + ], + [ + 109.3759534, + -0.0595739 + ], + [ + 109.3761572, + -0.0594371 + ], + [ + 109.3763959, + -0.0592781 + ], + [ + 109.3766461, + -0.0591132 + ], + [ + 109.3768281, + -0.0589903 + ] + ] + }, + "id": "way/283892607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892609", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643155, + -0.0265927 + ], + [ + 109.3643099, + -0.0274886 + ] + ] + }, + "id": "way/283892609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892610", + "highway": "residential", + "name": "Gang Karya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3581214, + -0.0367885 + ], + [ + 109.3557523, + -0.0384763 + ] + ] + }, + "id": "way/283892610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485508, + -0.0293728 + ], + [ + 109.3487949, + -0.0292191 + ], + [ + 109.3490991, + -0.0290657 + ], + [ + 109.3492308, + -0.0289993 + ] + ] + }, + "id": "way/283892611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567951, + -0.0303473 + ], + [ + 109.3561942, + -0.0307287 + ], + [ + 109.3561754, + -0.0307341 + ], + [ + 109.3561634, + -0.0307334 + ], + [ + 109.3561523, + -0.0307281 + ], + [ + 109.3561392, + -0.0307157 + ], + [ + 109.3560772, + -0.0306322 + ], + [ + 109.3560692, + -0.0306258 + ], + [ + 109.3560628, + -0.0306206 + ], + [ + 109.3560547, + -0.0306175 + ], + [ + 109.356044, + -0.0306161 + ], + [ + 109.3560232, + -0.0306181 + ], + [ + 109.3559733, + -0.0306426 + ], + [ + 109.3559686, + -0.0306432 + ], + [ + 109.3559568, + -0.0306395 + ], + [ + 109.3559505, + -0.0306335 + ], + [ + 109.3559421, + -0.0306245 + ], + [ + 109.3558398, + -0.0304798 + ], + [ + 109.3558076, + -0.0304377 + ], + [ + 109.3557788, + -0.0304008 + ], + [ + 109.3557591, + -0.0303834 + ], + [ + 109.3543747, + -0.0312415 + ], + [ + 109.3537674, + -0.0316087 + ] + ] + }, + "id": "way/283892614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892617", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510394, + -0.025758 + ], + [ + 109.3509898, + -0.0257829 + ], + [ + 109.3505111, + -0.0260925 + ], + [ + 109.3504611, + -0.0261338 + ], + [ + 109.3503777, + -0.0261979 + ] + ] + }, + "id": "way/283892617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892618", + "highway": "residential", + "name": "Gang Hijrah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621136, + -0.0450678 + ], + [ + 109.3623298, + -0.0448519 + ], + [ + 109.3624464, + -0.0447305 + ], + [ + 109.3626007, + -0.0445904 + ], + [ + 109.3627267, + -0.0444817 + ], + [ + 109.3628729, + -0.044349 + ], + [ + 109.3630553, + -0.0442041 + ], + [ + 109.3631257, + -0.0441371 + ], + [ + 109.3632243, + -0.0440305 + ] + ] + }, + "id": "way/283892618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892619", + "highway": "residential", + "name": "Jalan Kompleks Citra Permata" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3677283, + -0.0470687 + ], + [ + 109.3684177, + -0.0466651 + ], + [ + 109.3688482, + -0.0464123 + ], + [ + 109.3692224, + -0.0461682 + ], + [ + 109.3693766, + -0.046075 + ], + [ + 109.369622, + -0.0459208 + ], + [ + 109.3698849, + -0.0457598 + ], + [ + 109.3700713, + -0.0456539 + ], + [ + 109.3702356, + -0.0455553 + ], + [ + 109.3707262, + -0.0452678 + ] + ] + }, + "id": "way/283892619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3695022, + -0.0560586 + ], + [ + 109.3698607, + -0.0558422 + ], + [ + 109.3701404, + -0.0556759 + ], + [ + 109.3703295, + -0.0555653 + ], + [ + 109.3705085, + -0.0554667 + ], + [ + 109.3706916, + -0.0553682 + ], + [ + 109.3708377, + -0.0552864 + ], + [ + 109.3709712, + -0.0552106 + ] + ] + }, + "id": "way/283892620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892622", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619231, + -0.0315746 + ], + [ + 109.3616191, + -0.0317872 + ], + [ + 109.3613215, + -0.0319954 + ], + [ + 109.3610713, + -0.0321705 + ] + ] + }, + "id": "way/283892622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892623", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639523, + -0.0429086 + ], + [ + 109.3639733, + -0.0428727 + ], + [ + 109.3641353, + -0.0427391 + ], + [ + 109.3646931, + -0.042304 + ], + [ + 109.364723, + -0.0422951 + ], + [ + 109.3647639, + -0.0422984 + ], + [ + 109.3648352, + -0.0423303 + ], + [ + 109.3649985, + -0.0425077 + ] + ] + }, + "id": "way/283892623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892625", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725664, + -0.052926 + ], + [ + 109.3724625, + -0.0529991 + ], + [ + 109.3721621, + -0.0531969 + ], + [ + 109.371983, + -0.0533223 + ], + [ + 109.3716679, + -0.0535342 + ], + [ + 109.3714801, + -0.0536569 + ], + [ + 109.3712421, + -0.0538098 + ], + [ + 109.3710597, + -0.0539345 + ], + [ + 109.3709618, + -0.0540049 + ], + [ + 109.3708364, + -0.0540961 + ], + [ + 109.3706902, + -0.0542162 + ], + [ + 109.3706265, + -0.0542604 + ], + [ + 109.3705465, + -0.0543149 + ] + ] + }, + "id": "way/283892625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892628", + "highway": "residential", + "name": "Jalan Swadiri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570949, + -0.0399302 + ], + [ + 109.3576205, + -0.0393158 + ], + [ + 109.3580034, + -0.0389176 + ], + [ + 109.3582427, + -0.0386855 + ], + [ + 109.3585029, + -0.0384401 + ], + [ + 109.3590427, + -0.0379231 + ] + ] + }, + "id": "way/283892628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892629", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485409, + -0.0262508 + ], + [ + 109.3484876, + -0.0262233 + ], + [ + 109.34839, + -0.0266048 + ], + [ + 109.3484416, + -0.026585 + ], + [ + 109.3485409, + -0.0262508 + ], + [ + 109.3486327, + -0.0259422 + ], + [ + 109.3486605, + -0.0258247 + ], + [ + 109.3487028, + -0.0256924 + ], + [ + 109.3487323, + -0.0256285 + ], + [ + 109.3487618, + -0.025549 + ], + [ + 109.3488114, + -0.025369 + ], + [ + 109.34883, + -0.0253259 + ], + [ + 109.3488477, + -0.0253122 + ], + [ + 109.3488578, + -0.0253082 + ], + [ + 109.3489883, + -0.025307 + ], + [ + 109.3490134, + -0.0253073 + ], + [ + 109.3490244, + -0.0253126 + ], + [ + 109.3490306, + -0.025318 + ], + [ + 109.3490367, + -0.0253252 + ], + [ + 109.3490802, + -0.0254877 + ] + ] + }, + "id": "way/283892629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892634", + "highway": "residential", + "name": "Gang Kurnia Agung" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3590072, + -0.0378815 + ], + [ + 109.3603617, + -0.0370336 + ], + [ + 109.360384, + -0.0370228 + ], + [ + 109.3603934, + -0.0370186 + ], + [ + 109.3604065, + -0.0370148 + ], + [ + 109.3604225, + -0.0370133 + ], + [ + 109.3604354, + -0.0370136 + ], + [ + 109.3604494, + -0.0370165 + ], + [ + 109.3604587, + -0.0370191 + ], + [ + 109.3604676, + -0.0370239 + ], + [ + 109.3604795, + -0.0370333 + ], + [ + 109.3604908, + -0.0370457 + ], + [ + 109.3605057, + -0.0370653 + ], + [ + 109.360587, + -0.0371821 + ] + ] + }, + "id": "way/283892634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892636", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605882, + -0.0256628 + ], + [ + 109.3604677, + -0.0239664 + ], + [ + 109.3604446, + -0.0238471 + ], + [ + 109.3604287, + -0.0234337 + ], + [ + 109.3604175, + -0.0228302 + ], + [ + 109.3603517, + -0.021438 + ] + ] + }, + "id": "way/283892636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892644", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36804, + -0.0281113 + ], + [ + 109.3668392, + -0.0292173 + ], + [ + 109.3662657, + -0.0297394 + ], + [ + 109.3662541, + -0.02975 + ], + [ + 109.3656107, + -0.0303022 + ], + [ + 109.3658388, + -0.0305799 + ], + [ + 109.3660375, + -0.030791 + ] + ] + }, + "id": "way/283892644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892645", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580738, + -0.0367248 + ], + [ + 109.3607949, + -0.0349673 + ], + [ + 109.3608633, + -0.0349284 + ], + [ + 109.3608849, + -0.0349193 + ], + [ + 109.3609015, + -0.0349163 + ], + [ + 109.3609209, + -0.0349177 + ], + [ + 109.3609347, + -0.0349212 + ], + [ + 109.3609563, + -0.0349349 + ], + [ + 109.3609799, + -0.0349592 + ], + [ + 109.3610148, + -0.0350068 + ], + [ + 109.3611395, + -0.035204 + ] + ] + }, + "id": "way/283892645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892647", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575251, + -0.0403438 + ], + [ + 109.3572544, + -0.0405939 + ], + [ + 109.3570143, + -0.0408031 + ], + [ + 109.3565483, + -0.0412132 + ] + ] + }, + "id": "way/283892647" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892648", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3692596, + -0.029345 + ], + [ + 109.3692009, + -0.0294024 + ], + [ + 109.3691517, + -0.0294408 + ], + [ + 109.3684494, + -0.0299909 + ], + [ + 109.3683655, + -0.0300632 + ], + [ + 109.3679047, + -0.0304489 + ], + [ + 109.3674903, + -0.0307958 + ], + [ + 109.3666447, + -0.0314895 + ] + ] + }, + "id": "way/283892648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892649", + "highway": "residential", + "name": "Jalan H.A. Razak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649684, + -0.0393306 + ], + [ + 109.3644802, + -0.0396216 + ], + [ + 109.3637386, + -0.0400621 + ], + [ + 109.3633698, + -0.0402794 + ], + [ + 109.3631499, + -0.0404128 + ], + [ + 109.3629762, + -0.0405208 + ], + [ + 109.3626966, + -0.0407206 + ], + [ + 109.3624934, + -0.0408795 + ], + [ + 109.3623338, + -0.0410002 + ], + [ + 109.3622312, + -0.0410861 + ] + ] + }, + "id": "way/283892649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892654", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498336, + -0.0284012 + ], + [ + 109.3501568, + -0.0281298 + ], + [ + 109.350168, + -0.0281204 + ], + [ + 109.3504081, + -0.0279187 + ], + [ + 109.3506729, + -0.0276963 + ] + ] + }, + "id": "way/283892654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892656", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636226, + -0.0261571 + ], + [ + 109.3647474, + -0.0261717 + ], + [ + 109.3654772, + -0.0261905 + ] + ] + }, + "id": "way/283892656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892658", + "highway": "residential", + "name": "Gang Bunga Tanjung" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3677713, + -0.0399686 + ], + [ + 109.3666436, + -0.0406781 + ], + [ + 109.3659823, + -0.0410914 + ], + [ + 109.3655558, + -0.0413664 + ], + [ + 109.3650777, + -0.0416621 + ], + [ + 109.3643904, + -0.0420725 + ], + [ + 109.3639478, + -0.0423367 + ], + [ + 109.3636144, + -0.0425499 + ] + ] + }, + "id": "way/283892658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892659", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502136, + -0.025405 + ], + [ + 109.3502685, + -0.0256346 + ], + [ + 109.3503181, + -0.0257964 + ], + [ + 109.3503855, + -0.0259535 + ], + [ + 109.3504611, + -0.0261338 + ] + ] + }, + "id": "way/283892659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892660", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359897, + -0.0388226 + ], + [ + 109.3587658, + -0.0401875 + ], + [ + 109.3586337, + -0.0403364 + ], + [ + 109.3585646, + -0.0404195 + ], + [ + 109.3584895, + -0.0404987 + ], + [ + 109.358405, + -0.0405738 + ], + [ + 109.3583266, + -0.0406455 + ], + [ + 109.3580685, + -0.0408619 + ] + ] + }, + "id": "way/283892660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892661", + "highway": "residential", + "name": "Gang Mufakat", + "name:id": "Gang Mufakat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410283, + -0.059883 + ], + [ + 109.3405698, + -0.0604368 + ], + [ + 109.3405472, + -0.0604462 + ], + [ + 109.3405241, + -0.0604449 + ], + [ + 109.3405053, + -0.0604315 + ], + [ + 109.3401524, + -0.0600998 + ], + [ + 109.3399004, + -0.0598621 + ], + [ + 109.3397571, + -0.0597405 + ] + ] + }, + "id": "way/283892661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892670", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680052, + -0.0401042 + ], + [ + 109.3695094, + -0.038939 + ], + [ + 109.3698956, + -0.0386573 + ], + [ + 109.3702993, + -0.0383972 + ], + [ + 109.3716028, + -0.0375241 + ], + [ + 109.3721111, + -0.0371754 + ] + ] + }, + "id": "way/283892670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892671", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411441, + -0.094579 + ], + [ + 109.3426926, + -0.0954034 + ], + [ + 109.3443285, + -0.096256 + ] + ] + }, + "id": "way/283892671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892674", + "highway": "residential", + "name": "Gang Suka Ramah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3765351, + -0.0585891 + ], + [ + 109.3767714, + -0.0584306 + ], + [ + 109.3772328, + -0.0581261 + ], + [ + 109.3776767, + -0.0578338 + ], + [ + 109.3781729, + -0.0575039 + ], + [ + 109.3791237, + -0.0568687 + ], + [ + 109.3794416, + -0.0566395 + ], + [ + 109.3796723, + -0.0564705 + ], + [ + 109.3803099, + -0.0559781 + ] + ] + }, + "id": "way/283892674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892675", + "highway": "residential", + "name": "Gang Taman Siswa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.366299, + -0.0453961 + ], + [ + 109.366968, + -0.0450101 + ], + [ + 109.3676707, + -0.0446159 + ], + [ + 109.36869, + -0.0440271 + ], + [ + 109.3689582, + -0.0438635 + ], + [ + 109.3692666, + -0.043657 + ], + [ + 109.3693099, + -0.0436268 + ], + [ + 109.3696421, + -0.0433955 + ], + [ + 109.3700713, + -0.0431098 + ], + [ + 109.3703962, + -0.0428845 + ] + ] + }, + "id": "way/283892675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892677", + "highway": "residential", + "name": "Gang Permata Kapuas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3801784, + -0.0553204 + ], + [ + 109.3798667, + -0.0555646 + ], + [ + 109.379506, + -0.0558731 + ], + [ + 109.3793839, + -0.0559616 + ], + [ + 109.3792431, + -0.0560649 + ], + [ + 109.3788287, + -0.0563599 + ], + [ + 109.3782145, + -0.0567797 + ], + [ + 109.377442, + -0.0572987 + ], + [ + 109.3771094, + -0.0575186 + ], + [ + 109.3766829, + -0.0577949 + ], + [ + 109.3761674, + -0.0581259 + ] + ] + }, + "id": "way/283892677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892679", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645842, + -0.0289084 + ], + [ + 109.364455, + -0.0290044 + ], + [ + 109.3643512, + -0.0290791 + ], + [ + 109.3643143, + -0.0291053 + ], + [ + 109.3640645, + -0.0292777 + ] + ] + }, + "id": "way/283892679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892680", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gading Victoria" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528713, + -0.0832607 + ], + [ + 109.3528398, + -0.0832387 + ], + [ + 109.352785, + -0.083204 + ] + ] + }, + "id": "way/283892680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892683", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3686653, + -0.0292512 + ], + [ + 109.3685675, + -0.02932 + ], + [ + 109.3680624, + -0.0296987 + ], + [ + 109.3677309, + -0.029971 + ], + [ + 109.3676297, + -0.0300486 + ], + [ + 109.3676001, + -0.0300714 + ], + [ + 109.3675299, + -0.0301252 + ], + [ + 109.3673435, + -0.0302915 + ], + [ + 109.3669988, + -0.030596 + ], + [ + 109.366342, + -0.0311456 + ] + ] + }, + "id": "way/283892683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892687", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562936, + -0.0243764 + ], + [ + 109.3564613, + -0.024394 + ], + [ + 109.3565457, + -0.0244031 + ], + [ + 109.3566361, + -0.0244135 + ], + [ + 109.3567974, + -0.0244279 + ], + [ + 109.3569888, + -0.0244515 + ] + ] + }, + "id": "way/283892687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892689", + "highway": "residential", + "name": "Gang Famili" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3697092, + -0.0541511 + ], + [ + 109.3696032, + -0.0542356 + ], + [ + 109.3694953, + -0.0543194 + ], + [ + 109.3693639, + -0.0544079 + ], + [ + 109.3691982, + -0.0545092 + ], + [ + 109.3690272, + -0.0546185 + ], + [ + 109.3688127, + -0.0547539 + ], + [ + 109.3686573, + -0.0548503 + ] + ] + }, + "id": "way/283892689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892690", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362081, + -0.0409332 + ], + [ + 109.3622144, + -0.0408286 + ], + [ + 109.3623948, + -0.0406985 + ], + [ + 109.3625779, + -0.0405604 + ], + [ + 109.3627428, + -0.040443 + ], + [ + 109.3629815, + -0.0402807 + ], + [ + 109.3630888, + -0.0402103 + ], + [ + 109.3633034, + -0.0400789 + ], + [ + 109.3635086, + -0.0399696 + ], + [ + 109.3640725, + -0.039629 + ], + [ + 109.3646076, + -0.0393091 + ], + [ + 109.3656743, + -0.03865 + ], + [ + 109.3660883, + -0.03832 + ], + [ + 109.3661661, + -0.038258 + ] + ] + }, + "id": "way/283892690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892695", + "highway": "residential", + "name": "Jalan Tanjung Raya 2 Parit Mayor" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3757354, + -0.0575334 + ], + [ + 109.3755826, + -0.0576353 + ], + [ + 109.3754136, + -0.0577446 + ], + [ + 109.3752412, + -0.0578593 + ], + [ + 109.3749757, + -0.0580383 + ], + [ + 109.3747524, + -0.0581798 + ], + [ + 109.3745385, + -0.0583179 + ], + [ + 109.3743782, + -0.0584198 + ], + [ + 109.3742763, + -0.0584916 + ], + [ + 109.3740698, + -0.0581664 + ], + [ + 109.3739593, + -0.0580015 + ], + [ + 109.3738874, + -0.0578888 + ], + [ + 109.3738921, + -0.057864 + ], + [ + 109.3739149, + -0.0578398 + ], + [ + 109.3741845, + -0.0576601 + ], + [ + 109.3744802, + -0.057461 + ], + [ + 109.3747249, + -0.057296 + ], + [ + 109.3749408, + -0.0571579 + ], + [ + 109.3752976, + -0.0569198 + ] + ] + }, + "id": "way/283892695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892699", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600512, + -0.0389725 + ], + [ + 109.361382, + -0.03816 + ], + [ + 109.362397, + -0.0375102 + ], + [ + 109.3633302, + -0.036877 + ], + [ + 109.364026, + -0.0364239 + ], + [ + 109.3641734, + -0.0363302 + ] + ] + }, + "id": "way/283892699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892701", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3707712, + -0.0583283 + ], + [ + 109.3708941, + -0.0582562 + ], + [ + 109.3711583, + -0.0581074 + ], + [ + 109.3713742, + -0.0579887 + ], + [ + 109.3714499, + -0.0579391 + ], + [ + 109.371464, + -0.0579256 + ], + [ + 109.3714593, + -0.0579055 + ], + [ + 109.3714251, + -0.0578284 + ], + [ + 109.3714258, + -0.0578143 + ], + [ + 109.3714385, + -0.0577949 + ], + [ + 109.371688, + -0.0576454 + ], + [ + 109.3719435, + -0.0574797 + ], + [ + 109.3721453, + -0.0573584 + ], + [ + 109.3723659, + -0.0572296 + ], + [ + 109.3727025, + -0.0570144 + ], + [ + 109.3729869, + -0.0568119 + ] + ] + }, + "id": "way/283892701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892706", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502097, + -0.0301932 + ], + [ + 109.350396, + -0.0299347 + ], + [ + 109.3505323, + -0.029743 + ], + [ + 109.3505638, + -0.0297129 + ], + [ + 109.3505859, + -0.0296918 + ], + [ + 109.3509298, + -0.0293988 + ] + ] + }, + "id": "way/283892706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892707", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3658622, + -0.0318251 + ], + [ + 109.3655934, + -0.0314331 + ], + [ + 109.3654342, + -0.0312059 + ], + [ + 109.3649527, + -0.0304927 + ], + [ + 109.3645111, + -0.029861 + ], + [ + 109.3640645, + -0.0292777 + ], + [ + 109.3638411, + -0.0290279 + ] + ] + }, + "id": "way/283892707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892709", + "highway": "residential", + "name": "Gang Assuha" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3659751, + -0.0450387 + ], + [ + 109.3673446, + -0.0442515 + ], + [ + 109.3675621, + -0.0441029 + ], + [ + 109.3678413, + -0.0439135 + ], + [ + 109.3690191, + -0.0431261 + ], + [ + 109.3690824, + -0.0430865 + ], + [ + 109.3696722, + -0.0427275 + ] + ] + }, + "id": "way/283892709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892710", + "highway": "residential", + "name": "Gang Kurnia Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3620354, + -0.0362044 + ], + [ + 109.3612573, + -0.0367139 + ], + [ + 109.360587, + -0.0371821 + ], + [ + 109.3598017, + -0.0377044 + ], + [ + 109.3591899, + -0.0381075 + ] + ] + }, + "id": "way/283892710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892713", + "highway": "residential", + "name": "Gang Sektor Raya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618356, + -0.0406864 + ], + [ + 109.3620119, + -0.0405577 + ], + [ + 109.3621407, + -0.0404692 + ], + [ + 109.3623284, + -0.0403391 + ], + [ + 109.362535, + -0.0402003 + ], + [ + 109.3626999, + -0.0400903 + ], + [ + 109.3629199, + -0.0399522 + ], + [ + 109.3632632, + -0.039745 + ], + [ + 109.3634751, + -0.0396182 + ], + [ + 109.3639342, + -0.0393236 + ], + [ + 109.36514, + -0.03855 + ] + ] + }, + "id": "way/283892713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892714", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365831, + -0.0448688 + ], + [ + 109.3654165, + -0.04522 + ], + [ + 109.3637575, + -0.0467265 + ] + ] + }, + "id": "way/283892714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892717", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530808, + -0.0269669 + ], + [ + 109.3531104, + -0.0269633 + ], + [ + 109.3534173, + -0.0269704 + ], + [ + 109.3534655, + -0.0269776 + ], + [ + 109.3535046, + -0.0269907 + ], + [ + 109.3535187, + -0.0269975 + ], + [ + 109.3535291, + -0.0270078 + ], + [ + 109.3535526, + -0.0270427 + ], + [ + 109.3535645, + -0.0270611 + ], + [ + 109.3535719, + -0.0270709 + ], + [ + 109.3535796, + -0.0270774 + ], + [ + 109.3535932, + -0.0270828 + ], + [ + 109.3536111, + -0.0270854 + ], + [ + 109.3540805, + -0.0270753 + ] + ] + }, + "id": "way/283892717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892719", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512736, + -0.0263195 + ], + [ + 109.3519955, + -0.0262045 + ], + [ + 109.3520069, + -0.0262069 + ], + [ + 109.352016, + -0.0262126 + ], + [ + 109.3520383, + -0.0262736 + ], + [ + 109.3520871, + -0.0265411 + ], + [ + 109.3520991, + -0.0265834 + ], + [ + 109.3521092, + -0.0265988 + ], + [ + 109.3521209, + -0.0266011 + ], + [ + 109.3525088, + -0.0265524 + ], + [ + 109.3525479, + -0.026547 + ] + ] + }, + "id": "way/283892719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892722", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361249, + -0.0328873 + ], + [ + 109.3615561, + -0.0327007 + ], + [ + 109.3622357, + -0.0322455 + ], + [ + 109.3622821, + -0.0322144 + ], + [ + 109.3627587, + -0.0319221 + ], + [ + 109.3628254, + -0.0318791 + ], + [ + 109.3632236, + -0.0316152 + ], + [ + 109.3637558, + -0.0312724 + ], + [ + 109.363799, + -0.0312461 + ], + [ + 109.3639075, + -0.0311803 + ] + ] + }, + "id": "way/283892722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892726", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606604, + -0.0311616 + ], + [ + 109.3610023, + -0.0313957 + ], + [ + 109.3613215, + -0.0319954 + ] + ] + }, + "id": "way/283892726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892727", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645104, + -0.0365822 + ], + [ + 109.363547, + -0.0372121 + ], + [ + 109.3625827, + -0.0378398 + ], + [ + 109.3615893, + -0.0384635 + ], + [ + 109.3603523, + -0.0392682 + ] + ] + }, + "id": "way/283892727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560033, + -0.0404716 + ], + [ + 109.3562753, + -0.0403934 + ], + [ + 109.3564121, + -0.0403632 + ], + [ + 109.3565362, + -0.0403404 + ], + [ + 109.356693, + -0.0403206 + ], + [ + 109.3569741, + -0.0402921 + ], + [ + 109.3572074, + -0.040276 + ], + [ + 109.3574408, + -0.0402559 + ] + ] + }, + "id": "way/283892733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892736", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725939, + -0.0376542 + ], + [ + 109.3725309, + -0.0377038 + ], + [ + 109.3723083, + -0.0378567 + ], + [ + 109.3717423, + -0.0382456 + ], + [ + 109.3709524, + -0.03877 + ], + [ + 109.3701142, + -0.039344 + ], + [ + 109.3697186, + -0.0396283 + ], + [ + 109.3694101, + -0.0398603 + ], + [ + 109.3692532, + -0.0399703 + ], + [ + 109.3689394, + -0.0402117 + ], + [ + 109.3684441, + -0.0406042 + ] + ] + }, + "id": "way/283892736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892737", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3622821, + -0.0322144 + ], + [ + 109.3620922, + -0.0318991 + ], + [ + 109.3619231, + -0.0315746 + ], + [ + 109.3615226, + -0.030806 + ], + [ + 109.3614525, + -0.030674 + ], + [ + 109.3611716, + -0.0311382 + ], + [ + 109.3610023, + -0.0313957 + ] + ] + }, + "id": "way/283892737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892738", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639075, + -0.0311803 + ], + [ + 109.3640784, + -0.0310587 + ], + [ + 109.3644132, + -0.0308439 + ], + [ + 109.3646696, + -0.0306579 + ] + ] + }, + "id": "way/283892738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892743", + "highway": "residential", + "name": "Gang Bunga Tanjung 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633993, + -0.042332 + ], + [ + 109.3636139, + -0.0421945 + ], + [ + 109.363978, + -0.0419605 + ], + [ + 109.3643294, + -0.0417278 + ], + [ + 109.3646257, + -0.0415367 + ], + [ + 109.3649416, + -0.0413429 + ], + [ + 109.3652661, + -0.0411424 + ], + [ + 109.3655819, + -0.040954 + ], + [ + 109.3658327, + -0.0408051 + ], + [ + 109.3660714, + -0.0406596 + ], + [ + 109.3662706, + -0.0405429 + ], + [ + 109.3665093, + -0.0403894 + ], + [ + 109.3666072, + -0.0403243 + ], + [ + 109.3667936, + -0.040209 + ], + [ + 109.3671188, + -0.0400159 + ], + [ + 109.3672563, + -0.039928 + ], + [ + 109.3672945, + -0.0398946 + ], + [ + 109.3673267, + -0.0398415 + ] + ] + }, + "id": "way/283892743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892744", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585713, + -0.0257492 + ], + [ + 109.3585532, + -0.025292 + ], + [ + 109.3585423, + -0.0249592 + ], + [ + 109.3585312, + -0.0246186 + ], + [ + 109.3585768, + -0.0246134 + ], + [ + 109.3588435, + -0.0245998 + ], + [ + 109.3595974, + -0.0245614 + ] + ] + }, + "id": "way/283892744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892748", + "highway": "residential", + "name": "Taman Sei Raya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482171, + -0.0845432 + ], + [ + 109.3481737, + -0.0845834 + ], + [ + 109.3480866, + -0.084741 + ], + [ + 109.3480597, + -0.0847967 + ], + [ + 109.3480597, + -0.0848074 + ], + [ + 109.3481037, + -0.0848464 + ], + [ + 109.3495128, + -0.0856214 + ], + [ + 109.3495272, + -0.0856265 + ], + [ + 109.3495443, + -0.0856211 + ], + [ + 109.3497068, + -0.0853743 + ] + ] + }, + "id": "way/283892748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892751", + "highway": "residential", + "name": "Gang Bunga Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635361, + -0.0439627 + ], + [ + 109.3636367, + -0.0438514 + ], + [ + 109.363862, + -0.0435899 + ], + [ + 109.3641154, + -0.043311 + ], + [ + 109.3642467, + -0.0431968 + ] + ] + }, + "id": "way/283892751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892754", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608445, + -0.0397463 + ], + [ + 109.3618185, + -0.0390817 + ], + [ + 109.362264, + -0.0387834 + ], + [ + 109.3624585, + -0.0386479 + ], + [ + 109.3626536, + -0.0385313 + ], + [ + 109.362769, + -0.0384736 + ], + [ + 109.3628234, + -0.0384445 + ], + [ + 109.3628971, + -0.0384052 + ], + [ + 109.3630211, + -0.0383442 + ], + [ + 109.3631338, + -0.0382812 + ], + [ + 109.3633081, + -0.0381765 + ], + [ + 109.3639666, + -0.0377455 + ], + [ + 109.3644541, + -0.0374416 + ], + [ + 109.3646767, + -0.0372921 + ], + [ + 109.3649154, + -0.0371271 + ], + [ + 109.3649959, + -0.0370742 + ] + ] + }, + "id": "way/283892754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892755", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651817, + -0.0265912 + ], + [ + 109.3651779, + -0.0270296 + ], + [ + 109.365238, + -0.0270259 + ], + [ + 109.3653338, + -0.0270239 + ], + [ + 109.3654364, + -0.0270259 + ], + [ + 109.3655055, + -0.0270414 + ], + [ + 109.3656255, + -0.0270749 + ], + [ + 109.3657389, + -0.0271077 + ] + ] + }, + "id": "way/283892755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892756", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562271, + -0.0257244 + ], + [ + 109.3562598, + -0.0247515 + ], + [ + 109.3562936, + -0.0243764 + ], + [ + 109.3562932, + -0.0242939 + ], + [ + 109.3563131, + -0.024102 + ], + [ + 109.3563203, + -0.0240426 + ], + [ + 109.3563277, + -0.0239937 + ], + [ + 109.3563369, + -0.0239187 + ] + ] + }, + "id": "way/283892756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892757", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515187, + -0.0318746 + ], + [ + 109.3522455, + -0.0314904 + ], + [ + 109.3525633, + -0.0314012 + ], + [ + 109.3527808, + -0.031377 + ], + [ + 109.35282, + -0.0313822 + ], + [ + 109.3528522, + -0.0313906 + ], + [ + 109.352876, + -0.0313865 + ], + [ + 109.3529048, + -0.0313715 + ], + [ + 109.3532754, + -0.031081 + ], + [ + 109.3532982, + -0.0310631 + ] + ] + }, + "id": "way/283892757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892762", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615561, + -0.0327007 + ], + [ + 109.3613118, + -0.0324323 + ], + [ + 109.3610713, + -0.0321705 + ], + [ + 109.3607848, + -0.0318586 + ], + [ + 109.3607776, + -0.0318434 + ], + [ + 109.3607712, + -0.0318261 + ], + [ + 109.360768, + -0.0318084 + ], + [ + 109.3607712, + -0.0317947 + ], + [ + 109.3607848, + -0.031773 + ], + [ + 109.3610023, + -0.0313957 + ] + ] + }, + "id": "way/283892762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892765", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618774, + -0.0335309 + ], + [ + 109.361519, + -0.0331843 + ], + [ + 109.3612716, + -0.0329121 + ], + [ + 109.361249, + -0.0328873 + ], + [ + 109.3611901, + -0.0328227 + ], + [ + 109.3603295, + -0.031874 + ], + [ + 109.360298, + -0.0318338 + ], + [ + 109.3602903, + -0.0318113 + ], + [ + 109.3602903, + -0.0317949 + ], + [ + 109.3602953, + -0.0317594 + ], + [ + 109.3603121, + -0.0317144 + ], + [ + 109.3606604, + -0.0311616 + ], + [ + 109.3611108, + -0.0303201 + ] + ] + }, + "id": "way/283892765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892768", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3668787, + -0.0268953 + ], + [ + 109.3667024, + -0.0270823 + ], + [ + 109.3662921, + -0.0274524 + ], + [ + 109.3651571, + -0.0284814 + ], + [ + 109.3646338, + -0.0289545 + ] + ] + }, + "id": "way/283892768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892772", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688074, + -0.0410135 + ], + [ + 109.3685819, + -0.0407776 + ], + [ + 109.3684832, + -0.0406508 + ], + [ + 109.3684441, + -0.0406042 + ], + [ + 109.3682425, + -0.0403608 + ], + [ + 109.3680975, + -0.0402003 + ], + [ + 109.3680052, + -0.0401042 + ], + [ + 109.3678277, + -0.0399339 + ], + [ + 109.3677622, + -0.0398572 + ], + [ + 109.3676994, + -0.0397995 + ], + [ + 109.3676432, + -0.0397327 + ], + [ + 109.3674198, + -0.0395022 + ], + [ + 109.3670289, + -0.0390727 + ] + ] + }, + "id": "way/283892772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892773", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499835, + -0.0240554 + ], + [ + 109.3499844, + -0.0240616 + ], + [ + 109.3499963, + -0.0241526 + ], + [ + 109.3500065, + -0.0242357 + ], + [ + 109.3500225, + -0.0244478 + ], + [ + 109.3500352, + -0.024565 + ], + [ + 109.3500666, + -0.024764 + ], + [ + 109.3501093, + -0.0250199 + ], + [ + 109.3501651, + -0.0251895 + ], + [ + 109.3502136, + -0.025405 + ] + ] + }, + "id": "way/283892773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892776", + "highway": "residential", + "motorcar": "no", + "name": "Gang Masjid" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634077, + -0.0412997 + ], + [ + 109.3635923, + -0.0415984 + ], + [ + 109.3645256, + -0.0410185 + ], + [ + 109.3659035, + -0.0401756 + ] + ] + }, + "id": "way/283892776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892779", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540961, + -0.0255749 + ], + [ + 109.3540786, + -0.0268085 + ], + [ + 109.3540805, + -0.0270753 + ], + [ + 109.3540954, + -0.0273794 + ], + [ + 109.3541045, + -0.0275759 + ], + [ + 109.3540753, + -0.0283095 + ], + [ + 109.3540753, + -0.0283251 + ], + [ + 109.3540774, + -0.028337 + ], + [ + 109.3540801, + -0.0283427 + ], + [ + 109.3540836, + -0.0283474 + ], + [ + 109.3540917, + -0.0283508 + ], + [ + 109.3541073, + -0.028353 + ], + [ + 109.3550331, + -0.0283641 + ], + [ + 109.355311, + -0.0283672 + ], + [ + 109.3556953, + -0.0283714 + ], + [ + 109.3559611, + -0.0283744 + ], + [ + 109.3562086, + -0.0283762 + ], + [ + 109.3568028, + -0.0283806 + ], + [ + 109.3569516, + -0.0283821 + ], + [ + 109.3576613, + -0.0283892 + ], + [ + 109.3577881, + -0.0283868 + ], + [ + 109.3582416, + -0.0283883 + ], + [ + 109.3583546, + -0.0274918 + ] + ] + }, + "id": "way/283892779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892781", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649527, + -0.0304927 + ], + [ + 109.3652061, + -0.0303197 + ], + [ + 109.3654706, + -0.0301226 + ], + [ + 109.3653846, + -0.0299972 + ], + [ + 109.3651557, + -0.0296676 + ] + ] + }, + "id": "way/283892781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892783", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571851, + -0.0248092 + ], + [ + 109.357172, + -0.024959 + ], + [ + 109.3571839, + -0.0250182 + ], + [ + 109.3571418, + -0.0251144 + ], + [ + 109.3569285, + -0.0250998 + ], + [ + 109.3565928, + -0.0250768 + ] + ] + }, + "id": "way/283892783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892785", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3835394, + -0.0517308 + ], + [ + 109.3827464, + -0.0522988 + ], + [ + 109.3825369, + -0.0524709 + ], + [ + 109.3814359, + -0.0533368 + ], + [ + 109.3803325, + -0.0542444 + ], + [ + 109.3804206, + -0.0543536 + ], + [ + 109.3804226, + -0.0543831 + ], + [ + 109.3804152, + -0.0544019 + ] + ] + }, + "id": "way/283892785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892786", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619483, + -0.0256289 + ], + [ + 109.3619371, + -0.0259426 + ], + [ + 109.3618944, + -0.0261582 + ], + [ + 109.3618349, + -0.0263683 + ], + [ + 109.3618181, + -0.0264463 + ], + [ + 109.3618082, + -0.0265129 + ], + [ + 109.3618081, + -0.0265391 + ], + [ + 109.3618087, + -0.0265552 + ], + [ + 109.3618156, + -0.026582 + ] + ] + }, + "id": "way/283892786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892794", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3647511, + -0.0255641 + ], + [ + 109.3647497, + -0.0256752 + ], + [ + 109.3647474, + -0.0261717 + ], + [ + 109.3647393, + -0.0265919 + ], + [ + 109.364731, + -0.0273304 + ], + [ + 109.364727, + -0.0275436 + ], + [ + 109.3646975, + -0.0276241 + ], + [ + 109.364646, + -0.0276331 + ], + [ + 109.364621, + -0.0276265 + ], + [ + 109.3643099, + -0.0274886 + ], + [ + 109.3640994, + -0.0273854 + ], + [ + 109.3639572, + -0.0273183 + ], + [ + 109.3639103, + -0.027274 + ], + [ + 109.3639089, + -0.0272284 + ], + [ + 109.3639121, + -0.0265932 + ] + ] + }, + "id": "way/283892794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892795", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488847, + -0.0264687 + ], + [ + 109.3490303, + -0.0262854 + ], + [ + 109.3491042, + -0.0261971 + ], + [ + 109.3491416, + -0.0261608 + ], + [ + 109.3493013, + -0.0260408 + ], + [ + 109.3493212, + -0.0260259 + ], + [ + 109.3495163, + -0.0258865 + ], + [ + 109.3498094, + -0.0256749 + ], + [ + 109.3498487, + -0.0256424 + ], + [ + 109.350054, + -0.0255133 + ], + [ + 109.3502136, + -0.025405 + ] + ] + }, + "id": "way/283892795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283892798", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504921, + -0.0305076 + ], + [ + 109.3503347, + -0.0303323 + ], + [ + 109.3502097, + -0.0301932 + ], + [ + 109.35014, + -0.0301108 + ], + [ + 109.3499773, + -0.0298913 + ], + [ + 109.3498588, + -0.0297473 + ] + ] + }, + "id": "way/283892798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901809", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3713851, + -0.0255864 + ], + [ + 109.3713702, + -0.0257707 + ], + [ + 109.3713567, + -0.0259296 + ], + [ + 109.371327, + -0.0262102 + ], + [ + 109.3713164, + -0.026259 + ], + [ + 109.3712397, + -0.0266396 + ], + [ + 109.3712089, + -0.0268235 + ], + [ + 109.3711962, + -0.0268828 + ], + [ + 109.3711645, + -0.0270355 + ], + [ + 109.371156, + -0.0272524 + ] + ] + }, + "id": "way/283901809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901810", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3786593, + -0.0386236 + ], + [ + 109.3789104, + -0.0388287 + ], + [ + 109.3791083, + -0.039055 + ], + [ + 109.3791331, + -0.0390825 + ], + [ + 109.3791519, + -0.0390999 + ], + [ + 109.3791854, + -0.0391006 + ], + [ + 109.3796092, + -0.0390476 + ], + [ + 109.3798852, + -0.0390167 + ], + [ + 109.3799131, + -0.0390128 + ], + [ + 109.380121, + -0.038984 + ], + [ + 109.3804035, + -0.0389623 + ], + [ + 109.3804132, + -0.038951 + ], + [ + 109.3804182, + -0.0389262 + ], + [ + 109.3803954, + -0.0386922 + ], + [ + 109.3803703, + -0.0385192 + ], + [ + 109.3800862, + -0.0385449 + ], + [ + 109.3798672, + -0.0385659 + ], + [ + 109.3797876, + -0.0385735 + ], + [ + 109.3796205, + -0.0385922 + ], + [ + 109.3795657, + -0.0385981 + ], + [ + 109.3794962, + -0.0386055 + ], + [ + 109.3794116, + -0.0386119 + ], + [ + 109.3793741, + -0.0385988 + ], + [ + 109.379103, + -0.0384504 + ] + ] + }, + "id": "way/283901810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901812", + "highway": "residential", + "name": "Gang Kelontan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583339, + -0.02934 + ], + [ + 109.3583244, + -0.0293383 + ], + [ + 109.3583142, + -0.029338 + ], + [ + 109.3582997, + -0.0293417 + ], + [ + 109.3582666, + -0.0293591 + ], + [ + 109.3576634, + -0.029735 + ], + [ + 109.3574032, + -0.0299053 + ], + [ + 109.3572515, + -0.0300253 + ] + ] + }, + "id": "way/283901812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901816", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793424, + -0.03701 + ], + [ + 109.3795865, + -0.0366324 + ], + [ + 109.3797398, + -0.0364038 + ], + [ + 109.3799139, + -0.0363772 + ], + [ + 109.380069, + -0.0363817 + ], + [ + 109.3801624, + -0.0363828 + ], + [ + 109.3803254, + -0.036354 + ], + [ + 109.3807974, + -0.0362514 + ], + [ + 109.3812843, + -0.0361454 + ], + [ + 109.3819325, + -0.0360293 + ], + [ + 109.382422, + -0.0359278 + ], + [ + 109.3828058, + -0.0358433 + ], + [ + 109.3835151, + -0.0356768 + ], + [ + 109.3842749, + -0.0354078 + ], + [ + 109.384401, + -0.0353643 + ] + ] + }, + "id": "way/283901816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901819", + "highway": "residential", + "name": "Jalan Paralel Tol" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615647, + -0.0256315 + ], + [ + 109.3615053, + -0.0263941 + ], + [ + 109.361397, + -0.0272761 + ], + [ + 109.3613876, + -0.0273679 + ], + [ + 109.3613957, + -0.0274484 + ], + [ + 109.3614252, + -0.0276147 + ], + [ + 109.3614272, + -0.0276918 + ], + [ + 109.3614078, + -0.027777 + ], + [ + 109.3611558, + -0.0285486 + ], + [ + 109.3611423, + -0.0285875 + ], + [ + 109.3608999, + -0.0292872 + ], + [ + 109.3606595, + -0.0300171 + ], + [ + 109.3605163, + -0.0303443 + ], + [ + 109.3602858, + -0.0308164 + ], + [ + 109.3602096, + -0.0309521 + ], + [ + 109.3599614, + -0.0313282 + ] + ] + }, + "id": "way/283901819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901826", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3762394, + -0.0323891 + ], + [ + 109.3764355, + -0.032572 + ], + [ + 109.3765318, + -0.0326667 + ], + [ + 109.3766201, + -0.0327705 + ], + [ + 109.3768221, + -0.0329814 + ], + [ + 109.3769971, + -0.0331533 + ], + [ + 109.3770263, + -0.0331642 + ], + [ + 109.3770767, + -0.0331759 + ], + [ + 109.3771227, + -0.0331759 + ], + [ + 109.3772095, + -0.0331509 + ], + [ + 109.3772371, + -0.0331351 + ], + [ + 109.3772674, + -0.0331092 + ], + [ + 109.377275, + -0.0331001 + ], + [ + 109.3773001, + -0.0330706 + ] + ] + }, + "id": "way/283901826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901828", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3777635, + -0.0491439 + ], + [ + 109.3777758, + -0.0491769 + ], + [ + 109.377777, + -0.0492122 + ], + [ + 109.3777669, + -0.049246 + ], + [ + 109.3777466, + -0.0492749 + ], + [ + 109.3777181, + -0.0492957 + ], + [ + 109.3776845, + -0.0493064 + ], + [ + 109.3776492, + -0.0493059 + ], + [ + 109.3776159, + -0.0492942 + ], + [ + 109.3775881, + -0.0492724 + ], + [ + 109.377568, + -0.0492416 + ] + ] + }, + "id": "way/283901828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901831", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3797398, + -0.0364038 + ], + [ + 109.3797849, + -0.0362574 + ], + [ + 109.3797883, + -0.0362319 + ], + [ + 109.3797836, + -0.0362058 + ], + [ + 109.3795409, + -0.0353856 + ], + [ + 109.3794516, + -0.0350491 + ], + [ + 109.3793266, + -0.0346868 + ], + [ + 109.3792792, + -0.034577 + ], + [ + 109.3792123, + -0.0344221 + ], + [ + 109.379121, + -0.0342073 + ], + [ + 109.3790499, + -0.0340805 + ], + [ + 109.3789158, + -0.0338413 + ], + [ + 109.3787394, + -0.0335221 + ], + [ + 109.378728, + -0.0335032 + ], + [ + 109.3787549, + -0.0334659 + ], + [ + 109.3787635, + -0.0334344 + ], + [ + 109.3787556, + -0.0333995 + ], + [ + 109.3787321, + -0.0333338 + ], + [ + 109.3786589, + -0.033132 + ], + [ + 109.378598, + -0.0329737 + ], + [ + 109.378561, + -0.0329161 + ], + [ + 109.3784966, + -0.0328509 + ], + [ + 109.3782794, + -0.0326544 + ], + [ + 109.3780321, + -0.03238 + ] + ] + }, + "id": "way/283901831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901835", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793781, + -0.0323966 + ], + [ + 109.3793464, + -0.0324393 + ], + [ + 109.37932, + -0.0324498 + ], + [ + 109.3790321, + -0.0325182 + ], + [ + 109.3787442, + -0.0325868 + ], + [ + 109.3787047, + -0.0325908 + ], + [ + 109.3786751, + -0.0325781 + ], + [ + 109.3782619, + -0.032151 + ], + [ + 109.3782071, + -0.0320812 + ], + [ + 109.3780784, + -0.0319304 + ], + [ + 109.3780482, + -0.0319143 + ], + [ + 109.3780328, + -0.031921 + ], + [ + 109.3777142, + -0.0322153 + ], + [ + 109.3774906, + -0.0324125 + ], + [ + 109.3772724, + -0.0325801 + ], + [ + 109.3770578, + -0.0327679 + ], + [ + 109.3768221, + -0.0329814 + ] + ] + }, + "id": "way/283901835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901838", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3781101, + -0.0428925 + ], + [ + 109.3781101, + -0.042511 + ], + [ + 109.3781399, + -0.042098 + ], + [ + 109.3781711, + -0.041814 + ], + [ + 109.3781778, + -0.0417524 + ], + [ + 109.3782185, + -0.0413755 + ], + [ + 109.3782882, + -0.0408871 + ], + [ + 109.3783421, + -0.0404222 + ], + [ + 109.3783985, + -0.0398011 + ], + [ + 109.3784851, + -0.0392947 + ], + [ + 109.3784938, + -0.0391407 + ], + [ + 109.3785061, + -0.0389517 + ], + [ + 109.3785048, + -0.0389014 + ], + [ + 109.3785143, + -0.0388552 + ], + [ + 109.378569, + -0.0387503 + ], + [ + 109.3785941, + -0.0387026 + ], + [ + 109.3786593, + -0.0386236 + ], + [ + 109.3787095, + -0.0385485 + ], + [ + 109.3789953, + -0.0380427 + ], + [ + 109.3791467, + -0.0377796 + ], + [ + 109.3794771, + -0.0379616 + ], + [ + 109.3795083, + -0.0379811 + ], + [ + 109.3795321, + -0.0379834 + ], + [ + 109.3796143, + -0.0379818 + ], + [ + 109.379802, + -0.037954 + ], + [ + 109.3801829, + -0.0379189 + ] + ] + }, + "id": "way/283901838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901844", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3707956, + -0.0269598 + ], + [ + 109.3711645, + -0.0270355 + ] + ] + }, + "id": "way/283901844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901845", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3663062, + -0.050614 + ], + [ + 109.366512, + -0.0504631 + ], + [ + 109.3666763, + -0.0503444 + ], + [ + 109.3667722, + -0.0502726 + ], + [ + 109.3668401, + -0.0502112 + ] + ] + }, + "id": "way/283901845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901847", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793369, + -0.0256944 + ], + [ + 109.3790285, + -0.0265426 + ] + ] + }, + "id": "way/283901847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901848", + "highway": "residential", + "name": "Gang Sae" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.369296, + -0.0270146 + ], + [ + 109.3693787, + -0.0261 + ], + [ + 109.3694186, + -0.0255398 + ] + ] + }, + "id": "way/283901848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901850", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3675184, + -0.0509266 + ], + [ + 109.3677069, + -0.050789 + ], + [ + 109.3679859, + -0.0505851 + ], + [ + 109.3682501, + -0.0504007 + ], + [ + 109.3696428, + -0.0494049 + ] + ] + }, + "id": "way/283901850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3671068, + -0.0490302 + ], + [ + 109.3676969, + -0.0486097 + ], + [ + 109.368073, + -0.0483515 + ], + [ + 109.3685034, + -0.0480528 + ] + ] + }, + "id": "way/283901851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901853", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3777413, + -0.0491165 + ], + [ + 109.3782255, + -0.0487095 + ], + [ + 109.3785185, + -0.0484422 + ] + ] + }, + "id": "way/283901853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901857", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683159, + -0.0323311 + ], + [ + 109.3687503, + -0.0319163 + ] + ] + }, + "id": "way/283901857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901859", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3731916, + -0.0290477 + ], + [ + 109.373491, + -0.0290419 + ] + ] + }, + "id": "way/283901859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639067, + -0.0489149 + ], + [ + 109.3639093, + -0.0489178 + ], + [ + 109.3639143, + -0.0489175 + ], + [ + 109.3639191, + -0.0489151 + ], + [ + 109.3639921, + -0.0488581 + ], + [ + 109.3640829, + -0.0487894 + ], + [ + 109.3640858, + -0.048785 + ], + [ + 109.3640848, + -0.0487771 + ], + [ + 109.3640742, + -0.0487605 + ], + [ + 109.3640688, + -0.0487505 + ], + [ + 109.3640712, + -0.0487421 + ], + [ + 109.3641667, + -0.0486502 + ], + [ + 109.3641869, + -0.0486358 + ], + [ + 109.3642056, + -0.0486284 + ], + [ + 109.3642284, + -0.0486288 + ], + [ + 109.3642543, + -0.0486325 + ], + [ + 109.3642737, + -0.0486318 + ], + [ + 109.3642938, + -0.0486251 + ], + [ + 109.3644447, + -0.0485151 + ], + [ + 109.364664, + -0.0483502 + ], + [ + 109.3648682, + -0.0481859 + ] + ] + }, + "id": "way/283901860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901862", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3675058, + -0.0533096 + ], + [ + 109.3677445, + -0.0531694 + ], + [ + 109.3680402, + -0.0530018 + ], + [ + 109.3683614, + -0.0528181 + ], + [ + 109.3686532, + -0.0526311 + ] + ] + }, + "id": "way/283901862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901866", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3765318, + -0.0326667 + ], + [ + 109.3775475, + -0.0318941 + ] + ] + }, + "id": "way/283901866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901868", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3766348, + -0.0291315 + ], + [ + 109.3771329, + -0.0291028 + ] + ] + }, + "id": "way/283901868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901869", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.376981, + -0.0308321 + ], + [ + 109.3769037, + -0.0298922 + ] + ] + }, + "id": "way/283901869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901872", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3777643, + -0.037916 + ], + [ + 109.3774851, + -0.0382081 + ] + ] + }, + "id": "way/283901872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901874", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3798503, + -0.0261253 + ], + [ + 109.3796133, + -0.026722 + ] + ] + }, + "id": "way/283901874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901877", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670472, + -0.0462055 + ], + [ + 109.3689053, + -0.0452743 + ] + ] + }, + "id": "way/283901877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901878", + "highway": "residential", + "name": "Gang Ramin II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3700411, + -0.0291241 + ], + [ + 109.3705852, + -0.0286933 + ] + ] + }, + "id": "way/283901878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901880", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3728407, + -0.0379228 + ], + [ + 109.372502, + -0.0381638 + ], + [ + 109.3721354, + -0.0384083 + ] + ] + }, + "id": "way/283901880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901881", + "highway": "residential", + "name": "Gang Sari Mulya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3717695, + -0.044372 + ], + [ + 109.3693739, + -0.045611 + ] + ] + }, + "id": "way/283901881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901883", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3744225, + -0.0374144 + ], + [ + 109.3732612, + -0.0383848 + ] + ] + }, + "id": "way/283901883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901887", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3679885, + -0.0538587 + ], + [ + 109.3681435, + -0.0537619 + ], + [ + 109.3683386, + -0.0536475 + ], + [ + 109.3684569, + -0.0535761 + ], + [ + 109.3685696, + -0.0535074 + ], + [ + 109.3688133, + -0.0533525 + ], + [ + 109.3690222, + -0.0532157 + ] + ] + }, + "id": "way/283901887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901888", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3671356, + -0.0340123 + ], + [ + 109.3675943, + -0.0336349 + ], + [ + 109.3679014, + -0.0333667 + ], + [ + 109.3681131, + -0.0331529 + ] + ] + }, + "id": "way/283901888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901891", + "highway": "residential", + "name": "Gang Bakran Sabar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627093, + -0.0472659 + ], + [ + 109.3634046, + -0.0466161 + ] + ] + }, + "id": "way/283901891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901893", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3774205, + -0.0429784 + ], + [ + 109.377503, + -0.0429308 + ], + [ + 109.3776331, + -0.0428456 + ], + [ + 109.3781101, + -0.042511 + ], + [ + 109.3791608, + -0.0417727 + ], + [ + 109.3797983, + -0.0413208 + ] + ] + }, + "id": "way/283901893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901896", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3784966, + -0.0328509 + ], + [ + 109.3780223, + -0.0333687 + ] + ] + }, + "id": "way/283901896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901897", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3655126, + -0.0504455 + ], + [ + 109.365934, + -0.0501278 + ], + [ + 109.3661814, + -0.0499266 + ], + [ + 109.3663035, + -0.0498314 + ], + [ + 109.3663943, + -0.0497538 + ] + ] + }, + "id": "way/283901897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901898", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544317, + -0.0325351 + ], + [ + 109.3558865, + -0.0317854 + ] + ] + }, + "id": "way/283901898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901900", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3692499, + -0.0489584 + ], + [ + 109.3691164, + -0.0490462 + ], + [ + 109.3689226, + -0.0491843 + ], + [ + 109.3686269, + -0.0493922 + ], + [ + 109.3684023, + -0.0495538 + ], + [ + 109.3681654, + -0.0497142 + ] + ] + }, + "id": "way/283901900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901901", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.374625, + -0.0434625 + ], + [ + 109.3748166, + -0.0437193 + ] + ] + }, + "id": "way/283901901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901903", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.377568, + -0.0492416 + ], + [ + 109.3765542, + -0.0500218 + ] + ] + }, + "id": "way/283901903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901904", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3780495, + -0.0262273 + ], + [ + 109.3780066, + -0.026454 + ], + [ + 109.377955, + -0.0267342 + ], + [ + 109.3778846, + -0.0271922 + ], + [ + 109.3777246, + -0.0279942 + ] + ] + }, + "id": "way/283901904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901906", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709343, + -0.0261893 + ], + [ + 109.3713164, + -0.026259 + ] + ] + }, + "id": "way/283901906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901908", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373167, + -0.0349311 + ], + [ + 109.3728152, + -0.0345487 + ] + ] + }, + "id": "way/283901908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901913", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3775251, + -0.025025 + ], + [ + 109.3774223, + -0.0253263 + ], + [ + 109.3772918, + -0.0260051 + ] + ] + }, + "id": "way/283901913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901914", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526005, + -0.0328633 + ], + [ + 109.3541096, + -0.0320813 + ] + ] + }, + "id": "way/283901914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901917", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.378728, + -0.0335032 + ], + [ + 109.3784458, + -0.0337977 + ] + ] + }, + "id": "way/283901917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901918", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3731665, + -0.0329446 + ], + [ + 109.3734596, + -0.0326021 + ] + ] + }, + "id": "way/283901918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901921", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365171, + -0.0500548 + ], + [ + 109.3653895, + -0.0498924 + ], + [ + 109.3656155, + -0.0497154 + ], + [ + 109.3657798, + -0.0495826 + ], + [ + 109.3660285, + -0.0493661 + ] + ] + }, + "id": "way/283901921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901924", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3730025, + -0.0380725 + ], + [ + 109.374175, + -0.0371279 + ] + ] + }, + "id": "way/283901924" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901927", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3768308, + -0.0259454 + ], + [ + 109.3765616, + -0.0277075 + ], + [ + 109.376566, + -0.0279398 + ] + ] + }, + "id": "way/283901927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901929", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.379138, + -0.0398749 + ], + [ + 109.3783421, + -0.0404222 + ], + [ + 109.3764564, + -0.0417652 + ] + ] + }, + "id": "way/283901929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901930", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3673539, + -0.0506711 + ], + [ + 109.3678182, + -0.0503384 + ], + [ + 109.3683526, + -0.0499663 + ], + [ + 109.3688603, + -0.0496048 + ], + [ + 109.369162, + -0.0493821 + ], + [ + 109.3694424, + -0.0491828 + ] + ] + }, + "id": "way/283901930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901932", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536271, + -0.0347824 + ], + [ + 109.3537442, + -0.0350222 + ], + [ + 109.3539271, + -0.0353971 + ], + [ + 109.3539445, + -0.035452 + ] + ] + }, + "id": "way/283901932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901936", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709033, + -0.0300071 + ], + [ + 109.3712196, + -0.0297537 + ] + ] + }, + "id": "way/283901936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901939", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531612, + -0.0294678 + ], + [ + 109.3523685, + -0.0300177 + ] + ] + }, + "id": "way/283901939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901940", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3772367, + -0.0427396 + ], + [ + 109.3781399, + -0.042098 + ], + [ + 109.3789487, + -0.0415167 + ], + [ + 109.3796213, + -0.0410378 + ] + ] + }, + "id": "way/283901940" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901942", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3710531, + -0.0490856 + ], + [ + 109.3712271, + -0.0493738 + ] + ] + }, + "id": "way/283901942" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901943", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3724735, + -0.0273759 + ], + [ + 109.3725429, + -0.0301172 + ] + ] + }, + "id": "way/283901943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901947", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3778415, + -0.0361362 + ], + [ + 109.3769811, + -0.0352616 + ] + ] + }, + "id": "way/283901947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901949", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3707075, + -0.0507089 + ], + [ + 109.3705823, + -0.0508232 + ], + [ + 109.3704227, + -0.050962 + ], + [ + 109.3701618, + -0.0511866 + ], + [ + 109.369905, + -0.0513925 + ], + [ + 109.3696374, + -0.0516111 + ], + [ + 109.369099, + -0.0520536 + ], + [ + 109.3685751, + -0.0524889 + ] + ] + }, + "id": "way/283901949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901955", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568932, + -0.0325795 + ], + [ + 109.3563625, + -0.0328617 + ], + [ + 109.3551348, + -0.0335276 + ] + ] + }, + "id": "way/283901955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901956", + "highway": "residential", + "name": "Gang Cendana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3715485, + -0.0441053 + ], + [ + 109.3700634, + -0.0448652 + ] + ] + }, + "id": "way/283901956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901959", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703771, + -0.0264895 + ], + [ + 109.3707788, + -0.0265269 + ] + ] + }, + "id": "way/283901959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3753051, + -0.0381283 + ], + [ + 109.3751123, + -0.0378751 + ] + ] + }, + "id": "way/283901961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901962", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521935, + -0.0297876 + ], + [ + 109.3530253, + -0.0291476 + ] + ] + }, + "id": "way/283901962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703583, + -0.0267953 + ], + [ + 109.3707527, + -0.0268282 + ] + ] + }, + "id": "way/283901965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901967", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3755799, + -0.0362789 + ], + [ + 109.3743129, + -0.0372783 + ] + ] + }, + "id": "way/283901967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901970", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3748168, + -0.0349724 + ], + [ + 109.3755142, + -0.0343477 + ] + ] + }, + "id": "way/283901970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901973", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354894, + -0.033205 + ], + [ + 109.3569979, + -0.0321401 + ] + ] + }, + "id": "way/283901973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901974", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3776982, + -0.0269094 + ], + [ + 109.3778699, + -0.0261674 + ] + ] + }, + "id": "way/283901974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901977", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3708906, + -0.0265782 + ], + [ + 109.3712397, + -0.0266396 + ] + ] + }, + "id": "way/283901977" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901979", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570459, + -0.0297152 + ], + [ + 109.3558398, + -0.0304798 + ] + ] + }, + "id": "way/283901979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901980", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3756581, + -0.0337835 + ], + [ + 109.3753918, + -0.0340496 + ] + ] + }, + "id": "way/283901980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901981", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3657286, + -0.050717 + ], + [ + 109.3658562, + -0.050622 + ], + [ + 109.3660071, + -0.0505067 + ], + [ + 109.366231, + -0.0503343 + ], + [ + 109.3663638, + -0.0502425 + ], + [ + 109.3664872, + -0.0501539 + ], + [ + 109.3665864, + -0.0500815 + ], + [ + 109.3666589, + -0.0500279 + ] + ] + }, + "id": "way/283901981" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901983", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714204, + -0.0327571 + ], + [ + 109.3714922, + -0.0328262 + ] + ] + }, + "id": "way/283901983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901984", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.378354, + -0.0286654 + ], + [ + 109.3780368, + -0.0285481 + ], + [ + 109.3777612, + -0.0284488 + ], + [ + 109.3777277, + -0.0284649 + ], + [ + 109.3777196, + -0.0285012 + ], + [ + 109.3777612, + -0.0300481 + ], + [ + 109.3777746, + -0.0304632 + ], + [ + 109.3777893, + -0.0310345 + ], + [ + 109.3778048, + -0.0316373 + ], + [ + 109.3778075, + -0.0316688 + ], + [ + 109.3778182, + -0.0317024 + ], + [ + 109.3779322, + -0.031756 + ], + [ + 109.3781312, + -0.0318207 + ], + [ + 109.3784291, + -0.0318975 + ], + [ + 109.3784478, + -0.0318814 + ], + [ + 109.3784545, + -0.0318526 + ], + [ + 109.3784083, + -0.0305202 + ], + [ + 109.3784056, + -0.0302888 + ], + [ + 109.3784039, + -0.0300402 + ], + [ + 109.3783962, + -0.0298281 + ], + [ + 109.378354, + -0.0286654 + ], + [ + 109.3790849, + -0.0265677 + ] + ] + }, + "id": "way/283901984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901987", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559946, + -0.0295688 + ], + [ + 109.3556797, + -0.0291443 + ], + [ + 109.3552914, + -0.0286155 + ] + ] + }, + "id": "way/283901987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901992", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3766568, + -0.0294858 + ], + [ + 109.3772728, + -0.0294831 + ] + ] + }, + "id": "way/283901992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901993", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3719991, + -0.0484829 + ], + [ + 109.3721862, + -0.0487666 + ] + ] + }, + "id": "way/283901993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901995", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3776215, + -0.0364323 + ], + [ + 109.3771598, + -0.0368751 + ] + ] + }, + "id": "way/283901995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901996", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3665611, + -0.0510312 + ], + [ + 109.3666991, + -0.0509351 + ], + [ + 109.3669043, + -0.0507883 + ], + [ + 109.3670431, + -0.0506998 + ], + [ + 109.36721, + -0.0505871 + ] + ] + }, + "id": "way/283901996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283901998", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3589721, + -0.0299824 + ], + [ + 109.3608999, + -0.0292872 + ] + ] + }, + "id": "way/283901998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902000", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683383, + -0.0521165 + ], + [ + 109.3684328, + -0.0520473 + ], + [ + 109.3685733, + -0.051942 + ], + [ + 109.3687516, + -0.0518092 + ], + [ + 109.3688871, + -0.0517063 + ], + [ + 109.3691312, + -0.0515286 + ], + [ + 109.3693083, + -0.0513849 + ], + [ + 109.3694195, + -0.0512946 + ], + [ + 109.3696683, + -0.0510994 + ], + [ + 109.369958, + -0.0508735 + ], + [ + 109.3705104, + -0.0504493 + ] + ] + }, + "id": "way/283902000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902003", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542375, + -0.0322603 + ], + [ + 109.3557478, + -0.0315217 + ] + ] + }, + "id": "way/283902003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902004", + "highway": "residential", + "name": "Ramin 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704733, + -0.0295641 + ], + [ + 109.3709642, + -0.0291666 + ] + ] + }, + "id": "way/283902004" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902006", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615647, + -0.0256315 + ], + [ + 109.3615833, + -0.0243267 + ] + ] + }, + "id": "way/283902006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902007", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3752744, + -0.0241057 + ], + [ + 109.3749082, + -0.0257896 + ] + ] + }, + "id": "way/283902007" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902008", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3702484, + -0.0293455 + ], + [ + 109.37079, + -0.0289203 + ] + ] + }, + "id": "way/283902008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902010", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3790155, + -0.0377115 + ], + [ + 109.3788582, + -0.0379969 + ], + [ + 109.3787308, + -0.038251 + ], + [ + 109.3785931, + -0.0384783 + ], + [ + 109.3785563, + -0.0384928 + ], + [ + 109.3785353, + -0.0384941 + ], + [ + 109.3783788, + -0.0383992 + ], + [ + 109.3782078, + -0.0383127 + ], + [ + 109.3781058, + -0.0382436 + ], + [ + 109.3777643, + -0.037916 + ], + [ + 109.3776217, + -0.0377751 + ], + [ + 109.377489, + -0.0376315 + ], + [ + 109.3772888, + -0.0374344 + ], + [ + 109.3771409, + -0.0372784 + ], + [ + 109.377127, + -0.0372648 + ], + [ + 109.3769036, + -0.0370464 + ], + [ + 109.3768323, + -0.0369746 + ], + [ + 109.3765897, + -0.0367409 + ], + [ + 109.3764735, + -0.0366255 + ], + [ + 109.3762665, + -0.0364198 + ], + [ + 109.3761422, + -0.0362958 + ], + [ + 109.3761309, + -0.0362845 + ], + [ + 109.3758025, + -0.035928 + ], + [ + 109.3756298, + -0.0357651 + ], + [ + 109.3753908, + -0.0355359 + ], + [ + 109.3751438, + -0.0352718 + ], + [ + 109.3750213, + -0.0351651 + ], + [ + 109.3749245, + -0.0350803 + ], + [ + 109.3748168, + -0.0349724 + ], + [ + 109.3744451, + -0.0345784 + ] + ] + }, + "id": "way/283902010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902011", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3774906, + -0.0324125 + ], + [ + 109.3775547, + -0.0324782 + ], + [ + 109.3776345, + -0.0325665 + ], + [ + 109.3776883, + -0.0326185 + ], + [ + 109.3777313, + -0.0326553 + ], + [ + 109.3780159, + -0.0329285 + ] + ] + }, + "id": "way/283902011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902013", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3761867, + -0.0287452 + ], + [ + 109.3764051, + -0.0287367 + ], + [ + 109.3765295, + -0.0287351 + ], + [ + 109.3765912, + -0.0287282 + ] + ] + }, + "id": "way/283902013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902014", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3762665, + -0.0364198 + ], + [ + 109.376485, + -0.0361992 + ], + [ + 109.3766923, + -0.03599 + ] + ] + }, + "id": "way/283902014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902015", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3769498, + -0.0366612 + ], + [ + 109.3771608, + -0.0364586 + ], + [ + 109.3774097, + -0.0362112 + ] + ] + }, + "id": "way/283902015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902016", + "highway": "trunk", + "maxweight": "5", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480986, + -0.0394318 + ], + [ + 109.3481711, + -0.0393902 + ], + [ + 109.3482062, + -0.0393687 + ], + [ + 109.3487906, + -0.0388464 + ], + [ + 109.3495363, + -0.0383194 + ] + ] + }, + "id": "way/283902016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902018", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751602, + -0.0338433 + ], + [ + 109.3753918, + -0.0340496 + ], + [ + 109.3755933, + -0.0342558 + ] + ] + }, + "id": "way/283902018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902019", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3777313, + -0.0326553 + ], + [ + 109.3780321, + -0.03238 + ], + [ + 109.3782619, + -0.032151 + ] + ] + }, + "id": "way/283902019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902020", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3768898, + -0.0423193 + ], + [ + 109.3782185, + -0.0413755 + ], + [ + 109.379683, + -0.0403628 + ] + ] + }, + "id": "way/283902020" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902021", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557591, + -0.0303834 + ], + [ + 109.3557074, + -0.0303063 + ], + [ + 109.3557042, + -0.0302902 + ], + [ + 109.3557097, + -0.0302805 + ], + [ + 109.3557193, + -0.0302691 + ], + [ + 109.3557376, + -0.0302553 + ], + [ + 109.3565513, + -0.0297067 + ], + [ + 109.3569322, + -0.0294315 + ], + [ + 109.3569546, + -0.0294031 + ], + [ + 109.3569969, + -0.0293692 + ], + [ + 109.3571497, + -0.0292716 + ] + ] + }, + "id": "way/283902021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902023", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3735339, + -0.0306778 + ], + [ + 109.373491, + -0.0290419 + ], + [ + 109.373428, + -0.0274069 + ] + ] + }, + "id": "way/283902023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902024", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3781073, + -0.0275048 + ], + [ + 109.3782854, + -0.0267852 + ], + [ + 109.378372, + -0.0263316 + ] + ] + }, + "id": "way/283902024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902027", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3756997, + -0.0409239 + ], + [ + 109.3771, + -0.0398482 + ], + [ + 109.3777156, + -0.0393815 + ], + [ + 109.3780283, + -0.0391531 + ], + [ + 109.3781843, + -0.0390288 + ] + ] + }, + "id": "way/283902027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902028", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3707903, + -0.0223141 + ], + [ + 109.3707204, + -0.0224783 + ], + [ + 109.3705313, + -0.0228725 + ], + [ + 109.3704294, + -0.0230657 + ], + [ + 109.3702255, + -0.0234264 + ], + [ + 109.3700961, + -0.0236832 + ], + [ + 109.3700674, + -0.0237297 + ], + [ + 109.3697722, + -0.0242083 + ], + [ + 109.3696998, + -0.0243451 + ], + [ + 109.3695697, + -0.0246052 + ], + [ + 109.3695456, + -0.0246482 + ], + [ + 109.3694678, + -0.0248265 + ], + [ + 109.3694356, + -0.0248896 + ], + [ + 109.3693726, + -0.0250773 + ], + [ + 109.3692881, + -0.0252865 + ], + [ + 109.369217, + -0.0255319 + ] + ] + }, + "id": "way/283902028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902030", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3782794, + -0.0326544 + ], + [ + 109.3780159, + -0.0329285 + ], + [ + 109.3778191, + -0.0331619 + ] + ] + }, + "id": "way/283902030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902031", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649515, + -0.0497043 + ], + [ + 109.365071, + -0.0496215 + ], + [ + 109.3651595, + -0.0495357 + ], + [ + 109.3652245, + -0.0494821 + ], + [ + 109.3653258, + -0.0493956 + ], + [ + 109.3655444, + -0.0492306 + ], + [ + 109.3657391, + -0.0490766 + ] + ] + }, + "id": "way/283902031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902032", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.374471, + -0.0257555 + ], + [ + 109.3747255, + -0.0243049 + ], + [ + 109.3747705, + -0.0241151 + ], + [ + 109.3748322, + -0.0239032 + ] + ] + }, + "id": "way/283902032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902033", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.369493, + -0.0492438 + ], + [ + 109.3696368, + -0.0491475 + ], + [ + 109.3698125, + -0.0490261 + ], + [ + 109.3700109, + -0.0488967 + ], + [ + 109.3702094, + -0.0487693 + ], + [ + 109.3703744, + -0.0486573 + ], + [ + 109.3705527, + -0.0485413 + ], + [ + 109.3707821, + -0.0483897 + ], + [ + 109.3711375, + -0.0481524 + ], + [ + 109.3715572, + -0.0478788 + ], + [ + 109.3718, + -0.0477165 + ], + [ + 109.3721044, + -0.0475167 + ], + [ + 109.3723257, + -0.0473732 + ], + [ + 109.3730623, + -0.0469031 + ] + ] + }, + "id": "way/283902033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902039", + "highway": "residential", + "name": "Gang Madrasah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725974, + -0.0256234 + ], + [ + 109.3729527, + -0.0246153 + ], + [ + 109.3729587, + -0.0245925 + ], + [ + 109.372952, + -0.0245764 + ], + [ + 109.3727302, + -0.0245211 + ] + ] + }, + "id": "way/283902039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902041", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3767457, + -0.0308473 + ], + [ + 109.376981, + -0.0308321 + ], + [ + 109.3774024, + -0.0308099 + ] + ] + }, + "id": "way/283902041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902042", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3737536, + -0.0389153 + ], + [ + 109.3751123, + -0.0378751 + ], + [ + 109.3765897, + -0.0367409 + ] + ] + }, + "id": "way/283902042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902044", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3724676, + -0.0252381 + ], + [ + 109.3727302, + -0.0245211 + ], + [ + 109.3730924, + -0.0234777 + ] + ] + }, + "id": "way/283902044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902045", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3696368, + -0.02554 + ], + [ + 109.370166, + -0.0242747 + ], + [ + 109.3703301, + -0.0238743 + ], + [ + 109.3705133, + -0.0234565 + ], + [ + 109.3709686, + -0.0223848 + ] + ] + }, + "id": "way/283902045" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902050", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628679, + -0.023956 + ], + [ + 109.3626409, + -0.02395 + ], + [ + 109.3623445, + -0.0239347 + ], + [ + 109.3620227, + -0.0239213 + ], + [ + 109.3620012, + -0.0239126 + ], + [ + 109.3619931, + -0.0238764 + ], + [ + 109.3619776, + -0.0234211 + ] + ] + }, + "id": "way/283902050" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902051", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3784896, + -0.0342757 + ], + [ + 109.3787121, + -0.034066 + ], + [ + 109.3789158, + -0.0338413 + ] + ] + }, + "id": "way/283902051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902053", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3768323, + -0.0369746 + ], + [ + 109.3768188, + -0.0369848 + ], + [ + 109.3753051, + -0.0381283 + ], + [ + 109.3739684, + -0.0391467 + ] + ] + }, + "id": "way/283902053" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902057", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536271, + -0.0347824 + ], + [ + 109.3544639, + -0.0343128 + ], + [ + 109.3545876, + -0.0342417 + ], + [ + 109.3553191, + -0.0337717 + ] + ] + }, + "id": "way/283902057" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902059", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3768321, + -0.0334529 + ], + [ + 109.376408, + -0.0330181 + ], + [ + 109.3761875, + -0.0332375 + ] + ] + }, + "id": "way/283902059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902060", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.376485, + -0.0361992 + ], + [ + 109.3760176, + -0.0357158 + ], + [ + 109.3753646, + -0.0350763 + ] + ] + }, + "id": "way/283902060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902061", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3781312, + -0.0318207 + ], + [ + 109.3780765, + -0.0300464 + ], + [ + 109.3780594, + -0.0294005 + ], + [ + 109.3780555, + -0.0292526 + ], + [ + 109.3780368, + -0.0285481 + ], + [ + 109.3781246, + -0.0282709 + ], + [ + 109.3782205, + -0.0279895 + ], + [ + 109.3784156, + -0.0274695 + ], + [ + 109.378537, + -0.027154 + ], + [ + 109.3786034, + -0.0270031 + ], + [ + 109.3786195, + -0.0269368 + ], + [ + 109.3786537, + -0.0267993 + ], + [ + 109.3787406, + -0.0264561 + ] + ] + }, + "id": "way/283902061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902063", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3674461, + -0.0324038 + ], + [ + 109.3654059, + -0.0338723 + ], + [ + 109.3642422, + -0.0345415 + ], + [ + 109.36354, + -0.0349591 + ], + [ + 109.3632911, + -0.0351072 + ] + ] + }, + "id": "way/283902063" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902066", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3743089, + -0.0308576 + ], + [ + 109.3742862, + -0.0303788 + ], + [ + 109.3742626, + -0.0296038 + ], + [ + 109.3742084, + -0.0285723 + ], + [ + 109.3741664, + -0.0274786 + ], + [ + 109.3741596, + -0.027443 + ], + [ + 109.3741415, + -0.0274249 + ], + [ + 109.3739478, + -0.0274142 + ] + ] + }, + "id": "way/283902066" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902067", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3769072, + -0.0362049 + ], + [ + 109.3767011, + -0.036408 + ], + [ + 109.3764735, + -0.0366255 + ] + ] + }, + "id": "way/283902067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902071", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3732361, + -0.0306959 + ], + [ + 109.3732229, + -0.02992 + ], + [ + 109.3731916, + -0.0290477 + ], + [ + 109.3731746, + -0.0286983 + ], + [ + 109.3731616, + -0.0283136 + ], + [ + 109.3731505, + -0.0278668 + ], + [ + 109.3731439, + -0.0273937 + ] + ] + }, + "id": "way/283902071" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902074", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3721563, + -0.03722 + ], + [ + 109.372952, + -0.0364298 + ], + [ + 109.3738205, + -0.0356629 + ], + [ + 109.3744536, + -0.0350921 + ] + ] + }, + "id": "way/283902074" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902075", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.369716, + -0.0299807 + ], + [ + 109.369803, + -0.0298893 + ], + [ + 109.3700595, + -0.0296538 + ], + [ + 109.3703119, + -0.0294224 + ] + ] + }, + "id": "way/283902075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902078", + "highway": "residential", + "name": "Gang M. Taufik" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3660084, + -0.0493459 + ], + [ + 109.3663786, + -0.0490616 + ], + [ + 109.3666904, + -0.0488269 + ], + [ + 109.3668044, + -0.0487478 + ], + [ + 109.3669733, + -0.0486298 + ], + [ + 109.3675017, + -0.0482824 + ], + [ + 109.3678933, + -0.0480249 + ], + [ + 109.3682735, + -0.0477795 + ] + ] + }, + "id": "way/283902078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902080", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3757117, + -0.0327441 + ], + [ + 109.3759728, + -0.0325667 + ], + [ + 109.3762394, + -0.0323891 + ], + [ + 109.3767211, + -0.0320522 + ], + [ + 109.3767741, + -0.032018 + ], + [ + 109.3769602, + -0.0318977 + ], + [ + 109.377088, + -0.031807 + ], + [ + 109.3771963, + -0.0317282 + ] + ] + }, + "id": "way/283902080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902084", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539275, + -0.0318243 + ], + [ + 109.3544509, + -0.0315295 + ], + [ + 109.3554442, + -0.0309042 + ], + [ + 109.355699, + -0.0307438 + ], + [ + 109.3557185, + -0.0307338 + ], + [ + 109.3557349, + -0.0307291 + ], + [ + 109.35575, + -0.0307321 + ], + [ + 109.3557644, + -0.0307401 + ], + [ + 109.3557865, + -0.0307643 + ], + [ + 109.3562779, + -0.031539 + ], + [ + 109.3564886, + -0.0318475 + ] + ] + }, + "id": "way/283902084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902086", + "highway": "residential", + "name": "Gang Bakau 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709093, + -0.0332498 + ], + [ + 109.3706176, + -0.0335546 + ], + [ + 109.370459, + -0.0337046 + ], + [ + 109.3700969, + -0.0340634 + ] + ] + }, + "id": "way/283902086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902087", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701728, + -0.0500478 + ], + [ + 109.3712271, + -0.0493738 + ], + [ + 109.3714144, + -0.0492594 + ], + [ + 109.3716887, + -0.0490851 + ], + [ + 109.3720078, + -0.0488819 + ], + [ + 109.3721862, + -0.0487666 + ], + [ + 109.3726529, + -0.0484756 + ], + [ + 109.3729091, + -0.0483106 + ], + [ + 109.3731513, + -0.0481569 + ], + [ + 109.3742309, + -0.0474721 + ] + ] + }, + "id": "way/283902087" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902089", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3772674, + -0.0331092 + ], + [ + 109.3772713, + -0.0331812 + ], + [ + 109.377277, + -0.033301 + ], + [ + 109.3772813, + -0.033464 + ], + [ + 109.3772673, + -0.0338183 + ] + ] + }, + "id": "way/283902089" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902090", + "access": "permissive", + "highway": "living_street", + "name": "Gang 86" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3685589, + -0.0254516 + ], + [ + 109.3686558, + -0.0250002 + ], + [ + 109.3686678, + -0.0249667 + ], + [ + 109.3686886, + -0.0249325 + ], + [ + 109.3688308, + -0.024679 + ], + [ + 109.3689367, + -0.0244946 + ], + [ + 109.3690715, + -0.0242733 + ], + [ + 109.369211, + -0.0240299 + ], + [ + 109.3693404, + -0.0238066 + ], + [ + 109.3694289, + -0.0236578 + ], + [ + 109.36951, + -0.0235243 + ], + [ + 109.3695879, + -0.0233965 + ], + [ + 109.3696167, + -0.0233493 + ], + [ + 109.369731, + -0.0231652 + ], + [ + 109.3698356, + -0.0229474 + ], + [ + 109.369953, + -0.0227189 + ], + [ + 109.3702778, + -0.0221108 + ] + ] + }, + "id": "way/283902090" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902092", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3768895, + -0.0504886 + ], + [ + 109.3772757, + -0.0501801 + ], + [ + 109.3776941, + -0.0498475 + ], + [ + 109.3785611, + -0.049128 + ], + [ + 109.3796492, + -0.0482777 + ], + [ + 109.3797336, + -0.0482055 + ], + [ + 109.38043, + -0.0476286 + ], + [ + 109.3807195, + -0.0473848 + ] + ] + }, + "id": "way/283902092" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902093", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3741878, + -0.0331847 + ], + [ + 109.3738434, + -0.0329067 + ], + [ + 109.3734596, + -0.0326021 + ], + [ + 109.3734797, + -0.0325701 + ], + [ + 109.3734824, + -0.0325466 + ], + [ + 109.3734703, + -0.0325225 + ], + [ + 109.3734448, + -0.0324809 + ], + [ + 109.3734127, + -0.0324453 + ], + [ + 109.3732759, + -0.0322817 + ], + [ + 109.3731371, + -0.0321013 + ], + [ + 109.3729956, + -0.0319143 + ], + [ + 109.3728702, + -0.0317341 + ], + [ + 109.3728227, + -0.0316683 + ], + [ + 109.3728137, + -0.031664 + ], + [ + 109.3728014, + -0.031666 + ], + [ + 109.3724479, + -0.0320288 + ] + ] + }, + "id": "way/283902093" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902095", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3789953, + -0.0380427 + ], + [ + 109.3792442, + -0.0381845 + ], + [ + 109.3795062, + -0.0383057 + ], + [ + 109.3795402, + -0.0383086 + ], + [ + 109.3796092, + -0.0383019 + ], + [ + 109.3798334, + -0.0382816 + ], + [ + 109.38043, + -0.0382067 + ] + ] + }, + "id": "way/283902095" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902096", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.377047, + -0.0507285 + ], + [ + 109.3783446, + -0.0496765 + ], + [ + 109.3785793, + -0.0494807 + ], + [ + 109.3787451, + -0.0493574 + ], + [ + 109.379044, + -0.0491153 + ], + [ + 109.3793397, + -0.0488732 + ], + [ + 109.379571, + -0.0486794 + ], + [ + 109.379691, + -0.0485815 + ], + [ + 109.379808, + -0.048482 + ], + [ + 109.3808792, + -0.0476152 + ] + ] + }, + "id": "way/283902096" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902100", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3762572, + -0.0299295 + ], + [ + 109.3766785, + -0.0299089 + ], + [ + 109.3769037, + -0.0298922 + ], + [ + 109.377312, + -0.0298659 + ] + ] + }, + "id": "way/283902100" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902101", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3749245, + -0.0350803 + ], + [ + 109.3753505, + -0.0346816 + ], + [ + 109.3753847, + -0.0346528 + ], + [ + 109.3754257, + -0.0346334 + ], + [ + 109.3754786, + -0.034624 + ], + [ + 109.3755457, + -0.034624 + ], + [ + 109.3756771, + -0.0346266 + ], + [ + 109.3758085, + -0.034626 + ] + ] + }, + "id": "way/283902101" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902103", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3749623, + -0.0323595 + ], + [ + 109.374692, + -0.032016 + ], + [ + 109.3746999, + -0.0319963 + ], + [ + 109.3748745, + -0.031813 + ], + [ + 109.3750074, + -0.0316711 + ] + ] + }, + "id": "way/283902103" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902104", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.369947, + -0.0497783 + ], + [ + 109.3710531, + -0.0490856 + ], + [ + 109.3719991, + -0.0484829 + ], + [ + 109.3729711, + -0.0478698 + ], + [ + 109.3739981, + -0.0472172 + ] + ] + }, + "id": "way/283902104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902109", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701185, + -0.032463 + ], + [ + 109.3701334, + -0.0324783 + ], + [ + 109.370678, + -0.0330383 + ] + ] + }, + "id": "way/283902109" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902112", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3752583, + -0.0278745 + ], + [ + 109.3753518, + -0.0293399 + ], + [ + 109.3754153, + -0.030398 + ], + [ + 109.3754303, + -0.030659 + ], + [ + 109.3754481, + -0.0309079 + ] + ] + }, + "id": "way/283902112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902113", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639305, + -0.0357813 + ], + [ + 109.3640233, + -0.0357337 + ], + [ + 109.3649794, + -0.0351884 + ], + [ + 109.3655397, + -0.0348512 + ], + [ + 109.3658119, + -0.034685 + ], + [ + 109.366097, + -0.0344947 + ], + [ + 109.3664074, + -0.0342759 + ], + [ + 109.3668164, + -0.0339786 + ] + ] + }, + "id": "way/283902113" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902116", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574334, + -0.031459 + ], + [ + 109.3578501, + -0.0312696 + ], + [ + 109.358042, + -0.0317277 + ], + [ + 109.3583065, + -0.0324572 + ] + ] + }, + "id": "way/283902116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902119", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751438, + -0.0352718 + ], + [ + 109.3753646, + -0.0350763 + ], + [ + 109.3755175, + -0.0349452 + ], + [ + 109.3755564, + -0.0349264 + ], + [ + 109.3756141, + -0.0349203 + ], + [ + 109.3758166, + -0.0349157 + ] + ] + }, + "id": "way/283902119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902122", + "highway": "residential", + "name": "Gang Hasan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3684481, + -0.0479832 + ], + [ + 109.3687181, + -0.0478291 + ], + [ + 109.3690695, + -0.0476387 + ], + [ + 109.3694772, + -0.0474134 + ], + [ + 109.369783, + -0.0472324 + ], + [ + 109.3700686, + -0.0470446 + ], + [ + 109.3703301, + -0.0468743 + ], + [ + 109.370479, + -0.0467603 + ], + [ + 109.3706024, + -0.046657 + ], + [ + 109.3708599, + -0.0464666 + ], + [ + 109.3710677, + -0.0463097 + ], + [ + 109.3713825, + -0.0460787 + ] + ] + }, + "id": "way/283902122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902126", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3775846, + -0.0368721 + ], + [ + 109.3780572, + -0.0373534 + ], + [ + 109.3783955, + -0.0376817 + ], + [ + 109.3784619, + -0.0377467 + ], + [ + 109.3785464, + -0.0378138 + ], + [ + 109.3786865, + -0.0378956 + ], + [ + 109.3788582, + -0.0379969 + ] + ] + }, + "id": "way/283902126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902129", + "highway": "residential", + "name": "Gang 85" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3690222, + -0.0532157 + ], + [ + 109.3691842, + -0.0531004 + ], + [ + 109.3693625, + -0.0529703 + ], + [ + 109.3694852, + -0.0528663 + ], + [ + 109.3695764, + -0.0527852 + ], + [ + 109.3697762, + -0.0525914 + ], + [ + 109.3699365, + -0.0524251 + ], + [ + 109.3701149, + -0.0522454 + ], + [ + 109.3703569, + -0.0520141 + ], + [ + 109.3705199, + -0.0518625 + ], + [ + 109.3707633, + -0.0516564 + ], + [ + 109.3709021, + -0.0515393 + ], + [ + 109.3710362, + -0.0514394 + ], + [ + 109.3712209, + -0.0513096 + ] + ] + }, + "id": "way/283902129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902130", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3792904, + -0.0297241 + ], + [ + 109.3797094, + -0.0297252 + ], + [ + 109.3797062, + -0.0297585 + ], + [ + 109.3797457, + -0.0310387 + ], + [ + 109.3797447, + -0.0322456 + ], + [ + 109.3797262, + -0.0323489 + ] + ] + }, + "id": "way/283902130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902134", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3716446, + -0.0273768 + ], + [ + 109.3720843, + -0.027384 + ], + [ + 109.3724735, + -0.0273759 + ], + [ + 109.3728219, + -0.027388 + ], + [ + 109.3728648, + -0.0273888 + ], + [ + 109.3731439, + -0.0273937 + ], + [ + 109.373428, + -0.0274069 + ], + [ + 109.3734979, + -0.0274142 + ], + [ + 109.3738506, + -0.0274173 + ] + ] + }, + "id": "way/283902134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902135", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3777794, + -0.0340427 + ], + [ + 109.3780188, + -0.0338045 + ], + [ + 109.3782371, + -0.0335874 + ], + [ + 109.3786589, + -0.033132 + ] + ] + }, + "id": "way/283902135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902139", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3706885, + -0.0297781 + ], + [ + 109.3707715, + -0.029707 + ], + [ + 109.3710054, + -0.0295177 + ], + [ + 109.3710228, + -0.0295197 + ], + [ + 109.3710456, + -0.0295271 + ], + [ + 109.3712196, + -0.0297537 + ], + [ + 109.3714038, + -0.0300081 + ] + ] + }, + "id": "way/283902139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902145", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3794781, + -0.0480576 + ], + [ + 109.3796492, + -0.0482777 + ], + [ + 109.379808, + -0.048482 + ], + [ + 109.3799954, + -0.0487232 + ] + ] + }, + "id": "way/283902145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902147", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3767352, + -0.05027 + ], + [ + 109.3784041, + -0.0489323 + ], + [ + 109.3794781, + -0.0480576 + ], + [ + 109.3803462, + -0.0473383 + ], + [ + 109.3805567, + -0.0471654 + ] + ] + }, + "id": "way/283902147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902150", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.376218, + -0.0355061 + ], + [ + 109.3766923, + -0.03599 + ], + [ + 109.3769072, + -0.0362049 + ], + [ + 109.3771608, + -0.0364586 + ] + ] + }, + "id": "way/283902150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902153", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.375538, + -0.0278573 + ], + [ + 109.375632, + -0.0293349 + ], + [ + 109.3756844, + -0.0303764 + ], + [ + 109.3757236, + -0.0310729 + ] + ] + }, + "id": "way/283902153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902155", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688504, + -0.032742 + ], + [ + 109.3691015, + -0.033015 + ], + [ + 109.3693183, + -0.0332417 + ], + [ + 109.3695126, + -0.0334411 + ], + [ + 109.3698746, + -0.0338162 + ], + [ + 109.3700969, + -0.0340634 + ] + ] + }, + "id": "way/283902155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902179", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.372401, + -0.0374365 + ], + [ + 109.3735341, + -0.0363846 + ], + [ + 109.3738579, + -0.0361092 + ], + [ + 109.3739028, + -0.0360797 + ], + [ + 109.3739652, + -0.0360321 + ], + [ + 109.3741429, + -0.0358906 + ], + [ + 109.3746619, + -0.0354534 + ], + [ + 109.3749274, + -0.0352375 + ], + [ + 109.3750213, + -0.0351651 + ] + ] + }, + "id": "way/283902179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902182", + "highway": "residential", + "name": "Gang Thamrin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714573, + -0.051593 + ], + [ + 109.3711804, + -0.0518551 + ], + [ + 109.3709604, + -0.0520483 + ], + [ + 109.370589, + -0.0523849 + ], + [ + 109.3704066, + -0.0525244 + ], + [ + 109.3702322, + -0.0526531 + ], + [ + 109.3700572, + -0.0527953 + ], + [ + 109.3698896, + -0.0529361 + ], + [ + 109.3697789, + -0.0530219 + ], + [ + 109.3695496, + -0.0531915 + ], + [ + 109.3693498, + -0.0533438 + ], + [ + 109.3692613, + -0.0534108 + ], + [ + 109.3692016, + -0.0534622 + ] + ] + }, + "id": "way/283902182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902187", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3760728, + -0.0341982 + ], + [ + 109.3758765, + -0.0340019 + ], + [ + 109.3756581, + -0.0337835 + ], + [ + 109.3754378, + -0.0335633 + ], + [ + 109.3747938, + -0.0329194 + ] + ] + }, + "id": "way/283902187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902192", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3796692, + -0.0353582 + ], + [ + 109.3796837, + -0.0353559 + ], + [ + 109.3796961, + -0.0353606 + ], + [ + 109.3797303, + -0.0354451 + ], + [ + 109.379742, + -0.0354541 + ], + [ + 109.379751, + -0.0354548 + ], + [ + 109.3797628, + -0.0354518 + ] + ] + }, + "id": "way/283902192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902193", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544509, + -0.0315295 + ], + [ + 109.3545265, + -0.0316521 + ], + [ + 109.3545423, + -0.0316745 + ], + [ + 109.3545547, + -0.0316883 + ], + [ + 109.3545638, + -0.0316926 + ], + [ + 109.3545725, + -0.031692 + ], + [ + 109.3545799, + -0.0316893 + ], + [ + 109.3547032, + -0.0316196 + ], + [ + 109.3547275, + -0.0316068 + ], + [ + 109.354741, + -0.0316031 + ], + [ + 109.3547498, + -0.0316036 + ], + [ + 109.3547592, + -0.0316063 + ], + [ + 109.3547693, + -0.0316175 + ], + [ + 109.3547812, + -0.0316358 + ], + [ + 109.3547894, + -0.0316486 + ], + [ + 109.3547978, + -0.0316535 + ], + [ + 109.3548047, + -0.0316536 + ], + [ + 109.3548122, + -0.0316517 + ], + [ + 109.3548219, + -0.0316467 + ], + [ + 109.355288, + -0.0313761 + ], + [ + 109.3553399, + -0.0313443 + ], + [ + 109.3553721, + -0.0313242 + ], + [ + 109.3553994, + -0.0313084 + ], + [ + 109.3554177, + -0.0313047 + ], + [ + 109.3554348, + -0.0313047 + ], + [ + 109.355461, + -0.0313128 + ], + [ + 109.3554875, + -0.0313316 + ], + [ + 109.3555116, + -0.0313617 + ], + [ + 109.3555772, + -0.03147 + ] + ] + }, + "id": "way/283902193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902195", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3637286, + -0.0355584 + ], + [ + 109.3638291, + -0.0355031 + ], + [ + 109.3643072, + -0.0352134 + ], + [ + 109.364818, + -0.0349204 + ], + [ + 109.3653533, + -0.0345951 + ], + [ + 109.3656014, + -0.0344476 + ], + [ + 109.3658696, + -0.0342773 + ], + [ + 109.3661191, + -0.0340976 + ], + [ + 109.3664047, + -0.0338978 + ], + [ + 109.3666316, + -0.033738 + ], + [ + 109.3678652, + -0.032877 + ] + ] + }, + "id": "way/283902195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902198", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352594, + -0.035432 + ], + [ + 109.3527724, + -0.0357056 + ], + [ + 109.3528435, + -0.0358289 + ], + [ + 109.3529548, + -0.0360234 + ] + ] + }, + "id": "way/283902198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902201", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3754786, + -0.034624 + ], + [ + 109.3754961, + -0.0345006 + ], + [ + 109.3755088, + -0.0343806 + ], + [ + 109.3755142, + -0.0343477 + ], + [ + 109.375535, + -0.0343229 + ], + [ + 109.3755933, + -0.0342558 + ], + [ + 109.3758765, + -0.0340019 + ] + ] + }, + "id": "way/283902201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902202", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751279, + -0.0304153 + ], + [ + 109.3754153, + -0.030398 + ], + [ + 109.3756844, + -0.0303764 + ], + [ + 109.375936, + -0.0303698 + ], + [ + 109.3761144, + -0.0303625 + ], + [ + 109.3762928, + -0.0303551 + ] + ] + }, + "id": "way/283902202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902207", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3745095, + -0.0274675 + ], + [ + 109.374628, + -0.027913 + ], + [ + 109.3746818, + -0.0279162 + ], + [ + 109.3747372, + -0.0279124 + ], + [ + 109.3749746, + -0.027884 + ], + [ + 109.3752583, + -0.0278745 + ], + [ + 109.3754787, + -0.0278608 + ], + [ + 109.375538, + -0.0278573 + ], + [ + 109.3757883, + -0.0278563 + ] + ] + }, + "id": "way/283902207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902209", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3763769, + -0.0338996 + ], + [ + 109.3765943, + -0.0336839 + ], + [ + 109.3768321, + -0.0334529 + ], + [ + 109.3772813, + -0.033464 + ], + [ + 109.3776919, + -0.0334587 + ] + ] + }, + "id": "way/283902209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902210", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3765943, + -0.0336839 + ], + [ + 109.3761875, + -0.0332375 + ], + [ + 109.3759774, + -0.0330187 + ], + [ + 109.3757117, + -0.0327441 + ], + [ + 109.3753029, + -0.0322947 + ] + ] + }, + "id": "way/283902210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902212", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373254, + -0.0447816 + ], + [ + 109.3730975, + -0.0445696 + ], + [ + 109.3730874, + -0.0445468 + ], + [ + 109.3730901, + -0.044522 + ], + [ + 109.3731156, + -0.0444898 + ], + [ + 109.3733677, + -0.0443215 + ], + [ + 109.373931, + -0.0439399 + ], + [ + 109.3742891, + -0.0436985 + ], + [ + 109.374625, + -0.0434625 + ], + [ + 109.3748282, + -0.0433257 + ], + [ + 109.3751413, + -0.0431091 + ], + [ + 109.3754169, + -0.0429127 + ], + [ + 109.3756315, + -0.0427665 + ], + [ + 109.3761653, + -0.0424017 + ], + [ + 109.3764348, + -0.0422099 + ], + [ + 109.3766707, + -0.042026 + ], + [ + 109.3782882, + -0.0408871 + ], + [ + 109.3795972, + -0.0399636 + ] + ] + }, + "id": "way/283902212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902213", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3685051, + -0.0335669 + ], + [ + 109.3688555, + -0.0332416 + ], + [ + 109.3691015, + -0.033015 + ], + [ + 109.3695849, + -0.0325746 + ], + [ + 109.3696307, + -0.0325593 + ], + [ + 109.3697226, + -0.0325372 + ], + [ + 109.3698319, + -0.0325157 + ], + [ + 109.3701185, + -0.032463 + ], + [ + 109.3705748, + -0.0323781 + ] + ] + }, + "id": "way/283902213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902215", + "highway": "residential", + "name": "Gang 98" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3637299, + -0.0480518 + ], + [ + 109.3638533, + -0.0479552 + ], + [ + 109.3639518, + -0.0478734 + ], + [ + 109.3640491, + -0.0477943 + ], + [ + 109.3640588, + -0.0477872 + ], + [ + 109.3640709, + -0.0477812 + ], + [ + 109.3640816, + -0.0477805 + ], + [ + 109.3640977, + -0.0477882 + ], + [ + 109.3641289, + -0.0478141 + ], + [ + 109.3641423, + -0.047812 + ], + [ + 109.3641597, + -0.047807 + ], + [ + 109.3643738, + -0.0476617 + ] + ] + }, + "id": "way/283902215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902216", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3756784, + -0.0316259 + ], + [ + 109.3758246, + -0.031524 + ], + [ + 109.3759158, + -0.0314315 + ], + [ + 109.3759723, + -0.0313597 + ], + [ + 109.3759842, + -0.0313242 + ], + [ + 109.3759862, + -0.0312598 + ], + [ + 109.3759781, + -0.0311517 + ], + [ + 109.375936, + -0.0303698 + ], + [ + 109.3758736, + -0.029318 + ] + ] + }, + "id": "way/283902216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902218", + "highway": "trunk", + "motorcycle": "yes", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3620862, + -0.0264647 + ], + [ + 109.3621138, + -0.0263806 + ] + ] + }, + "id": "way/283902218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902219", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703354, + -0.0272542 + ], + [ + 109.3703368, + -0.0270876 + ], + [ + 109.3703583, + -0.0267953 + ], + [ + 109.3703744, + -0.0265244 + ], + [ + 109.3703771, + -0.0264895 + ], + [ + 109.3704133, + -0.0262325 + ], + [ + 109.3704177, + -0.0261971 + ], + [ + 109.3704278, + -0.026188 + ], + [ + 109.3704438, + -0.0261829 + ], + [ + 109.3708186, + -0.0262246 + ] + ] + }, + "id": "way/283902219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902222", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740845, + -0.0370158 + ], + [ + 109.3753418, + -0.0360281 + ], + [ + 109.3753633, + -0.0360294 + ], + [ + 109.3753894, + -0.0360489 + ], + [ + 109.3755799, + -0.0362789 + ], + [ + 109.3757556, + -0.0365042 + ], + [ + 109.3757582, + -0.0365263 + ], + [ + 109.3757489, + -0.0365464 + ], + [ + 109.3756728, + -0.0366098 + ], + [ + 109.3745583, + -0.0375382 + ], + [ + 109.3745419, + -0.0375476 + ], + [ + 109.3745311, + -0.0375482 + ], + [ + 109.3745251, + -0.0375469 + ] + ] + }, + "id": "way/283902222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902225", + "highway": "trunk", + "motorcycle": "yes", + "name": "Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3629318, + -0.0226489 + ], + [ + 109.3629231, + -0.022776 + ], + [ + 109.3628981, + -0.023337 + ], + [ + 109.3628973, + -0.0236045 + ], + [ + 109.3628679, + -0.023956 + ], + [ + 109.362832, + -0.024109 + ], + [ + 109.3628012, + -0.0242284 + ], + [ + 109.362751, + -0.0243766 + ], + [ + 109.3626632, + -0.0247181 + ] + ] + }, + "id": "way/283902225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902229", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3780246, + -0.048459 + ], + [ + 109.3782255, + -0.0487095 + ], + [ + 109.3784041, + -0.0489323 + ], + [ + 109.3785611, + -0.049128 + ], + [ + 109.3787451, + -0.0493574 + ], + [ + 109.3789116, + -0.049565 + ], + [ + 109.3790889, + -0.0497859 + ], + [ + 109.3792502, + -0.0499871 + ] + ] + }, + "id": "way/283902229" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902230", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3773614, + -0.0326882 + ], + [ + 109.3775007, + -0.032844 + ], + [ + 109.3778191, + -0.0331619 + ], + [ + 109.3780223, + -0.0333687 + ], + [ + 109.3782371, + -0.0335874 + ], + [ + 109.3784458, + -0.0337977 + ], + [ + 109.3787121, + -0.034066 + ] + ] + }, + "id": "way/283902230" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902238", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362632, + -0.0248301 + ], + [ + 109.3625851, + -0.0249731 + ], + [ + 109.3624809, + -0.0253502 + ], + [ + 109.362475, + -0.0253716 + ], + [ + 109.3624254, + -0.0256237 + ] + ] + }, + "id": "way/283902238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902240", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564088, + -0.0292669 + ], + [ + 109.3561191, + -0.0288807 + ], + [ + 109.3560514, + -0.0287908 + ], + [ + 109.3560219, + -0.0287358 + ], + [ + 109.3560078, + -0.0287003 + ], + [ + 109.3559947, + -0.0286644 + ], + [ + 109.3559884, + -0.0286359 + ], + [ + 109.3559631, + -0.0284293 + ] + ] + }, + "id": "way/283902240" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902241", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3745472, + -0.0293907 + ], + [ + 109.3747704, + -0.0293809 + ], + [ + 109.3750599, + -0.0293539 + ], + [ + 109.3753518, + -0.0293399 + ], + [ + 109.375632, + -0.0293349 + ], + [ + 109.3758736, + -0.029318 + ] + ] + }, + "id": "way/283902241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902246", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3744451, + -0.0345784 + ], + [ + 109.3742504, + -0.0343858 + ], + [ + 109.3740128, + -0.0341597 + ], + [ + 109.3738233, + -0.0340122 + ], + [ + 109.3735599, + -0.0338309 + ], + [ + 109.3728873, + -0.0332961 + ], + [ + 109.3728782, + -0.0332634 + ], + [ + 109.3728822, + -0.033244 + ], + [ + 109.3729016, + -0.033203 + ], + [ + 109.3731665, + -0.0329446 + ] + ] + }, + "id": "way/283902246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902247", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3764355, + -0.032572 + ], + [ + 109.3759774, + -0.0330187 + ], + [ + 109.3757586, + -0.0332395 + ], + [ + 109.3757276, + -0.0332708 + ], + [ + 109.3756764, + -0.0333224 + ], + [ + 109.3754378, + -0.0335633 + ], + [ + 109.3751602, + -0.0338433 + ], + [ + 109.3750022, + -0.0339957 + ], + [ + 109.3748629, + -0.0338512 + ], + [ + 109.3748648, + -0.0337685 + ], + [ + 109.3747448, + -0.0336624 + ] + ] + }, + "id": "way/283902247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902249", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3724439, + -0.0374849 + ], + [ + 109.3730485, + -0.0369183 + ], + [ + 109.373524, + -0.0364687 + ], + [ + 109.3735595, + -0.0364499 + ], + [ + 109.3735964, + -0.0364371 + ], + [ + 109.3736393, + -0.0364633 + ], + [ + 109.3738765, + -0.0367575 + ], + [ + 109.3740845, + -0.0370158 + ], + [ + 109.374175, + -0.0371279 + ], + [ + 109.3743129, + -0.0372783 + ], + [ + 109.3744225, + -0.0374144 + ], + [ + 109.3745251, + -0.0375469 + ] + ] + }, + "id": "way/283902249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902252", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3750206, + -0.0326724 + ], + [ + 109.3749282, + -0.0327705 + ], + [ + 109.3747938, + -0.0329194 + ], + [ + 109.3745889, + -0.0331424 + ], + [ + 109.3745424, + -0.0331743 + ], + [ + 109.3745017, + -0.0331782 + ], + [ + 109.3744347, + -0.0331519 + ], + [ + 109.3743186, + -0.033026 + ] + ] + }, + "id": "way/283902252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902255", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3766625, + -0.0287217 + ], + [ + 109.3765912, + -0.0287282 + ], + [ + 109.3766348, + -0.0291315 + ], + [ + 109.3766568, + -0.0294858 + ], + [ + 109.3766785, + -0.0299089 + ], + [ + 109.3767357, + -0.0306643 + ], + [ + 109.3767457, + -0.0308473 + ], + [ + 109.3767778, + -0.03127 + ] + ] + }, + "id": "way/283902255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902259", + "highway": "tertiary", + "name": "Jalan Amanah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3721155, + -0.0523948 + ], + [ + 109.3723619, + -0.0522159 + ], + [ + 109.3726556, + -0.052008 + ], + [ + 109.3728983, + -0.0518458 + ], + [ + 109.3730955, + -0.0516982 + ], + [ + 109.3735823, + -0.0513643 + ], + [ + 109.3738706, + -0.0511779 + ], + [ + 109.3741643, + -0.0509767 + ], + [ + 109.3744741, + -0.0507581 + ], + [ + 109.3749341, + -0.0504564 + ], + [ + 109.3754934, + -0.0500728 + ], + [ + 109.3761827, + -0.049586 + ], + [ + 109.3762511, + -0.0495773 + ] + ] + }, + "id": "way/283902259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902260", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3749569, + -0.0257944 + ], + [ + 109.3747654, + -0.0269475 + ], + [ + 109.3749746, + -0.027884 + ], + [ + 109.3750599, + -0.0293539 + ], + [ + 109.3751279, + -0.0304153 + ], + [ + 109.3751479, + -0.0308742 + ], + [ + 109.3751474, + -0.0309359 + ], + [ + 109.37514, + -0.0309748 + ], + [ + 109.3751209, + -0.0310314 + ] + ] + }, + "id": "way/283902260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902264", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3787308, + -0.038251 + ], + [ + 109.3786363, + -0.0382061 + ], + [ + 109.3783493, + -0.0380505 + ], + [ + 109.3782849, + -0.0380069 + ], + [ + 109.3782165, + -0.0379499 + ], + [ + 109.377838, + -0.0375657 + ], + [ + 109.3773633, + -0.0370823 + ], + [ + 109.3771598, + -0.0368751 + ], + [ + 109.3769498, + -0.0366612 + ], + [ + 109.3767011, + -0.036408 + ] + ] + }, + "id": "way/283902264" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902265", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740941, + -0.0257291 + ], + [ + 109.3741, + -0.0256808 + ], + [ + 109.3741154, + -0.025599 + ], + [ + 109.374127, + -0.0255218 + ], + [ + 109.3741523, + -0.0254039 + ], + [ + 109.3741704, + -0.0253388 + ], + [ + 109.3741834, + -0.025286 + ], + [ + 109.3741845, + -0.0252543 + ], + [ + 109.3741851, + -0.0252108 + ], + [ + 109.3741806, + -0.0251505 + ], + [ + 109.3741838, + -0.0251061 + ], + [ + 109.3741932, + -0.0250585 + ], + [ + 109.3742052, + -0.0250036 + ], + [ + 109.3742234, + -0.024935 + ], + [ + 109.3745516, + -0.0238036 + ], + [ + 109.3745566, + -0.0237905 + ], + [ + 109.3745667, + -0.0237875 + ], + [ + 109.3747367, + -0.0238603 + ], + [ + 109.3748322, + -0.0239032 + ], + [ + 109.3752543, + -0.0240735 + ], + [ + 109.3752627, + -0.0240799 + ], + [ + 109.3752711, + -0.0240913 + ], + [ + 109.3752744, + -0.0241057 + ] + ] + }, + "id": "way/283902265" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902266", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3763128, + -0.0339533 + ], + [ + 109.3760728, + -0.0341982 + ], + [ + 109.375946, + -0.0343195 + ], + [ + 109.3758173, + -0.034451 + ], + [ + 109.3758018, + -0.0344811 + ], + [ + 109.3758012, + -0.0345194 + ], + [ + 109.3758085, + -0.034626 + ], + [ + 109.3758166, + -0.0349157 + ], + [ + 109.3758206, + -0.0350645 + ], + [ + 109.3758374, + -0.0351027 + ], + [ + 109.3758682, + -0.0351356 + ], + [ + 109.3759822, + -0.035263 + ], + [ + 109.3761103, + -0.0354031 + ], + [ + 109.376218, + -0.0355061 + ] + ] + }, + "id": "way/283902266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902270", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3671947, + -0.0330152 + ], + [ + 109.3664865, + -0.0335155 + ], + [ + 109.3664852, + -0.0335383 + ], + [ + 109.3664932, + -0.0335625 + ], + [ + 109.3666316, + -0.033738 + ], + [ + 109.3668164, + -0.0339786 + ], + [ + 109.3669583, + -0.0342174 + ], + [ + 109.3669593, + -0.0342471 + ], + [ + 109.3669465, + -0.0342746 + ], + [ + 109.3669182, + -0.0342963 + ], + [ + 109.3662773, + -0.034752 + ], + [ + 109.3658828, + -0.0350082 + ], + [ + 109.3651337, + -0.0354377 + ], + [ + 109.3649794, + -0.0351884 + ], + [ + 109.364818, + -0.0349204 + ], + [ + 109.3646519, + -0.0346689 + ] + ] + }, + "id": "way/283902270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902272", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725409, + -0.0452809 + ], + [ + 109.373254, + -0.0447816 + ], + [ + 109.3740108, + -0.0442699 + ], + [ + 109.3744346, + -0.0439869 + ], + [ + 109.3748166, + -0.0437193 + ], + [ + 109.3755736, + -0.0432067 + ] + ] + }, + "id": "way/283902272" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902273", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3724772, + -0.0307086 + ], + [ + 109.3726798, + -0.0305551 + ], + [ + 109.3726924, + -0.0305255 + ], + [ + 109.3727011, + -0.0304951 + ], + [ + 109.3727068, + -0.0304568 + ], + [ + 109.372707, + -0.0304215 + ], + [ + 109.3727039, + -0.0303948 + ], + [ + 109.3726973, + -0.0303653 + ], + [ + 109.3726748, + -0.0303108 + ], + [ + 109.3725429, + -0.0301172 + ], + [ + 109.3724665, + -0.0300146 + ], + [ + 109.3723874, + -0.029912 + ], + [ + 109.3722177, + -0.0296699 + ], + [ + 109.372207, + -0.0296237 + ], + [ + 109.3721996, + -0.0295667 + ], + [ + 109.3721715, + -0.0290295 + ], + [ + 109.3721661, + -0.0288364 + ], + [ + 109.3721259, + -0.0280961 + ], + [ + 109.3720843, + -0.027384 + ] + ] + }, + "id": "way/283902273" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902274", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599614, + -0.0313282 + ], + [ + 109.3599164, + -0.0313966 + ], + [ + 109.3598487, + -0.0315126 + ], + [ + 109.359728, + -0.0317024 + ], + [ + 109.3596254, + -0.0318445 + ], + [ + 109.359547, + -0.031929 + ], + [ + 109.3594652, + -0.0320001 + ], + [ + 109.3593666, + -0.0320685 + ], + [ + 109.3592633, + -0.0321248 + ], + [ + 109.3590866, + -0.0321829 + ], + [ + 109.3587808, + -0.0322751 + ], + [ + 109.3583065, + -0.0324572 + ] + ] + }, + "id": "way/283902274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902276", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3794335, + -0.0266762 + ], + [ + 109.3787618, + -0.0285793 + ], + [ + 109.3787204, + -0.0287011 + ], + [ + 109.378691, + -0.0287876 + ], + [ + 109.3788453, + -0.0288313 + ], + [ + 109.3788622, + -0.0288686 + ], + [ + 109.3788689, + -0.0289558 + ], + [ + 109.3788864, + -0.0301748 + ], + [ + 109.3788902, + -0.030237 + ], + [ + 109.378898, + -0.0303626 + ], + [ + 109.3789199, + -0.0307193 + ], + [ + 109.3789279, + -0.0308454 + ], + [ + 109.3789494, + -0.0309661 + ], + [ + 109.3789896, + -0.031575 + ], + [ + 109.3789923, + -0.031862 + ], + [ + 109.3789789, + -0.0320309 + ], + [ + 109.3789356, + -0.0322351 + ] + ] + }, + "id": "way/283902276" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902277", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704077, + -0.0273484 + ], + [ + 109.3705897, + -0.0272883 + ], + [ + 109.3706258, + -0.0272841 + ], + [ + 109.3706969, + -0.0272834 + ], + [ + 109.3711606, + -0.0273495 + ], + [ + 109.3716446, + -0.0273768 + ] + ] + }, + "id": "way/283902277" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902278", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3795865, + -0.0366324 + ], + [ + 109.3794242, + -0.0360886 + ], + [ + 109.3792443, + -0.0354777 + ], + [ + 109.3790802, + -0.0348922 + ], + [ + 109.3790647, + -0.0348459 + ], + [ + 109.3790265, + -0.034803 + ], + [ + 109.3788984, + -0.0346702 + ], + [ + 109.378689, + -0.0344759 + ], + [ + 109.3784896, + -0.0342757 + ], + [ + 109.3780188, + -0.0338045 + ], + [ + 109.3776919, + -0.0334587 + ], + [ + 109.3773427, + -0.0331116 + ], + [ + 109.3773001, + -0.0330706 + ], + [ + 109.3774577, + -0.0328939 + ], + [ + 109.3775007, + -0.032844 + ] + ] + }, + "id": "way/283902278" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902279", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793138, + -0.0320693 + ], + [ + 109.3793116, + -0.0317322 + ], + [ + 109.3792904, + -0.0297241 + ], + [ + 109.379286, + -0.0296118 + ], + [ + 109.3792793, + -0.0289933 + ], + [ + 109.3792719, + -0.0289424 + ], + [ + 109.3792471, + -0.0288901 + ], + [ + 109.3791901, + -0.0288063 + ], + [ + 109.3791794, + -0.0287687 + ], + [ + 109.3792015, + -0.0286493 + ], + [ + 109.3793056, + -0.0283648 + ], + [ + 109.3794265, + -0.0280259 + ], + [ + 109.3795382, + -0.027683 + ], + [ + 109.3796541, + -0.027357 + ], + [ + 109.3798719, + -0.0268005 + ] + ] + }, + "id": "way/283902279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/283902280", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3804021, + -0.0270252 + ], + [ + 109.3804865, + -0.0270003 + ], + [ + 109.3809161, + -0.0270796 + ], + [ + 109.380953, + -0.0270816 + ], + [ + 109.3809812, + -0.0270628 + ], + [ + 109.3810301, + -0.0270065 + ], + [ + 109.3810549, + -0.0269173 + ], + [ + 109.3810978, + -0.0266544 + ], + [ + 109.3811126, + -0.0266089 + ], + [ + 109.3811314, + -0.0265633 + ], + [ + 109.3812018, + -0.0264794 + ], + [ + 109.3812863, + -0.0263856 + ], + [ + 109.3813258, + -0.02635 + ] + ] + }, + "id": "way/283902280" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396400", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498172, + -0.0179033 + ], + [ + 109.3498903, + -0.0177137 + ], + [ + 109.3501237, + -0.0171702 + ], + [ + 109.3502771, + -0.0168216 + ], + [ + 109.3503265, + -0.0167093 + ], + [ + 109.3509087, + -0.0155782 + ], + [ + 109.3509314, + -0.015535 + ], + [ + 109.3509511, + -0.0154984 + ], + [ + 109.3509595, + -0.0154777 + ], + [ + 109.3509682, + -0.0154591 + ], + [ + 109.3509726, + -0.0154485 + ], + [ + 109.350968, + -0.0154261 + ], + [ + 109.3509177, + -0.0153633 + ], + [ + 109.3509168, + -0.0153486 + ], + [ + 109.3509223, + -0.0153275 + ], + [ + 109.3510142, + -0.0151518 + ], + [ + 109.3510598, + -0.0150686 + ], + [ + 109.3511131, + -0.0149549 + ] + ] + }, + "id": "way/284396400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396401", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499923, + 0.0085348 + ], + [ + 109.3514728, + 0.0077623 + ], + [ + 109.3530681, + 0.0069309 + ], + [ + 109.3540251, + 0.0064386 + ], + [ + 109.354035, + 0.0064309 + ], + [ + 109.3540377, + 0.0064165 + ], + [ + 109.3540237, + 0.0063279 + ], + [ + 109.3539769, + 0.0058844 + ], + [ + 109.3539479, + 0.0058077 + ], + [ + 109.3538976, + 0.0056903 + ], + [ + 109.3536839, + 0.0053106 + ], + [ + 109.3535219, + 0.0050614 + ], + [ + 109.3534193, + 0.0049036 + ], + [ + 109.3534045, + 0.0048809 + ], + [ + 109.353238, + 0.0046103 + ], + [ + 109.3531434, + 0.0044621 + ], + [ + 109.3529655, + 0.0041837 + ], + [ + 109.3529353, + 0.004141 + ], + [ + 109.3527266, + 0.0038465 + ], + [ + 109.3522598, + 0.0031259 + ], + [ + 109.3521324, + 0.0029292 + ] + ] + }, + "id": "way/284396401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396402", + "highway": "residential", + "name": "KOMPLEK ZAMRUD PANGERAN RESIDENCE 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522842, + -0.0096439 + ], + [ + 109.3528033, + -0.010009 + ], + [ + 109.3530589, + -0.0101887 + ], + [ + 109.3536596, + -0.0105943 + ], + [ + 109.3537795, + -0.0106645 + ], + [ + 109.3538265, + -0.0107034 + ], + [ + 109.3540826, + -0.0108898 + ], + [ + 109.354206, + -0.0109863 + ], + [ + 109.3543442, + -0.0110869 + ], + [ + 109.3545829, + -0.0112143 + ], + [ + 109.354715, + -0.0112438 + ], + [ + 109.3548705, + -0.0112673 + ], + [ + 109.3550723, + -0.0113177 + ] + ] + }, + "id": "way/284396402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396403", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411264, + -0.0167495 + ], + [ + 109.3411748, + -0.0166931 + ], + [ + 109.3412181, + -0.0166427 + ], + [ + 109.34147, + -0.0163492 + ], + [ + 109.3416386, + -0.0161527 + ], + [ + 109.3417249, + -0.0160522 + ], + [ + 109.3417669, + -0.0160017 + ], + [ + 109.3418632, + -0.015886 + ], + [ + 109.3421078, + -0.0155998 + ], + [ + 109.3421741, + -0.0155152 + ], + [ + 109.3423867, + -0.0152005 + ], + [ + 109.3426254, + -0.0148513 + ], + [ + 109.3426563, + -0.0148135 + ], + [ + 109.3427943, + -0.0146647 + ], + [ + 109.342906, + -0.0145444 + ], + [ + 109.3429421, + -0.0145054 + ], + [ + 109.3430007, + -0.0144266 + ], + [ + 109.3431097, + -0.0142801 + ], + [ + 109.3431306, + -0.0142492 + ], + [ + 109.3431687, + -0.0141339 + ], + [ + 109.3431796, + -0.0140619 + ], + [ + 109.3432023, + -0.0139381 + ], + [ + 109.3432371, + -0.0138147 + ], + [ + 109.3434553, + -0.0132035 + ], + [ + 109.343573, + -0.0129762 + ] + ] + }, + "id": "way/284396403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396404", + "highway": "residential", + "name": "Gang Sepakat", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751526, + -0.0119291 + ], + [ + 109.3751422, + -0.011953 + ], + [ + 109.3750643, + -0.0121323 + ], + [ + 109.3750233, + -0.0122268 + ], + [ + 109.3749655, + -0.0123787 + ], + [ + 109.3748971, + -0.0125625 + ], + [ + 109.3748114, + -0.012714 + ], + [ + 109.3746626, + -0.0129966 + ], + [ + 109.374214, + -0.0138818 + ], + [ + 109.3740351, + -0.014236 + ], + [ + 109.373984, + -0.0143371 + ], + [ + 109.3738955, + -0.0145047 + ], + [ + 109.3737862, + -0.0147381 + ], + [ + 109.3735971, + -0.0151049 + ], + [ + 109.373416, + -0.0155085 + ] + ] + }, + "id": "way/284396404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396405", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547378, + -0.015153 + ], + [ + 109.3534661, + -0.0150353 + ], + [ + 109.3534417, + -0.0150157 + ], + [ + 109.3534233, + -0.0149839 + ], + [ + 109.353478, + -0.0148881 + ], + [ + 109.35353, + -0.0148145 + ], + [ + 109.3536805, + -0.0146315 + ], + [ + 109.3537306, + -0.0145872 + ], + [ + 109.3537534, + -0.0145657 + ], + [ + 109.3538003, + -0.0145403 + ], + [ + 109.3538547, + -0.0145349 + ], + [ + 109.3538949, + -0.0145409 + ], + [ + 109.354785, + -0.0146545 + ] + ] + }, + "id": "way/284396405" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396407", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682908, + -0.0044745 + ], + [ + 109.3685917, + -0.0045223 + ], + [ + 109.3691111, + -0.0046049 + ], + [ + 109.3697824, + -0.0046993 + ], + [ + 109.3701296, + -0.0047481 + ], + [ + 109.3701732, + -0.0047542 + ], + [ + 109.3702774, + -0.0047693 + ], + [ + 109.370399, + -0.004787 + ], + [ + 109.3708288, + -0.0048495 + ], + [ + 109.3710791, + -0.0048789 + ], + [ + 109.3711931, + -0.0049024 + ], + [ + 109.3712343, + -0.0048991 + ], + [ + 109.3712707, + -0.0048873 + ], + [ + 109.3712823, + -0.0048508 + ], + [ + 109.3712888, + -0.004809 + ], + [ + 109.371297, + -0.0046992 + ], + [ + 109.3713231, + -0.0043282 + ], + [ + 109.3713488, + -0.0039639 + ], + [ + 109.3713715, + -0.0035927 + ], + [ + 109.3714025, + -0.0032431 + ], + [ + 109.3714172, + -0.0028949 + ], + [ + 109.3714326, + -0.0024897 + ], + [ + 109.3714475, + -0.0020667 + ], + [ + 109.3714525, + -0.0018685 + ], + [ + 109.3714567, + -0.0016952 + ], + [ + 109.3714674, + -0.0013612 + ], + [ + 109.3714674, + -0.0009535 + ], + [ + 109.3714727, + -0.0007376 + ] + ] + }, + "id": "way/284396407" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396408", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515522, + -0.0105286 + ], + [ + 109.3516193, + -0.0105871 + ], + [ + 109.3518631, + -0.0107724 + ], + [ + 109.3520033, + -0.0108817 + ], + [ + 109.3520472, + -0.0109326 + ], + [ + 109.3520589, + -0.0109783 + ], + [ + 109.3520529, + -0.0109991 + ], + [ + 109.3520419, + -0.0110172 + ], + [ + 109.3521429, + -0.0111089 + ], + [ + 109.3533865, + -0.0119901 + ], + [ + 109.3540355, + -0.0124475 + ] + ] + }, + "id": "way/284396408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396411", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643454, + -0.0118607 + ], + [ + 109.3643548, + -0.0115831 + ], + [ + 109.3643703, + -0.0113173 + ], + [ + 109.3643864, + -0.0110226 + ], + [ + 109.3644085, + -0.010817 + ], + [ + 109.364453, + -0.0104508 + ], + [ + 109.3645039, + -0.0100882 + ], + [ + 109.3645399, + -0.0097057 + ], + [ + 109.3645914, + -0.0092231 + ], + [ + 109.3646163, + -0.0089483 + ], + [ + 109.3646379, + -0.008722 + ], + [ + 109.3647174, + -0.0079739 + ], + [ + 109.3647369, + -0.0077901 + ], + [ + 109.3647599, + -0.0075734 + ], + [ + 109.3647771, + -0.0074151 + ], + [ + 109.3648115, + -0.0071575 + ], + [ + 109.3648336, + -0.0070053 + ], + [ + 109.3648497, + -0.0068658 + ], + [ + 109.3648598, + -0.0067203 + ], + [ + 109.3648793, + -0.0063432 + ], + [ + 109.3649178, + -0.0059407 + ], + [ + 109.364919, + -0.005928 + ], + [ + 109.3649407, + -0.0057003 + ], + [ + 109.3649551, + -0.0055496 + ], + [ + 109.3650047, + -0.0050296 + ], + [ + 109.3650194, + -0.0049489 + ], + [ + 109.3650734, + -0.0046942 + ] + ] + }, + "id": "way/284396411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396412", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477515, + -0.0175183 + ], + [ + 109.3480396, + -0.0176087 + ], + [ + 109.348215, + -0.0176357 + ], + [ + 109.348251, + -0.0176413 + ], + [ + 109.3484722, + -0.017661 + ], + [ + 109.3486552, + -0.0177106 + ], + [ + 109.3488603, + -0.0177619 + ], + [ + 109.3492432, + -0.0178625 + ], + [ + 109.3493621, + -0.0178884 + ], + [ + 109.3495564, + -0.0179083 + ], + [ + 109.3496945, + -0.0179158 + ], + [ + 109.3498172, + -0.0179033 + ], + [ + 109.3498833, + -0.017904 + ], + [ + 109.3499632, + -0.0178893 + ], + [ + 109.3502241, + -0.0178472 + ], + [ + 109.3503262, + -0.0178327 + ], + [ + 109.3504653, + -0.017807 + ], + [ + 109.350529, + -0.0177844 + ], + [ + 109.35064, + -0.0177468 + ], + [ + 109.3508251, + -0.0176979 + ], + [ + 109.3509205, + -0.0176805 + ], + [ + 109.3509458, + -0.0176744 + ], + [ + 109.3510678, + -0.0176463 + ], + [ + 109.3511175, + -0.0176355 + ], + [ + 109.3511309, + -0.0176422 + ], + [ + 109.3511436, + -0.017659 + ], + [ + 109.3511463, + -0.0176805 + ], + [ + 109.3511496, + -0.0185971 + ] + ] + }, + "id": "way/284396412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396413", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612271, + -0.0036855 + ], + [ + 109.3611822, + -0.00403 + ], + [ + 109.3611604, + -0.004192 + ], + [ + 109.361101, + -0.0045866 + ], + [ + 109.3610587, + -0.0049485 + ], + [ + 109.3610029, + -0.0053635 + ], + [ + 109.3609645, + -0.0056491 + ], + [ + 109.3609559, + -0.0057131 + ], + [ + 109.3609105, + -0.0060506 + ], + [ + 109.3608804, + -0.0062746 + ], + [ + 109.3608566, + -0.0064991 + ], + [ + 109.3608511, + -0.0065639 + ], + [ + 109.3608482, + -0.0067039 + ], + [ + 109.3607884, + -0.0072184 + ], + [ + 109.3606917, + -0.0078178 + ], + [ + 109.3606659, + -0.0080113 + ], + [ + 109.3606311, + -0.0082181 + ], + [ + 109.3605649, + -0.0086249 + ], + [ + 109.3605594, + -0.0086656 + ], + [ + 109.3605312, + -0.0089368 + ], + [ + 109.3605253, + -0.0089551 + ], + [ + 109.3604833, + -0.0092318 + ], + [ + 109.3604417, + -0.0095565 + ], + [ + 109.3604201, + -0.009702 + ], + [ + 109.3603561, + -0.0101411 + ], + [ + 109.3603542, + -0.0101721 + ], + [ + 109.360324, + -0.0105404 + ], + [ + 109.3602316, + -0.0111607 + ], + [ + 109.3602089, + -0.0113391 + ], + [ + 109.360175, + -0.0116064 + ], + [ + 109.3601519, + -0.0118479 + ], + [ + 109.3600089, + -0.0128742 + ] + ] + }, + "id": "way/284396413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396415", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547896, + -0.0067045 + ], + [ + 109.3548126, + -0.0066659 + ], + [ + 109.3549078, + -0.0065356 + ], + [ + 109.3551307, + -0.0062423 + ], + [ + 109.3553787, + -0.0059161 + ], + [ + 109.3555412, + -0.0057014 + ], + [ + 109.3555573, + -0.0056428 + ], + [ + 109.35554, + -0.0055719 + ], + [ + 109.3555193, + -0.0055495 + ], + [ + 109.3543722, + -0.0046085 + ], + [ + 109.3530657, + -0.0035368 + ] + ] + }, + "id": "way/284396415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396416", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493043, + -0.0140135 + ], + [ + 109.3505576, + -0.0141882 + ] + ] + }, + "id": "way/284396416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396418", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624443, + -0.0083781 + ], + [ + 109.3626449, + -0.0083678 + ], + [ + 109.3629393, + -0.0083517 + ], + [ + 109.3632263, + -0.008337 + ], + [ + 109.3634395, + -0.0083175 + ] + ] + }, + "id": "way/284396418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396419", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497161, + -0.0009361 + ], + [ + 109.349111, + -0.00058 + ] + ] + }, + "id": "way/284396419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396420", + "highway": "residential", + "name": "Gang Norman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373416, + -0.0155085 + ], + [ + 109.3733664, + -0.0157312 + ], + [ + 109.3733543, + -0.0157928 + ], + [ + 109.373302, + -0.0159672 + ], + [ + 109.3730083, + -0.0168832 + ], + [ + 109.3728165, + -0.0174679 + ], + [ + 109.3727991, + -0.017543 + ], + [ + 109.3726476, + -0.0180472 + ], + [ + 109.3724947, + -0.018522 + ], + [ + 109.3724598, + -0.0186159 + ], + [ + 109.372437, + -0.0186923 + ], + [ + 109.3723243, + -0.0190933 + ], + [ + 109.3722466, + -0.0192891 + ], + [ + 109.3721661, + -0.0195023 + ] + ] + }, + "id": "way/284396420" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396422", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594879, + -0.0027928 + ], + [ + 109.3583232, + -0.0027491 + ] + ] + }, + "id": "way/284396422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564066, + -0.0017274 + ], + [ + 109.3595531, + -0.0019275 + ] + ] + }, + "id": "way/284396423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396424", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498833, + -0.017904 + ], + [ + 109.349883, + -0.0187305 + ] + ] + }, + "id": "way/284396424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396427", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619932, + -0.0135138 + ], + [ + 109.3627792, + -0.0135439 + ] + ] + }, + "id": "way/284396427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396428", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3717559, + -0.0186289 + ], + [ + 109.3720776, + -0.0171098 + ], + [ + 109.372268, + -0.0162783 + ], + [ + 109.3723565, + -0.0159323 + ], + [ + 109.3723807, + -0.0158384 + ], + [ + 109.3724821, + -0.0155559 + ] + ] + }, + "id": "way/284396428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396430", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558954, + -0.0059194 + ], + [ + 109.3585095, + -0.0059888 + ] + ] + }, + "id": "way/284396430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3692141, + -0.0017508 + ], + [ + 109.370804, + -0.0020165 + ], + [ + 109.3709269, + -0.0020358 + ], + [ + 109.3709383, + -0.0020492 + ], + [ + 109.3709437, + -0.0020961 + ], + [ + 109.3709026, + -0.0023965 + ] + ] + }, + "id": "way/284396431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396432", + "highway": "residential", + "name": "Gang Borneo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3677224, + -0.0151781 + ], + [ + 109.3678953, + -0.014726 + ], + [ + 109.3679959, + -0.0144645 + ], + [ + 109.3681495, + -0.0140689 + ], + [ + 109.3682447, + -0.0138228 + ], + [ + 109.3683372, + -0.0135794 + ], + [ + 109.3684325, + -0.0133152 + ], + [ + 109.3685693, + -0.0129497 + ], + [ + 109.368641, + -0.0127371 + ], + [ + 109.3687101, + -0.0125433 + ], + [ + 109.3687939, + -0.0122845 + ], + [ + 109.368869, + -0.0120659 + ] + ] + }, + "id": "way/284396432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396434", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435885, + -0.0108697 + ], + [ + 109.3434397, + -0.0111196 + ] + ] + }, + "id": "way/284396434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396435", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582252, + -0.0144436 + ], + [ + 109.3581987, + -0.0160217 + ] + ] + }, + "id": "way/284396435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396436", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498509, + -0.012557 + ], + [ + 109.3496657, + -0.012432 + ], + [ + 109.3495095, + -0.0123241 + ], + [ + 109.3494029, + -0.0122376 + ], + [ + 109.3493633, + -0.0121953 + ], + [ + 109.3493365, + -0.0121591 + ], + [ + 109.3493016, + -0.0121082 + ], + [ + 109.3492848, + -0.0120799 + ], + [ + 109.3491051, + -0.0118855 + ], + [ + 109.3489505, + -0.0116879 + ] + ] + }, + "id": "way/284396436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396437", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512671, + 0.0046818 + ], + [ + 109.3527266, + 0.0038465 + ] + ] + }, + "id": "way/284396437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396440", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433278, + -0.0103843 + ], + [ + 109.3437329, + -0.0105734 + ], + [ + 109.3440046, + -0.0107116 + ] + ] + }, + "id": "way/284396440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396441", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352244, + -0.0122678 + ], + [ + 109.3526584, + -0.0125635 + ], + [ + 109.3532894, + -0.0130644 + ], + [ + 109.3536072, + -0.0133111 + ], + [ + 109.3539569, + -0.0135653 + ] + ] + }, + "id": "way/284396441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396444", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643864, + -0.0110226 + ], + [ + 109.3643057, + -0.0110204 + ] + ] + }, + "id": "way/284396444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396445", + "highway": "residential", + "name": "Jalan 28 Oktober Jalur II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364453, + -0.0104508 + ], + [ + 109.3645822, + -0.0104425 + ], + [ + 109.3649248, + -0.0104237 + ], + [ + 109.3653385, + -0.0104023 + ], + [ + 109.3656135, + -0.0103875 + ], + [ + 109.3659729, + -0.0103701 + ], + [ + 109.3663397, + -0.0103466 + ], + [ + 109.3667152, + -0.0103232 + ], + [ + 109.3670015, + -0.0103037 + ] + ] + }, + "id": "way/284396445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396446", + "highway": "residential", + "lanes": "1", + "name": "Gang Karya Bakti III", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714601, + -0.0155389 + ], + [ + 109.3717155, + -0.0148568 + ], + [ + 109.3718496, + -0.0145054 + ], + [ + 109.3722171, + -0.0134674 + ], + [ + 109.3725987, + -0.0124266 + ] + ] + }, + "id": "way/284396446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396448", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536839, + 0.0053106 + ], + [ + 109.3517263, + 0.0062649 + ] + ] + }, + "id": "way/284396448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396449", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528653, + -0.0165445 + ], + [ + 109.3528965, + -0.016545 + ], + [ + 109.3529376, + -0.0165455 + ], + [ + 109.3529696, + -0.0165463 + ], + [ + 109.3529947, + -0.0165483 + ], + [ + 109.3530213, + -0.0165504 + ], + [ + 109.353178, + -0.0165567 + ] + ] + }, + "id": "way/284396449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396450", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549303, + -0.0141136 + ], + [ + 109.356084, + -0.0141387 + ] + ] + }, + "id": "way/284396450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396451", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615174, + 0.0015857 + ], + [ + 109.3620154, + 0.0048816 + ] + ] + }, + "id": "way/284396451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396453", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600194, + -0.0148194 + ], + [ + 109.3605036, + -0.0147664 + ], + [ + 109.3605544, + -0.0147596 + ], + [ + 109.3606252, + -0.0147501 + ], + [ + 109.3607432, + -0.014732 + ], + [ + 109.3608787, + -0.0146998 + ], + [ + 109.3609886, + -0.0146761 + ] + ] + }, + "id": "way/284396453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396455", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610587, + -0.0049485 + ], + [ + 109.3581147, + -0.0048515 + ], + [ + 109.3579015, + -0.0048525 + ], + [ + 109.3578573, + -0.0048572 + ] + ] + }, + "id": "way/284396455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396456", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648793, + -0.0063432 + ], + [ + 109.3680442, + -0.0063555 + ] + ] + }, + "id": "way/284396456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396458", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533291, + -0.0074992 + ], + [ + 109.3533864, + -0.0075576 + ], + [ + 109.3535556, + -0.0077154 + ], + [ + 109.3536562, + -0.00782 + ], + [ + 109.353763, + -0.0079127 + ] + ] + }, + "id": "way/284396458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396459", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3691579, + -0.0041945 + ], + [ + 109.3691661, + -0.0041291 + ], + [ + 109.3692049, + -0.0038195 + ], + [ + 109.3692566, + -0.0034428 + ], + [ + 109.3693092, + -0.0030372 + ] + ] + }, + "id": "way/284396459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396460", + "highway": "residential", + "name": "Gang Kalilandak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3656504, + -0.0157195 + ], + [ + 109.3655494, + -0.0163588 + ] + ] + }, + "id": "way/284396460" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396461", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548957, + -0.0146101 + ], + [ + 109.3560564, + -0.0146401 + ] + ] + }, + "id": "way/284396461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396462", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528466, + -0.0163051 + ], + [ + 109.3521981, + -0.0164603 + ] + ] + }, + "id": "way/284396462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396463", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484262, + -0.0063834 + ], + [ + 109.3491487, + -0.0068249 + ], + [ + 109.3493204, + -0.0069288 + ], + [ + 109.3495323, + -0.007081 + ], + [ + 109.3497214, + -0.0072071 + ], + [ + 109.3498944, + -0.0073157 + ] + ] + }, + "id": "way/284396463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396465", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504287, + 0.0024094 + ], + [ + 109.3514336, + 0.0018121 + ] + ] + }, + "id": "way/284396465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396466", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486079, + -0.0126879 + ], + [ + 109.3485747, + -0.012655 + ], + [ + 109.3485627, + -0.0126433 + ], + [ + 109.3484755, + -0.012544 + ], + [ + 109.3484113, + -0.0124658 + ], + [ + 109.348294, + -0.0123267 + ], + [ + 109.3482147, + -0.0122427 + ] + ] + }, + "id": "way/284396466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396467", + "highway": "residential", + "name": "Gang Karya Bakti II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3698212, + -0.0154383 + ], + [ + 109.3699251, + -0.0151189 + ], + [ + 109.3700049, + -0.0148896 + ], + [ + 109.3701035, + -0.0145738 + ], + [ + 109.37019, + -0.0142935 + ], + [ + 109.370255, + -0.0140977 + ], + [ + 109.3703321, + -0.0138543 + ], + [ + 109.3703724, + -0.0137202 + ], + [ + 109.3704361, + -0.0135096 + ], + [ + 109.3705212, + -0.0132327 + ], + [ + 109.3705957, + -0.013008 + ], + [ + 109.370652, + -0.012821 + ], + [ + 109.3707405, + -0.012534 + ], + [ + 109.3707848, + -0.0123965 + ], + [ + 109.3708109, + -0.0123254 + ] + ] + }, + "id": "way/284396467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396468", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643448, + -0.0029477 + ], + [ + 109.3639122, + -0.0029237 + ], + [ + 109.3637779, + -0.002906 + ] + ] + }, + "id": "way/284396468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396470", + "highway": "residential", + "name": "Gang Praja Jaya 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619075, + 0.0087607 + ], + [ + 109.3618557, + 0.0082925 + ] + ] + }, + "id": "way/284396470" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396471", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612857, + 0.0049555 + ], + [ + 109.361243, + 0.0046279 + ], + [ + 109.3610239, + 0.0031775 + ] + ] + }, + "id": "way/284396471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396472", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604201, + -0.009702 + ], + [ + 109.3611503, + -0.0096841 + ], + [ + 109.3615137, + -0.0096667 + ], + [ + 109.3618354, + -0.0096554 + ] + ] + }, + "id": "way/284396472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396473", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364919, + -0.005928 + ], + [ + 109.3681028, + -0.0059662 + ] + ] + }, + "id": "way/284396473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396475", + "highway": "residential", + "name": "KOMPLEK SIANTAN PERMAI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611822, + -0.00403 + ], + [ + 109.3636716, + -0.0040697 + ] + ] + }, + "id": "way/284396475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396476", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3664939, + -0.0090196 + ], + [ + 109.3664983, + -0.0090451 + ], + [ + 109.3664986, + -0.0090742 + ], + [ + 109.3664999, + -0.009096 + ], + [ + 109.3665016, + -0.0091185 + ], + [ + 109.3665026, + -0.009152 + ], + [ + 109.3665029, + -0.0091916 + ], + [ + 109.366505, + -0.009256 + ], + [ + 109.3665063, + -0.0092905 + ], + [ + 109.3665063, + -0.0093046 + ], + [ + 109.3665086, + -0.009317 + ], + [ + 109.366516, + -0.009321 + ] + ] + }, + "id": "way/284396476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396477", + "highway": "residential", + "name": "Gang Kalilandak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3658564, + -0.0168091 + ], + [ + 109.3651211, + -0.0166822 + ] + ] + }, + "id": "way/284396477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396478", + "highway": "residential", + "name": "Gang Maluku 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535136, + -0.0175578 + ], + [ + 109.3535165, + -0.0173526 + ], + [ + 109.3535244, + -0.0168436 + ], + [ + 109.3535318, + -0.0165875 + ], + [ + 109.3535379, + -0.0163494 + ] + ] + }, + "id": "way/284396478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3664072, + 0.0014806 + ], + [ + 109.3666521, + 0.001494 + ], + [ + 109.3673556, + 0.0015289 + ], + [ + 109.3678538, + 0.0015557 + ], + [ + 109.3685017, + 0.0016045 + ] + ] + }, + "id": "way/284396480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396481", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3694368, + -0.0006389 + ], + [ + 109.3708184, + -0.0008948 + ] + ] + }, + "id": "way/284396481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396482", + "highway": "residential", + "name": "Gang Kalawit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3673188, + -0.0150359 + ], + [ + 109.367381, + -0.0148903 + ], + [ + 109.3674695, + -0.0146824 + ], + [ + 109.3675634, + -0.0144558 + ], + [ + 109.3676801, + -0.0141661 + ], + [ + 109.3677847, + -0.0138905 + ], + [ + 109.3678705, + -0.0136659 + ], + [ + 109.367953, + -0.013454 + ], + [ + 109.3680362, + -0.0132374 + ], + [ + 109.3681186, + -0.0130268 + ] + ] + }, + "id": "way/284396482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396483", + "highway": "residential", + "name": "KOMPLEK GRAND PAWARSAL" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483882, + 0.0014787 + ], + [ + 109.3504511, + 0.00027 + ] + ] + }, + "id": "way/284396483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396485", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3671598, + -0.0096332 + ], + [ + 109.3671732, + -0.0095943 + ], + [ + 109.3671933, + -0.0094588 + ], + [ + 109.3672094, + -0.0093891 + ], + [ + 109.3672178, + -0.0093411 + ], + [ + 109.3672137, + -0.0093348 + ], + [ + 109.3672043, + -0.0093284 + ], + [ + 109.3670672, + -0.0093234 + ], + [ + 109.3668714, + -0.0093234 + ], + [ + 109.366516, + -0.009321 + ] + ] + }, + "id": "way/284396485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396486", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554337, + -0.0155526 + ], + [ + 109.3553996, + -0.0165533 + ] + ] + }, + "id": "way/284396486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396487", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439315, + -0.0139627 + ], + [ + 109.3442441, + -0.0140874 + ], + [ + 109.3443993, + -0.0141566 + ] + ] + }, + "id": "way/284396487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396489", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352474, + -0.0144283 + ], + [ + 109.3513678, + -0.0143017 + ] + ] + }, + "id": "way/284396489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396490", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3613432, + -0.0128306 + ], + [ + 109.3613487, + -0.0129323 + ], + [ + 109.3613434, + -0.0130141 + ], + [ + 109.361338, + -0.0131267 + ], + [ + 109.3613026, + -0.013461 + ] + ] + }, + "id": "way/284396490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396491", + "highway": "residential", + "lanes": "1", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3726758, + -0.0116823 + ], + [ + 109.3726501, + -0.0118366 + ], + [ + 109.372548, + -0.012365 + ] + ] + }, + "id": "way/284396491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396492", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3695222, + -0.0002957 + ], + [ + 109.370574, + -0.0004617 + ] + ] + }, + "id": "way/284396492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396494", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469911, + -0.0012387 + ], + [ + 109.3470312, + -0.0012687 + ], + [ + 109.3488593, + -0.0023051 + ], + [ + 109.3488867, + -0.0023206 + ] + ] + }, + "id": "way/284396494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396495", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494184, + -0.0137217 + ], + [ + 109.3503973, + -0.0138241 + ], + [ + 109.3514086, + -0.0139127 + ] + ] + }, + "id": "way/284396495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396496", + "highway": "residential", + "name": "Jalan 28 Oktober Jalur III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645039, + -0.0100882 + ], + [ + 109.3646988, + -0.0100851 + ], + [ + 109.364961, + -0.0100777 + ], + [ + 109.3652373, + -0.0100704 + ], + [ + 109.3654874, + -0.0100596 + ], + [ + 109.3657442, + -0.0100469 + ], + [ + 109.3659937, + -0.0100375 + ], + [ + 109.3662337, + -0.0100241 + ], + [ + 109.366506, + -0.0100087 + ], + [ + 109.3666206, + -0.0100026 + ], + [ + 109.3667098, + -0.0099946 + ], + [ + 109.366805, + -0.0099885 + ], + [ + 109.3668956, + -0.0099818 + ], + [ + 109.3669412, + -0.0099785 + ], + [ + 109.3670156, + -0.0099731 + ], + [ + 109.3670927, + -0.0099657 + ] + ] + }, + "id": "way/284396496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396497", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3617707, + -0.0073759 + ], + [ + 109.361717, + -0.0073799 + ], + [ + 109.3615843, + -0.007388 + ], + [ + 109.3614529, + -0.007388 + ], + [ + 109.3613938, + -0.007388 + ], + [ + 109.3613764, + -0.007394 + ], + [ + 109.3613705, + -0.0074036 + ], + [ + 109.3613684, + -0.0074175 + ], + [ + 109.361369, + -0.0074383 + ], + [ + 109.3613697, + -0.0074644 + ], + [ + 109.3613709, + -0.0075249 + ], + [ + 109.3613762, + -0.0075484 + ], + [ + 109.361393, + -0.0075618 + ], + [ + 109.3614701, + -0.0075739 + ], + [ + 109.3615291, + -0.0075739 + ], + [ + 109.3616084, + -0.0075784 + ], + [ + 109.3616943, + -0.0075797 + ], + [ + 109.3618912, + -0.0075665 + ], + [ + 109.3620662, + -0.0075685 + ], + [ + 109.362319, + -0.0075625 + ], + [ + 109.362535, + -0.0075618 + ], + [ + 109.3628883, + -0.0075504 + ], + [ + 109.3632068, + -0.0075451 + ], + [ + 109.3634838, + -0.0075558 + ] + ] + }, + "id": "way/284396497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396499", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3741709, + -0.0032651 + ], + [ + 109.3738545, + -0.0032656 + ], + [ + 109.3732524, + -0.0032753 + ], + [ + 109.3728983, + -0.003279 + ], + [ + 109.372732, + -0.003279 + ] + ] + }, + "id": "way/284396499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396500", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3603248, + 0.0081738 + ], + [ + 109.3611494, + 0.0080536 + ] + ] + }, + "id": "way/284396500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396501", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497058, + -0.0151528 + ], + [ + 109.3493527, + -0.0158657 + ], + [ + 109.3487055, + -0.0171841 + ], + [ + 109.3484722, + -0.017661 + ] + ] + }, + "id": "way/284396501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396502", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489023, + -0.013229 + ], + [ + 109.3488885, + -0.0132149 + ], + [ + 109.3485647, + -0.012862 + ], + [ + 109.3485067, + -0.0127972 + ], + [ + 109.3484426, + -0.0127214 + ], + [ + 109.3483249, + -0.0125883 + ], + [ + 109.3481036, + -0.0123433 + ] + ] + }, + "id": "way/284396502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396504", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36054, + 0.008812 + ], + [ + 109.3612266, + 0.0086801 + ] + ] + }, + "id": "way/284396504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396505", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3755661, + -0.0125755 + ], + [ + 109.3757764, + -0.0126459 + ], + [ + 109.3760027, + -0.012711 + ], + [ + 109.3762544, + -0.0127814 + ] + ] + }, + "id": "way/284396505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396506", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501475, + -0.0152404 + ], + [ + 109.3497911, + -0.0159109 + ], + [ + 109.3494599, + -0.0165305 + ], + [ + 109.3492869, + -0.0168832 + ], + [ + 109.3491313, + -0.017197 + ], + [ + 109.3488603, + -0.0177619 + ] + ] + }, + "id": "way/284396506" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396507", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549651, + -0.0136171 + ], + [ + 109.3560756, + -0.0136645 + ] + ] + }, + "id": "way/284396507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396511", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3687741, + -0.0015083 + ], + [ + 109.3681938, + -0.0014936 + ], + [ + 109.3656059, + -0.0014747 + ] + ] + }, + "id": "way/284396511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396521", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640814, + -0.0060099 + ], + [ + 109.3635763, + -0.0059992 + ], + [ + 109.3635628, + -0.0059989 + ] + ] + }, + "id": "way/284396521" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396522", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582557, + -0.0160124 + ], + [ + 109.3582745, + -0.016305 + ], + [ + 109.358322, + -0.0178806 + ] + ] + }, + "id": "way/284396522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396523", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3727464, + -0.0036932 + ], + [ + 109.3743899, + -0.0037441 + ] + ] + }, + "id": "way/284396523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359279, + -0.0092447 + ], + [ + 109.3596515, + -0.0092361 + ], + [ + 109.3604833, + -0.0092318 + ] + ] + }, + "id": "way/284396524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396526", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548851, + -0.0150738 + ], + [ + 109.356045, + -0.0151195 + ] + ] + }, + "id": "way/284396526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396527", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3566456, + 0.0002218 + ], + [ + 109.3592535, + -0.0000122 + ], + [ + 109.3617399, + -0.0002353 + ] + ] + }, + "id": "way/284396527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396529", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360175, + -0.0116064 + ], + [ + 109.3610926, + -0.0115684 + ], + [ + 109.361244, + -0.0115593 + ], + [ + 109.36184, + -0.0115359 + ], + [ + 109.3619536, + -0.0115308 + ], + [ + 109.3624693, + -0.0115197 + ], + [ + 109.3628109, + -0.011507 + ], + [ + 109.3635361, + -0.0114906 + ] + ] + }, + "id": "way/284396529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396530", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548869, + -0.0147692 + ], + [ + 109.3560537, + -0.0148179 + ] + ] + }, + "id": "way/284396530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396531", + "highway": "residential", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468702, + -0.0060832 + ], + [ + 109.3468829, + -0.0060893 + ], + [ + 109.3482798, + -0.0067638 + ], + [ + 109.3484178, + -0.006847 + ], + [ + 109.3486197, + -0.0069791 + ], + [ + 109.3488953, + -0.0071602 + ], + [ + 109.3490877, + -0.0072869 + ], + [ + 109.3493593, + -0.0074586 + ], + [ + 109.3495899, + -0.0076074 + ], + [ + 109.3498334, + -0.007765 + ], + [ + 109.3498515, + -0.0077737 + ], + [ + 109.3498655, + -0.007773 + ] + ] + }, + "id": "way/284396531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396532", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428219, + -0.0113562 + ], + [ + 109.3433605, + -0.0119243 + ], + [ + 109.3436816, + -0.0122546 + ] + ] + }, + "id": "way/284396532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396534", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493194, + -0.0200643 + ], + [ + 109.3503116, + -0.0201159 + ] + ] + }, + "id": "way/284396534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396535", + "highway": "residential", + "name": "Gang Bhakti Praja 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602808, + 0.0075332 + ], + [ + 109.3610588, + 0.0074343 + ] + ] + }, + "id": "way/284396535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396537", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558542, + -0.0155508 + ], + [ + 109.355823, + -0.0162447 + ] + ] + }, + "id": "way/284396537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396539", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479745, + -0.0046889 + ], + [ + 109.34755, + -0.005767 + ], + [ + 109.3474978, + -0.005921 + ] + ] + }, + "id": "way/284396539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396540", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606659, + -0.0080113 + ], + [ + 109.3620347, + -0.0079715 + ], + [ + 109.3627468, + -0.0079635 + ], + [ + 109.3631133, + -0.0079551 + ], + [ + 109.363457, + -0.0079487 + ] + ] + }, + "id": "way/284396540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396541", + "highway": "residential", + "name": "Gang Tata Praja" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616333, + 0.0079921 + ], + [ + 109.3627752, + 0.0078499 + ] + ] + }, + "id": "way/284396541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511175, + -0.0176355 + ], + [ + 109.3511309, + -0.017315 + ] + ] + }, + "id": "way/284396542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396544", + "highway": "residential", + "name": "Gang Karya Tengah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3694592, + -0.0154004 + ], + [ + 109.3694785, + -0.0153396 + ], + [ + 109.3695151, + -0.0152276 + ], + [ + 109.3695858, + -0.0150023 + ], + [ + 109.3696958, + -0.0146677 + ], + [ + 109.3697856, + -0.0144035 + ], + [ + 109.369913, + -0.0140011 + ], + [ + 109.3700646, + -0.0135277 + ], + [ + 109.3701799, + -0.0131911 + ] + ] + }, + "id": "way/284396544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396545", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594661, + -0.0032895 + ], + [ + 109.3562239, + -0.0031675 + ] + ] + }, + "id": "way/284396545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396546", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502241, + -0.0178472 + ], + [ + 109.3504241, + -0.0174035 + ], + [ + 109.3505341, + -0.0171755 + ], + [ + 109.3506114, + -0.017005 + ], + [ + 109.3506309, + -0.0169644 + ] + ] + }, + "id": "way/284396546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396548", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693362, + -0.0009942 + ], + [ + 109.3689539, + -0.0007108 + ] + ] + }, + "id": "way/284396548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396552", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428597, + -0.0192677 + ], + [ + 109.3431035, + -0.0193859 + ], + [ + 109.3434101, + -0.0195292 + ], + [ + 109.3436261, + -0.0196244 + ], + [ + 109.3438976, + -0.019723 + ], + [ + 109.3440197, + -0.0197618 + ], + [ + 109.3441491, + -0.0198027 + ], + [ + 109.3442966, + -0.0198457 + ], + [ + 109.3444897, + -0.0199221 + ], + [ + 109.3446587, + -0.0200066 + ], + [ + 109.3446916, + -0.020026 + ], + [ + 109.3447231, + -0.0200683 + ], + [ + 109.3447928, + -0.0202017 + ], + [ + 109.3448163, + -0.0202406 + ], + [ + 109.3448438, + -0.0202782 + ], + [ + 109.344888, + -0.0203144 + ], + [ + 109.3451428, + -0.0203861 + ], + [ + 109.3452877, + -0.0204237 + ], + [ + 109.3454996, + -0.0204881 + ], + [ + 109.3457835, + -0.0205535 + ], + [ + 109.3458221, + -0.0205638 + ], + [ + 109.3458739, + -0.0205821 + ], + [ + 109.3460293, + -0.0206409 + ], + [ + 109.346209, + -0.0207174 + ], + [ + 109.3462928, + -0.0207831 + ], + [ + 109.3463904, + -0.0208444 + ], + [ + 109.346486, + -0.0208944 + ], + [ + 109.3465617, + -0.0209273 + ], + [ + 109.3466516, + -0.0209507 + ], + [ + 109.3468526, + -0.0209887 + ], + [ + 109.3470593, + -0.0210097 + ], + [ + 109.3472712, + -0.0210144 + ], + [ + 109.3474261, + -0.0210111 + ], + [ + 109.3475316, + -0.0210067 + ], + [ + 109.3476212, + -0.021003 + ] + ] + }, + "id": "way/284396552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396555", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3766145, + -0.014445 + ], + [ + 109.3764099, + -0.0135191 + ], + [ + 109.3763302, + -0.013138 + ], + [ + 109.3762712, + -0.0128585 + ], + [ + 109.3762544, + -0.0127814 + ], + [ + 109.3761908, + -0.0124665 + ], + [ + 109.3759849, + -0.0114461 + ], + [ + 109.3759373, + -0.0112103 + ], + [ + 109.3758541, + -0.0108053 + ], + [ + 109.3758191, + -0.0106218 + ], + [ + 109.3757697, + -0.010344 + ], + [ + 109.3756168, + -0.0096277 + ], + [ + 109.3754518, + -0.0087829 + ], + [ + 109.3753439, + -0.008062 + ], + [ + 109.3752855, + -0.0077496 + ], + [ + 109.3752224, + -0.0074022 + ], + [ + 109.3751578, + -0.007075 + ], + [ + 109.375053, + -0.0065646 + ], + [ + 109.3748979, + -0.0057775 + ], + [ + 109.3747438, + -0.0050261 + ], + [ + 109.374608, + -0.0043562 + ], + [ + 109.3745881, + -0.0042593 + ], + [ + 109.3745603, + -0.0041564 + ], + [ + 109.374517, + -0.0040504 + ], + [ + 109.3743899, + -0.0037441 + ], + [ + 109.3742436, + -0.0034242 + ], + [ + 109.3741709, + -0.0032651 + ], + [ + 109.3740026, + -0.0028688 + ], + [ + 109.3738223, + -0.0024491 + ], + [ + 109.3737452, + -0.002245 + ], + [ + 109.3736541, + -0.0020397 + ], + [ + 109.3734924, + -0.001663 + ], + [ + 109.3733443, + -0.0013467 + ], + [ + 109.3732765, + -0.0011988 + ], + [ + 109.3731679, + -0.000922 + ], + [ + 109.373019, + -0.0005861 + ], + [ + 109.3728258, + -0.000123 + ], + [ + 109.3727565, + 0.0000388 + ], + [ + 109.3726938, + 0.0001857 + ], + [ + 109.3726429, + 0.0002944 + ], + [ + 109.3725789, + 0.0004171 + ], + [ + 109.3725048, + 0.0005519 + ], + [ + 109.372451, + 0.0006711 + ], + [ + 109.3721545, + 0.0012075 + ], + [ + 109.3718667, + 0.0017781 + ], + [ + 109.3715834, + 0.0023325 + ], + [ + 109.3712773, + 0.0029256 + ], + [ + 109.370917, + 0.003633 + ], + [ + 109.3708223, + 0.0038423 + ], + [ + 109.3706874, + 0.00415 + ], + [ + 109.3693703, + 0.0077965 + ] + ] + }, + "id": "way/284396555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396558", + "highway": "unclassified", + "name": "Jalan Parwasal" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521324, + 0.0029292 + ], + [ + 109.3518234, + 0.0024355 + ], + [ + 109.3516626, + 0.0021787 + ], + [ + 109.3514336, + 0.0018121 + ], + [ + 109.3512348, + 0.0015102 + ], + [ + 109.3510062, + 0.0011448 + ], + [ + 109.3508006, + 0.0008216 + ], + [ + 109.3507828, + 0.0007919 + ], + [ + 109.3505893, + 0.0004705 + ], + [ + 109.3504511, + 0.00027 + ], + [ + 109.3502109, + -0.0001247 + ], + [ + 109.3501352, + -0.0002451 + ], + [ + 109.3499183, + -0.0005921 + ], + [ + 109.3499066, + -0.0006105 + ], + [ + 109.3497161, + -0.0009361 + ], + [ + 109.3495221, + -0.0012424 + ], + [ + 109.3493045, + -0.0015938 + ], + [ + 109.3492865, + -0.0016225 + ], + [ + 109.3490748, + -0.0019609 + ], + [ + 109.3488593, + -0.0023051 + ], + [ + 109.3486517, + -0.0026299 + ], + [ + 109.3484503, + -0.0029697 + ], + [ + 109.3484262, + -0.0029976 + ], + [ + 109.3483632, + -0.0030797 + ], + [ + 109.3483233, + -0.0031214 + ], + [ + 109.3482922, + -0.0031452 + ], + [ + 109.3481496, + -0.0032347 + ], + [ + 109.3480248, + -0.0033195 + ], + [ + 109.3480029, + -0.0033399 + ], + [ + 109.3478573, + -0.0036352 + ], + [ + 109.347727, + -0.0039132 + ], + [ + 109.3476842, + -0.0040045 + ], + [ + 109.3476282, + -0.00413 + ], + [ + 109.3474927, + -0.004434 + ], + [ + 109.3471491, + -0.0052111 + ], + [ + 109.3471156, + -0.0052869 + ], + [ + 109.3468923, + -0.0057932 + ], + [ + 109.3467851, + -0.0060389 + ], + [ + 109.3467758, + -0.0060574 + ], + [ + 109.3466718, + -0.0062895 + ], + [ + 109.3465671, + -0.0065307 + ], + [ + 109.3465513, + -0.0065693 + ], + [ + 109.3465366, + -0.0066053 + ], + [ + 109.3464745, + -0.0067648 + ], + [ + 109.3463514, + -0.0070733 + ], + [ + 109.3462211, + -0.0074136 + ], + [ + 109.3461216, + -0.0076737 + ], + [ + 109.345936, + -0.0081585 + ], + [ + 109.3459147, + -0.0082142 + ], + [ + 109.3457983, + -0.00853 + ], + [ + 109.3457095, + -0.0087621 + ], + [ + 109.345674, + -0.008856 + ], + [ + 109.3456534, + -0.0089201 + ], + [ + 109.3455918, + -0.0090967 + ], + [ + 109.3455782, + -0.0091349 + ], + [ + 109.3454349, + -0.0095363 + ], + [ + 109.3454146, + -0.0095955 + ], + [ + 109.3452387, + -0.0100388 + ], + [ + 109.3451882, + -0.0101896 + ], + [ + 109.3451059, + -0.0104031 + ], + [ + 109.345097, + -0.0104274 + ], + [ + 109.344973, + -0.0108388 + ], + [ + 109.3449581, + -0.0108747 + ], + [ + 109.3448312, + -0.0112143 + ], + [ + 109.3447194, + -0.0115302 + ], + [ + 109.3446707, + -0.0116568 + ], + [ + 109.3445334, + -0.0120202 + ], + [ + 109.3445106, + -0.0120842 + ], + [ + 109.3443963, + -0.0124042 + ], + [ + 109.3443884, + -0.0124216 + ], + [ + 109.344324, + -0.0126253 + ], + [ + 109.3442037, + -0.0130063 + ], + [ + 109.3441936, + -0.0130264 + ], + [ + 109.3440823, + -0.0132822 + ], + [ + 109.3438643, + -0.0139355 + ], + [ + 109.3438251, + -0.0140528 + ], + [ + 109.3437955, + -0.0141336 + ], + [ + 109.343662, + -0.0144958 + ], + [ + 109.343647, + -0.0145408 + ], + [ + 109.3435233, + -0.0148775 + ], + [ + 109.3434481, + -0.0150821 + ], + [ + 109.3434137, + -0.0151756 + ], + [ + 109.3433785, + -0.0152719 + ], + [ + 109.343239, + -0.0156815 + ], + [ + 109.343228, + -0.0157138 + ], + [ + 109.3430628, + -0.0161991 + ], + [ + 109.3428729, + -0.0167958 + ], + [ + 109.3427101, + -0.0172546 + ], + [ + 109.3426658, + -0.0173727 + ], + [ + 109.3426162, + -0.017484 + ], + [ + 109.3425056, + -0.0177261 + ] + ] + }, + "id": "way/284396558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396560", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558002, + -0.0065968 + ], + [ + 109.3590517, + -0.0066735 + ], + [ + 109.3608482, + -0.0067039 + ] + ] + }, + "id": "way/284396560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396561", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523351, + -0.0047314 + ], + [ + 109.3524573, + -0.0045249 + ], + [ + 109.352478, + -0.0045195 + ], + [ + 109.3525102, + -0.0045276 + ], + [ + 109.3536753, + -0.0055121 + ], + [ + 109.3549078, + -0.0065356 + ] + ] + }, + "id": "way/284396561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396562", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558762, + -0.0057696 + ], + [ + 109.3557968, + -0.005753 + ] + ] + }, + "id": "way/284396562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396563", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358477, + -0.0139744 + ], + [ + 109.3585545, + -0.0139797 + ], + [ + 109.3594097, + -0.0139641 + ] + ] + }, + "id": "way/284396563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396565", + "highway": "residential", + "name": "KOMPLEK GRAND JAUJATI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.368315, + -0.0043019 + ], + [ + 109.3671693, + -0.004312 + ], + [ + 109.3666874, + -0.0043163 + ], + [ + 109.3651402, + -0.0043168 + ] + ] + }, + "id": "way/284396565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396566", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500532, + -0.012254 + ], + [ + 109.3498622, + -0.012074 + ], + [ + 109.349703, + -0.011913 + ], + [ + 109.3493392, + -0.0115013 + ], + [ + 109.3491366, + -0.0112492 + ], + [ + 109.34891, + -0.010981 + ], + [ + 109.3485171, + -0.0105277 + ], + [ + 109.3483803, + -0.0103895 + ], + [ + 109.3482636, + -0.0102675 + ], + [ + 109.3480659, + -0.0100298 + ] + ] + }, + "id": "way/284396566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396568", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492432, + -0.0178625 + ], + [ + 109.3498206, + -0.016623 + ], + [ + 109.3501009, + -0.0160034 + ], + [ + 109.3502605, + -0.0156594 + ], + [ + 109.3504187, + -0.0153456 + ], + [ + 109.3504208, + -0.0153261 + ], + [ + 109.3504147, + -0.0153121 + ] + ] + }, + "id": "way/284396568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396569", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473838, + -0.0090745 + ], + [ + 109.3475179, + -0.0091349 + ], + [ + 109.3475843, + -0.0091691 + ], + [ + 109.3476837, + -0.0092312 + ], + [ + 109.3479679, + -0.0093884 + ], + [ + 109.347992, + -0.0094065 + ], + [ + 109.3480262, + -0.0094353 + ], + [ + 109.3481053, + -0.009499 + ], + [ + 109.3482428, + -0.0096108 + ] + ] + }, + "id": "way/284396569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396572", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353763, + -0.0079127 + ], + [ + 109.3554321, + -0.0086066 + ], + [ + 109.355518, + -0.0086367 + ] + ] + }, + "id": "way/284396572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396573", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351253, + 0.0015 + ], + [ + 109.351365, + 0.0014368 + ] + ] + }, + "id": "way/284396573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396574", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562755, + 0.0043015 + ], + [ + 109.3551258, + 0.0048516 + ], + [ + 109.354132, + 0.0053386 + ] + ] + }, + "id": "way/284396574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396575", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3748354, + -0.0127255 + ], + [ + 109.3748635, + -0.0127343 + ] + ] + }, + "id": "way/284396575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396576", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740026, + -0.0028688 + ], + [ + 109.3731029, + -0.0029048 + ], + [ + 109.3725268, + -0.0029058 + ], + [ + 109.3724329, + -0.0029037 + ], + [ + 109.3720856, + -0.0028961 + ], + [ + 109.3717905, + -0.0029004 + ], + [ + 109.3714172, + -0.0028949 + ] + ] + }, + "id": "way/284396576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396577", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714475, + -0.0020667 + ], + [ + 109.3723682, + -0.0020632 + ], + [ + 109.3725631, + -0.0020554 + ], + [ + 109.3736541, + -0.0020397 + ] + ] + }, + "id": "way/284396577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396578", + "highway": "residential", + "name": "Gang Tata Praja" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615857, + 0.0076743 + ], + [ + 109.3617361, + 0.0076538 + ], + [ + 109.3620704, + 0.0076114 + ], + [ + 109.3623711, + 0.0075666 + ], + [ + 109.3627245, + 0.0075135 + ] + ] + }, + "id": "way/284396578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396579", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553787, + -0.0059161 + ], + [ + 109.3541396, + -0.0049099 + ], + [ + 109.3530215, + -0.004002 + ] + ] + }, + "id": "way/284396579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396580", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567522, + 0.0010081 + ], + [ + 109.3585965, + 0.0009151 + ], + [ + 109.3600275, + 0.0008479 + ] + ] + }, + "id": "way/284396580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396581", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436658, + -0.0145502 + ], + [ + 109.343726, + -0.0145664 + ] + ] + }, + "id": "way/284396581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396582", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536126, + -0.0109538 + ], + [ + 109.3528872, + -0.0104258 + ], + [ + 109.3522114, + -0.0099639 + ] + ] + }, + "id": "way/284396582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396583", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36704, + -0.0182709 + ], + [ + 109.3672603, + -0.0170481 + ], + [ + 109.3672992, + -0.0167933 + ], + [ + 109.3673623, + -0.0164339 + ], + [ + 109.3673797, + -0.0163159 + ], + [ + 109.3674159, + -0.0161335 + ], + [ + 109.3674803, + -0.0158379 + ], + [ + 109.3675621, + -0.0155568 + ], + [ + 109.3676332, + -0.0153261 + ], + [ + 109.3676801, + -0.0151665 + ] + ] + }, + "id": "way/284396583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3620154, + 0.0048816 + ], + [ + 109.362382, + 0.0048341 + ], + [ + 109.3644145, + 0.0046159 + ] + ] + }, + "id": "way/284396584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396585", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476105, + -0.0084891 + ], + [ + 109.3478217, + -0.0085864 + ], + [ + 109.347939, + -0.0086414 + ], + [ + 109.3480108, + -0.0086796 + ], + [ + 109.3481342, + -0.0087614 + ], + [ + 109.3483119, + -0.0088801 + ], + [ + 109.3484641, + -0.0089794 + ], + [ + 109.3485908, + -0.0090565 + ] + ] + }, + "id": "way/284396585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3713715, + -0.0035927 + ], + [ + 109.3714859, + -0.0035931 + ], + [ + 109.372745, + -0.0036446 + ] + ] + }, + "id": "way/284396587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396588", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548191, + -0.0138106 + ], + [ + 109.3549234, + -0.0138101 + ] + ] + }, + "id": "way/284396588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396589", + "highway": "residential", + "name": "Gang Karya Keluarga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681016, + -0.015264 + ], + [ + 109.3684137, + -0.0144806 + ], + [ + 109.3685672, + -0.0140963 + ], + [ + 109.3686457, + -0.0139032 + ], + [ + 109.3687444, + -0.0136518 + ], + [ + 109.3690771, + -0.0127451 + ] + ] + }, + "id": "way/284396589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396590", + "highway": "residential", + "name": "KOMPLEK PANGERAN PERMAI I - PANGERAN PERMAI DALAM" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638061, + -0.0025397 + ], + [ + 109.3618824, + -0.0025109 + ], + [ + 109.3616733, + -0.0025079 + ], + [ + 109.3614229, + -0.0024972 + ], + [ + 109.3595037, + -0.0024153 + ], + [ + 109.3563535, + -0.0023249 + ] + ] + }, + "id": "way/284396590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553044, + 0.0066551 + ], + [ + 109.3558756, + 0.0063408 + ], + [ + 109.3566248, + 0.00593 + ] + ] + }, + "id": "way/284396592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396593", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532433, + -0.0099229 + ], + [ + 109.3538131, + -0.0103037 + ], + [ + 109.3538184, + -0.0103258 + ], + [ + 109.3538164, + -0.0103473 + ], + [ + 109.3536596, + -0.0105943 + ] + ] + }, + "id": "way/284396593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396594", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555391, + -0.0084815 + ], + [ + 109.3564077, + -0.0085339 + ], + [ + 109.3573531, + -0.0085606 + ], + [ + 109.3576868, + -0.0085752 + ], + [ + 109.3580034, + -0.0085929 + ], + [ + 109.3584433, + -0.0085998 + ], + [ + 109.3584847, + -0.0086011 + ], + [ + 109.3591233, + -0.0086219 + ], + [ + 109.3597379, + -0.0086332 + ], + [ + 109.359992, + -0.0086477 + ], + [ + 109.3605594, + -0.0086656 + ] + ] + }, + "id": "way/284396594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396596", + "highway": "residential", + "name": "Gang Kalilandak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652868, + -0.0157204 + ], + [ + 109.3656504, + -0.0157195 + ] + ] + }, + "id": "way/284396596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396597", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650512, + -0.0122969 + ], + [ + 109.3653271, + -0.0123013 + ], + [ + 109.365704, + -0.0122986 + ], + [ + 109.3659615, + -0.0122966 + ], + [ + 109.3662698, + -0.012304 + ], + [ + 109.3668848, + -0.0123274 + ], + [ + 109.3675426, + -0.0123599 + ] + ] + }, + "id": "way/284396597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396598", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682579, + -0.0047099 + ], + [ + 109.3681992, + -0.0051853 + ], + [ + 109.3681028, + -0.0059662 + ], + [ + 109.3680704, + -0.0063065 + ], + [ + 109.3680596, + -0.0063428 + ], + [ + 109.3680442, + -0.0063555 + ] + ] + }, + "id": "way/284396598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396599", + "highway": "residential", + "name": "KOMPLEK CITRA SEJAHTERA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551307, + -0.0062423 + ], + [ + 109.3539014, + -0.0052198 + ], + [ + 109.3526826, + -0.004206 + ] + ] + }, + "id": "way/284396599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396601", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597032, + -0.0012092 + ], + [ + 109.3571201, + -0.0009176 + ], + [ + 109.3565104, + -0.0008671 + ] + ] + }, + "id": "way/284396601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396602", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425941, + -0.0122743 + ], + [ + 109.3423386, + -0.0125987 + ], + [ + 109.3423344, + -0.0126112 + ], + [ + 109.3423352, + -0.0126242 + ], + [ + 109.3424724, + -0.0127928 + ], + [ + 109.3424767, + -0.0128032 + ], + [ + 109.3424744, + -0.0128139 + ], + [ + 109.342467, + -0.0128236 + ], + [ + 109.3421609, + -0.0130189 + ], + [ + 109.3421012, + -0.0130751 + ], + [ + 109.3420104, + -0.0131805 + ] + ] + }, + "id": "way/284396602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396603", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438511, + -0.0079494 + ], + [ + 109.343958, + -0.0080054 + ], + [ + 109.3440217, + -0.0080403 + ], + [ + 109.344072, + -0.0080651 + ], + [ + 109.3441246, + -0.0080895 + ], + [ + 109.3442011, + -0.0081241 + ], + [ + 109.3443618, + -0.0081971 + ], + [ + 109.3445762, + -0.0082988 + ], + [ + 109.3448216, + -0.0084047 + ], + [ + 109.3451113, + -0.0085294 + ], + [ + 109.3453863, + -0.0086421 + ], + [ + 109.3457095, + -0.0087621 + ] + ] + }, + "id": "way/284396603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396604", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440823, + -0.0132822 + ], + [ + 109.343573, + -0.0129762 + ], + [ + 109.3432327, + -0.0127718 + ] + ] + }, + "id": "way/284396604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396606", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438109, + -0.01414 + ], + [ + 109.3438527, + -0.0141594 + ] + ] + }, + "id": "way/284396606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396607", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510296, + 0.0011314 + ], + [ + 109.351139, + 0.0010645 + ] + ] + }, + "id": "way/284396607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396608", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496421, + -0.0132202 + ], + [ + 109.3504543, + -0.0132977 + ], + [ + 109.3511426, + -0.0133588 + ] + ] + }, + "id": "way/284396608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396609", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594477, + -0.0128544 + ], + [ + 109.3594192, + -0.0136853 + ], + [ + 109.3594097, + -0.0139641 + ], + [ + 109.3593956, + -0.0144164 + ], + [ + 109.3593881, + -0.0146113 + ], + [ + 109.35938, + -0.0148058 + ], + [ + 109.3593693, + -0.0151263 + ], + [ + 109.3593596, + -0.0158242 + ] + ] + }, + "id": "way/284396609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3666486, + -0.0047045 + ], + [ + 109.3666874, + -0.0043163 + ], + [ + 109.3666946, + -0.0041518 + ] + ] + }, + "id": "way/284396611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587301, + 0.0019295 + ], + [ + 109.3586608, + 0.0014036 + ], + [ + 109.3585965, + 0.0009151 + ] + ] + }, + "id": "way/284396612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604417, + -0.0095565 + ], + [ + 109.3599814, + -0.0095497 + ], + [ + 109.3597787, + -0.0095442 + ], + [ + 109.3596335, + -0.0095412 + ], + [ + 109.3590554, + -0.0095243 + ], + [ + 109.358972, + -0.0095227 + ], + [ + 109.3585889, + -0.0095217 + ], + [ + 109.3583508, + -0.0094991 + ], + [ + 109.3581275, + -0.0094927 + ], + [ + 109.3580637, + -0.0094906 + ], + [ + 109.3580218, + -0.0094892 + ], + [ + 109.357757, + -0.0094835 + ], + [ + 109.357706, + -0.0094785 + ], + [ + 109.3574979, + -0.0094706 + ], + [ + 109.3569632, + -0.0094515 + ], + [ + 109.3565678, + -0.0094498 + ], + [ + 109.3564963, + -0.0094474 + ], + [ + 109.3564016, + -0.0094442 + ], + [ + 109.356302, + -0.009437 + ], + [ + 109.3560167, + -0.0094316 + ], + [ + 109.3554109, + -0.0093695 + ] + ] + }, + "id": "way/284396614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396615", + "highway": "residential", + "name": "Jalan 28 Oktober Jalur I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3644085, + -0.010817 + ], + [ + 109.3651571, + -0.0107973 + ], + [ + 109.3654445, + -0.0107838 + ], + [ + 109.3657737, + -0.0107684 + ], + [ + 109.3659682, + -0.0107657 + ], + [ + 109.3661365, + -0.0107543 + ], + [ + 109.3663967, + -0.0107349 + ], + [ + 109.366634, + -0.0107127 + ], + [ + 109.3668714, + -0.0106906 + ], + [ + 109.3670605, + -0.0106685 + ] + ] + }, + "id": "way/284396615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396616", + "highway": "residential", + "name": "Gang Sempurna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350458, + -0.0194078 + ], + [ + 109.3504583, + -0.0194598 + ], + [ + 109.3504556, + -0.0195154 + ], + [ + 109.3504499, + -0.0195835 + ], + [ + 109.3504476, + -0.019615 + ], + [ + 109.3504312, + -0.0196706 + ], + [ + 109.3504221, + -0.0197082 + ], + [ + 109.350408, + -0.0197437 + ], + [ + 109.3503862, + -0.0197686 + ], + [ + 109.3503775, + -0.0197803 + ], + [ + 109.3503745, + -0.0197997 + ], + [ + 109.3503724, + -0.0198548 + ], + [ + 109.3503695, + -0.0198658 + ], + [ + 109.3503638, + -0.0199003 + ], + [ + 109.3503577, + -0.0199147 + ], + [ + 109.3503363, + -0.0199248 + ], + [ + 109.3503302, + -0.0199308 + ], + [ + 109.3503292, + -0.0199402 + ], + [ + 109.3503116, + -0.0201159 + ], + [ + 109.3503215, + -0.0206751 + ] + ] + }, + "id": "way/284396616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396617", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611604, + -0.004192 + ], + [ + 109.3594185, + -0.0041267 + ], + [ + 109.3561398, + -0.0039984 + ] + ] + }, + "id": "way/284396617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544305, + -0.0078038 + ], + [ + 109.3554964, + -0.0081907 + ], + [ + 109.3555752, + -0.0082156 + ] + ] + }, + "id": "way/284396618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396619", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651102, + -0.0119699 + ], + [ + 109.3659782, + -0.0119358 + ], + [ + 109.3664396, + -0.0119144 + ], + [ + 109.3666743, + -0.0119103 + ], + [ + 109.3669124, + -0.0119117 + ], + [ + 109.3670699, + -0.0119238 + ], + [ + 109.3672684, + -0.0119345 + ], + [ + 109.3674427, + -0.0119533 + ], + [ + 109.3676446, + -0.0119895 + ] + ] + }, + "id": "way/284396619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396620", + "highway": "residential", + "name": "KOMPLEK PONDOK PANGERAN I-II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.35702, + 0.0048026 + ], + [ + 109.3555036, + 0.0056084 + ], + [ + 109.3541688, + 0.0062585 + ] + ] + }, + "id": "way/284396620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396621", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357846, + -0.0160779 + ], + [ + 109.3578441, + -0.0167276 + ], + [ + 109.3578495, + -0.0173581 + ], + [ + 109.3578512, + -0.0178967 + ] + ] + }, + "id": "way/284396621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396622", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497019, + -0.0128759 + ], + [ + 109.3496362, + -0.0128397 + ], + [ + 109.3495061, + -0.0127573 + ], + [ + 109.3493747, + -0.0126728 + ], + [ + 109.3492513, + -0.0125957 + ], + [ + 109.3491581, + -0.0125259 + ], + [ + 109.3490971, + -0.012479 + ], + [ + 109.3490498, + -0.0124345 + ], + [ + 109.3488805, + -0.0122262 + ], + [ + 109.3487611, + -0.012076 + ], + [ + 109.3486887, + -0.0119801 + ], + [ + 109.3486472, + -0.011919 + ] + ] + }, + "id": "way/284396622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396623", + "highway": "residential", + "name": "KOMPLEK TIARA PESONA - VILLA MALAYA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714326, + -0.0024897 + ], + [ + 109.3717374, + -0.0024874 + ], + [ + 109.3724826, + -0.0024663 + ], + [ + 109.3725537, + -0.0024657 + ], + [ + 109.372646, + -0.0024648 + ], + [ + 109.3738223, + -0.0024491 + ] + ] + }, + "id": "way/284396623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396624", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3686889, + -0.0020358 + ], + [ + 109.36915, + -0.00211 + ], + [ + 109.3709026, + -0.0023965 + ], + [ + 109.3714326, + -0.0024897 + ] + ] + }, + "id": "way/284396624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396625", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3746891, + -0.0130043 + ], + [ + 109.3747611, + -0.0130231 + ] + ] + }, + "id": "way/284396625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396626", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523677, + -0.0140281 + ], + [ + 109.3518139, + -0.0139532 + ], + [ + 109.3514086, + -0.0139127 + ] + ] + }, + "id": "way/284396626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396627", + "highway": "residential", + "name": "Gang Solidar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609645, + -0.0056491 + ], + [ + 109.3592428, + -0.0056234 + ], + [ + 109.3562635, + -0.005579 + ], + [ + 109.3559465, + -0.0055557 + ] + ] + }, + "id": "way/284396627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396628", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534497, + -0.0111735 + ], + [ + 109.3527138, + -0.0106733 + ], + [ + 109.3520001, + -0.0102091 + ] + ] + }, + "id": "way/284396628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396630", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347056, + -0.0107218 + ], + [ + 109.3472953, + -0.0108422 + ], + [ + 109.3474254, + -0.0109139 + ], + [ + 109.3475826, + -0.0109991 + ] + ] + }, + "id": "way/284396630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396631", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497019, + -0.0128759 + ], + [ + 109.3497927, + -0.0126898 + ], + [ + 109.3498509, + -0.012557 + ], + [ + 109.3499152, + -0.0124548 + ], + [ + 109.3499715, + -0.012369 + ], + [ + 109.3500532, + -0.012254 + ], + [ + 109.3501077, + -0.0121842 + ], + [ + 109.3501768, + -0.012109 + ], + [ + 109.3502806, + -0.0120029 + ], + [ + 109.3507873, + -0.0114589 + ], + [ + 109.3510866, + -0.0110993 + ], + [ + 109.3512029, + -0.0109481 + ], + [ + 109.3515522, + -0.0105286 + ], + [ + 109.3517937, + -0.0102366 + ], + [ + 109.3518726, + -0.0101412 + ], + [ + 109.3520415, + -0.0099253 + ], + [ + 109.3521301, + -0.00983 + ], + [ + 109.3522331, + -0.0097032 + ], + [ + 109.3522842, + -0.0096439 + ], + [ + 109.3526169, + -0.0092429 + ], + [ + 109.3527266, + -0.0091132 + ], + [ + 109.3529988, + -0.0087917 + ], + [ + 109.3533696, + -0.0083454 + ], + [ + 109.353536, + -0.0081575 + ], + [ + 109.353763, + -0.0079127 + ], + [ + 109.3538842, + -0.0077751 + ], + [ + 109.3540258, + -0.0075966 + ], + [ + 109.3541807, + -0.007414 + ], + [ + 109.354204, + -0.0073922 + ], + [ + 109.3542394, + -0.0073514 + ] + ] + }, + "id": "way/284396631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396633", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461142, + -0.0025034 + ], + [ + 109.3462104, + -0.0022906 + ], + [ + 109.3466269, + -0.0024951 + ], + [ + 109.3475965, + -0.0030135 + ], + [ + 109.3476192, + -0.0030396 + ], + [ + 109.34764, + -0.0030832 + ], + [ + 109.347693, + -0.0031737 + ], + [ + 109.3477332, + -0.0032079 + ], + [ + 109.3480029, + -0.0033399 + ] + ] + }, + "id": "way/284396633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396634", + "highway": "living_street", + "name": "Gang Sepakat Jalur 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3742902, + -0.0139212 + ], + [ + 109.3743682, + -0.0139542 + ], + [ + 109.374446, + -0.013981 + ], + [ + 109.3745627, + -0.0140166 + ], + [ + 109.3746773, + -0.0140521 + ] + ] + }, + "id": "way/284396634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396637", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511467, + 0.0057499 + ], + [ + 109.3518787, + 0.0056959 + ], + [ + 109.3519194, + 0.0056863 + ], + [ + 109.3519743, + 0.005657 + ], + [ + 109.3534045, + 0.0048809 + ] + ] + }, + "id": "way/284396637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396638", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492098, + -0.0141722 + ], + [ + 109.3492389, + -0.0141835 + ], + [ + 109.3493972, + -0.0142466 + ] + ] + }, + "id": "way/284396638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396639", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482301, + -0.0096271 + ], + [ + 109.3483052, + -0.0096828 + ], + [ + 109.3483943, + -0.0097552 + ], + [ + 109.3484621, + -0.0098149 + ], + [ + 109.3485526, + -0.0099047 + ], + [ + 109.3487511, + -0.0101327 + ], + [ + 109.3487798, + -0.010164 + ], + [ + 109.3489234, + -0.0103211 + ], + [ + 109.3491393, + -0.0105572 + ], + [ + 109.3495629, + -0.0110182 + ], + [ + 109.3496034, + -0.0110587 + ], + [ + 109.3497938, + -0.0112867 + ], + [ + 109.3499889, + -0.0115717 + ], + [ + 109.3501787, + -0.01185 + ], + [ + 109.3502806, + -0.0120029 + ] + ] + }, + "id": "way/284396639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396640", + "highway": "residential", + "name": "Gang Sealat Karimata II", + "name:id": "Gang Sealat Karimata II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451428, + -0.0203861 + ], + [ + 109.3451911, + -0.0202762 + ], + [ + 109.3452622, + -0.02014 + ], + [ + 109.3453142, + -0.0200002 + ], + [ + 109.3453162, + -0.0199868 + ], + [ + 109.3453172, + -0.0199734 + ], + [ + 109.3453061, + -0.019961 + ], + [ + 109.3451774, + -0.0199127 + ], + [ + 109.3451646, + -0.0198973 + ], + [ + 109.3451653, + -0.0198765 + ], + [ + 109.3451871, + -0.0197994 + ], + [ + 109.3452716, + -0.0195486 + ], + [ + 109.3453299, + -0.0193763 + ], + [ + 109.3453681, + -0.0192536 + ], + [ + 109.3454178, + -0.0190772 + ], + [ + 109.3454888, + -0.0187902 + ], + [ + 109.3455802, + -0.0183823 + ] + ] + }, + "id": "way/284396640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396642", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3538265, + -0.0107034 + ], + [ + 109.3536126, + -0.0109538 + ], + [ + 109.3535556, + -0.0110426 + ], + [ + 109.3535335, + -0.0110755 + ], + [ + 109.3534497, + -0.0111735 + ], + [ + 109.3532961, + -0.0114058 + ], + [ + 109.3532849, + -0.0114118 + ], + [ + 109.3532773, + -0.0114131 + ], + [ + 109.3532666, + -0.0114115 + ], + [ + 109.3529011, + -0.011152 + ], + [ + 109.352537, + -0.0109151 + ] + ] + }, + "id": "way/284396642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396643", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510866, + -0.0110993 + ], + [ + 109.350503, + -0.0104961 + ], + [ + 109.3503054, + -0.0102936 + ], + [ + 109.3501428, + -0.0101304 + ], + [ + 109.3500598, + -0.0100471 + ], + [ + 109.349831, + -0.0097984 + ], + [ + 109.3495947, + -0.0095752 + ], + [ + 109.3494828, + -0.0094695 + ], + [ + 109.3492485, + -0.0092316 + ], + [ + 109.3491319, + -0.0091149 + ], + [ + 109.3490067, + -0.0089883 + ], + [ + 109.3489554, + -0.008937 + ], + [ + 109.3488802, + -0.0088643 + ], + [ + 109.3488002, + -0.0087961 + ] + ] + }, + "id": "way/284396643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396646", + "highway": "residential", + "name": "KOMPLEK PEMDA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645681, + 0.0065734 + ], + [ + 109.3626243, + 0.0068476 + ], + [ + 109.3622679, + 0.0069024 + ], + [ + 109.3619627, + 0.0069472 + ], + [ + 109.3616416, + 0.0069921 + ], + [ + 109.3613165, + 0.007037 + ], + [ + 109.3610063, + 0.0070758 + ], + [ + 109.3601824, + 0.0071945 + ], + [ + 109.3599138, + 0.0072346 + ] + ] + }, + "id": "way/284396646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396648", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456168, + -0.0140983 + ], + [ + 109.345773, + -0.0136805 + ], + [ + 109.3460116, + -0.0131096 + ], + [ + 109.3461691, + -0.0127496 + ], + [ + 109.3466947, + -0.0115905 + ], + [ + 109.346786, + -0.0113829 + ], + [ + 109.347056, + -0.0107218 + ] + ] + }, + "id": "way/284396648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396649", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605649, + -0.0086249 + ], + [ + 109.3613501, + -0.008622 + ], + [ + 109.3621148, + -0.0085978 + ], + [ + 109.3625021, + -0.0085824 + ], + [ + 109.3629386, + -0.0085742 + ], + [ + 109.3631566, + -0.008567 + ], + [ + 109.363292, + -0.0085596 + ], + [ + 109.3634275, + -0.0085576 + ] + ] + }, + "id": "way/284396649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396650", + "highway": "residential", + "name": "Gang Gaspar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516646, + -0.0185334 + ], + [ + 109.3516417, + -0.0171608 + ], + [ + 109.3516328, + -0.0167292 + ], + [ + 109.3516278, + -0.0163025 + ], + [ + 109.3516298, + -0.0161744 + ], + [ + 109.3516509, + -0.0160041 + ], + [ + 109.3516459, + -0.0159806 + ], + [ + 109.3516378, + -0.0159726 + ], + [ + 109.3515976, + -0.0159591 + ], + [ + 109.351519, + -0.0159344 + ], + [ + 109.3514121, + -0.0159045 + ], + [ + 109.3514045, + -0.0159015 + ] + ] + }, + "id": "way/284396650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396652", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627585, + -0.0138293 + ], + [ + 109.3627606, + -0.0137953 + ], + [ + 109.3627792, + -0.0135439 + ], + [ + 109.3627844, + -0.0133521 + ] + ] + }, + "id": "way/284396652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396653", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474868, + -0.0088104 + ], + [ + 109.3476353, + -0.0088996 + ], + [ + 109.347838, + -0.0090177 + ], + [ + 109.3479618, + -0.0090887 + ], + [ + 109.3480504, + -0.0091443 + ], + [ + 109.348169, + -0.0092228 + ], + [ + 109.3482897, + -0.0092992 + ], + [ + 109.3483876, + -0.0093643 + ] + ] + }, + "id": "way/284396653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396654", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605312, + -0.0089368 + ], + [ + 109.3611932, + -0.0089613 + ], + [ + 109.3615553, + -0.008966 + ], + [ + 109.3617417, + -0.0089673 + ], + [ + 109.3618849, + -0.0089584 + ], + [ + 109.3619395, + -0.0089599 + ], + [ + 109.36214, + -0.0089539 + ], + [ + 109.3624894, + -0.0089371 + ], + [ + 109.3628401, + -0.008915 + ], + [ + 109.3628649, + -0.008909 + ], + [ + 109.3628796, + -0.0088969 + ], + [ + 109.3628946, + -0.008837 + ], + [ + 109.3629145, + -0.0087326 + ], + [ + 109.3629386, + -0.0085742 + ] + ] + }, + "id": "way/284396654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396656", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602878, + 0.0017374 + ], + [ + 109.360336, + 0.0020164 + ], + [ + 109.3604364, + 0.0025983 + ], + [ + 109.3605081, + 0.0030137 + ], + [ + 109.3605206, + 0.0030228 + ], + [ + 109.3605416, + 0.0030251 + ], + [ + 109.3607106, + 0.0030024 + ], + [ + 109.3612309, + 0.0029395 + ] + ] + }, + "id": "way/284396656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396657", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.374517, + -0.0040504 + ], + [ + 109.3747021, + -0.0040146 + ], + [ + 109.3750092, + -0.0039663 + ], + [ + 109.3752298, + -0.0039415 + ], + [ + 109.3752453, + -0.0039469 + ], + [ + 109.3752627, + -0.0039563 + ], + [ + 109.3752768, + -0.0039811 + ], + [ + 109.3752956, + -0.0040334 + ], + [ + 109.3754143, + -0.0045866 + ], + [ + 109.3755671, + -0.0051016 + ], + [ + 109.3756825, + -0.0055307 + ], + [ + 109.3758783, + -0.0063112 + ], + [ + 109.3759205, + -0.0064862 + ] + ] + }, + "id": "way/284396657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396658", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542748, + 0.0066507 + ], + [ + 109.3556764, + 0.0059601 + ], + [ + 109.3570803, + 0.0052344 + ], + [ + 109.3570901, + 0.0052243 + ], + [ + 109.3570921, + 0.0051847 + ], + [ + 109.3570732, + 0.0050993 + ] + ] + }, + "id": "way/284396658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396659", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619531, + -0.0154545 + ], + [ + 109.3619643, + -0.0150157 + ], + [ + 109.361967, + -0.0147817 + ], + [ + 109.3619697, + -0.0146536 + ], + [ + 109.361973, + -0.0145222 + ], + [ + 109.3619739, + -0.0144799 + ], + [ + 109.3619791, + -0.0142197 + ], + [ + 109.3619913, + -0.0138106 + ], + [ + 109.3619914, + -0.0137912 + ], + [ + 109.3619932, + -0.0135138 + ], + [ + 109.361997, + -0.0133527 + ], + [ + 109.361999, + -0.0132385 + ], + [ + 109.3620044, + -0.0128111 + ] + ] + }, + "id": "way/284396659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396660", + "highway": "residential", + "name": "Gang Swadaya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537109, + -0.0191744 + ], + [ + 109.35375, + -0.018975 + ], + [ + 109.3537635, + -0.0188955 + ], + [ + 109.3537728, + -0.0188201 + ], + [ + 109.3537833, + -0.0187436 + ], + [ + 109.3537899, + -0.0186682 + ], + [ + 109.3537983, + -0.0185807 + ], + [ + 109.3538107, + -0.0184267 + ], + [ + 109.3538329, + -0.018288 + ], + [ + 109.3538614, + -0.0181289 + ], + [ + 109.3538811, + -0.0180104 + ], + [ + 109.3539025, + -0.0178615 + ], + [ + 109.3539349, + -0.0176886 + ], + [ + 109.35397, + -0.0175007 + ], + [ + 109.3539841, + -0.0174089 + ], + [ + 109.3540058, + -0.0172833 + ] + ] + }, + "id": "way/284396660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396661", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600279, + -0.0157128 + ], + [ + 109.3600194, + -0.0148194 + ], + [ + 109.3600468, + -0.0140418 + ], + [ + 109.3600089, + -0.0128742 + ] + ] + }, + "id": "way/284396661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396663", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504543, + -0.0132977 + ], + [ + 109.3504355, + -0.013461 + ], + [ + 109.3504419, + -0.0134747 + ], + [ + 109.350454, + -0.0134804 + ], + [ + 109.3514139, + -0.0135698 + ], + [ + 109.3516378, + -0.0135794 + ], + [ + 109.3517579, + -0.0135928 + ], + [ + 109.3519087, + -0.0136128 + ], + [ + 109.3520931, + -0.0136263 + ], + [ + 109.3521556, + -0.0136247 + ], + [ + 109.3522648, + -0.013637 + ], + [ + 109.3523352, + -0.0136397 + ] + ] + }, + "id": "way/284396663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396664", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3727328, + -0.0039898 + ], + [ + 109.3727464, + -0.0036932 + ], + [ + 109.372745, + -0.0036446 + ], + [ + 109.372732, + -0.003279 + ] + ] + }, + "id": "way/284396664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396665", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627606, + -0.0137953 + ], + [ + 109.3628492, + -0.0138154 + ], + [ + 109.3629659, + -0.0138467 + ], + [ + 109.3631016, + -0.0138724 + ], + [ + 109.3633035, + -0.0138996 + ] + ] + }, + "id": "way/284396665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396666", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469727, + 0.002525 + ], + [ + 109.3485539, + 0.0020888 + ], + [ + 109.3486666, + 0.0020465 + ], + [ + 109.3487278, + 0.0020108 + ], + [ + 109.3487712, + 0.0019855 + ], + [ + 109.3497214, + 0.0014082 + ], + [ + 109.3508006, + 0.0008216 + ] + ] + }, + "id": "way/284396666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396668", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611611, + 0.0016297 + ], + [ + 109.3613816, + 0.0031154 + ], + [ + 109.3615857, + 0.0044912 + ], + [ + 109.3616396, + 0.0049187 + ], + [ + 109.3618162, + 0.0061166 + ] + ] + }, + "id": "way/284396668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396669", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490665, + -0.0146076 + ], + [ + 109.3511131, + -0.0149549 + ], + [ + 109.3512062, + -0.0149777 + ], + [ + 109.3521035, + -0.0151378 + ] + ] + }, + "id": "way/284396669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396670", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504147, + -0.0153121 + ], + [ + 109.3501475, + -0.0152404 + ], + [ + 109.350003, + -0.0152095 + ], + [ + 109.3498883, + -0.0151813 + ], + [ + 109.3497058, + -0.0151528 + ], + [ + 109.3495799, + -0.0151364 + ], + [ + 109.3494639, + -0.0151223 + ], + [ + 109.3492607, + -0.0151035 + ], + [ + 109.3491279, + -0.0150854 + ], + [ + 109.3490448, + -0.0150707 + ], + [ + 109.3489055, + -0.0150453 + ] + ] + }, + "id": "way/284396670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396672", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608511, + -0.0065639 + ], + [ + 109.3618975, + -0.0065375 + ], + [ + 109.3625245, + -0.0065273 + ], + [ + 109.3625575, + -0.0065218 + ], + [ + 109.362663, + -0.006508 + ], + [ + 109.3628956, + -0.0064971 + ], + [ + 109.3635283, + -0.0064844 + ] + ] + }, + "id": "way/284396672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396673", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586608, + 0.0014036 + ], + [ + 109.3582986, + 0.0014479 + ], + [ + 109.3572957, + 0.0015477 + ], + [ + 109.3568259, + 0.0015991 + ] + ] + }, + "id": "way/284396673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551258, + 0.0048516 + ], + [ + 109.3553069, + 0.0052144 + ], + [ + 109.3555036, + 0.0056084 + ], + [ + 109.3556764, + 0.0059601 + ], + [ + 109.3558756, + 0.0063408 + ] + ] + }, + "id": "way/284396674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396675", + "highway": "residential", + "name": "Gang Praja Jaya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628214, + 0.0081566 + ], + [ + 109.3624833, + 0.0082083 + ], + [ + 109.3621512, + 0.0082532 + ], + [ + 109.3618557, + 0.0082925 + ], + [ + 109.36168, + 0.0083205 + ] + ] + }, + "id": "way/284396675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396677", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693703, + 0.0077965 + ], + [ + 109.3685016, + 0.0073332 + ], + [ + 109.3679049, + 0.007021 + ], + [ + 109.3678746, + 0.0070019 + ], + [ + 109.3678496, + 0.006982 + ], + [ + 109.367834, + 0.006967 + ], + [ + 109.3678185, + 0.0069387 + ], + [ + 109.3676892, + 0.0064083 + ], + [ + 109.3676419, + 0.0063736 + ], + [ + 109.3676104, + 0.0063421 + ], + [ + 109.367573, + 0.00628 + ], + [ + 109.3675212, + 0.0060622 + ], + [ + 109.3673975, + 0.0055415 + ], + [ + 109.3672847, + 0.0050671 + ], + [ + 109.3671888, + 0.0046634 + ], + [ + 109.3670945, + 0.0042665 + ], + [ + 109.3670014, + 0.0038749 + ], + [ + 109.3669001, + 0.0034026 + ], + [ + 109.3667711, + 0.002861 + ], + [ + 109.3667224, + 0.0026605 + ], + [ + 109.3666564, + 0.0023947 + ], + [ + 109.3665654, + 0.0020285 + ], + [ + 109.3664072, + 0.0014806 + ], + [ + 109.3662856, + 0.0010627 + ], + [ + 109.36612, + 0.0005525 + ] + ] + }, + "id": "way/284396677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396678", + "highway": "living_street", + "name": "Gang Sepakat Jalur 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3738602, + -0.0147682 + ], + [ + 109.3739149, + -0.01478 + ], + [ + 109.3739615, + -0.0147924 + ], + [ + 109.3741167, + -0.0148192 + ], + [ + 109.3741965, + -0.014833 + ], + [ + 109.3743099, + -0.0148484 + ], + [ + 109.3744259, + -0.0148614 + ] + ] + }, + "id": "way/284396678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396679", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543722, + -0.0046085 + ], + [ + 109.3541396, + -0.0049099 + ], + [ + 109.3539014, + -0.0052198 + ], + [ + 109.3536753, + -0.0055121 + ], + [ + 109.3534346, + -0.0057587 + ] + ] + }, + "id": "way/284396679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396681", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540438, + -0.0187435 + ], + [ + 109.354074, + -0.0185544 + ], + [ + 109.3540994, + -0.018356 + ], + [ + 109.3541281, + -0.0180925 + ], + [ + 109.3541497, + -0.0179467 + ], + [ + 109.3541584, + -0.0178893 + ], + [ + 109.3541672, + -0.0177996 + ], + [ + 109.3541879, + -0.0175973 + ], + [ + 109.354197, + -0.0175024 + ], + [ + 109.3542037, + -0.0174491 + ], + [ + 109.354208, + -0.0174142 + ], + [ + 109.3542103, + -0.0173634 + ], + [ + 109.3542036, + -0.0171552 + ] + ] + }, + "id": "way/284396681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396682", + "highway": "living_street", + "name": "Gang Sepakat Jalur 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3736949, + -0.0151064 + ], + [ + 109.3738297, + -0.0151082 + ], + [ + 109.3739115, + -0.0151196 + ], + [ + 109.3739719, + -0.0151277 + ], + [ + 109.3740845, + -0.0151297 + ], + [ + 109.3741865, + -0.015131 + ], + [ + 109.3743541, + -0.0151324 + ] + ] + }, + "id": "way/284396682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396683", + "highway": "residential", + "name": "Gang Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3731022, + -0.015534 + ], + [ + 109.3731538, + -0.0154133 + ], + [ + 109.3732309, + -0.015239 + ], + [ + 109.3733174, + -0.0150418 + ], + [ + 109.3734381, + -0.0147863 + ], + [ + 109.3734643, + -0.0147421 + ], + [ + 109.373467, + -0.014724 + ], + [ + 109.3734656, + -0.0147086 + ], + [ + 109.3734629, + -0.0146663 + ], + [ + 109.3734656, + -0.0146382 + ], + [ + 109.373536, + -0.014439 + ], + [ + 109.3735588, + -0.014384 + ], + [ + 109.3736158, + -0.014274 + ], + [ + 109.3736929, + -0.0140943 + ], + [ + 109.3737788, + -0.0139247 + ], + [ + 109.3738237, + -0.0138348 + ] + ] + }, + "id": "way/284396683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396684", + "highway": "residential", + "name": "Gang Sepakat Jalur 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740785, + -0.0143722 + ], + [ + 109.3744795, + -0.0145258 + ], + [ + 109.3745006, + -0.0145352 + ], + [ + 109.3745117, + -0.0145366 + ], + [ + 109.3745194, + -0.0145232 + ], + [ + 109.3745593, + -0.0144098 + ] + ] + }, + "id": "way/284396684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396686", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567068, + 0.0021846 + ], + [ + 109.356983, + 0.0044232 + ], + [ + 109.35702, + 0.0048026 + ], + [ + 109.3570732, + 0.0050993 + ] + ] + }, + "id": "way/284396686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396687", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.375053, + -0.0065646 + ], + [ + 109.3759205, + -0.0064862 + ], + [ + 109.3762238, + -0.0064664 + ], + [ + 109.3767976, + -0.0064281 + ], + [ + 109.3768607, + -0.006417 + ] + ] + }, + "id": "way/284396687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396688", + "highway": "residential", + "name": "Jalan Parit Pangeran" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550313, + -0.0127232 + ], + [ + 109.3550575, + -0.0124285 + ], + [ + 109.3550855, + -0.0121397 + ], + [ + 109.3550898, + -0.0120954 + ], + [ + 109.3550926, + -0.0120671 + ], + [ + 109.355116, + -0.0118301 + ], + [ + 109.3551367, + -0.0117169 + ], + [ + 109.3551402, + -0.0116802 + ], + [ + 109.3551796, + -0.011358 + ], + [ + 109.3551887, + -0.0112613 + ], + [ + 109.3552334, + -0.0107864 + ], + [ + 109.3552509, + -0.0106003 + ], + [ + 109.3553031, + -0.0101987 + ], + [ + 109.355339, + -0.0099223 + ], + [ + 109.355352, + -0.0098226 + ], + [ + 109.3554109, + -0.0093695 + ], + [ + 109.3554735, + -0.0089411 + ], + [ + 109.355518, + -0.0086367 + ], + [ + 109.3555391, + -0.0084815 + ], + [ + 109.3555617, + -0.008315 + ], + [ + 109.3555752, + -0.0082156 + ], + [ + 109.3556212, + -0.0078808 + ], + [ + 109.3556304, + -0.0078088 + ], + [ + 109.3556994, + -0.0072835 + ], + [ + 109.3557068, + -0.0072328 + ], + [ + 109.3558002, + -0.0065968 + ], + [ + 109.3558363, + -0.0063398 + ], + [ + 109.3558767, + -0.0060525 + ], + [ + 109.3558954, + -0.0059194 + ], + [ + 109.3559151, + -0.0057804 + ], + [ + 109.3559465, + -0.0055557 + ], + [ + 109.3559507, + -0.0055298 + ], + [ + 109.3559836, + -0.0052592 + ], + [ + 109.3559869, + -0.0052443 + ], + [ + 109.3559991, + -0.0050989 + ], + [ + 109.3560461, + -0.0047524 + ], + [ + 109.3561012, + -0.0044544 + ], + [ + 109.356127, + -0.0041202 + ], + [ + 109.3561398, + -0.0039984 + ], + [ + 109.3561584, + -0.003845 + ], + [ + 109.3561886, + -0.0035371 + ], + [ + 109.3561958, + -0.0034346 + ], + [ + 109.3562239, + -0.0031675 + ], + [ + 109.3562309, + -0.0031169 + ], + [ + 109.3562676, + -0.0028236 + ], + [ + 109.3563102, + -0.002576 + ], + [ + 109.3563535, + -0.0023249 + ], + [ + 109.3563612, + -0.0021324 + ], + [ + 109.3563649, + -0.0020633 + ], + [ + 109.3563791, + -0.0019616 + ], + [ + 109.3564066, + -0.0017274 + ], + [ + 109.3564591, + -0.0012925 + ], + [ + 109.3564874, + -0.0010579 + ], + [ + 109.3565104, + -0.0008671 + ], + [ + 109.356558, + -0.0004647 + ], + [ + 109.3565714, + -0.0003732 + ], + [ + 109.3565825, + -0.0002977 + ], + [ + 109.3566456, + 0.0002218 + ], + [ + 109.3567522, + 0.0010081 + ], + [ + 109.3567736, + 0.0011943 + ], + [ + 109.3567957, + 0.0013858 + ], + [ + 109.3568259, + 0.0015991 + ], + [ + 109.3569069, + 0.0021549 + ] + ] + }, + "id": "way/284396688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396690", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618958, + 0.001539 + ], + [ + 109.362382, + 0.0048341 + ], + [ + 109.3625365, + 0.0060029 + ], + [ + 109.3625282, + 0.0060175 + ], + [ + 109.3625101, + 0.0060242 + ], + [ + 109.3618162, + 0.0061166 + ], + [ + 109.3611154, + 0.006206 + ], + [ + 109.3611084, + 0.0062019 + ], + [ + 109.3611035, + 0.0061941 + ] + ] + }, + "id": "way/284396690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396691", + "highway": "residential", + "name": "Gang Praja Raya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626243, + 0.0068476 + ], + [ + 109.3627245, + 0.0075135 + ], + [ + 109.3627752, + 0.0078499 + ], + [ + 109.3628214, + 0.0081566 + ], + [ + 109.3628577, + 0.0085746 + ], + [ + 109.3628736, + 0.0086958 + ], + [ + 109.3628904, + 0.0088854 + ], + [ + 109.3629594, + 0.0093783 + ] + ] + }, + "id": "way/284396691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396693", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529031, + -0.0122148 + ], + [ + 109.3526584, + -0.0125635 + ], + [ + 109.3525669, + -0.0126805 + ], + [ + 109.352538, + -0.0127107 + ], + [ + 109.3525109, + -0.0127244 + ], + [ + 109.3524857, + -0.0127472 + ], + [ + 109.352462, + -0.0127749 + ], + [ + 109.3524227, + -0.0128179 + ], + [ + 109.3523898, + -0.0128461 + ], + [ + 109.352356, + -0.012888 + ], + [ + 109.3522963, + -0.0129671 + ], + [ + 109.3522581, + -0.0130141 + ], + [ + 109.3522413, + -0.0130248 + ], + [ + 109.3522078, + -0.0130107 + ], + [ + 109.3521722, + -0.0129839 + ], + [ + 109.3521152, + -0.012945 + ], + [ + 109.3520354, + -0.0128826 + ], + [ + 109.3519791, + -0.0128431 + ], + [ + 109.3519429, + -0.012827 + ], + [ + 109.3519147, + -0.0128216 + ], + [ + 109.3518571, + -0.0128189 + ], + [ + 109.3518282, + -0.0128169 + ], + [ + 109.3517478, + -0.0128143 + ], + [ + 109.3516606, + -0.0128156 + ], + [ + 109.3515781, + -0.012815 + ], + [ + 109.351468, + -0.0128065 + ] + ] + }, + "id": "way/284396693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396694", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599005, + 0.0017783 + ], + [ + 109.3599376, + 0.0020683 + ], + [ + 109.3599988, + 0.0025472 + ], + [ + 109.3600458, + 0.0027775 + ], + [ + 109.360071, + 0.0029201 + ], + [ + 109.3601006, + 0.0030719 + ], + [ + 109.3602366, + 0.0040706 + ] + ] + }, + "id": "way/284396694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396695", + "highway": "residential", + "name": "Gang Karak Terdes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365136, + -0.0112975 + ], + [ + 109.3652366, + -0.0112807 + ], + [ + 109.3654029, + -0.0112653 + ], + [ + 109.3656041, + -0.0112485 + ], + [ + 109.3660614, + -0.0112096 + ], + [ + 109.3665294, + -0.0111707 + ], + [ + 109.3670411, + -0.0111218 + ] + ] + }, + "id": "way/284396695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396697", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3613816, + 0.0031154 + ], + [ + 109.3610239, + 0.0031775 + ], + [ + 109.3606856, + 0.0032408 + ], + [ + 109.3606755, + 0.0032488 + ], + [ + 109.3606668, + 0.0032602 + ], + [ + 109.360911, + 0.0048147 + ], + [ + 109.3609387, + 0.004991 + ], + [ + 109.3609942, + 0.0053453 + ], + [ + 109.3611035, + 0.0061941 + ] + ] + }, + "id": "way/284396697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396698", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490141, + 0.0004154 + ], + [ + 109.3480369, + 0.0009911 + ], + [ + 109.3480054, + 0.0009931 + ], + [ + 109.3479907, + 0.0009837 + ], + [ + 109.3479476, + 0.0009336 + ] + ] + }, + "id": "way/284396698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396699", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356983, + 0.0044232 + ], + [ + 109.3553069, + 0.0052144 + ], + [ + 109.3540906, + 0.005853 + ] + ] + }, + "id": "way/284396699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396700", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648316, + 0.0100073 + ], + [ + 109.3647856, + 0.0096167 + ], + [ + 109.3647456, + 0.0088409 + ], + [ + 109.3647409, + 0.0087497 + ], + [ + 109.3647394, + 0.0087212 + ], + [ + 109.3646634, + 0.0077871 + ], + [ + 109.3646319, + 0.0073854 + ], + [ + 109.3645681, + 0.0065734 + ], + [ + 109.3645234, + 0.0060032 + ], + [ + 109.3644769, + 0.0054111 + ], + [ + 109.3644502, + 0.0050714 + ], + [ + 109.3644145, + 0.0046159 + ], + [ + 109.3643975, + 0.0044296 + ], + [ + 109.3643727, + 0.0041917 + ], + [ + 109.3642187, + 0.0025263 + ], + [ + 109.3641796, + 0.0021028 + ], + [ + 109.3641675, + 0.0019723 + ], + [ + 109.3641573, + 0.0018625 + ], + [ + 109.3640808, + 0.0010797 + ] + ] + }, + "id": "way/284396700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396701", + "highway": "residential", + "lanes": "1", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718938, + -0.0123231 + ], + [ + 109.372548, + -0.012365 + ], + [ + 109.3726198, + -0.0123698 + ], + [ + 109.3728427, + -0.01239 + ], + [ + 109.3732113, + -0.012422 + ], + [ + 109.3734837, + -0.0124327 + ], + [ + 109.3737392, + -0.0124361 + ], + [ + 109.3737627, + -0.0124414 + ], + [ + 109.3738017, + -0.012434 + ] + ] + }, + "id": "way/284396701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396703", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578495, + -0.0173581 + ], + [ + 109.3577487, + -0.0173691 + ], + [ + 109.3576513, + -0.0173774 + ], + [ + 109.3574787, + -0.0173935 + ], + [ + 109.3574327, + -0.0174002 + ], + [ + 109.3574093, + -0.0174028 + ], + [ + 109.3573804, + -0.0174065 + ], + [ + 109.3573368, + -0.0174139 + ], + [ + 109.3572356, + -0.017434 + ], + [ + 109.3571573, + -0.0174491 + ], + [ + 109.3570879, + -0.0174632 + ], + [ + 109.357029, + -0.0174742 + ], + [ + 109.3569672, + -0.0174698 + ], + [ + 109.3569295, + -0.0174582 + ], + [ + 109.356909, + -0.0174484 + ], + [ + 109.3568848, + -0.0174389 + ], + [ + 109.3568155, + -0.017435 + ], + [ + 109.3567695, + -0.0174384 + ], + [ + 109.3566313, + -0.0174451 + ] + ] + }, + "id": "way/284396703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396704", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430396, + -0.0109441 + ], + [ + 109.3428219, + -0.0113562 + ], + [ + 109.3428084, + -0.0113818 + ], + [ + 109.3425381, + -0.011717 + ], + [ + 109.3423279, + -0.0119776 + ], + [ + 109.3422835, + -0.0120328 + ], + [ + 109.3420532, + -0.0123183 + ], + [ + 109.3418881, + -0.0125175 + ], + [ + 109.3415456, + -0.012931 + ], + [ + 109.3413654, + -0.0131649 + ], + [ + 109.3411752, + -0.013396 + ], + [ + 109.3409864, + -0.0136252 + ], + [ + 109.3409779, + -0.013665 + ], + [ + 109.3409056, + -0.0137284 + ], + [ + 109.3407551, + -0.0139212 + ], + [ + 109.3406722, + -0.0140246 + ], + [ + 109.340666, + -0.0140387 + ], + [ + 109.3405136, + -0.0142277 + ], + [ + 109.3396691, + -0.0153818 + ] + ] + }, + "id": "way/284396704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396707", + "highway": "residential", + "name": "Gang Karya Keluarga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3684646, + -0.0153008 + ], + [ + 109.368523, + -0.0151578 + ], + [ + 109.3685558, + -0.015072 + ], + [ + 109.3685947, + -0.0149714 + ], + [ + 109.3686591, + -0.0147924 + ], + [ + 109.3687215, + -0.0146287 + ], + [ + 109.3688596, + -0.014258 + ], + [ + 109.3689267, + -0.0141024 + ], + [ + 109.3690202, + -0.0138731 + ], + [ + 109.3690426, + -0.013806 + ], + [ + 109.3689947, + -0.0137815 + ], + [ + 109.3687444, + -0.0136518 + ] + ] + }, + "id": "way/284396707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3538949, + -0.0145409 + ], + [ + 109.3539465, + -0.0144222 + ], + [ + 109.3539646, + -0.0143601 + ], + [ + 109.3539653, + -0.0143431 + ], + [ + 109.3539546, + -0.0143257 + ], + [ + 109.3539081, + -0.0142924 + ], + [ + 109.3536106, + -0.0141071 + ], + [ + 109.3535891, + -0.0141037 + ], + [ + 109.3535596, + -0.0141071 + ], + [ + 109.3535286, + -0.0141341 + ] + ] + }, + "id": "way/284396708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396709", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594185, + -0.0041267 + ], + [ + 109.3594377, + -0.0036933 + ], + [ + 109.3594661, + -0.0032895 + ], + [ + 109.3594879, + -0.0027928 + ], + [ + 109.3595037, + -0.0024153 + ] + ] + }, + "id": "way/284396709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396711", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619913, + -0.0138106 + ], + [ + 109.3616532, + -0.0138103 + ], + [ + 109.3616197, + -0.0138103 + ], + [ + 109.3615365, + -0.0138214 + ], + [ + 109.3614567, + -0.0138375 + ], + [ + 109.3614168, + -0.0138454 + ], + [ + 109.3613419, + -0.0138602 + ], + [ + 109.3612784, + -0.0138636 + ], + [ + 109.3611799, + -0.0138744 + ], + [ + 109.3609721, + -0.0138937 + ], + [ + 109.3608819, + -0.0139138 + ], + [ + 109.3606343, + -0.0139573 + ], + [ + 109.3605384, + -0.0139724 + ], + [ + 109.3604623, + -0.0139844 + ], + [ + 109.3603161, + -0.0140045 + ], + [ + 109.3600468, + -0.0140418 + ] + ] + }, + "id": "way/284396711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396712", + "highway": "residential", + "name": "Gang Selat Madura" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434647, + -0.0180132 + ], + [ + 109.3436421, + -0.0175095 + ], + [ + 109.3436844, + -0.0173968 + ], + [ + 109.3437213, + -0.017309 + ], + [ + 109.3437608, + -0.0172298 + ], + [ + 109.3438996, + -0.0172872 + ], + [ + 109.3439157, + -0.0172885 + ], + [ + 109.3439355, + -0.0172831 + ], + [ + 109.3439483, + -0.0172694 + ], + [ + 109.344078, + -0.0170146 + ], + [ + 109.3442269, + -0.0166692 + ], + [ + 109.3443039, + -0.0164587 + ], + [ + 109.3443549, + -0.0163226 + ], + [ + 109.3444133, + -0.016167 + ], + [ + 109.3444898, + -0.0160081 + ], + [ + 109.3445823, + -0.015825 + ], + [ + 109.3446356, + -0.0157203 + ], + [ + 109.3446896, + -0.0156142 + ], + [ + 109.3447843, + -0.0154238 + ], + [ + 109.3449081, + -0.0151746 + ], + [ + 109.3451113, + -0.0147656 + ], + [ + 109.3452371, + -0.0145067 + ], + [ + 109.3453118, + -0.0143659 + ], + [ + 109.3453793, + -0.0142445 + ], + [ + 109.3454394, + -0.0141302 + ] + ] + }, + "id": "way/284396712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396713", + "highway": "residential", + "name": "KOMPLEK DWI RATNA INDAH II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.372732, + -0.003279 + ], + [ + 109.3724451, + -0.0032667 + ], + [ + 109.3719227, + -0.003259 + ], + [ + 109.3714025, + -0.0032431 + ] + ] + }, + "id": "way/284396713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396715", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561886, + -0.0035371 + ], + [ + 109.3594377, + -0.0036933 + ], + [ + 109.3612271, + -0.0036855 + ], + [ + 109.3612672, + -0.0036714 + ], + [ + 109.3613015, + -0.003663 + ], + [ + 109.3637051, + -0.0037002 + ] + ] + }, + "id": "way/284396715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396716", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550313, + -0.0127232 + ], + [ + 109.3559023, + -0.0127611 + ], + [ + 109.3570559, + -0.0128022 + ], + [ + 109.3579879, + -0.0128159 + ], + [ + 109.3580836, + -0.0128173 + ], + [ + 109.3591599, + -0.0128466 + ], + [ + 109.3594477, + -0.0128544 + ], + [ + 109.3600089, + -0.0128742 + ], + [ + 109.3609962, + -0.0128419 + ], + [ + 109.3613432, + -0.0128306 + ], + [ + 109.3616171, + -0.0128308 + ], + [ + 109.3619536, + -0.0128096 + ], + [ + 109.3620044, + -0.0128111 + ], + [ + 109.3635203, + -0.0127803 + ] + ] + }, + "id": "way/284396716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396719", + "highway": "residential", + "name": "Gang Selat Bangka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494183, + -0.020763 + ], + [ + 109.3493315, + -0.0201604 + ], + [ + 109.3493194, + -0.0200643 + ], + [ + 109.3493348, + -0.0199704 + ], + [ + 109.3493625, + -0.019488 + ], + [ + 109.3494511, + -0.0187614 + ] + ] + }, + "id": "way/284396719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396720", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352537, + -0.0109151 + ], + [ + 109.3527138, + -0.0106733 + ], + [ + 109.3528872, + -0.0104258 + ], + [ + 109.3530589, + -0.0101887 + ], + [ + 109.3532433, + -0.0099229 + ], + [ + 109.3533178, + -0.00982 + ] + ] + }, + "id": "way/284396720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396721", + "highway": "residential", + "name": "Gang Selat Makasar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443892, + -0.0182444 + ], + [ + 109.3444471, + -0.0180781 + ], + [ + 109.3444803, + -0.0179641 + ], + [ + 109.3445118, + -0.0178575 + ], + [ + 109.3446426, + -0.0174035 + ], + [ + 109.3447137, + -0.0171749 + ], + [ + 109.3448042, + -0.0168972 + ], + [ + 109.344937, + -0.0164688 + ], + [ + 109.3450878, + -0.0160113 + ], + [ + 109.3451432, + -0.0158587 + ], + [ + 109.3454104, + -0.0152463 + ], + [ + 109.3455282, + -0.0149736 + ], + [ + 109.3455914, + -0.0148286 + ], + [ + 109.3457028, + -0.0146066 + ], + [ + 109.3457671, + -0.014492 + ], + [ + 109.3458778, + -0.0142801 + ] + ] + }, + "id": "way/284396721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396722", + "highway": "residential", + "name": "Gang Maluku" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352683, + -0.0180626 + ], + [ + 109.3526143, + -0.0178607 + ], + [ + 109.3525739, + -0.0177495 + ], + [ + 109.3525389, + -0.0176094 + ], + [ + 109.3524935, + -0.0174239 + ], + [ + 109.3524803, + -0.0173774 + ], + [ + 109.3524089, + -0.0171252 + ], + [ + 109.3523132, + -0.0168088 + ], + [ + 109.3521981, + -0.0164603 + ], + [ + 109.352182, + -0.0164141 + ], + [ + 109.3521783, + -0.0163749 + ], + [ + 109.3521944, + -0.0163259 + ], + [ + 109.3523658, + -0.0160445 + ], + [ + 109.3524753, + -0.0158647 + ], + [ + 109.352767, + -0.0153677 + ], + [ + 109.352882, + -0.0151893 + ], + [ + 109.3532338, + -0.014608 + ], + [ + 109.3534601, + -0.0142365 + ], + [ + 109.3535286, + -0.0141341 + ] + ] + }, + "id": "way/284396722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396724", + "highway": "residential", + "name": "Jalan Parit Pangeran 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358036, + 0.0110118 + ], + [ + 109.3579893, + 0.0105731 + ], + [ + 109.3579022, + 0.0095756 + ], + [ + 109.3578409, + 0.0091722 + ], + [ + 109.3578262, + 0.0090843 + ], + [ + 109.3577776, + 0.0087952 + ], + [ + 109.3577277, + 0.0084977 + ], + [ + 109.3577015, + 0.0083418 + ], + [ + 109.3576546, + 0.0080176 + ], + [ + 109.3575557, + 0.0073335 + ], + [ + 109.3574908, + 0.006823 + ], + [ + 109.3573451, + 0.0056769 + ], + [ + 109.3573323, + 0.0055681 + ], + [ + 109.3572985, + 0.0052813 + ], + [ + 109.3572379, + 0.0047674 + ], + [ + 109.3571073, + 0.0038356 + ], + [ + 109.3570393, + 0.0032951 + ], + [ + 109.3570147, + 0.0030994 + ], + [ + 109.3569452, + 0.0025464 + ], + [ + 109.3569069, + 0.0021549 + ] + ] + }, + "id": "way/284396724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396725", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532013, + -0.015844 + ], + [ + 109.3530674, + -0.0158505 + ], + [ + 109.3529363, + -0.0158612 + ], + [ + 109.3528364, + -0.0158646 + ], + [ + 109.3528284, + -0.01587 + ], + [ + 109.352826, + -0.0158753 + ], + [ + 109.3528466, + -0.0163051 + ], + [ + 109.3528653, + -0.0165445 + ], + [ + 109.3528686, + -0.0165787 + ], + [ + 109.3528676, + -0.0166029 + ], + [ + 109.3528643, + -0.0166552 + ], + [ + 109.3528579, + -0.016687 + ], + [ + 109.3528532, + -0.0166946 + ], + [ + 109.3528478, + -0.0166958 + ], + [ + 109.3523132, + -0.0168088 + ] + ] + }, + "id": "way/284396725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396726", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562128, + -0.0022917 + ], + [ + 109.3559317, + -0.0020546 + ], + [ + 109.3545714, + -0.0008647 + ], + [ + 109.3541987, + -0.0005385 + ], + [ + 109.353565, + 0.000008 + ] + ] + }, + "id": "way/284396726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396728", + "highway": "residential", + "name": "Gang Kalilandak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651737, + -0.0163152 + ], + [ + 109.3655494, + -0.0163588 + ], + [ + 109.3658783, + -0.0164077 + ], + [ + 109.3659052, + -0.0164218 + ], + [ + 109.3659119, + -0.0164513 + ], + [ + 109.3658564, + -0.0168091 + ], + [ + 109.3657945, + -0.0171514 + ], + [ + 109.3657804, + -0.0171883 + ], + [ + 109.3657583, + -0.0171943 + ], + [ + 109.365057, + -0.0170602 + ] + ] + }, + "id": "way/284396728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558542, + -0.0155508 + ], + [ + 109.3558522, + -0.01553 + ], + [ + 109.3558495, + -0.0155132 + ], + [ + 109.3558321, + -0.0155032 + ], + [ + 109.3557892, + -0.0154991 + ], + [ + 109.3556604, + -0.0155133 + ], + [ + 109.3555377, + -0.0155358 + ], + [ + 109.3554337, + -0.0155526 + ], + [ + 109.3551611, + -0.0155909 + ], + [ + 109.3549979, + -0.0156017 + ], + [ + 109.3548732, + -0.0156005 + ] + ] + }, + "id": "way/284396729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396730", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609721, + -0.0138937 + ], + [ + 109.3609886, + -0.0146761 + ], + [ + 109.3610004, + -0.0147174 + ], + [ + 109.3610068, + -0.0147555 + ], + [ + 109.3610132, + -0.0148057 + ], + [ + 109.3610171, + -0.0148907 + ], + [ + 109.361039, + -0.0155058 + ] + ] + }, + "id": "way/284396730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396732", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481036, + -0.0123433 + ], + [ + 109.3479847, + -0.0121678 + ], + [ + 109.347815, + -0.0119505 + ], + [ + 109.3477181, + -0.0118463 + ], + [ + 109.347634, + -0.0117518 + ], + [ + 109.3475558, + -0.011676 + ], + [ + 109.3474442, + -0.0115848 + ], + [ + 109.3473644, + -0.0115375 + ], + [ + 109.3474804, + -0.0113149 + ], + [ + 109.3475629, + -0.0111466 + ], + [ + 109.3476252, + -0.0110323 + ], + [ + 109.3475826, + -0.0109991 + ], + [ + 109.3477406, + -0.0106542 + ], + [ + 109.3478153, + -0.0104937 + ], + [ + 109.3478874, + -0.0103386 + ], + [ + 109.3479493, + -0.0102187 + ], + [ + 109.3480659, + -0.0100298 + ], + [ + 109.3480789, + -0.0100103 + ], + [ + 109.3480782, + -0.0100026 + ], + [ + 109.3480748, + -0.0099902 + ], + [ + 109.3480286, + -0.0099376 + ], + [ + 109.3480152, + -0.0099242 + ], + [ + 109.3480091, + -0.0099124 + ], + [ + 109.3480121, + -0.009898 + ], + [ + 109.3480242, + -0.0098772 + ], + [ + 109.3480756, + -0.0098064 + ], + [ + 109.3481664, + -0.0096995 + ], + [ + 109.3482301, + -0.0096271 + ], + [ + 109.3482428, + -0.0096108 + ], + [ + 109.3483876, + -0.0093643 + ] + ] + }, + "id": "way/284396732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526169, + -0.0092429 + ], + [ + 109.3526664, + -0.0092798 + ], + [ + 109.3540564, + -0.0099728 + ], + [ + 109.3541282, + -0.0100167 + ], + [ + 109.3541913, + -0.010061 + ], + [ + 109.354324, + -0.0101629 + ], + [ + 109.3544072, + -0.0102206 + ], + [ + 109.3545668, + -0.0103077 + ], + [ + 109.3547881, + -0.0104164 + ], + [ + 109.355, + -0.0105116 + ], + [ + 109.3551916, + -0.0105813 + ], + [ + 109.3552509, + -0.0106003 + ] + ] + }, + "id": "way/284396733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396734", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548229, + -0.0134989 + ], + [ + 109.3548162, + -0.0134835 + ], + [ + 109.3548001, + -0.0134768 + ], + [ + 109.3547686, + -0.0134754 + ], + [ + 109.3543619, + -0.0135053 + ], + [ + 109.3542379, + -0.0135063 + ], + [ + 109.354202, + -0.0135029 + ], + [ + 109.3541769, + -0.0134932 + ], + [ + 109.3540976, + -0.0134535 + ], + [ + 109.3540838, + -0.0134514 + ], + [ + 109.3540723, + -0.0134561 + ], + [ + 109.3540112, + -0.0135322 + ], + [ + 109.3539844, + -0.0135631 + ], + [ + 109.3539735, + -0.0135673 + ], + [ + 109.353965, + -0.0135671 + ], + [ + 109.3539569, + -0.0135653 + ] + ] + }, + "id": "way/284396734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396735", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565127, + -0.0162998 + ], + [ + 109.3565329, + -0.0167533 + ], + [ + 109.3565513, + -0.0169184 + ], + [ + 109.3565649, + -0.0170137 + ], + [ + 109.3565832, + -0.0171084 + ], + [ + 109.3566036, + -0.0172741 + ], + [ + 109.3566313, + -0.0174451 + ], + [ + 109.3566396, + -0.017491 + ], + [ + 109.3566472, + -0.0175302 + ], + [ + 109.3566599, + -0.0176184 + ], + [ + 109.3566811, + -0.0177737 + ], + [ + 109.3567425, + -0.0180223 + ], + [ + 109.3567831, + -0.0180242 + ], + [ + 109.3572385, + -0.0179834 + ], + [ + 109.3578512, + -0.0178967 + ], + [ + 109.358322, + -0.0178806 + ] + ] + }, + "id": "way/284396735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396737", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444211, + -0.0124438 + ], + [ + 109.3443884, + -0.0124216 + ], + [ + 109.3438465, + -0.0121836 + ], + [ + 109.3438154, + -0.0121799 + ], + [ + 109.34378, + -0.0121936 + ], + [ + 109.3437665, + -0.0121989 + ], + [ + 109.3436816, + -0.0122546 + ], + [ + 109.343504, + -0.0124776 + ], + [ + 109.3434412, + -0.0125571 + ], + [ + 109.3432886, + -0.0127052 + ], + [ + 109.3432327, + -0.0127718 + ], + [ + 109.3431124, + -0.0129296 + ] + ] + }, + "id": "way/284396737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396738", + "highway": "residential", + "name": "Gang Bhakti Praja" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610063, + 0.0070758 + ], + [ + 109.3610588, + 0.0074343 + ], + [ + 109.3611024, + 0.0077324 + ], + [ + 109.3611494, + 0.0080536 + ], + [ + 109.3611979, + 0.0083851 + ], + [ + 109.3612266, + 0.0086801 + ], + [ + 109.3612559, + 0.0088822 + ] + ] + }, + "id": "way/284396738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396739", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.355842, + 0.0023019 + ], + [ + 109.355732, + 0.0017579 + ], + [ + 109.3557175, + 0.001733 + ], + [ + 109.3556933, + 0.0017203 + ], + [ + 109.3556627, + 0.0017203 + ], + [ + 109.3551083, + 0.0017966 + ], + [ + 109.3550891, + 0.0018206 + ], + [ + 109.3550821, + 0.0018501 + ], + [ + 109.3551547, + 0.0023856 + ] + ] + }, + "id": "way/284396739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396740", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475914, + -0.0044852 + ], + [ + 109.3476328, + -0.0045072 + ], + [ + 109.3479745, + -0.0046889 + ], + [ + 109.348084, + -0.0047493 + ], + [ + 109.3482787, + -0.0048566 + ], + [ + 109.3483886, + -0.0049171 + ], + [ + 109.3486033, + -0.0050355 + ], + [ + 109.3487087, + -0.0050936 + ], + [ + 109.348885, + -0.0051908 + ], + [ + 109.3489249, + -0.0052131 + ], + [ + 109.3508761, + -0.0063005 + ] + ] + }, + "id": "way/284396740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396743", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36612, + 0.0005525 + ], + [ + 109.3659461, + -0.0000366 + ], + [ + 109.3657774, + -0.0006993 + ], + [ + 109.3656059, + -0.0014747 + ], + [ + 109.3655142, + -0.001958 + ], + [ + 109.3652438, + -0.0036055 + ], + [ + 109.3652306, + -0.003726 + ], + [ + 109.3651402, + -0.0043168 + ], + [ + 109.3650734, + -0.0046942 + ] + ] + }, + "id": "way/284396743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396744", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443618, + -0.0081971 + ], + [ + 109.3442131, + -0.0085359 + ], + [ + 109.3442107, + -0.0085417 + ], + [ + 109.3440582, + -0.0089236 + ], + [ + 109.3439481, + -0.0091642 + ], + [ + 109.343916, + -0.0092679 + ], + [ + 109.3438401, + -0.0094245 + ], + [ + 109.3438337, + -0.0094391 + ], + [ + 109.3436717, + -0.0098295 + ], + [ + 109.3433278, + -0.0103843 + ], + [ + 109.3431539, + -0.0106649 + ], + [ + 109.3435885, + -0.0108697 + ], + [ + 109.3436596, + -0.0108992 + ], + [ + 109.34397, + -0.0110435 + ] + ] + }, + "id": "way/284396744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396745", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3667172, + -0.0148313 + ], + [ + 109.3666649, + -0.0150204 + ], + [ + 109.3665844, + -0.0153489 + ], + [ + 109.3664557, + -0.0157942 + ], + [ + 109.3663377, + -0.0161952 + ], + [ + 109.3662183, + -0.0165693 + ], + [ + 109.3660131, + -0.0172171 + ], + [ + 109.3659152, + -0.0175001 + ], + [ + 109.3658562, + -0.0176436 + ], + [ + 109.3657851, + -0.0177629 + ], + [ + 109.3657087, + -0.017826 + ], + [ + 109.3656537, + -0.0178501 + ], + [ + 109.3655638, + -0.0178622 + ], + [ + 109.3653466, + -0.0178501 + ], + [ + 109.3651374, + -0.0178246 + ], + [ + 109.3650515, + -0.01783 + ], + [ + 109.3650234, + -0.0178622 + ], + [ + 109.3650006, + -0.0179386 + ], + [ + 109.3649794, + -0.0180853 + ] + ] + }, + "id": "way/284396745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396747", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434553, + -0.0132035 + ], + [ + 109.3431748, + -0.013 + ], + [ + 109.3431124, + -0.0129296 + ], + [ + 109.3428234, + -0.0126152 + ], + [ + 109.342816, + -0.012597 + ], + [ + 109.3428133, + -0.0125782 + ], + [ + 109.3428207, + -0.0124763 + ], + [ + 109.3425941, + -0.0122743 + ], + [ + 109.3422835, + -0.0120328 + ] + ] + }, + "id": "way/284396747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396748", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550085, + -0.0117998 + ], + [ + 109.3548712, + -0.0117642 + ], + [ + 109.3547733, + -0.011734 + ], + [ + 109.3546841, + -0.0117159 + ], + [ + 109.3545084, + -0.0116736 + ], + [ + 109.3543549, + -0.0116344 + ], + [ + 109.354318, + -0.0116223 + ], + [ + 109.3542979, + -0.011675 + ], + [ + 109.3542546, + -0.0117803 + ], + [ + 109.3542, + -0.0119429 + ], + [ + 109.3541668, + -0.0120183 + ], + [ + 109.35415, + -0.012024 + ], + [ + 109.3541259, + -0.0120136 + ], + [ + 109.3536501, + -0.0116834 + ], + [ + 109.3536267, + -0.011681 + ], + [ + 109.3536024, + -0.0116953 + ], + [ + 109.353577, + -0.0117239 + ], + [ + 109.3533865, + -0.0119901 + ], + [ + 109.3531083, + -0.0123509 + ] + ] + }, + "id": "way/284396748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396749", + "highway": "residential", + "name": "KOMPLEK GOLF PERMAI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36915, + -0.00211 + ], + [ + 109.3692141, + -0.0017508 + ], + [ + 109.3693362, + -0.0009942 + ], + [ + 109.3693728, + -0.0008638 + ], + [ + 109.3694095, + -0.0007436 + ], + [ + 109.3694368, + -0.0006389 + ], + [ + 109.3695222, + -0.0002957 + ], + [ + 109.3695959, + 0.0000107 + ], + [ + 109.3696073, + 0.0000241 + ], + [ + 109.3696252, + 0.0000307 + ], + [ + 109.3696591, + 0.0000265 + ], + [ + 109.3699828, + -0.0000013 + ], + [ + 109.3702557, + -0.0000422 + ], + [ + 109.3708461, + -0.0001619 + ] + ] + }, + "id": "way/284396749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396750", + "highway": "residential", + "motorcar": "destination", + "name": "KOMPLEK GARDEN MAS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486033, + -0.0050355 + ], + [ + 109.3481229, + -0.0062136 + ], + [ + 109.3480993, + -0.0062187 + ], + [ + 109.348077, + -0.006217 + ], + [ + 109.3479889, + -0.0061717 + ], + [ + 109.3478227, + -0.0060923 + ], + [ + 109.3478153, + -0.0060605 + ], + [ + 109.347819, + -0.0060079 + ], + [ + 109.3482787, + -0.0048566 + ] + ] + }, + "id": "way/284396750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396752", + "highway": "residential", + "name": "KOMPLEK PONDOK PANGERAN 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562558, + -0.0018803 + ], + [ + 109.3562355, + -0.0018626 + ], + [ + 109.3546407, + -0.0004706 + ], + [ + 109.3534106, + 0.000603 + ], + [ + 109.3533819, + 0.0006151 + ], + [ + 109.3533688, + 0.0006192 + ], + [ + 109.353339, + 0.0006042 + ], + [ + 109.3533274, + 0.0005757 + ], + [ + 109.3532982, + 0.000479 + ], + [ + 109.3532715, + 0.0003905 + ], + [ + 109.3532646, + 0.0003677 + ], + [ + 109.3532585, + 0.0003587 + ], + [ + 109.3532508, + 0.0003541 + ], + [ + 109.3532414, + 0.0003521 + ], + [ + 109.3531244, + 0.0004224 + ] + ] + }, + "id": "way/284396752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396753", + "highway": "residential", + "name": "Gang Kalilandak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648676, + -0.0180797 + ], + [ + 109.3649209, + -0.017808 + ], + [ + 109.3649818, + -0.0174759 + ], + [ + 109.365057, + -0.0170602 + ], + [ + 109.3651211, + -0.0166822 + ], + [ + 109.3651737, + -0.0163152 + ], + [ + 109.3652868, + -0.0157204 + ], + [ + 109.3653, + -0.015651 + ], + [ + 109.3653251, + -0.0154624 + ], + [ + 109.3653332, + -0.0153637 + ], + [ + 109.3653332, + -0.0152081 + ], + [ + 109.3653308, + -0.0149507 + ] + ] + }, + "id": "way/284396753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396756", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489505, + -0.0116879 + ], + [ + 109.3488151, + -0.0118057 + ], + [ + 109.348738, + -0.0118583 + ], + [ + 109.3486472, + -0.011919 + ], + [ + 109.3485218, + -0.0120062 + ], + [ + 109.3482147, + -0.0122427 + ], + [ + 109.3481036, + -0.0123433 + ], + [ + 109.3478794, + -0.0125229 + ], + [ + 109.3476306, + -0.0127029 + ], + [ + 109.3476165, + -0.012716 + ], + [ + 109.3476165, + -0.0127281 + ], + [ + 109.3476634, + -0.0127737 + ], + [ + 109.3477217, + -0.0128283 + ], + [ + 109.3478136, + -0.012943 + ], + [ + 109.3479169, + -0.0130825 + ], + [ + 109.3480001, + -0.0131797 + ], + [ + 109.3480618, + -0.0132541 + ] + ] + }, + "id": "way/284396756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396757", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3666852, + -0.0040391 + ], + [ + 109.3673432, + -0.004034 + ], + [ + 109.3673784, + -0.0040139 + ], + [ + 109.3673975, + -0.0039835 + ], + [ + 109.3674333, + -0.0035916 + ], + [ + 109.3674423, + -0.0035164 + ], + [ + 109.3674552, + -0.0034235 + ], + [ + 109.367472, + -0.003272 + ], + [ + 109.3674916, + -0.003138 + ] + ] + }, + "id": "way/284396757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396758", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540355, + -0.0124475 + ], + [ + 109.3539861, + -0.0125206 + ], + [ + 109.3538406, + -0.0127465 + ], + [ + 109.3537893, + -0.0128213 + ], + [ + 109.3537718, + -0.0128314 + ], + [ + 109.3537547, + -0.012831 + ], + [ + 109.3537226, + -0.0128082 + ], + [ + 109.3531083, + -0.0123509 + ], + [ + 109.3529031, + -0.0122148 + ], + [ + 109.3525035, + -0.0119466 + ], + [ + 109.3523392, + -0.0118245 + ], + [ + 109.3522004, + -0.0117179 + ], + [ + 109.3520623, + -0.011622 + ], + [ + 109.3518645, + -0.0114698 + ], + [ + 109.3518323, + -0.011439 + ], + [ + 109.3518276, + -0.0114235 + ], + [ + 109.351837, + -0.011398 + ], + [ + 109.3519194, + -0.0112398 + ], + [ + 109.3519751, + -0.0111446 + ], + [ + 109.3520419, + -0.0110172 + ] + ] + }, + "id": "way/284396758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396760", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498688, + -0.0126958 + ], + [ + 109.3504415, + -0.0127807 + ], + [ + 109.3505676, + -0.0127941 + ], + [ + 109.3508439, + -0.0127982 + ], + [ + 109.3513656, + -0.0128049 + ], + [ + 109.351468, + -0.0128065 + ], + [ + 109.3514139, + -0.0135698 + ], + [ + 109.3514086, + -0.0139127 + ], + [ + 109.3513678, + -0.0143017 + ], + [ + 109.3513397, + -0.0144739 + ], + [ + 109.3513247, + -0.0145268 + ], + [ + 109.3513086, + -0.0146154 + ], + [ + 109.3512813, + -0.0146712 + ], + [ + 109.3512516, + -0.0147267 + ], + [ + 109.3511892, + -0.0148219 + ], + [ + 109.3511131, + -0.0149549 + ] + ] + }, + "id": "way/284396760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396761", + "highway": "footway", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3780891, + -0.0158337 + ], + [ + 109.3779845, + -0.0158485 + ], + [ + 109.3778658, + -0.0158679 + ], + [ + 109.3776955, + -0.0158975 + ], + [ + 109.3774279, + -0.0159551 + ], + [ + 109.3772556, + -0.0159826 + ], + [ + 109.3771973, + -0.0159699 + ], + [ + 109.3771557, + -0.0159558 + ], + [ + 109.3771221, + -0.0159256 + ], + [ + 109.377092, + -0.0158854 + ], + [ + 109.3770497, + -0.0158264 + ], + [ + 109.3770279, + -0.0157701 + ], + [ + 109.3769049, + -0.0152811 + ], + [ + 109.3767778, + -0.0148835 + ], + [ + 109.3767259, + -0.0147548 + ], + [ + 109.3766507, + -0.014563 + ], + [ + 109.3766145, + -0.014445 + ] + ] + }, + "id": "way/284396761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396762", + "highway": "residential", + "name": "Gang Blitar 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531377, + -0.0177709 + ], + [ + 109.3531494, + -0.0171969 + ], + [ + 109.353178, + -0.0165567 + ], + [ + 109.3532013, + -0.015844 + ], + [ + 109.3531971, + -0.0154317 + ], + [ + 109.3532074, + -0.0153747 + ], + [ + 109.3532157, + -0.0153617 + ], + [ + 109.3532337, + -0.0153593 + ], + [ + 109.3532531, + -0.0153592 + ], + [ + 109.3546494, + -0.0155097 + ], + [ + 109.3546611, + -0.0155205 + ], + [ + 109.3546684, + -0.0155379 + ], + [ + 109.3546661, + -0.015571 + ], + [ + 109.3546738, + -0.0155889 + ], + [ + 109.3546899, + -0.0155962 + ] + ] + }, + "id": "way/284396762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396764", + "highway": "residential", + "name": "KOMPLEK ZAMRUD PANGERAN RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547793, + -0.0142466 + ], + [ + 109.3547706, + -0.014262 + ], + [ + 109.3547565, + -0.0142687 + ], + [ + 109.3547358, + -0.014268 + ], + [ + 109.3546231, + -0.0142653 + ], + [ + 109.3544555, + -0.0142647 + ], + [ + 109.3544166, + -0.0142635 + ], + [ + 109.3542248, + -0.0142573 + ], + [ + 109.3541484, + -0.0142499 + ], + [ + 109.3541276, + -0.0142331 + ], + [ + 109.3541229, + -0.0142077 + ], + [ + 109.3541306, + -0.0141375 + ], + [ + 109.3541483, + -0.0137119 + ], + [ + 109.3541617, + -0.0136776 + ], + [ + 109.3541879, + -0.0136659 + ], + [ + 109.3542409, + -0.0136699 + ], + [ + 109.3544472, + -0.0136848 + ], + [ + 109.3547944, + -0.013715 + ] + ] + }, + "id": "way/284396764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396766", + "highway": "residential", + "name": "Gang Karya Mandiri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.371112, + -0.0155186 + ], + [ + 109.371222, + -0.0151397 + ], + [ + 109.371285, + -0.0149238 + ], + [ + 109.3713252, + -0.014724 + ], + [ + 109.3714701, + -0.0142921 + ], + [ + 109.3715948, + -0.0139005 + ], + [ + 109.3715909, + -0.01388 + ], + [ + 109.3715795, + -0.0138553 + ], + [ + 109.3715622, + -0.0138353 + ], + [ + 109.371545, + -0.0138231 + ], + [ + 109.3714888, + -0.0137879 + ], + [ + 109.3714487, + -0.0137677 + ], + [ + 109.3714281, + -0.0137365 + ], + [ + 109.3714157, + -0.0136995 + ], + [ + 109.3714132, + -0.0136631 + ], + [ + 109.3714206, + -0.0136243 + ], + [ + 109.3718938, + -0.0123231 + ] + ] + }, + "id": "way/284396766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396767", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465537, + -0.0112224 + ], + [ + 109.346606, + -0.011109 + ], + [ + 109.3466737, + -0.0109468 + ], + [ + 109.3467481, + -0.010753 + ], + [ + 109.3468088, + -0.0106051 + ], + [ + 109.3468514, + -0.0104814 + ], + [ + 109.3468816, + -0.0103902 + ], + [ + 109.3469091, + -0.0103024 + ], + [ + 109.3470291, + -0.0100087 + ], + [ + 109.3471062, + -0.0098102 + ], + [ + 109.3471187, + -0.0097809 + ], + [ + 109.3471546, + -0.0096845 + ], + [ + 109.3471596, + -0.009671 + ], + [ + 109.3472183, + -0.0095233 + ], + [ + 109.3473838, + -0.0090745 + ], + [ + 109.3474432, + -0.0089221 + ], + [ + 109.3474868, + -0.0088104 + ], + [ + 109.3476105, + -0.0084891 + ], + [ + 109.3477581, + -0.0081037 + ], + [ + 109.3478149, + -0.0079551 + ], + [ + 109.347956, + -0.007589 + ], + [ + 109.3480141, + -0.0074451 + ], + [ + 109.3481476, + -0.0071177 + ], + [ + 109.3481972, + -0.0069825 + ], + [ + 109.3482421, + -0.0068644 + ], + [ + 109.3482798, + -0.0067638 + ], + [ + 109.3484262, + -0.0063834 + ], + [ + 109.348701, + -0.0056413 + ], + [ + 109.348885, + -0.0051908 + ] + ] + }, + "id": "way/284396767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396769", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365136, + -0.0112975 + ], + [ + 109.3651427, + -0.011434 + ], + [ + 109.3651427, + -0.0115127 + ], + [ + 109.3651441, + -0.0115824 + ], + [ + 109.3651435, + -0.0116441 + ], + [ + 109.365128, + -0.0118319 + ], + [ + 109.3651166, + -0.0119224 + ], + [ + 109.3651102, + -0.0119699 + ], + [ + 109.3650871, + -0.0120901 + ], + [ + 109.3650757, + -0.0121645 + ], + [ + 109.3650512, + -0.0122969 + ], + [ + 109.3650059, + -0.0126305 + ], + [ + 109.3649506, + -0.0130033 + ], + [ + 109.3649402, + -0.0130261 + ], + [ + 109.3649285, + -0.0130382 + ], + [ + 109.3648943, + -0.0130409 + ], + [ + 109.364846, + -0.0130382 + ], + [ + 109.3646529, + -0.0130218 + ], + [ + 109.3644792, + -0.013009 + ], + [ + 109.3644061, + -0.0129987 + ], + [ + 109.3643974, + -0.0129919 + ], + [ + 109.364386, + -0.0129698 + ], + [ + 109.364379, + -0.0129578 + ], + [ + 109.3643679, + -0.0129527 + ], + [ + 109.3642985, + -0.0129403 + ], + [ + 109.3642938, + -0.0129323 + ], + [ + 109.3642911, + -0.0129152 + ], + [ + 109.3642962, + -0.0128186 + ], + [ + 109.3642948, + -0.0127982 + ], + [ + 109.3642878, + -0.0127884 + ], + [ + 109.3642649, + -0.0127827 + ] + ] + }, + "id": "way/284396769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396770", + "highway": "residential", + "name": "KOMPLEK PNGHARAPAN SETIA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509163, + 0.0007059 + ], + [ + 109.3520696, + 0.000055 + ], + [ + 109.35316, + -0.000519 + ], + [ + 109.3531714, + -0.0005284 + ], + [ + 109.3531747, + -0.0005478 + ], + [ + 109.3531702, + -0.0005925 + ], + [ + 109.3531432, + -0.0008637 + ], + [ + 109.3531428, + -0.0008844 + ], + [ + 109.3531455, + -0.0008916 + ], + [ + 109.3531502, + -0.0008989 + ], + [ + 109.3554398, + -0.0028847 + ], + [ + 109.355472, + -0.0029115 + ], + [ + 109.3555203, + -0.002992 + ], + [ + 109.3553446, + -0.0031717 + ], + [ + 109.3557805, + -0.0035781 + ], + [ + 109.3559253, + -0.0037028 + ] + ] + }, + "id": "way/284396770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396771", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501077, + -0.0121842 + ], + [ + 109.3502293, + -0.0122081 + ], + [ + 109.3504295, + -0.0122429 + ], + [ + 109.3506534, + -0.0122845 + ], + [ + 109.3509431, + -0.0123194 + ], + [ + 109.3511456, + -0.0123288 + ], + [ + 109.351446, + -0.0123328 + ], + [ + 109.351611, + -0.0123408 + ], + [ + 109.3516405, + -0.0123449 + ], + [ + 109.3516801, + -0.0123569 + ], + [ + 109.3518698, + -0.0125018 + ], + [ + 109.3522239, + -0.0127472 + ], + [ + 109.3523898, + -0.0128461 + ], + [ + 109.3534934, + -0.0136741 + ], + [ + 109.3535831, + -0.013743 + ], + [ + 109.3537433, + -0.0138784 + ], + [ + 109.3537474, + -0.0139046 + ], + [ + 109.3537445, + -0.0139255 + ], + [ + 109.3536106, + -0.0141071 + ] + ] + }, + "id": "way/284396771" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396773", + "highway": "residential", + "name": "KOMPLEK PENGHARAPAN SETIA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559973, + -0.0040331 + ], + [ + 109.3553959, + -0.003509 + ], + [ + 109.3553631, + -0.0033914 + ], + [ + 109.3553475, + -0.003279 + ], + [ + 109.3553112, + -0.0032272 + ], + [ + 109.3552956, + -0.0032029 + ], + [ + 109.3552488, + -0.0031595 + ], + [ + 109.3543118, + -0.0023367 + ], + [ + 109.3532623, + -0.0014134 + ] + ] + }, + "id": "way/284396773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284396774", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582986, + 0.0014479 + ], + [ + 109.3582723, + 0.001388 + ], + [ + 109.3582468, + 0.0013746 + ], + [ + 109.3581956, + 0.0013619 + ], + [ + 109.3573737, + 0.0013733 + ], + [ + 109.3573335, + 0.0013867 + ], + [ + 109.357308, + 0.0014256 + ], + [ + 109.3572957, + 0.0015477 + ] + ] + }, + "id": "way/284396774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402554", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268281, + 0.0013468 + ], + [ + 109.3270875, + 0.0009063 + ], + [ + 109.3272549, + 0.0006355 + ], + [ + 109.3273019, + 0.0005696 + ], + [ + 109.3270813, + 0.0003698 + ], + [ + 109.3260138, + -0.0005416 + ] + ] + }, + "id": "way/284402554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402555", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3699223, + 0.0153265 + ], + [ + 109.3699268, + 0.0152617 + ], + [ + 109.3699245, + 0.0151404 + ], + [ + 109.3699148, + 0.0150793 + ], + [ + 109.3699008, + 0.0150251 + ], + [ + 109.3696508, + 0.014096 + ], + [ + 109.3692023, + 0.0124294 + ], + [ + 109.3686957, + 0.0097184 + ], + [ + 109.3686953, + 0.0096814 + ], + [ + 109.3687007, + 0.0096439 + ], + [ + 109.3687101, + 0.0095902 + ], + [ + 109.3687338, + 0.0095179 + ], + [ + 109.3687614, + 0.0094314 + ], + [ + 109.3688895, + 0.0090867 + ], + [ + 109.3691972, + 0.0082591 + ], + [ + 109.3693181, + 0.0079208 + ] + ] + }, + "id": "way/284402555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402557", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383075, + -0.0140847 + ], + [ + 109.338611, + -0.0137819 + ], + [ + 109.338818, + -0.0135754 + ], + [ + 109.3388361, + -0.0135578 + ], + [ + 109.3391273, + -0.0132746 + ], + [ + 109.3391387, + -0.0132716 + ], + [ + 109.3391515, + -0.0132736 + ], + [ + 109.3392641, + -0.0133929 + ], + [ + 109.3392876, + -0.0134084 + ], + [ + 109.3393104, + -0.0134124 + ], + [ + 109.3393372, + -0.0134077 + ], + [ + 109.340471, + -0.0124315 + ], + [ + 109.3413787, + -0.0116569 + ], + [ + 109.341697, + -0.0113853 + ], + [ + 109.3418469, + -0.0112542 + ], + [ + 109.3420036, + -0.0111392 + ], + [ + 109.3422538, + -0.0109102 + ], + [ + 109.3423124, + -0.0108455 + ], + [ + 109.3424793, + -0.0106322 + ] + ] + }, + "id": "way/284402557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402561", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358479, + -0.0077991 + ], + [ + 109.3359481, + -0.0078138 + ], + [ + 109.3359738, + -0.0078101 + ], + [ + 109.3360688, + -0.0077867 + ], + [ + 109.3364103, + -0.0077025 + ], + [ + 109.3365056, + -0.0076727 + ], + [ + 109.3365117, + -0.0076377 + ], + [ + 109.3365179, + -0.0075949 + ], + [ + 109.3365717, + -0.0072599 + ], + [ + 109.3366218, + -0.0071352 + ], + [ + 109.3366301, + -0.0071192 + ], + [ + 109.3366805, + -0.0070215 + ], + [ + 109.3367227, + -0.0069161 + ], + [ + 109.3367771, + -0.0067244 + ], + [ + 109.3367815, + -0.0066794 + ], + [ + 109.3367929, + -0.0065633 + ] + ] + }, + "id": "way/284402561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402567", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432574, + -0.0071184 + ], + [ + 109.343722, + -0.0063275 + ] + ] + }, + "id": "way/284402567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402568", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340471, + -0.0124315 + ], + [ + 109.3401316, + -0.0120266 + ] + ] + }, + "id": "way/284402568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402571", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324647, + -0.0057837 + ], + [ + 109.3327852, + -0.0058593 + ], + [ + 109.3331531, + -0.0059166 + ] + ] + }, + "id": "way/284402571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402575", + "highway": "residential", + "lanes": "2", + "maxspeed": "40", + "name": "Jalan Makmur Indah", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402505, + -0.0159448 + ], + [ + 109.3412274, + -0.0147715 + ] + ] + }, + "id": "way/284402575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402576", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300081, + -0.0016645 + ], + [ + 109.329555, + -0.0014734 + ], + [ + 109.3293095, + -0.0013698 + ] + ] + }, + "id": "way/284402576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402578", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439236, + 0.0000523 + ], + [ + 109.3415069, + 0.000138 + ] + ] + }, + "id": "way/284402578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402579", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3641363, + 0.0167072 + ], + [ + 109.3641141, + 0.0166485 + ], + [ + 109.3640985, + 0.0166024 + ], + [ + 109.3639967, + 0.0159663 + ], + [ + 109.3638185, + 0.0147226 + ], + [ + 109.3633654, + 0.0115335 + ] + ] + }, + "id": "way/284402579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402580", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303234, + -0.0022436 + ], + [ + 109.3305229, + -0.0018024 + ], + [ + 109.3308568, + -0.001064 + ] + ] + }, + "id": "way/284402580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402581", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257913, + -0.0017318 + ], + [ + 109.3249833, + -0.0026666 + ] + ] + }, + "id": "way/284402581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402582", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440341, + -0.0064953 + ], + [ + 109.3435068, + -0.0074228 + ] + ] + }, + "id": "way/284402582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402583", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464745, + -0.0067648 + ], + [ + 109.3460059, + -0.0065249 + ], + [ + 109.3455816, + -0.0062989 + ] + ] + }, + "id": "way/284402583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356197, + -0.0100073 + ], + [ + 109.3358946, + -0.0096948 + ], + [ + 109.3356421, + -0.0094228 + ] + ] + }, + "id": "way/284402584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402586", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398438, + -0.0080641 + ], + [ + 109.3391787, + -0.0065124 + ] + ] + }, + "id": "way/284402586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343228, + -0.0157138 + ], + [ + 109.3428643, + -0.0154968 + ], + [ + 109.3426377, + -0.0153564 + ], + [ + 109.3425713, + -0.0154831 + ] + ] + }, + "id": "way/284402587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402589", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326193, + -0.0048727 + ], + [ + 109.3319728, + -0.0046784 + ] + ] + }, + "id": "way/284402589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402590", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391791, + -0.0139252 + ], + [ + 109.3388361, + -0.0135578 + ] + ] + }, + "id": "way/284402590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402591", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240338, + -0.0012219 + ], + [ + 109.3246593, + -0.0016241 + ] + ] + }, + "id": "way/284402591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339021, + -0.0109465 + ], + [ + 109.339444, + -0.0106797 + ] + ] + }, + "id": "way/284402592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402593", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386167, + -0.0070355 + ], + [ + 109.3386304, + -0.0071099 + ], + [ + 109.3386393, + -0.0072306 + ], + [ + 109.3386827, + -0.0073848 + ], + [ + 109.3388307, + -0.0077547 + ] + ] + }, + "id": "way/284402593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402595", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398643, + -0.0070623 + ], + [ + 109.3401478, + -0.0078103 + ], + [ + 109.3401693, + -0.0078365 + ] + ] + }, + "id": "way/284402595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402596", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403979, + -0.0057597 + ], + [ + 109.3404162, + -0.005789 + ], + [ + 109.3409458, + -0.0071852 + ] + ] + }, + "id": "way/284402596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402598", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3399137, + -0.0060857 + ], + [ + 109.3404699, + -0.0075318 + ] + ] + }, + "id": "way/284402598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402600", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3316955, + -0.005364 + ], + [ + 109.3321551, + -0.0055041 + ] + ] + }, + "id": "way/284402600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402601", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434137, + -0.0151756 + ], + [ + 109.3426563, + -0.0148135 + ] + ] + }, + "id": "way/284402601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402602", + "highway": "residential", + "name": "KOMPLEK DHARMA PUTRA 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343913, + -0.0003283 + ], + [ + 109.3406281, + -0.0002987 + ] + ] + }, + "id": "way/284402602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402603", + "highway": "residential", + "name": "Keluarga 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322678, + -0.0076873 + ], + [ + 109.3316811, + -0.0085174 + ] + ] + }, + "id": "way/284402603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402604", + "highway": "residential", + "name": "Teluk Pari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317899, + -0.0027696 + ], + [ + 109.3317278, + -0.0032039 + ] + ] + }, + "id": "way/284402604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402605", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3252612, + -0.0000821 + ], + [ + 109.3249834, + -0.0004546 + ], + [ + 109.3247292, + -0.0007954 + ], + [ + 109.3246437, + -0.00091 + ] + ] + }, + "id": "way/284402605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402606", + "highway": "unclassified", + "name": "Sungai Selamat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330707, + -0.0085002 + ], + [ + 109.3331528, + -0.0083106 + ], + [ + 109.3331657, + -0.0082703 + ], + [ + 109.3332103, + -0.0081013 + ], + [ + 109.3332458, + -0.0079355 + ], + [ + 109.3332585, + -0.0078761 + ], + [ + 109.3332853, + -0.0077572 + ], + [ + 109.3333262, + -0.0075754 + ], + [ + 109.3333567, + -0.0074401 + ], + [ + 109.3333632, + -0.0073841 + ], + [ + 109.3333621, + -0.0073087 + ], + [ + 109.3333607, + -0.0072739 + ], + [ + 109.3333567, + -0.0072464 + ], + [ + 109.333311, + -0.0069846 + ], + [ + 109.3332927, + -0.0068695 + ], + [ + 109.3332854, + -0.0068323 + ], + [ + 109.3332672, + -0.0067398 + ], + [ + 109.3332649, + -0.0067284 + ], + [ + 109.3332306, + -0.0065731 + ], + [ + 109.3332098, + -0.0064787 + ], + [ + 109.3332, + -0.0064183 + ], + [ + 109.3331822, + -0.0063083 + ], + [ + 109.3331631, + -0.00619 + ], + [ + 109.3331579, + -0.0060478 + ], + [ + 109.3331531, + -0.0059166 + ], + [ + 109.3331579, + -0.0058334 + ], + [ + 109.3331592, + -0.0058115 + ], + [ + 109.3331678, + -0.0056305 + ], + [ + 109.3331815, + -0.0055853 + ], + [ + 109.3332282, + -0.0054171 + ], + [ + 109.3332962, + -0.0051429 + ], + [ + 109.3333374, + -0.0050279 + ], + [ + 109.333343, + -0.0050123 + ], + [ + 109.33341, + -0.0048252 + ], + [ + 109.333457, + -0.0046968 + ], + [ + 109.333526, + -0.004508 + ], + [ + 109.3336568, + -0.0041505 + ], + [ + 109.333674, + -0.0041036 + ], + [ + 109.3337728, + -0.0038335 + ], + [ + 109.3338257, + -0.0036889 + ], + [ + 109.3338873, + -0.0035206 + ], + [ + 109.3339686, + -0.0032834 + ], + [ + 109.3341356, + -0.0027967 + ] + ] + }, + "id": "way/284402606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402610", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332585, + -0.0078761 + ], + [ + 109.3328278, + -0.0075166 + ] + ] + }, + "id": "way/284402610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402612", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406912, + -0.0074182 + ], + [ + 109.3407344, + -0.0074631 + ] + ] + }, + "id": "way/284402612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321835, + -0.0039889 + ], + [ + 109.3329154, + -0.0042805 + ], + [ + 109.333526, + -0.004508 + ] + ] + }, + "id": "way/284402614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402615", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343329, + -0.0084946 + ], + [ + 109.3432251, + -0.0083765 + ], + [ + 109.3430373, + -0.0081405 + ], + [ + 109.342694, + -0.0077435 + ], + [ + 109.3423509, + -0.0073063 + ], + [ + 109.3419349, + -0.006788 + ], + [ + 109.3418713, + -0.006707 + ] + ] + }, + "id": "way/284402615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402616", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439084, + 0.0007702 + ], + [ + 109.3439942, + 0.0007322 + ] + ] + }, + "id": "way/284402616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402617", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368581, + -0.0110121 + ], + [ + 109.3370097, + -0.0107238 + ], + [ + 109.3369338, + -0.0106497 + ], + [ + 109.3368748, + -0.0105589 + ] + ] + }, + "id": "way/284402617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307906, + -0.0061564 + ], + [ + 109.3310237, + -0.005921 + ], + [ + 109.3311047, + -0.0058296 + ], + [ + 109.3313624, + -0.0054554 + ] + ] + }, + "id": "way/284402618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402619", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458422, + -0.0030697 + ], + [ + 109.3457799, + -0.0030416 + ], + [ + 109.3456377, + -0.0029813 + ], + [ + 109.3455056, + -0.002931 + ], + [ + 109.3453641, + -0.002874 + ], + [ + 109.3451643, + -0.0027922 + ], + [ + 109.3449846, + -0.0027151 + ], + [ + 109.3448585, + -0.0026621 + ], + [ + 109.344739, + -0.0026156 + ], + [ + 109.3433524, + -0.0020387 + ] + ] + }, + "id": "way/284402619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327217, + -0.0045421 + ], + [ + 109.3325176, + -0.0044565 + ], + [ + 109.3320775, + -0.0043199 + ] + ] + }, + "id": "way/284402620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402622", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654581, + 0.0225919 + ], + [ + 109.3654002, + 0.0223911 + ], + [ + 109.3652272, + 0.0215998 + ], + [ + 109.3648679, + 0.0201784 + ], + [ + 109.3648186, + 0.019993 + ], + [ + 109.364543, + 0.0189563 + ], + [ + 109.364267, + 0.0179614 + ], + [ + 109.3642408, + 0.0178682 + ], + [ + 109.3642227, + 0.0177817 + ], + [ + 109.3641199, + 0.0168917 + ], + [ + 109.3641114, + 0.0168664 + ], + [ + 109.3640994, + 0.016847 + ], + [ + 109.3640512, + 0.0167974 + ] + ] + }, + "id": "way/284402622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402623", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418721, + -0.0130534 + ], + [ + 109.3420104, + -0.0131805 + ], + [ + 109.3423686, + -0.0135444 + ], + [ + 109.3424881, + -0.0136558 + ] + ] + }, + "id": "way/284402623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402624", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331579, + -0.0058334 + ], + [ + 109.3332016, + -0.0058405 + ] + ] + }, + "id": "way/284402624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402626", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365383, + -0.0082297 + ], + [ + 109.3365309, + -0.0082015 + ], + [ + 109.3364103, + -0.0077025 + ] + ] + }, + "id": "way/284402626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402627", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344637, + -0.005982 + ], + [ + 109.3426696, + -0.0049493 + ] + ] + }, + "id": "way/284402627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402630", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610375, + 0.0241825 + ], + [ + 109.3603322, + 0.0222784 + ], + [ + 109.3599424, + 0.0212275 + ], + [ + 109.3597726, + 0.0207699 + ], + [ + 109.3597046, + 0.0205645 + ], + [ + 109.3596429, + 0.0203446 + ], + [ + 109.3593563, + 0.0190236 + ] + ] + }, + "id": "way/284402630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402631", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420532, + -0.0123183 + ], + [ + 109.3416043, + -0.0119279 + ], + [ + 109.3413787, + -0.0116569 + ] + ] + }, + "id": "way/284402631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402634", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461142, + -0.0025034 + ], + [ + 109.34488, + -0.002127 + ], + [ + 109.3436264, + -0.0017035 + ] + ] + }, + "id": "way/284402634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402635", + "highway": "residential", + "name": "Kapuas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320335, + -0.0074468 + ], + [ + 109.3317625, + -0.0078393 + ], + [ + 109.3316292, + -0.0080323 + ], + [ + 109.3315599, + -0.0081326 + ], + [ + 109.3313717, + -0.0084051 + ], + [ + 109.3313386, + -0.008453 + ] + ] + }, + "id": "way/284402635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402640", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344021, + -0.0074069 + ], + [ + 109.3442456, + -0.0075142 + ], + [ + 109.3444388, + -0.0076034 + ], + [ + 109.3445619, + -0.0076608 + ], + [ + 109.3451951, + -0.0079299 + ], + [ + 109.3455733, + -0.0080855 + ], + [ + 109.3459147, + -0.0082142 + ] + ] + }, + "id": "way/284402640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402641", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341697, + -0.0113853 + ], + [ + 109.3418072, + -0.0115171 + ], + [ + 109.3423279, + -0.0119776 + ] + ] + }, + "id": "way/284402641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402642", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236081, + -0.0018748 + ], + [ + 109.3238446, + -0.001512 + ], + [ + 109.3240338, + -0.0012219 + ], + [ + 109.3243243, + -0.0007743 + ], + [ + 109.3243707, + -0.0007053 + ] + ] + }, + "id": "way/284402642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402644", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258826, + -0.0006178 + ], + [ + 109.3257739, + -0.0004815 + ], + [ + 109.3257108, + -0.0004193 + ], + [ + 109.3254229, + -0.0002034 + ], + [ + 109.3252612, + -0.0000821 + ] + ] + }, + "id": "way/284402644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402646", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405136, + -0.0142277 + ], + [ + 109.3412274, + -0.0147715 + ], + [ + 109.3414179, + -0.0149111 + ], + [ + 109.3414394, + -0.0149184 + ], + [ + 109.3414608, + -0.0149138 + ], + [ + 109.3414769, + -0.0149017 + ], + [ + 109.341692, + -0.0146451 + ] + ] + }, + "id": "way/284402646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402648", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305814, + -0.0032132 + ], + [ + 109.3309655, + -0.0026236 + ], + [ + 109.3309906, + -0.0025779 + ], + [ + 109.3311363, + -0.0023684 + ], + [ + 109.3312691, + -0.0021404 + ], + [ + 109.3315462, + -0.001745 + ] + ] + }, + "id": "way/284402648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402650", + "highway": "residential", + "name": "Sungai Selamat 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333076, + -0.0055897 + ], + [ + 109.3341209, + -0.0056966 + ], + [ + 109.3344475, + -0.0057574 + ], + [ + 109.3348418, + -0.0058459 + ], + [ + 109.3349487, + -0.0058692 + ], + [ + 109.3356101, + -0.0060133 + ] + ] + }, + "id": "way/284402650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402651", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430735, + -0.0087748 + ], + [ + 109.3415855, + -0.0070333 + ], + [ + 109.341496, + -0.0069409 + ] + ] + }, + "id": "way/284402651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402652", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351523, + -0.0108234 + ], + [ + 109.3358758, + -0.0099128 + ], + [ + 109.3359523, + -0.0098249 + ], + [ + 109.336024, + -0.0097659 + ], + [ + 109.3361769, + -0.0096392 + ], + [ + 109.3363693, + -0.0094715 + ], + [ + 109.3364996, + -0.0093787 + ] + ] + }, + "id": "way/284402652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402655", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425838, + -0.006258 + ], + [ + 109.3429201, + -0.0066876 + ], + [ + 109.3432574, + -0.0071184 + ], + [ + 109.3435068, + -0.0074228 + ], + [ + 109.3438721, + -0.007877 + ], + [ + 109.3439653, + -0.0076282 + ], + [ + 109.3439835, + -0.0075652 + ], + [ + 109.3440083, + -0.007476 + ], + [ + 109.344021, + -0.0074069 + ] + ] + }, + "id": "way/284402655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402657", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444566, + -0.0063888 + ], + [ + 109.3446621, + -0.0064936 + ], + [ + 109.3446808, + -0.0064943 + ], + [ + 109.3447003, + -0.0064883 + ], + [ + 109.3447679, + -0.0063116 + ], + [ + 109.3447767, + -0.0063045 + ], + [ + 109.3447962, + -0.0063059 + ], + [ + 109.3463514, + -0.0070733 + ] + ] + }, + "id": "way/284402657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402659", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410113, + -0.0107175 + ], + [ + 109.3404074, + -0.0099407 + ], + [ + 109.3402291, + -0.0097238 + ], + [ + 109.3400606, + -0.0095183 + ], + [ + 109.3399093, + -0.0093572 + ], + [ + 109.3399085, + -0.0093562 + ], + [ + 109.3396123, + -0.0090054 + ], + [ + 109.3392328, + -0.0086662 + ] + ] + }, + "id": "way/284402659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402661", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421459, + -0.010072 + ], + [ + 109.3407415, + -0.0084736 + ], + [ + 109.3403299, + -0.008014 + ], + [ + 109.3402495, + -0.0079264 + ] + ] + }, + "id": "way/284402661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402663", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358778, + -0.0116073 + ], + [ + 109.3362493, + -0.0111816 + ], + [ + 109.3365356, + -0.0108257 + ], + [ + 109.3365484, + -0.0108194 + ], + [ + 109.3365591, + -0.0108197 + ], + [ + 109.3365692, + -0.0108237 + ], + [ + 109.3368581, + -0.0110121 + ], + [ + 109.3372939, + -0.0112966 + ] + ] + }, + "id": "way/284402663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402665", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238446, + -0.001512 + ], + [ + 109.3248354, + -0.0021569 + ], + [ + 109.324866, + -0.0021699 + ], + [ + 109.3249159, + -0.0021645 + ], + [ + 109.3249505, + -0.0021511 + ], + [ + 109.3250007, + -0.0021348 + ], + [ + 109.3254751, + -0.001496 + ] + ] + }, + "id": "way/284402665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402666", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443385, + -0.006672 + ], + [ + 109.3440341, + -0.0064953 + ], + [ + 109.343722, + -0.0063275 + ], + [ + 109.343408, + -0.0061586 + ], + [ + 109.3427666, + -0.0058137 + ] + ] + }, + "id": "way/284402666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402667", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369507, + -0.0117269 + ], + [ + 109.3366681, + -0.0114849 + ], + [ + 109.3366506, + -0.0114768 + ], + [ + 109.3365943, + -0.0114554 + ], + [ + 109.3365759, + -0.0114457 + ], + [ + 109.3362493, + -0.0111816 + ], + [ + 109.3360353, + -0.0109884 + ] + ] + }, + "id": "way/284402667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402668", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355707, + -0.011276 + ], + [ + 109.3360696, + -0.0106973 + ], + [ + 109.3361521, + -0.0105994 + ], + [ + 109.3362017, + -0.0105277 + ], + [ + 109.3362802, + -0.0104036 + ], + [ + 109.3363827, + -0.0102407 + ], + [ + 109.3364518, + -0.010124 + ], + [ + 109.3366492, + -0.0097884 + ], + [ + 109.3367277, + -0.0097107 + ] + ] + }, + "id": "way/284402668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402669", + "highway": "residential", + "name": "Teluk Air" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309904, + -0.0063557 + ], + [ + 109.331413, + -0.00591 + ], + [ + 109.3315211, + -0.0057185 + ], + [ + 109.3316955, + -0.005364 + ], + [ + 109.3318544, + -0.005041 + ] + ] + }, + "id": "way/284402669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402670", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361241, + -0.0070396 + ], + [ + 109.3360403, + -0.0069687 + ], + [ + 109.3360221, + -0.0069592 + ], + [ + 109.3351904, + -0.0065753 + ], + [ + 109.3351718, + -0.0065425 + ], + [ + 109.3351653, + -0.0065168 + ] + ] + }, + "id": "way/284402670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402671", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403979, + -0.0057597 + ], + [ + 109.3402146, + -0.0058782 + ], + [ + 109.3399137, + -0.0060857 + ], + [ + 109.339904, + -0.0060909 + ], + [ + 109.3395586, + -0.0062916 + ], + [ + 109.3391787, + -0.0065124 + ], + [ + 109.3388538, + -0.0067012 + ], + [ + 109.3389534, + -0.0069921 + ], + [ + 109.3389668, + -0.007037 + ], + [ + 109.3390769, + -0.0073617 + ], + [ + 109.3395466, + -0.0083095 + ] + ] + }, + "id": "way/284402671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402672", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375316, + -0.0108344 + ], + [ + 109.3376702, + -0.0109796 + ], + [ + 109.3376948, + -0.0109954 + ], + [ + 109.3377145, + -0.010995 + ], + [ + 109.3377453, + -0.0109837 + ], + [ + 109.3377936, + -0.0109353 + ], + [ + 109.33786, + -0.0108495 + ], + [ + 109.3379809, + -0.0107081 + ], + [ + 109.3383348, + -0.0102948 + ], + [ + 109.3386161, + -0.0099389 + ], + [ + 109.3389619, + -0.0095909 + ], + [ + 109.3391395, + -0.009431 + ], + [ + 109.3396123, + -0.0090054 + ] + ] + }, + "id": "way/284402672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402673", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371711, + -0.004844 + ], + [ + 109.3372062, + -0.0049219 + ], + [ + 109.3372164, + -0.0049998 + ], + [ + 109.3372381, + -0.0055494 + ], + [ + 109.3372129, + -0.0056487 + ], + [ + 109.3371244, + -0.005815 + ], + [ + 109.3370692, + -0.0058954 + ], + [ + 109.3369743, + -0.0060284 + ], + [ + 109.3368995, + -0.0061656 + ], + [ + 109.3368684, + -0.0062283 + ], + [ + 109.3367929, + -0.0065633 + ] + ] + }, + "id": "way/284402673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402674", + "highway": "residential", + "name": "Sungai Selamat 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334282, + -0.0051844 + ], + [ + 109.3341328, + -0.0053053 + ], + [ + 109.3344922, + -0.0053536 + ], + [ + 109.3350471, + -0.0054617 + ], + [ + 109.335692, + -0.0055983 + ] + ] + }, + "id": "way/284402674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402675", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431796, + -0.0140619 + ], + [ + 109.3431339, + -0.0140253 + ], + [ + 109.342815, + -0.0137641 + ], + [ + 109.3428029, + -0.0137788 + ], + [ + 109.3427838, + -0.0138037 + ], + [ + 109.3425146, + -0.0141262 + ] + ] + }, + "id": "way/284402675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402676", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430628, + -0.0161991 + ], + [ + 109.3426893, + -0.015997 + ], + [ + 109.3426732, + -0.0159826 + ], + [ + 109.3426618, + -0.0159662 + ], + [ + 109.3426521, + -0.015939 + ], + [ + 109.3426403, + -0.0159206 + ], + [ + 109.3426189, + -0.0159062 + ], + [ + 109.3424056, + -0.0157901 + ], + [ + 109.3423413, + -0.0157504 + ], + [ + 109.3422867, + -0.0157188 + ], + [ + 109.3421078, + -0.0155998 + ] + ] + }, + "id": "way/284402676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402678", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333671, + -0.0045712 + ], + [ + 109.3337887, + -0.0045891 + ], + [ + 109.3339178, + -0.0046147 + ], + [ + 109.3340797, + -0.0046331 + ], + [ + 109.3342418, + -0.0046463 + ], + [ + 109.3344411, + -0.0046536 + ], + [ + 109.3346179, + -0.0046811 + ], + [ + 109.335178, + -0.0047938 + ] + ] + }, + "id": "way/284402678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395989, + -0.0114683 + ], + [ + 109.3398026, + -0.0118782 + ], + [ + 109.3398032, + -0.0118996 + ], + [ + 109.3397952, + -0.0119298 + ], + [ + 109.3397724, + -0.0119593 + ], + [ + 109.3392063, + -0.0123048 + ], + [ + 109.3391669, + -0.0123288 + ], + [ + 109.3390287, + -0.012428 + ], + [ + 109.3389106, + -0.0125039 + ], + [ + 109.3387739, + -0.0125917 + ] + ] + }, + "id": "way/284402680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402682", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390687, + -0.0083445 + ], + [ + 109.3389984, + -0.0081237 + ], + [ + 109.3389456, + -0.0080104 + ], + [ + 109.3388307, + -0.0077547 + ], + [ + 109.3386976, + -0.007815 + ], + [ + 109.338312, + -0.0079793 + ], + [ + 109.3379624, + -0.0080814 + ] + ] + }, + "id": "way/284402682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402683", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331413, + -0.00591 + ], + [ + 109.3316306, + -0.0060578 + ], + [ + 109.3316963, + -0.0061079 + ], + [ + 109.3317189, + -0.0061291 + ], + [ + 109.3318193, + -0.0061842 + ], + [ + 109.3318324, + -0.0061801 + ], + [ + 109.3318448, + -0.0061687 + ], + [ + 109.3320664, + -0.0058434 + ], + [ + 109.332124, + -0.0056232 + ], + [ + 109.3321551, + -0.0055041 + ], + [ + 109.3322301, + -0.0053406 + ], + [ + 109.3323037, + -0.0051781 + ] + ] + }, + "id": "way/284402683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402684", + "highway": "residential", + "name": "Sungai Selamat 9" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335973, + -0.0047395 + ], + [ + 109.3338154, + -0.0047817 + ], + [ + 109.3338807, + -0.0047927 + ], + [ + 109.3339366, + -0.0048006 + ], + [ + 109.3344281, + -0.0048324 + ], + [ + 109.3351005, + -0.0049711 + ], + [ + 109.3358054, + -0.0051195 + ] + ] + }, + "id": "way/284402684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402688", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33946, + -0.0115418 + ], + [ + 109.3392607, + -0.0112297 + ], + [ + 109.3390626, + -0.0109864 + ], + [ + 109.339021, + -0.0109465 + ], + [ + 109.3388625, + -0.0107942 + ], + [ + 109.3385899, + -0.0105496 + ], + [ + 109.3383348, + -0.0102948 + ], + [ + 109.3379264, + -0.0099121 + ] + ] + }, + "id": "way/284402688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402689", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3382643, + -0.0095493 + ], + [ + 109.3386161, + -0.0099389 + ], + [ + 109.3387733, + -0.010069 + ], + [ + 109.3388832, + -0.0101481 + ], + [ + 109.3389493, + -0.0101853 + ], + [ + 109.339008, + -0.0102318 + ], + [ + 109.3393283, + -0.0105558 + ], + [ + 109.339444, + -0.0106797 + ], + [ + 109.33948, + -0.0107184 + ], + [ + 109.3396731, + -0.0109751 + ] + ] + }, + "id": "way/284402689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284402690", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386393, + -0.0072306 + ], + [ + 109.3383696, + -0.0073151 + ], + [ + 109.3379882, + -0.0074165 + ], + [ + 109.3378946, + -0.0074297 + ], + [ + 109.3378325, + -0.0074317 + ], + [ + 109.3378184, + -0.0074394 + ], + [ + 109.3378097, + -0.0074493 + ], + [ + 109.3377654, + -0.0075681 + ], + [ + 109.3377621, + -0.0075987 + ], + [ + 109.3378197, + -0.0078327 + ], + [ + 109.3378706, + -0.0081035 + ] + ] + }, + "id": "way/284402690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284405345", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Nipah Kuning Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981087, + -0.0133337 + ], + [ + 109.2980182, + -0.013371 + ] + ] + }, + "id": "way/284405345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284405430", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2777367, + -0.0252499 + ], + [ + 109.2788412, + -0.0278869 + ], + [ + 109.2791446, + -0.0285733 + ], + [ + 109.2797218, + -0.0296355 + ], + [ + 109.2807116, + -0.0312981 + ], + [ + 109.2807362, + -0.0313408 + ], + [ + 109.2811355, + -0.0318782 + ], + [ + 109.281895, + -0.0329711 + ] + ] + }, + "id": "way/284405430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791681", + "highway": "residential", + "name": "Jalan Sealat Sumba II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451432, + -0.0158587 + ], + [ + 109.3454332, + -0.0160041 + ], + [ + 109.3457461, + -0.0161645 + ], + [ + 109.34586, + -0.0162378 + ], + [ + 109.3459971, + -0.0163253 + ], + [ + 109.3461322, + -0.0164001 + ], + [ + 109.3463267, + -0.0165175 + ], + [ + 109.346406, + -0.0165768 + ], + [ + 109.3465682, + -0.0166857 + ], + [ + 109.3466107, + -0.0167138 + ], + [ + 109.3466432, + -0.0167407 + ], + [ + 109.3466848, + -0.0167692 + ], + [ + 109.3467256, + -0.0167954 + ], + [ + 109.3467893, + -0.0168283 + ], + [ + 109.3469352, + -0.0169226 + ], + [ + 109.3470839, + -0.0170188 + ], + [ + 109.3471701, + -0.0171031 + ], + [ + 109.3473695, + -0.0172766 + ], + [ + 109.3473874, + -0.0172922 + ], + [ + 109.3475102, + -0.0173872 + ], + [ + 109.3476278, + -0.0174449 + ], + [ + 109.3476454, + -0.0174592 + ] + ] + }, + "id": "way/284791681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791700", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343015, + -0.0178909 + ], + [ + 109.3427174, + -0.0186667 + ], + [ + 109.3424589, + -0.0193404 + ] + ] + }, + "id": "way/284791700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791701", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346406, + -0.0165768 + ], + [ + 109.3468028, + -0.0157042 + ] + ] + }, + "id": "way/284791701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791702", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465682, + -0.0166857 + ], + [ + 109.346609, + -0.0166164 + ], + [ + 109.3468045, + -0.0162166 + ], + [ + 109.3469332, + -0.0159618 + ], + [ + 109.3470463, + -0.0157118 + ] + ] + }, + "id": "way/284791702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791703", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347104, + -0.0129978 + ], + [ + 109.3469919, + -0.0132538 + ], + [ + 109.3469285, + -0.0134131 + ], + [ + 109.3469051, + -0.0134751 + ], + [ + 109.3468826, + -0.0135452 + ], + [ + 109.3468638, + -0.0136095 + ], + [ + 109.3468295, + -0.0137207 + ], + [ + 109.3467792, + -0.0138649 + ], + [ + 109.346726, + -0.0139934 + ], + [ + 109.346648, + -0.0141833 + ], + [ + 109.3465704, + -0.0143752 + ], + [ + 109.3465414, + -0.0144569 + ], + [ + 109.3465047, + -0.0145503 + ], + [ + 109.3464632, + -0.0146408 + ], + [ + 109.3463839, + -0.0148103 + ], + [ + 109.3462043, + -0.0151792 + ], + [ + 109.3457461, + -0.0161645 + ] + ] + }, + "id": "way/284791703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791715", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425682, + -0.0185027 + ], + [ + 109.3423418, + -0.0184261 + ] + ] + }, + "id": "way/284791715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791722", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424267, + -0.018893 + ], + [ + 109.3422315, + -0.0188177 + ] + ] + }, + "id": "way/284791722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791725", + "bicycle": "yes", + "foot": "yes", + "goods": "yes", + "highway": "residential", + "motor_vehicle": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Jalan Terminal Siantan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426312, + -0.0196651 + ], + [ + 109.3426474, + -0.0196666 + ], + [ + 109.3426634, + -0.019659 + ], + [ + 109.3426762, + -0.0196432 + ], + [ + 109.3427022, + -0.0195903 + ], + [ + 109.3428597, + -0.0192677 + ], + [ + 109.3433188, + -0.0179714 + ] + ] + }, + "id": "way/284791725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791753", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461322, + -0.0164001 + ], + [ + 109.3461949, + -0.0162535 + ], + [ + 109.3462345, + -0.0161677 + ], + [ + 109.3462526, + -0.0161295 + ], + [ + 109.3462755, + -0.0160678 + ], + [ + 109.3462905, + -0.0160118 + ], + [ + 109.3463123, + -0.0159404 + ], + [ + 109.3463431, + -0.0158405 + ], + [ + 109.3463733, + -0.015754 + ], + [ + 109.3463971, + -0.015697 + ], + [ + 109.34643, + -0.0156366 + ], + [ + 109.3464675, + -0.0155672 + ], + [ + 109.3465215, + -0.0154643 + ], + [ + 109.3465483, + -0.0154069 + ], + [ + 109.3466006, + -0.0153007 + ], + [ + 109.3466536, + -0.0151779 + ], + [ + 109.3467153, + -0.0150492 + ], + [ + 109.3467383, + -0.0150098 + ], + [ + 109.34675, + -0.0149902 + ], + [ + 109.3467668, + -0.014956 + ], + [ + 109.3468722, + -0.0146972 + ], + [ + 109.3469347, + -0.0145484 + ], + [ + 109.3469815, + -0.014437 + ], + [ + 109.347062, + -0.0142546 + ], + [ + 109.3471049, + -0.0141446 + ], + [ + 109.3471646, + -0.0139971 + ], + [ + 109.3472075, + -0.0138838 + ] + ] + }, + "id": "way/284791753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791760", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470839, + -0.0170188 + ], + [ + 109.347176, + -0.0168081 + ], + [ + 109.3472759, + -0.0165848 + ], + [ + 109.3474469, + -0.0161999 + ], + [ + 109.3475521, + -0.0159625 + ], + [ + 109.3476324, + -0.0157746 + ], + [ + 109.3478693, + -0.0151902 + ], + [ + 109.3481089, + -0.0146053 + ], + [ + 109.3479766, + -0.0144584 + ], + [ + 109.3478546, + -0.014323 + ], + [ + 109.3477437, + -0.0142154 + ], + [ + 109.3477059, + -0.0141832 + ], + [ + 109.3476761, + -0.0141595 + ], + [ + 109.3475909, + -0.0141057 + ], + [ + 109.3475588, + -0.0140803 + ], + [ + 109.347526, + -0.0140588 + ], + [ + 109.3473369, + -0.0139562 + ], + [ + 109.3472075, + -0.0138838 + ] + ] + }, + "id": "way/284791760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/284791767", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428076, + -0.017838 + ], + [ + 109.3425682, + -0.0185027 + ], + [ + 109.3424267, + -0.018893 + ], + [ + 109.3422836, + -0.0192604 + ], + [ + 109.3421079, + -0.0191684 + ] + ] + }, + "id": "way/284791767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288598387", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34808, + -0.0537758 + ], + [ + 109.3480608, + -0.0537932 + ], + [ + 109.3477146, + -0.0540974 + ], + [ + 109.3476995, + -0.0540903 + ], + [ + 109.3476816, + -0.05408 + ], + [ + 109.3476628, + -0.0540673 + ], + [ + 109.3474975, + -0.0538845 + ], + [ + 109.3471522, + -0.0542707 + ], + [ + 109.3472099, + -0.0543613 + ], + [ + 109.3472148, + -0.0544052 + ], + [ + 109.3472028, + -0.0544468 + ], + [ + 109.3471663, + -0.0545166 + ], + [ + 109.3469732, + -0.0547392 + ], + [ + 109.3468229, + -0.0549255 + ], + [ + 109.3465783, + -0.0552503 + ] + ] + }, + "id": "way/288598387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288731991", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250896, + -0.0195302 + ], + [ + 109.3250939, + -0.0195592 + ], + [ + 109.3251233, + -0.0197196 + ], + [ + 109.3251394, + -0.0197865 + ], + [ + 109.3251579, + -0.019873 + ], + [ + 109.3251948, + -0.0199976 + ], + [ + 109.3252652, + -0.020255 + ], + [ + 109.3253436, + -0.0205063 + ], + [ + 109.3254023, + -0.0207609 + ], + [ + 109.325516, + -0.0211375 + ] + ] + }, + "id": "way/288731991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288742918", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456014, + -0.056745 + ], + [ + 109.3460521, + -0.0561889 + ], + [ + 109.3460682, + -0.0561447 + ], + [ + 109.3460505, + -0.0561093 + ], + [ + 109.3458237, + -0.0559322 + ], + [ + 109.3458856, + -0.0558293 + ], + [ + 109.3459417, + -0.0557461 + ], + [ + 109.3460338, + -0.0556035 + ], + [ + 109.3461687, + -0.0554412 + ], + [ + 109.346355, + -0.0552049 + ], + [ + 109.3464142, + -0.055165 + ], + [ + 109.3464813, + -0.0551623 + ], + [ + 109.3465451, + -0.0552092 + ], + [ + 109.3465783, + -0.0552503 + ] + ] + }, + "id": "way/288742918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/288742919", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453677, + -0.0565568 + ], + [ + 109.3445856, + -0.0558429 + ], + [ + 109.3445796, + -0.0558027 + ], + [ + 109.3445849, + -0.0557591 + ], + [ + 109.344599, + -0.0557128 + ], + [ + 109.3449427, + -0.0552676 + ], + [ + 109.3452823, + -0.0548431 + ], + [ + 109.3456712, + -0.0544166 + ], + [ + 109.3463883, + -0.0536201 + ], + [ + 109.346433, + -0.0536093 + ], + [ + 109.3464759, + -0.0536361 + ], + [ + 109.3465755, + -0.0537111 + ], + [ + 109.3466792, + -0.0537965 + ], + [ + 109.3467303, + -0.0538427 + ], + [ + 109.3470175, + -0.053489 + ], + [ + 109.3474222, + -0.0530125 + ], + [ + 109.3474359, + -0.0529964 + ] + ] + }, + "id": "way/288742919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/289701082", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506279, + -0.0536202 + ], + [ + 109.3506965, + -0.0536614 + ] + ] + }, + "id": "way/289701082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/289701083", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503996, + -0.0539466 + ], + [ + 109.3504771, + -0.0540028 + ] + ] + }, + "id": "way/289701083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/289701084", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507296, + -0.0534747 + ], + [ + 109.3507928, + -0.0535189 + ] + ] + }, + "id": "way/289701084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/289701085", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519869, + -0.0518466 + ], + [ + 109.3516616, + -0.0523022 + ], + [ + 109.3514598, + -0.0525848 + ], + [ + 109.3507928, + -0.0535189 + ], + [ + 109.3506965, + -0.0536614 + ], + [ + 109.3504771, + -0.0540028 + ], + [ + 109.3504438, + -0.0540518 + ], + [ + 109.3499821, + -0.054731 + ], + [ + 109.3498574, + -0.0549303 + ], + [ + 109.3498124, + -0.0550023 + ], + [ + 109.3497553, + -0.0551181 + ] + ] + }, + "id": "way/289701085" + }, + { + "type": "Feature", + "properties": { + "@id": "way/292687195", + "highway": "residential", + "lanes": "1", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239872, + -0.0315801 + ], + [ + 109.3237736, + -0.0312591 + ], + [ + 109.3237408, + -0.0312303 + ], + [ + 109.3237058, + -0.0312128 + ], + [ + 109.3236674, + -0.0312047 + ], + [ + 109.3235965, + -0.0312006 + ], + [ + 109.32352, + -0.0312384 + ], + [ + 109.3230267, + -0.0305208 + ] + ] + }, + "id": "way/292687195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/292687196", + "highway": "residential", + "name": "Eka Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238676, + -0.0340024 + ], + [ + 109.3235489, + -0.0342147 + ], + [ + 109.3234317, + -0.0343041 + ], + [ + 109.323032, + -0.0345857 + ], + [ + 109.3224594, + -0.0350283 + ], + [ + 109.3216601, + -0.0356653 + ], + [ + 109.3210445, + -0.0361723 + ] + ] + }, + "id": "way/292687196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/292687197", + "highway": "residential", + "name": "Rahayu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198986, + -0.0346196 + ], + [ + 109.3210445, + -0.0361723 + ], + [ + 109.3215034, + -0.036831 + ], + [ + 109.3219813, + -0.0375171 + ], + [ + 109.3220291, + -0.0376097 + ] + ] + }, + "id": "way/292687197" + }, + { + "type": "Feature", + "properties": { + "@id": "way/293948398", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354776, + -0.0738728 + ], + [ + 109.3545817, + -0.0741453 + ], + [ + 109.3543123, + -0.0744719 + ] + ] + }, + "id": "way/293948398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/293948399", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560572, + -0.0746362 + ], + [ + 109.3558591, + -0.0749859 + ], + [ + 109.3557639, + -0.0751257 + ], + [ + 109.355694, + -0.0752178 + ], + [ + 109.3556457, + -0.0752634 + ], + [ + 109.3556222, + -0.0752628 + ], + [ + 109.3556064, + -0.0752516 + ] + ] + }, + "id": "way/293948399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/293948400", + "highway": "residential", + "name": "Bali Mas 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545817, + -0.0741453 + ], + [ + 109.3558591, + -0.0749859 + ] + ] + }, + "id": "way/293948400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/295276991", + "highway": "residential", + "name": "Gang Swakarya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182706, + -0.0539357 + ], + [ + 109.3177501, + -0.0535858 + ], + [ + 109.3173067, + -0.0532634 + ], + [ + 109.316301, + -0.0525921 + ], + [ + 109.3158455, + -0.0523412 + ], + [ + 109.3154451, + -0.0520879 + ], + [ + 109.3152486, + -0.0519452 + ] + ] + }, + "id": "way/295276991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/295431982", + "highway": "residential", + "name": "Gang Sarikaton Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133799, + -0.0477615 + ], + [ + 109.3136132, + -0.0475305 + ], + [ + 109.3138482, + -0.0472986 + ], + [ + 109.3138682, + -0.047278 + ], + [ + 109.3140813, + -0.0470441 + ], + [ + 109.3141344, + -0.0469815 + ], + [ + 109.3142804, + -0.0468383 + ], + [ + 109.3143236, + -0.0467942 + ], + [ + 109.3144167, + -0.0467187 + ], + [ + 109.3146433, + -0.046516 + ], + [ + 109.3147058, + -0.0464512 + ], + [ + 109.3147246, + -0.046427 + ], + [ + 109.314735, + -0.0464103 + ], + [ + 109.3147457, + -0.0463854 + ], + [ + 109.3147583, + -0.0463583 + ], + [ + 109.3148175, + -0.0462906 + ], + [ + 109.3148643, + -0.046244 + ], + [ + 109.3150374, + -0.0460814 + ] + ] + }, + "id": "way/295431982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/295431983", + "highway": "residential", + "name": "Gang Pak Abu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161527, + -0.0472864 + ], + [ + 109.3156424, + -0.046774 + ], + [ + 109.3150374, + -0.0460814 + ] + ] + }, + "id": "way/295431983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/295431984", + "highway": "residential", + "name": "Gang Sadar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145501, + -0.0489276 + ], + [ + 109.3152139, + -0.0482013 + ], + [ + 109.3153941, + -0.0480196 + ], + [ + 109.315518, + -0.0478784 + ], + [ + 109.3157236, + -0.0476857 + ], + [ + 109.3157726, + -0.0476402 + ], + [ + 109.3161527, + -0.0472864 + ] + ] + }, + "id": "way/295431984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/295431985", + "highway": "residential", + "name": "Gang Karya A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161527, + -0.0472864 + ], + [ + 109.3165723, + -0.0468949 + ], + [ + 109.3168077, + -0.0466824 + ], + [ + 109.3169423, + -0.0465731 + ], + [ + 109.3169897, + -0.0465363 + ], + [ + 109.3170688, + -0.0464699 + ], + [ + 109.3173049, + -0.0462419 + ], + [ + 109.317591, + -0.0459737 + ] + ] + }, + "id": "way/295431985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301425335", + "highway": "living_street", + "name": "Gang Irama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447376, + -0.0302706 + ], + [ + 109.3438165, + -0.0307418 + ] + ] + }, + "id": "way/301425335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301425336", + "highway": "residential", + "name": "Jalan Haji Abas 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343022, + -0.0321142 + ], + [ + 109.3435411, + -0.0332146 + ] + ] + }, + "id": "way/301425336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301425337", + "highway": "service", + "name": "Jalan Terminal Hijas", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423685, + -0.0367879 + ], + [ + 109.3429108, + -0.0365174 + ] + ] + }, + "id": "way/301425337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301425338", + "highway": "living_street", + "name": "Gang Baiduri 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444924, + -0.0347141 + ], + [ + 109.3449045, + -0.0345813 + ], + [ + 109.3453266, + -0.0344581 + ], + [ + 109.3462037, + -0.0340171 + ] + ] + }, + "id": "way/301425338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301425995", + "highway": "living_street", + "name": "Gang Tiga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470466, + -0.0340879 + ], + [ + 109.3470743, + -0.0340732 + ], + [ + 109.3472028, + -0.034005 + ], + [ + 109.3472128, + -0.0340037 + ], + [ + 109.3472343, + -0.034005 + ], + [ + 109.3472437, + -0.0340071 + ], + [ + 109.3472537, + -0.0340144 + ], + [ + 109.3473154, + -0.034166 + ], + [ + 109.3473201, + -0.034174 + ], + [ + 109.3473288, + -0.0341807 + ], + [ + 109.3473403, + -0.0341821 + ], + [ + 109.3473583, + -0.0341767 + ], + [ + 109.3475394, + -0.0341036 + ], + [ + 109.3476655, + -0.0340379 + ], + [ + 109.3479283, + -0.033891 + ], + [ + 109.3479711, + -0.0338628 + ], + [ + 109.3482127, + -0.0337495 + ], + [ + 109.3482254, + -0.0337509 + ], + [ + 109.3482388, + -0.0337583 + ], + [ + 109.3484562, + -0.0340707 + ] + ] + }, + "id": "way/301425995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301425996", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472948, + -0.0346393 + ], + [ + 109.3477685, + -0.0344808 + ], + [ + 109.3478563, + -0.0346734 + ] + ] + }, + "id": "way/301425996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301425997", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477685, + -0.0344808 + ], + [ + 109.3479259, + -0.0344042 + ], + [ + 109.3480577, + -0.0343162 + ], + [ + 109.3481107, + -0.0342666 + ], + [ + 109.3481462, + -0.0342297 + ], + [ + 109.3481717, + -0.0342122 + ], + [ + 109.3482381, + -0.0341774 + ], + [ + 109.3484268, + -0.0340851 + ], + [ + 109.3484562, + -0.0340707 + ] + ] + }, + "id": "way/301425997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301425998", + "highway": "living_street", + "name": "Gang Sutra", + "name:id": "Gang Sutra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467564, + -0.0362514 + ], + [ + 109.3470171, + -0.0361578 + ], + [ + 109.3474195, + -0.0360054 + ] + ] + }, + "id": "way/301425998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301425999", + "highway": "living_street", + "name": "Gang Suez" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346901, + -0.0373431 + ], + [ + 109.3464358, + -0.0374843 + ], + [ + 109.3460773, + -0.0375886 + ], + [ + 109.3457629, + -0.037678 + ], + [ + 109.3456051, + -0.0377232 + ] + ] + }, + "id": "way/301425999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301429314", + "highway": "residential", + "name": "Palapa 3C" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346864, + -0.0481986 + ], + [ + 109.3472904, + -0.0486132 + ], + [ + 109.3476456, + -0.0489275 + ] + ] + }, + "id": "way/301429314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301788936", + "highway": "living_street", + "name": "Gang Gajah Mada 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394307, + -0.0301717 + ], + [ + 109.3391763, + -0.0303358 + ], + [ + 109.338605, + -0.030779 + ], + [ + 109.3385949, + -0.0308005 + ], + [ + 109.3385949, + -0.0308206 + ], + [ + 109.3390474, + -0.0313808 + ] + ] + }, + "id": "way/301788936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301788937", + "highway": "residential", + "name": "Gang Gajah Mada 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396737, + -0.0304909 + ], + [ + 109.3407042, + -0.0299786 + ] + ] + }, + "id": "way/301788937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301788938", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3357953, + -0.0308941 + ], + [ + 109.3361108, + -0.0312353 + ], + [ + 109.3364542, + -0.0315742 + ] + ] + }, + "id": "way/301788938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301788939", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364542, + -0.0315742 + ], + [ + 109.336512, + -0.0316422 + ], + [ + 109.3365846, + -0.0317278 + ] + ] + }, + "id": "way/301788939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301790250", + "highway": "service", + "name": "Perdana Square", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448871, + -0.053629 + ], + [ + 109.3448413, + -0.0535874 + ] + ] + }, + "id": "way/301790250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301790251", + "highway": "residential", + "name": "Vigor Sport Center" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425752, + -0.0505237 + ], + [ + 109.3424452, + -0.0506228 + ], + [ + 109.342405, + -0.0506534 + ], + [ + 109.3423151, + -0.0507219 + ], + [ + 109.342289, + -0.0507568 + ], + [ + 109.3422756, + -0.0507856 + ], + [ + 109.3422729, + -0.0508305 + ], + [ + 109.3422789, + -0.0508761 + ], + [ + 109.3422937, + -0.050913 + ] + ] + }, + "id": "way/301790251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301790253", + "access": "yes", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434583, + -0.0524579 + ], + [ + 109.3437251, + -0.0521219 + ] + ] + }, + "id": "way/301790253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301790995", + "highway": "residential", + "name": "Jalan Media" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466327, + -0.0518394 + ], + [ + 109.3466944, + -0.0517656 + ], + [ + 109.347342, + -0.0509905 + ], + [ + 109.3476593, + -0.0505585 + ], + [ + 109.3478197, + -0.0503102 + ], + [ + 109.3479066, + -0.0501781 + ], + [ + 109.3481058, + -0.0498754 + ], + [ + 109.348306, + -0.0495712 + ], + [ + 109.3483396, + -0.0495189 + ], + [ + 109.348988, + -0.0485103 + ] + ] + }, + "id": "way/301790995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301794049", + "highway": "residential", + "name": "Gang Pancawarna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287189, + -0.0456918 + ], + [ + 109.3300589, + -0.0453243 + ], + [ + 109.3309292, + -0.0450637 + ], + [ + 109.3318363, + -0.0448179 + ] + ] + }, + "id": "way/301794049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301794055", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614355, + -0.0695822 + ], + [ + 109.3613583, + -0.0694856 + ], + [ + 109.3611641, + -0.0692614 + ], + [ + 109.360696, + -0.0687739 + ], + [ + 109.3606846, + -0.0687609 + ], + [ + 109.360638, + -0.0686974 + ], + [ + 109.3606207, + -0.0686753 + ], + [ + 109.3603856, + -0.0683905 + ], + [ + 109.3601747, + -0.0681351 + ], + [ + 109.359838, + -0.0677428 + ], + [ + 109.3595619, + -0.067421 + ], + [ + 109.3594564, + -0.0672993 + ], + [ + 109.3593263, + -0.0671493 + ], + [ + 109.3588591, + -0.0666103 + ], + [ + 109.3587299, + -0.0664584 + ], + [ + 109.3585063, + -0.0661956 + ], + [ + 109.3578495, + -0.0654635 + ], + [ + 109.3577633, + -0.0653643 + ], + [ + 109.3577463, + -0.0653453 + ], + [ + 109.357599, + -0.0651696 + ], + [ + 109.357451, + -0.0649929 + ], + [ + 109.3573135, + -0.0648093 + ], + [ + 109.3571214, + -0.064611 + ], + [ + 109.3569672, + -0.0644438 + ], + [ + 109.3567402, + -0.0641795 + ], + [ + 109.3565616, + -0.0639614 + ], + [ + 109.3563893, + -0.0637714 + ], + [ + 109.3563637, + -0.0637431 + ], + [ + 109.3562777, + -0.0636491 + ], + [ + 109.3562484, + -0.063611 + ] + ] + }, + "id": "way/301794055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894471", + "colour": "#606060", + "highway": "living_street", + "name": "Anggrek 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347254, + -0.0541191 + ], + [ + 109.3346715, + -0.0539805 + ], + [ + 109.3345548, + -0.0536804 + ], + [ + 109.3343993, + -0.0532499 + ], + [ + 109.3340479, + -0.0521971 + ], + [ + 109.3338702, + -0.0516707 + ], + [ + 109.3337441, + -0.0512523 + ], + [ + 109.3335376, + -0.0506167 + ] + ] + }, + "id": "way/301894471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894472", + "colour": "#606060", + "highway": "residential", + "name": "Pelangi Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355823, + -0.0531297 + ], + [ + 109.3350798, + -0.0516009 + ], + [ + 109.3347446, + -0.0504852 + ], + [ + 109.3346802, + -0.0503109 + ] + ] + }, + "id": "way/301894472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894473", + "colour": "#606060", + "highway": "residential", + "name": "Permata Purnama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332919, + -0.0549525 + ], + [ + 109.3328791, + -0.0548546 + ], + [ + 109.3321241, + -0.0530011 + ], + [ + 109.331754, + -0.0520946 + ], + [ + 109.3314643, + -0.0514267 + ] + ] + }, + "id": "way/301894473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894474", + "colour": "#606060", + "highway": "residential", + "name": "Purnama 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335502, + -0.0499454 + ], + [ + 109.3357317, + -0.0506006 + ], + [ + 109.3359684, + -0.0514542 + ], + [ + 109.3361145, + -0.051894 + ], + [ + 109.3363827, + -0.0528449 + ], + [ + 109.3364836, + -0.0532018 + ] + ] + }, + "id": "way/301894474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894475", + "colour": "#606060", + "highway": "residential", + "name": "Purnama 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354264, + -0.0509735 + ], + [ + 109.335404, + -0.0509196 + ], + [ + 109.3353823, + -0.0508676 + ], + [ + 109.3351791, + -0.0502358 + ] + ] + }, + "id": "way/301894475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894476", + "colour": "#606060", + "highway": "residential", + "name": "Purnama 8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331767, + -0.0548296 + ], + [ + 109.3331388, + -0.0547292 + ], + [ + 109.3324245, + -0.0528402 + ], + [ + 109.3321, + -0.0518827 + ], + [ + 109.3318183, + -0.0511933 + ] + ] + }, + "id": "way/301894476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894477", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310519, + -0.0517855 + ], + [ + 109.3315827, + -0.0526336 + ], + [ + 109.3319283, + -0.0532787 + ], + [ + 109.3319336, + -0.0532968 + ], + [ + 109.3319296, + -0.0533109 + ], + [ + 109.3319209, + -0.053319 + ], + [ + 109.3316287, + -0.0534635 + ] + ] + }, + "id": "way/301894477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894478", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307682, + -0.0519799 + ], + [ + 109.3307892, + -0.0520101 + ], + [ + 109.3312718, + -0.0527663 + ], + [ + 109.3316287, + -0.0534635 + ], + [ + 109.3318686, + -0.0539136 + ], + [ + 109.3319907, + -0.0541778 + ], + [ + 109.3325008, + -0.0551233 + ] + ] + }, + "id": "way/301894478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894479", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Anggrek 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352093, + -0.0530306 + ], + [ + 109.3348961, + -0.052163 + ], + [ + 109.3346017, + -0.0513385 + ], + [ + 109.3343235, + -0.050394 + ] + ] + }, + "id": "way/301894479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894480", + "colour": "#606060", + "highway": "residential", + "name": "Gang Karya Baru 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351589, + -0.0538706 + ], + [ + 109.3352837, + -0.0541491 + ], + [ + 109.3361011, + -0.0559991 + ], + [ + 109.3365651, + -0.0568763 + ], + [ + 109.3366658, + -0.0570514 + ], + [ + 109.3366738, + -0.0570654 + ] + ] + }, + "id": "way/301894480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894481", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Anggrek 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334482, + -0.0523988 + ], + [ + 109.3329288, + -0.0507937 + ] + ] + }, + "id": "way/301894481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894482", + "colour": "#606060", + "highway": "living_street", + "name": "Purnama Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340188, + -0.0530436 + ], + [ + 109.3337644, + -0.0523362 + ], + [ + 109.3335939, + -0.0517217 + ], + [ + 109.333374, + -0.0510914 + ], + [ + 109.3332292, + -0.0506864 + ] + ] + }, + "id": "way/301894482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301894483", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358309, + -0.0497137 + ], + [ + 109.3360347, + -0.0502914 + ], + [ + 109.3361997, + -0.050807 + ], + [ + 109.336427, + -0.0515138 + ], + [ + 109.33662, + -0.0521109 + ] + ] + }, + "id": "way/301894483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895458", + "highway": "residential", + "name": "Purnama 10" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309256, + -0.0546658 + ], + [ + 109.3299086, + -0.0529569 + ], + [ + 109.3298978, + -0.0529408 + ], + [ + 109.3298871, + -0.0529334 + ] + ] + }, + "id": "way/301895458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895459", + "highway": "residential", + "name": "Purnama 9" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307654, + -0.0535333 + ], + [ + 109.3301587, + -0.0526003 + ], + [ + 109.3301366, + -0.0525592 + ] + ] + }, + "id": "way/301895459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895460", + "highway": "residential", + "name": "Purnama Agung 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294016, + -0.0529776 + ], + [ + 109.3294297, + -0.0530198 + ] + ] + }, + "id": "way/301895460" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895461", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307448, + -0.0560082 + ], + [ + 109.3306804, + -0.0558994 + ], + [ + 109.3299026, + -0.054584 + ], + [ + 109.3296028, + -0.0540955 + ], + [ + 109.3292963, + -0.0535846 + ], + [ + 109.3291982, + -0.0534369 + ], + [ + 109.3291658, + -0.0533881 + ] + ] + }, + "id": "way/301895461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895462", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung 5 (Karya Baru)" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292979, + -0.0568924 + ], + [ + 109.3295733, + -0.0573195 + ], + [ + 109.3298648, + -0.0578307 + ], + [ + 109.3299282, + -0.0578482 + ], + [ + 109.3299931, + -0.0578707 + ], + [ + 109.3300219, + -0.0578948 + ], + [ + 109.3300407, + -0.0579243 + ], + [ + 109.3300614, + -0.0579645 + ], + [ + 109.3304209, + -0.0586612 + ], + [ + 109.3304282, + -0.0586834 + ], + [ + 109.3304262, + -0.0587015 + ], + [ + 109.3304155, + -0.0587149 + ], + [ + 109.3303335, + -0.0587708 + ], + [ + 109.3305516, + -0.0592191 + ], + [ + 109.3306763, + -0.0594659 + ], + [ + 109.3307667, + -0.0596718 + ] + ] + }, + "id": "way/301895462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895463", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung 5 (Karya Baru)" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303335, + -0.0587708 + ], + [ + 109.330213, + -0.0588108 + ], + [ + 109.3301949, + -0.0588074 + ], + [ + 109.3301815, + -0.0587907 + ], + [ + 109.3298154, + -0.0580349 + ], + [ + 109.3298087, + -0.0580081 + ], + [ + 109.32981, + -0.0579813 + ], + [ + 109.3298167, + -0.0579552 + ], + [ + 109.3298648, + -0.0578307 + ] + ] + }, + "id": "way/301895463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895464", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung V" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278359, + -0.0545582 + ], + [ + 109.3281437, + -0.0550303 + ], + [ + 109.3285273, + -0.0556419 + ], + [ + 109.3292219, + -0.0567691 + ], + [ + 109.3292979, + -0.0568924 + ] + ] + }, + "id": "way/301895464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895465", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330348, + -0.0561966 + ], + [ + 109.3302739, + -0.0560713 + ], + [ + 109.3295572, + -0.0548599 + ], + [ + 109.3292244, + -0.0543075 + ], + [ + 109.3291639, + -0.0542071 + ], + [ + 109.3288478, + -0.0536824 + ] + ] + }, + "id": "way/301895465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895466", + "highway": "residential", + "name": "Purnama Prima" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287694, + -0.0543898 + ], + [ + 109.3285192, + -0.0539661 + ] + ] + }, + "id": "way/301895466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895467", + "highway": "residential", + "name": "Gang Karya Tani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305039, + -0.060429 + ], + [ + 109.3320199, + -0.0629379 + ] + ] + }, + "id": "way/301895467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/301895468", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3299026, + -0.054584 + ], + [ + 109.3302389, + -0.0543648 + ] + ] + }, + "id": "way/301895468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302012597", + "highway": "residential", + "name": "Karimun" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326336, + -0.0300691 + ], + [ + 109.3260862, + -0.030266 + ] + ] + }, + "id": "way/302012597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302012598", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439359, + -0.0392806 + ], + [ + 109.3445374, + -0.0388749 + ] + ] + }, + "id": "way/302012598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302013290", + "highway": "residential", + "name": "Abdurrahman Saleh 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568492, + -0.0624255 + ], + [ + 109.3566455, + -0.0622406 + ], + [ + 109.3564164, + -0.0620464 + ], + [ + 109.3562052, + -0.0618605 + ], + [ + 109.3558439, + -0.0615524 + ], + [ + 109.3552762, + -0.0610721 + ], + [ + 109.3551198, + -0.0609241 + ], + [ + 109.3548547, + -0.0606733 + ], + [ + 109.3542612, + -0.0601117 + ] + ] + }, + "id": "way/302013290" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302251725", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gading Premier" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545617, + -0.0808609 + ], + [ + 109.3544462, + -0.0807683 + ] + ] + }, + "id": "way/302251725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302251726", + "colour": "#606060", + "highway": "residential", + "name": "Griya Pesona" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480035, + -0.0904481 + ], + [ + 109.3479664, + -0.0904247 + ], + [ + 109.3478211, + -0.0903542 + ], + [ + 109.346488, + -0.0895844 + ], + [ + 109.3453528, + -0.0889619 + ], + [ + 109.3451709, + -0.0888622 + ] + ] + }, + "id": "way/302251726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302251728", + "highway": "residential", + "name": "Mitra Indah Utama 5AB" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537172, + -0.081758 + ], + [ + 109.3523192, + -0.0807559 + ], + [ + 109.3515922, + -0.0802651 + ], + [ + 109.3508815, + -0.0798068 + ] + ] + }, + "id": "way/302251728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302251729", + "highway": "residential", + "name": "Mitra Indah Utama 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539513, + -0.0814231 + ], + [ + 109.3525318, + -0.0804446 + ], + [ + 109.3512095, + -0.0795081 + ] + ] + }, + "id": "way/302251729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302251730", + "highway": "residential", + "name": "Puri Akcaya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3541904, + -0.0810804 + ], + [ + 109.3534255, + -0.0805715 + ], + [ + 109.3527445, + -0.0801135 + ], + [ + 109.3520321, + -0.0796099 + ], + [ + 109.3514583, + -0.0792237 + ] + ] + }, + "id": "way/302251730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302251736", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523192, + -0.0807559 + ], + [ + 109.3525318, + -0.0804446 + ], + [ + 109.3527445, + -0.0801135 + ] + ] + }, + "id": "way/302251736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302277301", + "highway": "trunk", + "name": "Gusti Situt Mahmud", + "name:id": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241411, + -0.0005391 + ], + [ + 109.3243707, + -0.0007053 + ], + [ + 109.3246437, + -0.00091 + ], + [ + 109.3252696, + -0.0013491 + ], + [ + 109.3254751, + -0.001496 + ], + [ + 109.3257913, + -0.0017318 + ], + [ + 109.326145, + -0.0020084 + ], + [ + 109.3262221, + -0.0020687 + ] + ] + }, + "id": "way/302277301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302277302", + "bicycle": "yes", + "highway": "trunk", + "name": "Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106966, + 0.0052116 + ], + [ + 109.310882, + 0.0051818 + ], + [ + 109.3111673, + 0.005107 + ], + [ + 109.3113428, + 0.0050551 + ], + [ + 109.3114275, + 0.0050202 + ], + [ + 109.3115172, + 0.004979 + ], + [ + 109.3117611, + 0.0047636 + ], + [ + 109.311935, + 0.004586 + ], + [ + 109.3122426, + 0.0042908 + ], + [ + 109.3122798, + 0.0042533 + ], + [ + 109.3123654, + 0.0041671 + ], + [ + 109.3125554, + 0.0040036 + ], + [ + 109.3126547, + 0.0039219 + ], + [ + 109.3127952, + 0.003846 + ], + [ + 109.3128183, + 0.0038308 + ], + [ + 109.3128739, + 0.003793 + ], + [ + 109.3133384, + 0.0035618 + ], + [ + 109.3137011, + 0.0033813 + ], + [ + 109.3139642, + 0.0032416 + ], + [ + 109.3140088, + 0.003223 + ], + [ + 109.314337, + 0.0030538 + ], + [ + 109.314439, + 0.0029984 + ], + [ + 109.314484, + 0.002974 + ], + [ + 109.3146581, + 0.0028805 + ], + [ + 109.3146716, + 0.0028716 + ], + [ + 109.3147514, + 0.0028276 + ], + [ + 109.3149607, + 0.0027123 + ], + [ + 109.3152672, + 0.0025359 + ], + [ + 109.3153838, + 0.0024861 + ], + [ + 109.3154977, + 0.0024366 + ], + [ + 109.3176008, + 0.0016228 + ], + [ + 109.3176997, + 0.0015845 + ], + [ + 109.3180831, + 0.0014333 + ], + [ + 109.3183134, + 0.0013544 + ], + [ + 109.3184219, + 0.0013172 + ], + [ + 109.3186761, + 0.0012513 + ], + [ + 109.318888, + 0.001209 + ], + [ + 109.3191079, + 0.001197 + ], + [ + 109.3192429, + 0.001191 + ], + [ + 109.3194352, + 0.0011907 + ], + [ + 109.3195353, + 0.0011905 + ], + [ + 109.3197746, + 0.001196 + ], + [ + 109.3198881, + 0.0011986 + ], + [ + 109.3203635, + 0.0012174 + ], + [ + 109.32066, + 0.0012291 + ], + [ + 109.3208077, + 0.001221 + ], + [ + 109.3211794, + 0.0012409 + ], + [ + 109.3214764, + 0.0012459 + ], + [ + 109.3218007, + 0.0012719 + ], + [ + 109.3218841, + 0.0012786 + ], + [ + 109.322129, + 0.0012983 + ], + [ + 109.3221992, + 0.0013009 + ], + [ + 109.3223059, + 0.0012846 + ], + [ + 109.3223481, + 0.0012593 + ], + [ + 109.3224186, + 0.0011963 + ] + ] + }, + "id": "way/302277302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/302751671", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365678, + -0.027329 + ], + [ + 109.3365933, + -0.0273344 + ], + [ + 109.336651, + -0.0273277 + ], + [ + 109.3366738, + -0.027317 + ], + [ + 109.3366885, + -0.0272955 + ], + [ + 109.3366939, + -0.0272647 + ], + [ + 109.3367026, + -0.0272375 + ], + [ + 109.3367093, + -0.0272254 + ], + [ + 109.3367388, + -0.0272077 + ], + [ + 109.3368588, + -0.0271805 + ], + [ + 109.3369564, + -0.0271483 + ], + [ + 109.3370489, + -0.0271178 + ], + [ + 109.3371619, + -0.0270756 + ], + [ + 109.3374123, + -0.0270063 + ] + ] + }, + "id": "way/302751671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169652", + "highway": "residential", + "name": "Teluk Air" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323976, + -0.0033607 + ], + [ + 109.3323268, + -0.0035725 + ], + [ + 109.3321835, + -0.0039889 + ], + [ + 109.3321486, + -0.0040903 + ], + [ + 109.3320775, + -0.0043199 + ], + [ + 109.3319728, + -0.0046784 + ], + [ + 109.3318544, + -0.005041 + ] + ] + }, + "id": "way/304169652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169829", + "highway": "residential", + "name": "Gang Pelita 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312781, + -0.0066582 + ], + [ + 109.3317189, + -0.0061291 + ] + ] + }, + "id": "way/304169829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169830", + "highway": "residential", + "name": "Gang Pelita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3314716, + -0.0068617 + ], + [ + 109.3318971, + -0.0063967 + ], + [ + 109.3319075, + -0.0063927 + ], + [ + 109.3319165, + -0.0063924 + ], + [ + 109.3319324, + -0.0063955 + ], + [ + 109.3319392, + -0.0063934 + ], + [ + 109.3319491, + -0.0063887 + ], + [ + 109.3319762, + -0.0063622 + ], + [ + 109.3319846, + -0.0063582 + ], + [ + 109.331994, + -0.0063588 + ], + [ + 109.3320346, + -0.006385 + ], + [ + 109.3320439, + -0.0063857 + ], + [ + 109.3320573, + -0.0063816 + ], + [ + 109.3322128, + -0.0061974 + ], + [ + 109.3322628, + -0.0061306 + ] + ] + }, + "id": "way/304169830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169831", + "highway": "residential", + "name": "Sungai Selamat 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333262, + -0.0075754 + ], + [ + 109.3333639, + -0.0075907 + ] + ] + }, + "id": "way/304169831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169832", + "highway": "residential", + "name": "Sungai Selamat 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333621, + -0.0073087 + ], + [ + 109.3334055, + -0.0073184 + ] + ] + }, + "id": "way/304169832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169833", + "highway": "residential", + "name": "Sungai Selamat 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334337, + -0.0070019 + ], + [ + 109.3338955, + -0.0070798 + ], + [ + 109.3340988, + -0.007136 + ], + [ + 109.3344417, + -0.0072571 + ] + ] + }, + "id": "way/304169833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169834", + "highway": "residential", + "name": "Teluk Borneo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330901, + -0.0071758 + ], + [ + 109.3328278, + -0.0075166 + ], + [ + 109.3327403, + -0.0076145 + ], + [ + 109.3327266, + -0.0076225 + ], + [ + 109.3327137, + -0.0076211 + ], + [ + 109.3326716, + -0.0076103 + ], + [ + 109.3326464, + -0.0076148 + ], + [ + 109.3326295, + -0.0076287 + ], + [ + 109.3324226, + -0.0078485 + ] + ] + }, + "id": "way/304169834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169835", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325042, + -0.0068147 + ], + [ + 109.3323291, + -0.006687 + ], + [ + 109.3322768, + -0.0066455 + ] + ] + }, + "id": "way/304169835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319675, + -0.0073766 + ], + [ + 109.3321384, + -0.0072045 + ], + [ + 109.3323541, + -0.0069831 + ], + [ + 109.3325042, + -0.0068147 + ] + ] + }, + "id": "way/304169836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169837", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326398, + -0.0065445 + ], + [ + 109.3326659, + -0.0065604 + ], + [ + 109.332686, + -0.0065714 + ], + [ + 109.332717, + -0.0065806 + ], + [ + 109.3329079, + -0.0066331 + ], + [ + 109.333089, + -0.0066787 + ], + [ + 109.3332649, + -0.0067284 + ] + ] + }, + "id": "way/304169837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304169838", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321384, + -0.0072045 + ], + [ + 109.3322488, + -0.0072668 + ], + [ + 109.3322602, + -0.0072708 + ], + [ + 109.3322709, + -0.0072695 + ], + [ + 109.3322776, + -0.0072674 + ], + [ + 109.3322863, + -0.0072587 + ], + [ + 109.3325928, + -0.0069167 + ], + [ + 109.3325948, + -0.0069084 + ], + [ + 109.3325931, + -0.0068983 + ], + [ + 109.3325868, + -0.0068893 + ], + [ + 109.3325042, + -0.0068147 + ] + ] + }, + "id": "way/304169838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304170056", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334028, + -0.0078039 + ], + [ + 109.3338739, + -0.0079281 + ], + [ + 109.3340276, + -0.0079881 + ] + ] + }, + "id": "way/304170056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304176697", + "highway": "residential", + "name": "Flamboyan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3261997, + 0.0056876 + ], + [ + 109.3262172, + 0.0056233 + ], + [ + 109.3262754, + 0.0051027 + ], + [ + 109.326341, + 0.0048566 + ], + [ + 109.3264496, + 0.0044954 + ], + [ + 109.3265149, + 0.0043613 + ], + [ + 109.3265661, + 0.0043022 + ], + [ + 109.3266829, + 0.0041768 + ], + [ + 109.3268164, + 0.0040502 + ], + [ + 109.327172, + 0.0038275 + ], + [ + 109.3272793, + 0.0037122 + ], + [ + 109.3274081, + 0.0035727 + ], + [ + 109.3276926, + 0.0031849 + ], + [ + 109.3278775, + 0.0029129 + ], + [ + 109.3279974, + 0.0027393 + ], + [ + 109.3281229, + 0.0025012 + ], + [ + 109.3282803, + 0.0022062 + ], + [ + 109.3287227, + 0.0016989 + ], + [ + 109.328823, + 0.0015997 + ], + [ + 109.3289439, + 0.0014757 + ], + [ + 109.3291985, + 0.0012488 + ], + [ + 109.3293176, + 0.0011427 + ], + [ + 109.330204, + 0.0003702 + ], + [ + 109.3307901, + -0.0001501 + ], + [ + 109.3315478, + -0.000746 + ], + [ + 109.331672, + -0.0008442 + ], + [ + 109.3317914, + -0.0009373 + ], + [ + 109.3319503, + -0.0010626 + ], + [ + 109.3321903, + -0.0012514 + ], + [ + 109.3328302, + -0.0017546 + ], + [ + 109.3330888, + -0.0019579 + ], + [ + 109.3333996, + -0.0022242 + ], + [ + 109.3335307, + -0.0023366 + ], + [ + 109.3335943, + -0.002391 + ], + [ + 109.3339779, + -0.0027197 + ], + [ + 109.3341356, + -0.0027967 + ] + ] + }, + "id": "way/304176697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304176698", + "highway": "unclassified", + "name": "Kebangkitan Nasional" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176997, + 0.0015845 + ], + [ + 109.3182872, + 0.0021757 + ], + [ + 109.3183395, + 0.002241 + ], + [ + 109.3183878, + 0.0023282 + ], + [ + 109.3185122, + 0.0025817 + ], + [ + 109.3191517, + 0.0038891 + ], + [ + 109.3191823, + 0.003946 + ], + [ + 109.3192138, + 0.0039862 + ], + [ + 109.3193024, + 0.0040394 + ], + [ + 109.3194108, + 0.0040947 + ], + [ + 109.3194717, + 0.0041191 + ], + [ + 109.3195372, + 0.0041454 + ], + [ + 109.3202198, + 0.0044538 + ], + [ + 109.3204062, + 0.0045651 + ], + [ + 109.3205738, + 0.0046831 + ], + [ + 109.3206764, + 0.0048227 + ], + [ + 109.3206869, + 0.0048364 + ], + [ + 109.3212802, + 0.0056406 + ], + [ + 109.3213012, + 0.0056691 + ], + [ + 109.3214643, + 0.0058901 + ], + [ + 109.321483, + 0.005915 + ], + [ + 109.3216482, + 0.0061344 + ], + [ + 109.3217026, + 0.0062066 + ], + [ + 109.3221188, + 0.0067592 + ], + [ + 109.3223919, + 0.0071152 + ], + [ + 109.3224689, + 0.0072156 + ], + [ + 109.322806, + 0.007655 + ], + [ + 109.32322, + 0.0081963 + ], + [ + 109.3232994, + 0.0082958 + ], + [ + 109.3233121, + 0.0083121 + ], + [ + 109.3237263, + 0.0088479 + ], + [ + 109.3237573, + 0.0088853 + ], + [ + 109.3240127, + 0.0092504 + ], + [ + 109.324329, + 0.0096963 + ], + [ + 109.3243597, + 0.0097498 + ], + [ + 109.3243658, + 0.0097706 + ], + [ + 109.3243916, + 0.0103466 + ], + [ + 109.3243812, + 0.0106701 + ], + [ + 109.3243721, + 0.0109519 + ], + [ + 109.3243664, + 0.0109911 + ], + [ + 109.3243557, + 0.0111066 + ], + [ + 109.3243295, + 0.0113362 + ], + [ + 109.3243018, + 0.0115793 + ], + [ + 109.3242803, + 0.0117684 + ], + [ + 109.3242562, + 0.0122222 + ], + [ + 109.3242463, + 0.0124831 + ], + [ + 109.3242444, + 0.0127365 + ], + [ + 109.3242444, + 0.0128559 + ], + [ + 109.3242685, + 0.0130677 + ], + [ + 109.3243074, + 0.0133252 + ], + [ + 109.3243139, + 0.0133562 + ], + [ + 109.3243509, + 0.0135044 + ], + [ + 109.3243963, + 0.0137097 + ], + [ + 109.3244603, + 0.0139515 + ], + [ + 109.3244791, + 0.0140521 + ], + [ + 109.3244885, + 0.0141634 + ], + [ + 109.3244893, + 0.0145484 + ], + [ + 109.3244856, + 0.0145737 + ], + [ + 109.3244914, + 0.0150579 + ], + [ + 109.3244928, + 0.015172 + ], + [ + 109.3244952, + 0.0153691 + ], + [ + 109.3244802, + 0.0161779 + ], + [ + 109.3244722, + 0.0166111 + ], + [ + 109.3244528, + 0.0174144 + ], + [ + 109.3244456, + 0.0177708 + ], + [ + 109.3243898, + 0.0191944 + ], + [ + 109.3243733, + 0.0196258 + ], + [ + 109.3243613, + 0.0199396 + ], + [ + 109.3243554, + 0.0200938 + ], + [ + 109.3243498, + 0.0202406 + ], + [ + 109.3243441, + 0.0203904 + ], + [ + 109.3243193, + 0.0210383 + ], + [ + 109.3243074, + 0.0213504 + ], + [ + 109.3242721, + 0.0217773 + ], + [ + 109.3242434, + 0.0221236 + ], + [ + 109.3241603, + 0.023008 + ], + [ + 109.3240533, + 0.0242137 + ] + ] + }, + "id": "way/304176698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304176699", + "highway": "residential", + "name": "Najaya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318338, + 0.0023685 + ], + [ + 109.3316047, + 0.002714 + ], + [ + 109.3312193, + 0.0032953 + ], + [ + 109.3307889, + 0.0039599 + ], + [ + 109.3306499, + 0.0041745 + ], + [ + 109.3304865, + 0.0044269 + ], + [ + 109.3292147, + 0.006226 + ], + [ + 109.3285453, + 0.0073385 + ], + [ + 109.3282437, + 0.0078388 + ], + [ + 109.3277909, + 0.0086138 + ], + [ + 109.3274472, + 0.0091439 + ], + [ + 109.3271881, + 0.0095874 + ], + [ + 109.3267808, + 0.010221 + ], + [ + 109.3266846, + 0.0103725 + ], + [ + 109.325786, + 0.0118721 + ], + [ + 109.3257874, + 0.0120036 + ], + [ + 109.3257775, + 0.0122206 + ], + [ + 109.3257478, + 0.0122362 + ], + [ + 109.3256834, + 0.0122765 + ], + [ + 109.3256472, + 0.0122912 + ], + [ + 109.3255543, + 0.0123111 + ], + [ + 109.3254889, + 0.0123194 + ], + [ + 109.3251876, + 0.0123562 + ], + [ + 109.3250276, + 0.0123757 + ], + [ + 109.3242463, + 0.0124831 + ] + ] + }, + "id": "way/304176699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304176700", + "highway": "residential", + "name": "Purna Jaya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310288, + 0.0012392 + ], + [ + 109.3305316, + 0.0019849 + ], + [ + 109.3296122, + 0.0033639 + ], + [ + 109.3291017, + 0.0041633 + ], + [ + 109.3282493, + 0.0054981 + ], + [ + 109.3279992, + 0.0058864 + ], + [ + 109.3267322, + 0.0078991 + ] + ] + }, + "id": "way/304176700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304176701", + "highway": "unclassified", + "name": "Sei Selamat Darat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333845, + 0.0252624 + ], + [ + 109.3334323, + 0.0226861 + ], + [ + 109.3334869, + 0.0216415 + ], + [ + 109.3335127, + 0.0211707 + ], + [ + 109.3335139, + 0.0211102 + ], + [ + 109.3335189, + 0.0209574 + ], + [ + 109.3335302, + 0.0206156 + ], + [ + 109.3335501, + 0.0200213 + ], + [ + 109.333553, + 0.0198396 + ], + [ + 109.333557, + 0.0197558 + ], + [ + 109.3335789, + 0.0191615 + ], + [ + 109.333597, + 0.0188181 + ], + [ + 109.3336093, + 0.0186065 + ], + [ + 109.3336104, + 0.018518 + ], + [ + 109.333622, + 0.0175913 + ], + [ + 109.3336288, + 0.0170506 + ], + [ + 109.3336341, + 0.0166284 + ], + [ + 109.3336389, + 0.0162488 + ], + [ + 109.3336477, + 0.0159358 + ], + [ + 109.3336482, + 0.0158734 + ], + [ + 109.3336483, + 0.0155929 + ], + [ + 109.3336602, + 0.0154374 + ], + [ + 109.3336893, + 0.0145405 + ], + [ + 109.3337013, + 0.0142858 + ], + [ + 109.3337085, + 0.0138806 + ], + [ + 109.3337113, + 0.0135666 + ], + [ + 109.3337174, + 0.0132956 + ], + [ + 109.3337315, + 0.0130086 + ], + [ + 109.3337384, + 0.0127866 + ], + [ + 109.3337411, + 0.012743 + ], + [ + 109.333758, + 0.0125999 + ], + [ + 109.3337671, + 0.0125072 + ], + [ + 109.333777, + 0.0124178 + ], + [ + 109.3337921, + 0.0119442 + ], + [ + 109.3337995, + 0.0117776 + ], + [ + 109.3338095, + 0.0115512 + ], + [ + 109.3338123, + 0.0114882 + ], + [ + 109.3338263, + 0.0111724 + ], + [ + 109.3338346, + 0.0109863 + ], + [ + 109.3338321, + 0.0109459 + ], + [ + 109.3338573, + 0.0104997 + ], + [ + 109.333858, + 0.0104593 + ], + [ + 109.3338686, + 0.0102594 + ], + [ + 109.3338807, + 0.0099993 + ], + [ + 109.3338838, + 0.0099335 + ], + [ + 109.3338964, + 0.009664 + ], + [ + 109.3339112, + 0.0093469 + ], + [ + 109.3339176, + 0.0092096 + ], + [ + 109.3339199, + 0.009161 + ], + [ + 109.3339265, + 0.0090197 + ], + [ + 109.3339319, + 0.0089048 + ], + [ + 109.3339344, + 0.0087166 + ], + [ + 109.3339402, + 0.0084392 + ], + [ + 109.3339412, + 0.0083926 + ], + [ + 109.3339499, + 0.0079714 + ], + [ + 109.333963, + 0.0074581 + ], + [ + 109.3339639, + 0.0073019 + ], + [ + 109.3339687, + 0.0070681 + ], + [ + 109.3339737, + 0.0068082 + ], + [ + 109.3339744, + 0.0067952 + ], + [ + 109.3339774, + 0.0066511 + ], + [ + 109.3339853, + 0.0062716 + ], + [ + 109.3340921, + 0.0048065 + ], + [ + 109.3340924, + 0.0047643 + ], + [ + 109.3340957, + 0.0046101 + ], + [ + 109.3340966, + 0.0045683 + ], + [ + 109.3341042, + 0.0041684 + ], + [ + 109.334114, + 0.0036457 + ], + [ + 109.3341183, + 0.0034209 + ], + [ + 109.3341222, + 0.0032141 + ], + [ + 109.3341245, + 0.0030897 + ], + [ + 109.33413, + 0.0027962 + ], + [ + 109.3341314, + 0.0027253 + ], + [ + 109.3341339, + 0.002591 + ], + [ + 109.3341394, + 0.0021877 + ], + [ + 109.3341505, + 0.0019648 + ], + [ + 109.3341501, + 0.0018614 + ], + [ + 109.3341522, + 0.0016199 + ], + [ + 109.3341556, + 0.0014444 + ], + [ + 109.3341565, + 0.0013947 + ], + [ + 109.3341617, + 0.0012574 + ], + [ + 109.3341639, + 0.0011993 + ], + [ + 109.3341754, + 0.0008933 + ], + [ + 109.3342046, + 0.0004057 + ], + [ + 109.334198, + 0.0002912 + ], + [ + 109.3342104, + -0.0000375 + ], + [ + 109.3342146, + -0.0001838 + ], + [ + 109.334217, + -0.0002705 + ], + [ + 109.3342237, + -0.0005113 + ], + [ + 109.3342319, + -0.0007924 + ], + [ + 109.3342322, + -0.0009064 + ], + [ + 109.3342409, + -0.001108 + ], + [ + 109.3342482, + -0.0013625 + ], + [ + 109.3342561, + -0.0016404 + ], + [ + 109.3342638, + -0.0019097 + ], + [ + 109.3342565, + -0.0021455 + ], + [ + 109.3342567, + -0.0022438 + ], + [ + 109.3342437, + -0.0023469 + ], + [ + 109.3342288, + -0.0024317 + ], + [ + 109.3341356, + -0.0027967 + ] + ] + }, + "id": "way/304176701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304176702", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259644, + 0.0131636 + ], + [ + 109.3253904, + 0.0132342 + ], + [ + 109.3243139, + 0.0133562 + ] + ] + }, + "id": "way/304176702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177292", + "highway": "residential", + "name": "Bougenvile" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256526, + 0.0028472 + ], + [ + 109.3257573, + 0.0027663 + ], + [ + 109.3260119, + 0.0025893 + ], + [ + 109.3260986, + 0.0025292 + ], + [ + 109.3263448, + 0.0023587 + ] + ] + }, + "id": "way/304177292" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177293", + "highway": "residential", + "name": "Kencana 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239142, + 0.0035327 + ], + [ + 109.3242179, + 0.0033557 + ], + [ + 109.3242471, + 0.0033422 + ], + [ + 109.3252536, + 0.0026779 + ] + ] + }, + "id": "way/304177293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177294", + "highway": "residential", + "name": "Kencana 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250818, + 0.0046813 + ], + [ + 109.3248679, + 0.004279 + ], + [ + 109.3247318, + 0.0040628 + ], + [ + 109.3244992, + 0.0036932 + ], + [ + 109.3242471, + 0.0033422 + ] + ] + }, + "id": "way/304177294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177295", + "highway": "residential", + "name": "Kencana 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233865, + 0.0026742 + ], + [ + 109.3237659, + 0.0033111 + ], + [ + 109.3239142, + 0.0035327 + ], + [ + 109.3243816, + 0.0042749 + ], + [ + 109.3247515, + 0.0048624 + ] + ] + }, + "id": "way/304177295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177296", + "highway": "residential", + "name": "Kencana 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244992, + 0.0036932 + ], + [ + 109.3250288, + 0.0033224 + ], + [ + 109.3254777, + 0.0030191 + ] + ] + }, + "id": "way/304177296" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177297", + "highway": "residential", + "name": "Sinar Pelita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254479, + 0.0092062 + ], + [ + 109.3254496, + 0.009023 + ], + [ + 109.3254502, + 0.0089223 + ], + [ + 109.3254544, + 0.0088452 + ], + [ + 109.3255301, + 0.0084511 + ], + [ + 109.3255887, + 0.0079878 + ], + [ + 109.3256271, + 0.0077382 + ], + [ + 109.3256251, + 0.0075895 + ], + [ + 109.3256037, + 0.0072452 + ], + [ + 109.3255871, + 0.006865 + ], + [ + 109.3252204, + 0.0063163 + ], + [ + 109.3247887, + 0.0056703 + ], + [ + 109.3245949, + 0.0053802 + ], + [ + 109.3245743, + 0.0053443 + ], + [ + 109.3245529, + 0.0053174 + ], + [ + 109.3241328, + 0.0049127 + ], + [ + 109.3237728, + 0.004566 + ], + [ + 109.323722, + 0.0045048 + ], + [ + 109.3236763, + 0.004473 + ], + [ + 109.323354, + 0.004329 + ], + [ + 109.3230558, + 0.0041544 + ], + [ + 109.3229248, + 0.0040743 + ], + [ + 109.3226218, + 0.00391 + ], + [ + 109.3225428, + 0.0038626 + ], + [ + 109.3224353, + 0.0037712 + ], + [ + 109.3223722, + 0.0037027 + ], + [ + 109.3223428, + 0.0036625 + ], + [ + 109.3220757, + 0.0032968 + ], + [ + 109.3220143, + 0.0032125 + ], + [ + 109.3219335, + 0.0031016 + ], + [ + 109.3217175, + 0.0028159 + ], + [ + 109.3217017, + 0.0027882 + ], + [ + 109.3216883, + 0.0027556 + ], + [ + 109.3216608, + 0.0026688 + ], + [ + 109.321642, + 0.0026192 + ], + [ + 109.3216184, + 0.0025833 + ], + [ + 109.3214776, + 0.0024241 + ], + [ + 109.3213765, + 0.0022859 + ], + [ + 109.3213476, + 0.0021102 + ], + [ + 109.3213248, + 0.0019728 + ], + [ + 109.3212675, + 0.0017025 + ], + [ + 109.3211794, + 0.0012409 + ] + ] + }, + "id": "way/304177297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177298", + "highway": "residential", + "name": "Track 006" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258748, + 0.0034437 + ], + [ + 109.3258663, + 0.0034346 + ], + [ + 109.3254777, + 0.0030191 + ], + [ + 109.3252536, + 0.0026779 + ], + [ + 109.32454, + 0.0015039 + ] + ] + }, + "id": "way/304177298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177299", + "highway": "residential", + "name": "Tujuh" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202576, + 0.001827 + ], + [ + 109.3202276, + 0.0018473 + ], + [ + 109.3200352, + 0.0014777 + ], + [ + 109.3198881, + 0.0011986 + ] + ] + }, + "id": "way/304177299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177300", + "highway": "residential", + "name": "Usaha Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195353, + 0.0011905 + ], + [ + 109.3197237, + 0.0016424 + ], + [ + 109.3199414, + 0.0020206 + ], + [ + 109.3199659, + 0.0020632 + ], + [ + 109.3201634, + 0.0023845 + ], + [ + 109.3202801, + 0.0025414 + ], + [ + 109.3204101, + 0.0026926 + ], + [ + 109.3204571, + 0.0027473 + ] + ] + }, + "id": "way/304177300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177301", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237659, + 0.0033111 + ], + [ + 109.3234826, + 0.0036001 + ], + [ + 109.3230558, + 0.0041544 + ] + ] + }, + "id": "way/304177301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177302", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211514, + 0.002044 + ], + [ + 109.3207964, + 0.002367 + ], + [ + 109.3206556, + 0.0025293 + ], + [ + 109.3205007, + 0.0027338 + ], + [ + 109.3204793, + 0.0027506 + ], + [ + 109.3204571, + 0.0027473 + ] + ] + }, + "id": "way/304177302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177303", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240127, + 0.0092504 + ], + [ + 109.3254479, + 0.0092062 + ], + [ + 109.3254572, + 0.0092059 + ] + ] + }, + "id": "way/304177303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177304", + "highway": "residential", + "name": "Mawar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242907, + 0.0088758 + ], + [ + 109.3236629, + 0.0080275 + ], + [ + 109.3232994, + 0.0082958 + ] + ] + }, + "id": "way/304177304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304177305", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32066, + 0.0012291 + ], + [ + 109.3206155, + 0.0014428 + ], + [ + 109.3206122, + 0.0014641 + ], + [ + 109.3206221, + 0.0014859 + ], + [ + 109.3207302, + 0.0015843 + ], + [ + 109.3208327, + 0.0017059 + ], + [ + 109.3209225, + 0.0018024 + ], + [ + 109.3210152, + 0.0019002 + ], + [ + 109.3211514, + 0.002044 + ], + [ + 109.3213765, + 0.0022859 + ] + ] + }, + "id": "way/304177305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304178010", + "highway": "unclassified", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333845, + 0.0252624 + ], + [ + 109.3321956, + 0.0251359 + ], + [ + 109.3319788, + 0.0251166 + ], + [ + 109.331658, + 0.025088 + ], + [ + 109.3314496, + 0.0250566 + ], + [ + 109.3303783, + 0.0249426 + ], + [ + 109.3285921, + 0.0247526 + ], + [ + 109.3269845, + 0.0245801 + ], + [ + 109.3265809, + 0.0245297 + ], + [ + 109.3240533, + 0.0242137 + ], + [ + 109.323481, + 0.0241454 + ], + [ + 109.3226134, + 0.0240418 + ], + [ + 109.3222795, + 0.024002 + ], + [ + 109.3217116, + 0.0239342 + ] + ] + }, + "id": "way/304178010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304179081", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610645, + 0.0242426 + ], + [ + 109.3610712, + 0.0242666 + ], + [ + 109.3610773, + 0.0242842 + ], + [ + 109.3610483, + 0.0242928 + ], + [ + 109.3609681, + 0.0243227 + ], + [ + 109.3605749, + 0.0244689 + ], + [ + 109.3605562, + 0.0244872 + ], + [ + 109.3605497, + 0.0245046 + ], + [ + 109.3606994, + 0.0254574 + ], + [ + 109.3610643, + 0.0280873 + ], + [ + 109.3610899, + 0.0282195 + ], + [ + 109.3610993, + 0.0282839 + ], + [ + 109.3611073, + 0.0283724 + ], + [ + 109.3611079, + 0.0284308 + ], + [ + 109.3610993, + 0.0291073 + ], + [ + 109.3610778, + 0.0299697 + ] + ] + }, + "id": "way/304179081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304190166", + "highway": "residential", + "name": "Permata Alam Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2870672, + -0.0055307 + ], + [ + 109.2870391, + -0.0053866 + ], + [ + 109.2870017, + -0.0052239 + ], + [ + 109.2868835, + -0.0046646 + ], + [ + 109.2867515, + -0.003858 + ], + [ + 109.2867179, + -0.0035027 + ], + [ + 109.2866915, + -0.003133 + ], + [ + 109.2867477, + -0.0022059 + ], + [ + 109.2868091, + -0.0013133 + ], + [ + 109.286898, + -0.0005166 + ], + [ + 109.2869555, + -0.0001202 + ], + [ + 109.286965, + -0.0000518 + ], + [ + 109.2870404, + 0.0005564 + ] + ] + }, + "id": "way/304190166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304206486", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2905185, + -0.0096667 + ], + [ + 109.288899, + -0.0095533 + ], + [ + 109.2870644, + -0.0094434 + ], + [ + 109.2869671, + -0.0094239 + ], + [ + 109.2869362, + -0.0094018 + ], + [ + 109.2869289, + -0.0093818 + ], + [ + 109.2869412, + -0.0092586 + ], + [ + 109.2870096, + -0.0091326 + ], + [ + 109.2870294, + -0.0091168 + ], + [ + 109.2870663, + -0.0091128 + ], + [ + 109.2871583, + -0.009122 + ], + [ + 109.2889103, + -0.0092437 + ], + [ + 109.2904958, + -0.0093411 + ] + ] + }, + "id": "way/304206486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304206487", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2904958, + -0.0093411 + ], + [ + 109.2905284, + -0.0093542 + ], + [ + 109.2905505, + -0.009377 + ], + [ + 109.2905572, + -0.0094125 + ], + [ + 109.2905185, + -0.0096667 + ], + [ + 109.2905121, + -0.0097566 + ], + [ + 109.2904982, + -0.0099094 + ], + [ + 109.2904875, + -0.0099456 + ], + [ + 109.29046, + -0.0099631 + ], + [ + 109.2904166, + -0.0099714 + ], + [ + 109.2896882, + -0.0098732 + ], + [ + 109.288919, + -0.0097653 + ], + [ + 109.2888949, + -0.0097545 + ], + [ + 109.2888822, + -0.0097277 + ], + [ + 109.288899, + -0.0095533 + ], + [ + 109.2889103, + -0.0092437 + ], + [ + 109.2889434, + -0.0088772 + ], + [ + 109.2889414, + -0.0084921 + ] + ] + }, + "id": "way/304206487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304211038", + "highway": "residential", + "name": "Blok J" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2889414, + -0.0084921 + ], + [ + 109.2900141, + -0.0085442 + ], + [ + 109.2911261, + -0.008578 + ] + ] + }, + "id": "way/304211038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304211039", + "highway": "residential", + "name": "Blok L" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2871245, + -0.0087638 + ], + [ + 109.2871277, + -0.0087715 + ], + [ + 109.2871404, + -0.0087772 + ], + [ + 109.2889434, + -0.0088772 + ] + ] + }, + "id": "way/304211039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304211545", + "highway": "residential", + "name": "Blok C-D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2924842, + -0.0089784 + ], + [ + 109.2935672, + -0.0089274 + ] + ] + }, + "id": "way/304211545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304211546", + "highway": "residential", + "name": "Blok F-G" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2924936, + -0.0086815 + ], + [ + 109.2911246, + -0.0087201 + ] + ] + }, + "id": "way/304211546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304211547", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2924842, + -0.0089784 + ], + [ + 109.2924936, + -0.0086815 + ] + ] + }, + "id": "way/304211547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304211548", + "highway": "residential", + "name": "Catur Warga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2938629, + -0.0074116 + ], + [ + 109.2936265, + -0.0086134 + ], + [ + 109.2935672, + -0.0089274 + ], + [ + 109.2935401, + -0.0091405 + ], + [ + 109.2934561, + -0.0096828 + ], + [ + 109.2934359, + -0.0099648 + ] + ] + }, + "id": "way/304211548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304211549", + "highway": "residential", + "name": "Melati Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2922337, + -0.0070204 + ], + [ + 109.2921531, + -0.0074311 + ], + [ + 109.292141, + -0.0075115 + ], + [ + 109.2921356, + -0.0076039 + ], + [ + 109.2921348, + -0.0083468 + ] + ] + }, + "id": "way/304211549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304211550", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2918784, + -0.0069381 + ], + [ + 109.2918503, + -0.0072065 + ], + [ + 109.2918259, + -0.0076038 + ], + [ + 109.291794, + -0.0083284 + ] + ] + }, + "id": "way/304211550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304211551", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2911312, + -0.0083228 + ], + [ + 109.2915151, + -0.0083133 + ], + [ + 109.291794, + -0.0083284 + ], + [ + 109.2921348, + -0.0083468 + ], + [ + 109.2925106, + -0.008367 + ], + [ + 109.2924936, + -0.0086815 + ] + ] + }, + "id": "way/304211551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304213705", + "highway": "residential", + "name": "Surya Kencana 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941218, + -0.0112758 + ], + [ + 109.2941108, + -0.0112368 + ], + [ + 109.2941128, + -0.011211 + ], + [ + 109.2941306, + -0.0111885 + ], + [ + 109.2961154, + -0.010427 + ], + [ + 109.2970416, + -0.0101228 + ] + ] + }, + "id": "way/304213705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304213706", + "highway": "residential", + "name": "Surya Kencana 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.294262, + -0.0114723 + ], + [ + 109.2942271, + -0.0114691 + ], + [ + 109.2942017, + -0.0114564 + ], + [ + 109.2941809, + -0.011439 + ], + [ + 109.2941218, + -0.0112758 + ] + ] + }, + "id": "way/304213706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304213707", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2974413, + -0.0110272 + ], + [ + 109.297555, + -0.0109875 + ] + ] + }, + "id": "way/304213707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304213708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2976157, + -0.0116955 + ], + [ + 109.2976349, + -0.0116817 + ], + [ + 109.2976473, + -0.0116649 + ], + [ + 109.297649, + -0.0116465 + ], + [ + 109.2976474, + -0.0116307 + ], + [ + 109.2975418, + -0.0113291 + ], + [ + 109.2974138, + -0.0110359 + ] + ] + }, + "id": "way/304213708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304214310", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Karet Lestari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033443, + -0.0112561 + ], + [ + 109.3033054, + -0.0112394 + ], + [ + 109.3018024, + -0.0112371 + ], + [ + 109.3016944, + -0.0112463 + ], + [ + 109.3004496, + -0.011418 + ], + [ + 109.2998524, + -0.0114853 + ], + [ + 109.2996984, + -0.0115027 + ], + [ + 109.299493, + -0.0115457 + ], + [ + 109.2979662, + -0.0118654 + ] + ] + }, + "id": "way/304214310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/304215621", + "alt_name": "Perumnas 2", + "highway": "residential", + "name": "Gang Matan 10" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297792, + -0.0114308 + ], + [ + 109.2995027, + -0.0110465 + ] + ] + }, + "id": "way/304215621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/305370821", + "highway": "residential", + "name": "Dwipajaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260113, + -0.033681 + ], + [ + 109.3258759, + -0.0335038 + ], + [ + 109.3258551, + -0.0334944 + ], + [ + 109.325835, + -0.0334948 + ], + [ + 109.3258153, + -0.0335034 + ], + [ + 109.3242989, + -0.0346325 + ] + ] + }, + "id": "way/305370821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/305370822", + "highway": "residential", + "lanes": "1", + "name": "Gang Bahagia", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324052, + -0.0316662 + ], + [ + 109.3242209, + -0.0320028 + ], + [ + 109.3243148, + -0.0322173 + ], + [ + 109.324337, + -0.0322412 + ], + [ + 109.3243698, + -0.0322341 + ], + [ + 109.3245305, + -0.0321719 + ], + [ + 109.324577, + -0.0321711 + ], + [ + 109.3246099, + -0.0321872 + ], + [ + 109.3246314, + -0.0322133 + ] + ] + }, + "id": "way/305370822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/305370824", + "highway": "residential", + "name": "Gang Madrasah 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268059, + -0.0320778 + ], + [ + 109.3270822, + -0.0318358 + ], + [ + 109.3270932, + -0.0318198 + ], + [ + 109.3270974, + -0.0318068 + ], + [ + 109.3270992, + -0.0317973 + ], + [ + 109.3271016, + -0.0317849 + ], + [ + 109.3271092, + -0.0317597 + ], + [ + 109.3271147, + -0.0317441 + ], + [ + 109.3271207, + -0.0317325 + ], + [ + 109.327134, + -0.0317154 + ], + [ + 109.3275695, + -0.0313323 + ] + ] + }, + "id": "way/305370824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/305370828", + "colour": "#606060", + "highway": "residential", + "name": "Nur Cahaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274245, + -0.0330489 + ], + [ + 109.3246769, + -0.0351979 + ] + ] + }, + "id": "way/305370828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/305370830", + "colour": "#606060", + "highway": "residential", + "name": "Rencana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199504, + -0.0374251 + ], + [ + 109.3198512, + -0.0375085 + ], + [ + 109.3195879, + -0.0376955 + ], + [ + 109.3194672, + -0.0377986 + ], + [ + 109.3201553, + -0.03872 + ], + [ + 109.320501, + -0.0391656 + ] + ] + }, + "id": "way/305370830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/305370831", + "highway": "living_street", + "motorcar": "no", + "name": "Sapta Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248191, + -0.0328711 + ], + [ + 109.3248211, + -0.0328383 + ], + [ + 109.324813, + -0.0327967 + ], + [ + 109.3247513, + -0.0326788 + ], + [ + 109.3247103, + -0.0325205 + ] + ] + }, + "id": "way/305370831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/305370835", + "highway": "residential", + "name": "Windu Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323248, + -0.0329818 + ], + [ + 109.3236193, + -0.032761 + ], + [ + 109.3238496, + -0.0326177 + ] + ] + }, + "id": "way/305370835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/305370836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264093, + -0.0323759 + ], + [ + 109.3268267, + -0.0330213 + ] + ] + }, + "id": "way/305370836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/305370838", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247513, + -0.0326788 + ], + [ + 109.3249392, + -0.0325256 + ], + [ + 109.3255936, + -0.0320658 + ], + [ + 109.3264242, + -0.0314656 + ] + ] + }, + "id": "way/305370838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306844166", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Hidayah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2867305, + -0.0097601 + ], + [ + 109.2865674, + -0.0097458 + ] + ] + }, + "id": "way/306844166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306844167", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2869912, + -0.0055247 + ], + [ + 109.2869152, + -0.0055362 + ], + [ + 109.286843, + -0.0055508 + ] + ] + }, + "id": "way/306844167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306844170", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Sapta Marga 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2866129, + -0.0100541 + ], + [ + 109.2864481, + -0.0100113 + ] + ] + }, + "id": "way/306844170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849214", + "highway": "residential", + "name": "Eka Sapta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297174, + -0.0104099 + ], + [ + 109.294262, + -0.0114723 + ] + ] + }, + "id": "way/306849214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849215", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969386, + -0.00789 + ], + [ + 109.2969271, + -0.0078904 + ] + ] + }, + "id": "way/306849215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849216", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2967613, + -0.0078868 + ], + [ + 109.2965012, + -0.007878 + ], + [ + 109.2964335, + -0.007876 + ], + [ + 109.2961709, + -0.0078664 + ], + [ + 109.2960206, + -0.00785 + ], + [ + 109.2959197, + -0.0078396 + ], + [ + 109.2958256, + -0.0078299 + ], + [ + 109.295551, + -0.0077776 + ], + [ + 109.2954294, + -0.0077539 + ], + [ + 109.2953239, + -0.0077334 + ], + [ + 109.2951327, + -0.0076833 + ], + [ + 109.2950532, + -0.0076645 + ], + [ + 109.2947086, + -0.0076025 + ], + [ + 109.2945579, + -0.0075676 + ], + [ + 109.2944431, + -0.0075447 + ], + [ + 109.2942958, + -0.0075105 + ], + [ + 109.2942102, + -0.0074923 + ], + [ + 109.2941593, + -0.007482 + ], + [ + 109.2940622, + -0.0074632 + ], + [ + 109.2939492, + -0.0074363 + ], + [ + 109.2938629, + -0.0074116 + ], + [ + 109.2931716, + -0.0072336 + ], + [ + 109.2929114, + -0.0071743 + ], + [ + 109.2925252, + -0.0070819 + ], + [ + 109.2922661, + -0.0070268 + ], + [ + 109.2922337, + -0.0070204 + ], + [ + 109.2918784, + -0.0069381 + ], + [ + 109.2917554, + -0.0069125 + ], + [ + 109.2915153, + -0.0068632 + ], + [ + 109.2911197, + -0.0067838 + ], + [ + 109.2909315, + -0.0067317 + ], + [ + 109.2904401, + -0.0066083 + ], + [ + 109.290065, + -0.0065135 + ], + [ + 109.289948, + -0.0064793 + ], + [ + 109.2895708, + -0.0063651 + ], + [ + 109.2892358, + -0.0062701 + ], + [ + 109.2887333, + -0.0061109 + ], + [ + 109.2884368, + -0.0060144 + ], + [ + 109.2883222, + -0.0059885 + ], + [ + 109.2879727, + -0.0058652 + ], + [ + 109.2878251, + -0.0058081 + ], + [ + 109.2875719, + -0.0057225 + ], + [ + 109.2874133, + -0.0056658 + ], + [ + 109.2872276, + -0.0055964 + ], + [ + 109.2870672, + -0.0055307 + ], + [ + 109.2870214, + -0.0055226 + ] + ] + }, + "id": "way/306849216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849217", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Karet Alam Indah Blok A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2967239, + -0.0087367 + ], + [ + 109.296832, + -0.0087134 + ] + ] + }, + "id": "way/306849217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849218", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Karet Alam Indah Blok C-D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2967366, + -0.0090495 + ], + [ + 109.2968485, + -0.0090229 + ] + ] + }, + "id": "way/306849218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849219", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Patra Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969123, + -0.0098092 + ], + [ + 109.2970382, + -0.0097679 + ] + ] + }, + "id": "way/306849219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849220", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Sejahtera 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2967766, + -0.0094412 + ], + [ + 109.2968958, + -0.0094012 + ] + ] + }, + "id": "way/306849220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849221", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Surya Kencana 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2970416, + -0.0101228 + ], + [ + 109.2971595, + -0.0100885 + ] + ] + }, + "id": "way/306849221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849225", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2874575, + -0.0001186 + ], + [ + 109.2877832, + -0.0001772 + ], + [ + 109.2878511, + -0.0001914 + ], + [ + 109.288278, + -0.0002793 + ], + [ + 109.2882921, + -0.0002887 + ], + [ + 109.2882974, + -0.0003145 + ], + [ + 109.2882237, + -0.001089 + ] + ] + }, + "id": "way/306849225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849611", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Al Mustaqim 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2978834, + -0.0125609 + ], + [ + 109.2980114, + -0.0125346 + ] + ] + }, + "id": "way/306849611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849612", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Al Mustaqim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979413, + -0.0129014 + ], + [ + 109.2980701, + -0.012914 + ] + ] + }, + "id": "way/306849612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849614", + "highway": "unclassified", + "name": "Nipah Kuning Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980182, + -0.013371 + ], + [ + 109.296864, + -0.0138139 + ], + [ + 109.2950338, + -0.0145172 + ], + [ + 109.2943576, + -0.014777 + ], + [ + 109.2941014, + -0.0148858 + ], + [ + 109.2937144, + -0.0150498 + ], + [ + 109.2929417, + -0.0153775 + ], + [ + 109.2928329, + -0.0154236 + ], + [ + 109.2924039, + -0.0156695 + ], + [ + 109.2919104, + -0.015878 + ], + [ + 109.2918516, + -0.0159021 + ], + [ + 109.2917269, + -0.0159532 + ], + [ + 109.291315, + -0.0161221 + ], + [ + 109.2910672, + -0.0162255 + ], + [ + 109.2907352, + -0.0163598 + ], + [ + 109.2906323, + -0.0164037 + ], + [ + 109.2903554, + -0.0165217 + ], + [ + 109.2901519, + -0.0166023 + ], + [ + 109.2895909, + -0.0168318 + ], + [ + 109.289345, + -0.0169452 + ], + [ + 109.2891225, + -0.0170479 + ], + [ + 109.28909, + -0.0170629 + ], + [ + 109.2884394, + -0.0173491 + ], + [ + 109.2881948, + -0.0174491 + ], + [ + 109.288105, + -0.0174726 + ], + [ + 109.2877683, + -0.0176338 + ], + [ + 109.2871242, + -0.0178832 + ], + [ + 109.2867997, + -0.0180099 + ], + [ + 109.286373, + -0.0181746 + ], + [ + 109.2860484, + -0.0183067 + ], + [ + 109.2857652, + -0.0184396 + ], + [ + 109.2857252, + -0.0184584 + ] + ] + }, + "id": "way/306849614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306849615", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Nuansa Alam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2978302, + -0.0119786 + ], + [ + 109.2979635, + -0.0119271 + ] + ] + }, + "id": "way/306849615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306850401", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020388, + -0.0190969 + ], + [ + 109.3021028, + -0.0190584 + ], + [ + 109.302266, + -0.0189873 + ], + [ + 109.3023284, + -0.0189661 + ], + [ + 109.3024743, + -0.0188941 + ] + ] + }, + "id": "way/306850401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306851578", + "bridge": "yes", + "highway": "unclassified", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.295866, + -0.0352911 + ], + [ + 109.2958088, + -0.0353381 + ] + ] + }, + "id": "way/306851578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306851579", + "highway": "unclassified", + "name": "Jalan Ujung Pandang", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2898525, + -0.0410127 + ], + [ + 109.2904667, + -0.0403549 + ], + [ + 109.290935, + -0.0398786 + ], + [ + 109.2912162, + -0.0395926 + ], + [ + 109.2915221, + -0.0392816 + ], + [ + 109.2917047, + -0.039086 + ], + [ + 109.2917172, + -0.0390759 + ], + [ + 109.292026, + -0.0387596 + ], + [ + 109.2921968, + -0.0385844 + ], + [ + 109.2922884, + -0.0384905 + ], + [ + 109.2923753, + -0.0384013 + ], + [ + 109.2928086, + -0.0379569 + ], + [ + 109.2931183, + -0.0376392 + ], + [ + 109.2932824, + -0.0374709 + ], + [ + 109.2934902, + -0.0372573 + ], + [ + 109.2935757, + -0.0371695 + ], + [ + 109.2936566, + -0.0370911 + ], + [ + 109.2941274, + -0.0367299 + ], + [ + 109.2943569, + -0.0365327 + ], + [ + 109.2946436, + -0.0362864 + ], + [ + 109.294747, + -0.0361976 + ], + [ + 109.2948885, + -0.036076 + ], + [ + 109.2950126, + -0.0359747 + ], + [ + 109.2957853, + -0.0353592 + ], + [ + 109.2958088, + -0.0353381 + ] + ] + }, + "id": "way/306851579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853318", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220701, + -0.0201605 + ], + [ + 109.3220597, + -0.0201146 + ] + ] + }, + "id": "way/306853318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217623, + -0.0199781 + ], + [ + 109.3217721, + -0.0200234 + ] + ] + }, + "id": "way/306853319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853320", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220701, + -0.0201605 + ], + [ + 109.3218078, + -0.0202198 + ], + [ + 109.3216042, + -0.0202569 + ] + ] + }, + "id": "way/306853320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3218304, + -0.0207073 + ], + [ + 109.3218224, + -0.0206785 + ], + [ + 109.3218123, + -0.0206503 + ], + [ + 109.3218023, + -0.0206369 + ], + [ + 109.3217929, + -0.0206336 + ], + [ + 109.3217795, + -0.0206349 + ], + [ + 109.3217077, + -0.0206476 + ], + [ + 109.3216896, + -0.0206443 + ], + [ + 109.3216782, + -0.0206356 + ], + [ + 109.3216735, + -0.0206215 + ], + [ + 109.3216668, + -0.020594 + ], + [ + 109.3216042, + -0.0202569 + ] + ] + }, + "id": "way/306853321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853322", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229574, + -0.0385616 + ], + [ + 109.3229326, + -0.0385573 + ], + [ + 109.3229089, + -0.0385592 + ], + [ + 109.3228927, + -0.0385641 + ], + [ + 109.3228692, + -0.0385774 + ], + [ + 109.3228007, + -0.0386412 + ], + [ + 109.3222634, + -0.0390943 + ], + [ + 109.3216653, + -0.0396558 + ] + ] + }, + "id": "way/306853322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853472", + "access": "yes", + "alt_name:id": "Jalan Pancasila", + "highway": "unclassified", + "name": "Jalan Gusti Hamzah", + "oneway": "no", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178049, + -0.0209709 + ], + [ + 109.3178169, + -0.0210116 + ], + [ + 109.3179186, + -0.0214724 + ], + [ + 109.3180862, + -0.0222134 + ], + [ + 109.3181138, + -0.0223403 + ], + [ + 109.3181233, + -0.0224468 + ], + [ + 109.3181975, + -0.02277 + ], + [ + 109.3182323, + -0.0229591 + ], + [ + 109.3182945, + -0.0232141 + ], + [ + 109.3183963, + -0.0237564 + ], + [ + 109.3184513, + -0.0239718 + ], + [ + 109.3184872, + -0.0241813 + ], + [ + 109.3185112, + -0.0242699 + ], + [ + 109.3185327, + -0.0243645 + ], + [ + 109.3185531, + -0.0244195 + ], + [ + 109.318662, + -0.0246901 + ], + [ + 109.3187494, + -0.0248828 + ], + [ + 109.3188044, + -0.0250145 + ], + [ + 109.3188535, + -0.0251485 + ], + [ + 109.318917, + -0.0253448 + ], + [ + 109.318984, + -0.025595 + ], + [ + 109.3190079, + -0.0256549 + ], + [ + 109.3190283, + -0.0257375 + ], + [ + 109.3190834, + -0.0259074 + ], + [ + 109.3191731, + -0.0261445 + ], + [ + 109.3191995, + -0.0262666 + ], + [ + 109.3192869, + -0.0267418 + ], + [ + 109.3193491, + -0.0269955 + ], + [ + 109.319385, + -0.0271248 + ], + [ + 109.3194844, + -0.0274337 + ], + [ + 109.3195095, + -0.027472 + ], + [ + 109.3195957, + -0.0276216 + ], + [ + 109.319695, + -0.0277581 + ], + [ + 109.3198973, + -0.0280011 + ] + ] + }, + "id": "way/306853472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853589", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156923, + -0.0215345 + ], + [ + 109.3160275, + -0.0231287 + ], + [ + 109.3164597, + -0.0248113 + ] + ] + }, + "id": "way/306853589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853590", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159328, + -0.0214699 + ], + [ + 109.3156923, + -0.0215345 + ] + ] + }, + "id": "way/306853590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853992", + "highway": "tertiary", + "name": "Jalan Haji Machmud Suwignyo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144897, + -0.0217878 + ], + [ + 109.3144959, + -0.0218064 + ], + [ + 109.314565, + -0.0219606 + ], + [ + 109.3145998, + -0.0219975 + ], + [ + 109.3148479, + -0.022133 + ], + [ + 109.3148674, + -0.0221591 + ], + [ + 109.3148795, + -0.0221926 + ], + [ + 109.3150229, + -0.0227197 + ], + [ + 109.315094, + -0.0230268 + ], + [ + 109.3155031, + -0.0243947 + ], + [ + 109.3155782, + -0.0247287 + ], + [ + 109.3156037, + -0.0248158 + ], + [ + 109.3156164, + -0.0250455 + ], + [ + 109.315616, + -0.0250728 + ], + [ + 109.3156144, + -0.0253979 + ], + [ + 109.3156104, + -0.0255025 + ], + [ + 109.3156193, + -0.0256873 + ], + [ + 109.3156265, + -0.0258436 + ], + [ + 109.3156296, + -0.026013 + ], + [ + 109.3156278, + -0.0261583 + ], + [ + 109.3156372, + -0.0264976 + ], + [ + 109.3156265, + -0.026688 + ], + [ + 109.3156268, + -0.0268447 + ], + [ + 109.3156265, + -0.0270488 + ], + [ + 109.3156317, + -0.0272023 + ], + [ + 109.3156265, + -0.0274793 + ], + [ + 109.3156198, + -0.0275691 + ], + [ + 109.3156372, + -0.0279647 + ], + [ + 109.3156546, + -0.0281579 + ], + [ + 109.3156572, + -0.0283108 + ], + [ + 109.31566, + -0.0284717 + ], + [ + 109.3156586, + -0.0285414 + ], + [ + 109.3156654, + -0.0288995 + ], + [ + 109.3156721, + -0.0290081 + ], + [ + 109.3156881, + -0.0292375 + ], + [ + 109.3156859, + -0.0293452 + ], + [ + 109.3156975, + -0.0297176 + ], + [ + 109.315695, + -0.0298617 + ], + [ + 109.3156874, + -0.0301793 + ], + [ + 109.3156952, + -0.0305202 + ], + [ + 109.3156827, + -0.0308988 + ], + [ + 109.3156694, + -0.0313179 + ], + [ + 109.3156707, + -0.0313913 + ], + [ + 109.3156608, + -0.0318394 + ], + [ + 109.3156654, + -0.0319639 + ], + [ + 109.3156721, + -0.0324722 + ], + [ + 109.3156799, + -0.0325561 + ], + [ + 109.3156989, + -0.0326264 + ], + [ + 109.315723, + -0.0326814 + ], + [ + 109.3158719, + -0.0329483 + ], + [ + 109.3159047, + -0.0329999 + ], + [ + 109.3160073, + -0.0330965 + ], + [ + 109.3165009, + -0.033593 + ], + [ + 109.3165693, + -0.0336551 + ], + [ + 109.3168426, + -0.0339141 + ], + [ + 109.3171494, + -0.0342518 + ], + [ + 109.3177045, + -0.0348021 + ], + [ + 109.3181719, + -0.0352818 + ], + [ + 109.3186219, + -0.0357308 + ] + ] + }, + "id": "way/306853992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853993", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312786, + -0.025719 + ], + [ + 109.3123811, + -0.0258574 + ], + [ + 109.3121696, + -0.0259309 + ], + [ + 109.311965, + -0.02601 + ], + [ + 109.3117687, + -0.0260747 + ], + [ + 109.3113591, + -0.0262575 + ], + [ + 109.3112598, + -0.0263366 + ], + [ + 109.3110412, + -0.0264426 + ], + [ + 109.3109044, + -0.0265123 + ], + [ + 109.3107675, + -0.0265751 + ], + [ + 109.3104371, + -0.0266918 + ], + [ + 109.3100709, + -0.0268317 + ], + [ + 109.3094654, + -0.0271077 + ], + [ + 109.3094265, + -0.0271238 + ], + [ + 109.3092093, + -0.0271949 + ], + [ + 109.3090943, + -0.0272393 + ], + [ + 109.3087198, + -0.027384 + ], + [ + 109.3086702, + -0.0273934 + ], + [ + 109.3083181, + -0.0275107 + ] + ] + }, + "id": "way/306853993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853994", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123239, + -0.0224298 + ], + [ + 109.3123434, + -0.0224819 + ], + [ + 109.3129892, + -0.024396 + ] + ] + }, + "id": "way/306853994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853995", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135887, + -0.0220875 + ], + [ + 109.3134385, + -0.0221385 + ] + ] + }, + "id": "way/306853995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306853996", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3126748, + -0.022381 + ], + [ + 109.3130843, + -0.0235507 + ], + [ + 109.3136572, + -0.0253995 + ] + ] + }, + "id": "way/306853996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306854972", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311179, + -0.0229106 + ], + [ + 109.3107533, + -0.0230897 + ] + ] + }, + "id": "way/306854972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306854973", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107533, + -0.0230897 + ], + [ + 109.3103251, + -0.0232559 + ] + ] + }, + "id": "way/306854973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306856044", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103109, + -0.0232236 + ], + [ + 109.3103251, + -0.0232559 + ], + [ + 109.310832, + -0.0246334 + ], + [ + 109.3110681, + -0.0254247 + ], + [ + 109.3113591, + -0.0262575 + ] + ] + }, + "id": "way/306856044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306856045", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980595, + -0.0293659 + ], + [ + 109.2980388, + -0.0293358 + ], + [ + 109.2979723, + -0.0292291 + ] + ] + }, + "id": "way/306856045" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306856046", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2927718, + -0.0334188 + ], + [ + 109.2927868, + -0.033424 + ], + [ + 109.2928012, + -0.0334243 + ], + [ + 109.2930313, + -0.0332644 + ], + [ + 109.2931095, + -0.0331975 + ] + ] + }, + "id": "way/306856046" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306856047", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2970338, + -0.0300503 + ], + [ + 109.2980707, + -0.0316417 + ], + [ + 109.2989282, + -0.0330338 + ] + ] + }, + "id": "way/306856047" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306856049", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2977534, + -0.0296988 + ], + [ + 109.2990919, + -0.0317824 + ], + [ + 109.2991696, + -0.031903 + ], + [ + 109.2995461, + -0.032521 + ] + ] + }, + "id": "way/306856049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306856934", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2920221, + -0.0341278 + ], + [ + 109.2918698, + -0.0342754 + ], + [ + 109.2914903, + -0.0346431 + ], + [ + 109.2914819, + -0.0346454 + ], + [ + 109.2914758, + -0.0346448 + ] + ] + }, + "id": "way/306856934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306857396", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2895956, + -0.0365626 + ], + [ + 109.2897881, + -0.0367926 + ], + [ + 109.2900009, + -0.0370496 + ] + ] + }, + "id": "way/306857396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306857397", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2910355, + -0.0350106 + ], + [ + 109.2912158, + -0.0352029 + ], + [ + 109.2913626, + -0.0353584 + ], + [ + 109.291952, + -0.0359738 + ] + ] + }, + "id": "way/306857397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306858102", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2860184, + -0.0400697 + ], + [ + 109.2860377, + -0.0400923 + ], + [ + 109.2860387, + -0.0401034 + ], + [ + 109.2860296, + -0.0401339 + ], + [ + 109.2860306, + -0.0401419 + ], + [ + 109.286035, + -0.0401533 + ], + [ + 109.2864387, + -0.0406288 + ], + [ + 109.2868646, + -0.041111 + ] + ] + }, + "id": "way/306858102" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306858170", + "highway": "unclassified", + "name": "Jalan Ampera", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052313, + -0.0578145 + ], + [ + 109.3051921, + -0.0577683 + ], + [ + 109.3050482, + -0.0575983 + ], + [ + 109.3048648, + -0.0573985 + ], + [ + 109.3046437, + -0.0571758 + ], + [ + 109.3045165, + -0.0570433 + ], + [ + 109.3044, + -0.0569096 + ], + [ + 109.3042523, + -0.0567578 + ], + [ + 109.3042083, + -0.0567082 + ], + [ + 109.3040854, + -0.0565728 + ], + [ + 109.3040315, + -0.0565091 + ], + [ + 109.3038043, + -0.056263 + ], + [ + 109.303608, + -0.0560551 + ], + [ + 109.3034826, + -0.0559223 + ], + [ + 109.30328, + -0.0557037 + ], + [ + 109.3029749, + -0.0553473 + ], + [ + 109.302542, + -0.0548984 + ], + [ + 109.3022942, + -0.0546336 + ], + [ + 109.3022514, + -0.0545794 + ], + [ + 109.3020007, + -0.0543218 + ], + [ + 109.3019756, + -0.0542951 + ], + [ + 109.3017485, + -0.0540205 + ], + [ + 109.3015804, + -0.053846 + ], + [ + 109.301313, + -0.05355 + ], + [ + 109.3011791, + -0.0533959 + ], + [ + 109.3009078, + -0.0530785 + ], + [ + 109.3006378, + -0.0527935 + ], + [ + 109.3004595, + -0.0526007 + ], + [ + 109.3000758, + -0.0522076 + ], + [ + 109.299802, + -0.0519153 + ], + [ + 109.2996457, + -0.0517358 + ], + [ + 109.2995162, + -0.0515847 + ], + [ + 109.2994322, + -0.0514867 + ], + [ + 109.2993389, + -0.05138 + ], + [ + 109.2992453, + -0.051267 + ], + [ + 109.2992157, + -0.0512339 + ], + [ + 109.2991315, + -0.0511426 + ], + [ + 109.2990062, + -0.0510166 + ], + [ + 109.2989578, + -0.050969 + ], + [ + 109.2986784, + -0.0506579 + ], + [ + 109.2986622, + -0.0506413 + ], + [ + 109.2984071, + -0.0503374 + ], + [ + 109.2981151, + -0.0500351 + ], + [ + 109.2979018, + -0.0497984 + ], + [ + 109.297854, + -0.0497389 + ], + [ + 109.2973639, + -0.0492149 + ], + [ + 109.2972401, + -0.0490841 + ], + [ + 109.2970056, + -0.0488363 + ], + [ + 109.296711, + -0.0485246 + ], + [ + 109.2961393, + -0.0478965 + ], + [ + 109.2958811, + -0.0475841 + ], + [ + 109.2956994, + -0.0474156 + ], + [ + 109.2955679, + -0.0472799 + ], + [ + 109.2954064, + -0.0471003 + ], + [ + 109.295134, + -0.0468085 + ], + [ + 109.2951233, + -0.0467975 + ], + [ + 109.2949751, + -0.0466423 + ], + [ + 109.2947281, + -0.0463676 + ], + [ + 109.2946488, + -0.0462799 + ], + [ + 109.2944125, + -0.0460135 + ], + [ + 109.2942659, + -0.0458543 + ], + [ + 109.2941084, + -0.04568 + ], + [ + 109.2940861, + -0.045656 + ], + [ + 109.2938147, + -0.0453649 + ], + [ + 109.2936351, + -0.0451703 + ], + [ + 109.2935232, + -0.0450441 + ], + [ + 109.2932341, + -0.0447296 + ], + [ + 109.2929299, + -0.0443935 + ], + [ + 109.2927153, + -0.0441626 + ], + [ + 109.2925665, + -0.044 + ], + [ + 109.292278, + -0.043681 + ], + [ + 109.2922029, + -0.0436056 + ], + [ + 109.2918205, + -0.0431803 + ], + [ + 109.291494, + -0.0428054 + ], + [ + 109.2911369, + -0.0423967 + ], + [ + 109.2907358, + -0.0419158 + ], + [ + 109.2906577, + -0.0418278 + ], + [ + 109.2905695, + -0.0417283 + ], + [ + 109.2902201, + -0.0413449 + ], + [ + 109.2898525, + -0.0410127 + ], + [ + 109.2876135, + -0.0385052 + ] + ] + }, + "id": "way/306858170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306858171", + "highway": "unclassified", + "name": "Jalan Ampera", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2874995, + -0.0383891 + ], + [ + 109.28746, + -0.0383508 + ], + [ + 109.2869531, + -0.037739 + ] + ] + }, + "id": "way/306858171" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306858172", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2881817, + -0.0379729 + ], + [ + 109.2887263, + -0.0385664 + ] + ] + }, + "id": "way/306858172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306859491", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Parit Haruna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2828098, + -0.0430064 + ], + [ + 109.2827252, + -0.0429113 + ] + ] + }, + "id": "way/306859491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/306859492", + "highway": "tertiary", + "name": "Jalan Parit Haruna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2827102, + -0.0428857 + ], + [ + 109.2827171, + -0.0428604 + ], + [ + 109.2827258, + -0.0428302 + ], + [ + 109.2827292, + -0.0427886 + ], + [ + 109.2823087, + -0.0420153 + ] + ] + }, + "id": "way/306859492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/307394681", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248059, + 0.0013086 + ], + [ + 109.32454, + 0.0015039 + ] + ] + }, + "id": "way/307394681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/307394682", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324915, + 0.0012327 + ], + [ + 109.3248059, + 0.0013086 + ] + ] + }, + "id": "way/307394682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/307394707", + "highway": "residential", + "name": "Bougenvile" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260986, + 0.0025292 + ], + [ + 109.3268615, + 0.003168 + ], + [ + 109.3268749, + 0.0031709 + ] + ] + }, + "id": "way/307394707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/307394708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250586, + 0.0011297 + ], + [ + 109.3255321, + 0.0018542 + ], + [ + 109.3260119, + 0.0025893 + ] + ] + }, + "id": "way/307394708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/307394709", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253885, + 0.0009131 + ], + [ + 109.3250586, + 0.0011297 + ] + ] + }, + "id": "way/307394709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/308080429", + "highway": "residential", + "name": "Vila Permata Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490864, + -0.0887608 + ], + [ + 109.3490528, + -0.08874 + ], + [ + 109.348615, + -0.088494 + ], + [ + 109.3481094, + -0.0882081 + ], + [ + 109.3477097, + -0.0879697 + ], + [ + 109.3474898, + -0.0878557 + ], + [ + 109.347298, + -0.0877605 + ], + [ + 109.3470204, + -0.0876385 + ], + [ + 109.3463913, + -0.0873349 + ] + ] + }, + "id": "way/308080429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/308080430", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493015, + -0.0883654 + ], + [ + 109.3466618, + -0.0868749 + ] + ] + }, + "id": "way/308080430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/314309079", + "highway": "residential", + "name": "Purnama 10" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3298871, + -0.0529334 + ], + [ + 109.3298724, + -0.0529327 + ], + [ + 109.329861, + -0.0529388 + ], + [ + 109.3295311, + -0.0531789 + ], + [ + 109.3291982, + -0.0534369 + ] + ] + }, + "id": "way/314309079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/314309301", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Purnama Agung 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294297, + -0.0530198 + ], + [ + 109.3294876, + -0.0531096 + ] + ] + }, + "id": "way/314309301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/314309302", + "highway": "residential", + "name": "Purnama Agung 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294876, + -0.0531096 + ], + [ + 109.3295311, + -0.0531789 + ], + [ + 109.3302389, + -0.0543648 + ], + [ + 109.331074, + -0.0557243 + ], + [ + 109.3311336, + -0.0558214 + ] + ] + }, + "id": "way/314309302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/314309684", + "highway": "residential", + "name": "Mutiara Purnama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330386, + -0.0521953 + ], + [ + 109.3303538, + -0.0521576 + ] + ] + }, + "id": "way/314309684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/314309686", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Mutiara Purnama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304368, + -0.052253 + ], + [ + 109.330386, + -0.0521953 + ] + ] + }, + "id": "way/314309686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/315916953", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Purnama 9" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301366, + -0.0525592 + ], + [ + 109.3300802, + -0.0524707 + ] + ] + }, + "id": "way/315916953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/315916955", + "highway": "residential", + "name": "Purnama 9" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300802, + -0.0524707 + ], + [ + 109.3300454, + -0.0524271 + ] + ] + }, + "id": "way/315916955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/317782755", + "bicycle": "yes", + "bridge": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lanes": "1", + "layer": "1", + "maxspeed": "30", + "motor_vehicle": "destination", + "name": "Gang Dungun" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424681, + -0.042649 + ], + [ + 109.3423368, + -0.0425921 + ] + ] + }, + "id": "way/317782755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/317782756", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lanes": "1", + "maxspeed": "30", + "name": "Gang Dungun" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423368, + -0.0425921 + ], + [ + 109.3423326, + -0.042591 + ], + [ + 109.3422449, + -0.0425704 + ] + ] + }, + "id": "way/317782756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/320088798", + "highway": "living_street", + "name": "Gang Kelantan 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415581, + -0.0321087 + ], + [ + 109.3415654, + -0.0321151 + ], + [ + 109.3415755, + -0.0321158 + ], + [ + 109.3415829, + -0.0321161 + ], + [ + 109.3426579, + -0.0315293 + ], + [ + 109.3427264, + -0.0314919 + ] + ] + }, + "id": "way/320088798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/320088799", + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "motor_vehicle": "yes", + "name": "Gang Kelantan 1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341548, + -0.0320886 + ], + [ + 109.3414152, + -0.0317969 + ], + [ + 109.3414132, + -0.0317755 + ], + [ + 109.3414213, + -0.0317607 + ], + [ + 109.341434, + -0.031754 + ] + ] + }, + "id": "way/320088799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139742", + "highway": "residential", + "name": "Gang Batubara", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328854, + -0.0273524 + ], + [ + 109.332219, + -0.0279314 + ], + [ + 109.3320218, + -0.0277099 + ], + [ + 109.3320104, + -0.0277073 + ], + [ + 109.3319975, + -0.0277085 + ], + [ + 109.3311524, + -0.028322 + ], + [ + 109.3308575, + -0.0285325 + ], + [ + 109.3305958, + -0.0287194 + ], + [ + 109.330356, + -0.0283592 + ], + [ + 109.3303192, + -0.0283104 + ], + [ + 109.3300813, + -0.0280046 + ], + [ + 109.3300231, + -0.027928 + ], + [ + 109.3298964, + -0.0277612 + ] + ] + }, + "id": "way/324139742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139743", + "access": "yes", + "highway": "residential", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304602, + -0.0272744 + ], + [ + 109.3310201, + -0.0279692 + ], + [ + 109.330356, + -0.0283592 + ] + ] + }, + "id": "way/324139743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139744", + "highway": "residential", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330356, + -0.0283592 + ], + [ + 109.329317, + -0.0290648 + ] + ] + }, + "id": "way/324139744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139747", + "highway": "living_street", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336354, + -0.026166 + ], + [ + 109.333776, + -0.0260575 + ], + [ + 109.3340199, + -0.0258705 + ] + ] + }, + "id": "way/324139747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139752", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300239, + -0.0224034 + ], + [ + 109.330044, + -0.0225228 + ], + [ + 109.3300502, + -0.0225455 + ], + [ + 109.3300599, + -0.0225684 + ], + [ + 109.3300859, + -0.022603 + ], + [ + 109.3301101, + -0.0226253 + ], + [ + 109.3301617, + -0.0226559 + ], + [ + 109.3303441, + -0.0227471 + ], + [ + 109.3304375, + -0.0228062 + ], + [ + 109.331186, + -0.0233553 + ], + [ + 109.3308462, + -0.0238845 + ], + [ + 109.3306455, + -0.0243169 + ], + [ + 109.3304591, + -0.0247125 + ], + [ + 109.3302446, + -0.0251329 + ] + ] + }, + "id": "way/324139752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139753", + "highway": "service", + "motor_vehicle": "permissive", + "name": "Gang Merak 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332091, + -0.0219992 + ], + [ + 109.3317165, + -0.0224905 + ], + [ + 109.331186, + -0.0233553 + ] + ] + }, + "id": "way/324139753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139758", + "highway": "residential", + "name": "Gang Nuri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259789, + -0.0234458 + ], + [ + 109.3257784, + -0.0234764 + ] + ] + }, + "id": "way/324139758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139765", + "highway": "residential", + "motorcar": "no", + "name": "Gang Ruwai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291383, + -0.0222438 + ], + [ + 109.3291327, + -0.0222415 + ], + [ + 109.3291273, + -0.0222389 + ], + [ + 109.3291233, + -0.0222335 + ], + [ + 109.3291114, + -0.0221477 + ], + [ + 109.3291095, + -0.022142 + ], + [ + 109.3291062, + -0.0221359 + ], + [ + 109.3291013, + -0.0221317 + ], + [ + 109.3290902, + -0.0221286 + ], + [ + 109.3283869, + -0.0221297 + ], + [ + 109.328379, + -0.0221326 + ], + [ + 109.3283735, + -0.0221372 + ], + [ + 109.3283699, + -0.0221414 + ], + [ + 109.3283665, + -0.0221483 + ], + [ + 109.3283544, + -0.0222791 + ], + [ + 109.3281247, + -0.0222892 + ], + [ + 109.327991, + -0.0222957 + ] + ] + }, + "id": "way/324139765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139773", + "highway": "residential", + "name": "Gang Beringin 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334128, + -0.03136 + ], + [ + 109.3330383, + -0.0309755 + ], + [ + 109.3329766, + -0.0308911 + ], + [ + 109.3329502, + -0.0308561 + ], + [ + 109.3329125, + -0.0308059 + ] + ] + }, + "id": "way/324139773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324139774", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330383, + -0.0309755 + ], + [ + 109.3332536, + -0.0308088 + ], + [ + 109.333471, + -0.0306377 + ], + [ + 109.3334778, + -0.0306342 + ], + [ + 109.3334835, + -0.0306329 + ], + [ + 109.3334894, + -0.030633 + ], + [ + 109.3334987, + -0.0306348 + ], + [ + 109.3336452, + -0.03071 + ], + [ + 109.3336583, + -0.030713 + ], + [ + 109.3336698, + -0.0307141 + ], + [ + 109.3336833, + -0.0307124 + ], + [ + 109.3336962, + -0.0307088 + ], + [ + 109.33383, + -0.0305972 + ] + ] + }, + "id": "way/324139774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324169487", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267542, + -0.0273149 + ], + [ + 109.3266222, + -0.0271464 + ] + ] + }, + "id": "way/324169487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324169488", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268123, + -0.027398 + ], + [ + 109.3267841, + -0.0273599 + ] + ] + }, + "id": "way/324169488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324169489", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267841, + -0.0273599 + ], + [ + 109.3267542, + -0.0273149 + ] + ] + }, + "id": "way/324169489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324181712", + "highway": "residential", + "name": "Gang Pisang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3172124, + -0.0083432 + ], + [ + 109.3173932, + -0.0081226 + ], + [ + 109.3175107, + -0.007992 + ], + [ + 109.3177218, + -0.0077433 + ], + [ + 109.3179345, + -0.0074895 + ], + [ + 109.318213, + -0.0071825 + ] + ] + }, + "id": "way/324181712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324186323", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259524, + -0.029281 + ], + [ + 109.325986, + -0.0292975 + ] + ] + }, + "id": "way/324186323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/324186324", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3261641, + -0.0287775 + ], + [ + 109.3261989, + -0.0287952 + ] + ] + }, + "id": "way/324186324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/337612535", + "highway": "living_street", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160822, + -0.0198588 + ], + [ + 109.3164246, + -0.019753 + ], + [ + 109.3164279, + -0.0197404 + ], + [ + 109.3164278, + -0.0197256 + ], + [ + 109.316193, + -0.018891 + ], + [ + 109.3161626, + -0.0187593 + ], + [ + 109.3161181, + -0.0185611 + ], + [ + 109.3160408, + -0.0182175 + ], + [ + 109.3159562, + -0.0178412 + ] + ] + }, + "id": "way/337612535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/337612536", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156268, + -0.0268447 + ], + [ + 109.3170199, + -0.0266638 + ], + [ + 109.3184395, + -0.026504 + ] + ] + }, + "id": "way/337612536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/337612537", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156372, + -0.0264976 + ], + [ + 109.3169072, + -0.0263473 + ], + [ + 109.3182706, + -0.0261714 + ] + ] + }, + "id": "way/337612537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/337612538", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156586, + -0.0285414 + ], + [ + 109.3176663, + -0.0283241 + ], + [ + 109.3188595, + -0.0281774 + ] + ] + }, + "id": "way/337612538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/337612539", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210968, + -0.0295105 + ], + [ + 109.3203485, + -0.0301185 + ], + [ + 109.319918, + -0.0304672 + ], + [ + 109.3196448, + -0.0306766 + ], + [ + 109.3195465, + -0.0307495 + ], + [ + 109.3194341, + -0.0308415 + ], + [ + 109.3184244, + -0.0316321 + ] + ] + }, + "id": "way/337612539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/337612540", + "highway": "residential", + "name": "Jalan Suwignyo Permai 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156881, + -0.0292375 + ], + [ + 109.3166001, + -0.0291274 + ], + [ + 109.3186917, + -0.0288449 + ] + ] + }, + "id": "way/337612540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/337963820", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474975, + -0.0538845 + ], + [ + 109.3470175, + -0.053489 + ] + ] + }, + "id": "way/337963820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/337963838", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467303, + -0.0538427 + ], + [ + 109.346958, + -0.0540808 + ], + [ + 109.3471522, + -0.0542707 + ] + ] + }, + "id": "way/337963838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/339873538", + "highway": "residential", + "name": "Jalan Lapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682579, + -0.0047099 + ], + [ + 109.3666486, + -0.0047045 + ], + [ + 109.3650734, + -0.0046942 + ], + [ + 109.3650412, + -0.0046948 + ] + ] + }, + "id": "way/339873538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/342456060", + "highway": "trunk", + "name": "Jalan Pak Kasih", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329348, + -0.017649 + ], + [ + 109.3329867, + -0.0176938 + ], + [ + 109.3330259, + -0.0177262 + ], + [ + 109.3330687, + -0.0177606 + ], + [ + 109.3335527, + -0.0181645 + ], + [ + 109.3347681, + -0.0191537 + ], + [ + 109.3355469, + -0.0197554 + ], + [ + 109.3356116, + -0.0198054 + ], + [ + 109.3358282, + -0.0199603 + ], + [ + 109.3360099, + -0.0201011 + ], + [ + 109.3361789, + -0.0202433 + ], + [ + 109.3363799, + -0.020406 + ], + [ + 109.3364853, + -0.0204914 + ], + [ + 109.3367194, + -0.0206885 + ], + [ + 109.3367898, + -0.0207442 + ], + [ + 109.3368468, + -0.0207844 + ], + [ + 109.3369078, + -0.0208206 + ], + [ + 109.3369661, + -0.0208448 + ], + [ + 109.3370426, + -0.0208622 + ], + [ + 109.337147, + -0.0208774 + ] + ] + }, + "id": "way/342456060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/342456062", + "alt_name": "Jalan Haji Rais A. Rachman", + "highway": "tertiary", + "name": "Jalan Haji Rais Abdul Rachman", + "oneway": "no", + "ref": "002.2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321526, + -0.0200173 + ], + [ + 109.3211961, + -0.0200824 + ], + [ + 109.3211186, + -0.0200968 + ], + [ + 109.3210559, + -0.0201084 + ], + [ + 109.3207752, + -0.0201605 + ], + [ + 109.3206943, + -0.0201755 + ], + [ + 109.3202463, + -0.0202656 + ], + [ + 109.3200411, + -0.0203068 + ], + [ + 109.3198529, + -0.0203385 + ], + [ + 109.3196776, + -0.0203681 + ], + [ + 109.3195083, + -0.0204046 + ], + [ + 109.3192988, + -0.0204406 + ], + [ + 109.319153, + -0.0204703 + ], + [ + 109.3189525, + -0.0205042 + ], + [ + 109.3189182, + -0.02051 + ], + [ + 109.3187183, + -0.0205519 + ], + [ + 109.3185519, + -0.0205914 + ], + [ + 109.3184394, + -0.0206106 + ], + [ + 109.3182694, + -0.0206489 + ], + [ + 109.3182357, + -0.0206561 + ], + [ + 109.3181791, + -0.0206682 + ], + [ + 109.3179617, + -0.0207147 + ], + [ + 109.317763, + -0.0207617 + ], + [ + 109.3176248, + -0.0207781 + ], + [ + 109.3174853, + -0.0208105 + ], + [ + 109.3171796, + -0.0208902 + ], + [ + 109.316962, + -0.0209266 + ], + [ + 109.316482, + -0.0210609 + ], + [ + 109.3157455, + -0.0212669 + ], + [ + 109.3155593, + -0.0213173 + ], + [ + 109.3151667, + -0.0214235 + ], + [ + 109.3148155, + -0.021522 + ], + [ + 109.3144477, + -0.0216252 + ], + [ + 109.3143051, + -0.0216711 + ], + [ + 109.3141326, + -0.0217177 + ], + [ + 109.3139229, + -0.0217743 + ], + [ + 109.3135043, + -0.0218874 + ], + [ + 109.3133143, + -0.0219496 + ], + [ + 109.3131231, + -0.0220039 + ], + [ + 109.3128094, + -0.0220832 + ], + [ + 109.3125783, + -0.0221501 + ], + [ + 109.312261, + -0.0222467 + ], + [ + 109.3121716, + -0.0222739 + ], + [ + 109.3119971, + -0.0223381 + ], + [ + 109.3117407, + -0.022423 + ], + [ + 109.3114673, + -0.0225266 + ], + [ + 109.3111933, + -0.0226305 + ], + [ + 109.3109748, + -0.0227134 + ], + [ + 109.3107935, + -0.0227821 + ], + [ + 109.3104364, + -0.0229263 + ], + [ + 109.3101896, + -0.023026 + ], + [ + 109.3098423, + -0.0231662 + ], + [ + 109.3094917, + -0.0233016 + ], + [ + 109.3092945, + -0.0233777 + ], + [ + 109.3089553, + -0.0235135 + ], + [ + 109.3086448, + -0.0236423 + ], + [ + 109.3085345, + -0.0236934 + ] + ] + }, + "id": "way/342456062" + }, + { + "type": "Feature", + "properties": { + "@id": "way/342456063", + "highway": "primary", + "name": "Jalan Hassanudin", + "ref": "002.1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290382, + -0.0186554 + ], + [ + 109.329118, + -0.0186425 + ], + [ + 109.3294466, + -0.0185748 + ], + [ + 109.3298049, + -0.0185083 + ], + [ + 109.3304276, + -0.0183927 + ], + [ + 109.3309788, + -0.0182866 + ], + [ + 109.3312208, + -0.018229 + ], + [ + 109.3313365, + -0.0181968 + ], + [ + 109.3314891, + -0.0181431 + ], + [ + 109.3317311, + -0.0180291 + ], + [ + 109.3320537, + -0.0178286 + ], + [ + 109.3322079, + -0.0177073 + ], + [ + 109.3323013, + -0.0176239 + ] + ] + }, + "id": "way/342456063" + }, + { + "type": "Feature", + "properties": { + "@id": "way/342456064", + "highway": "primary", + "name": "Jalan Hassanudin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326054, + -0.0173804 + ], + [ + 109.3325663, + -0.0174109 + ] + ] + }, + "id": "way/342456064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/342456065", + "bridge": "yes", + "highway": "trunk", + "lanes": "1", + "layer": "1", + "oneway": "yes", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327943, + -0.0176052 + ], + [ + 109.3326575, + -0.0174926 + ] + ] + }, + "id": "way/342456065" + }, + { + "type": "Feature", + "properties": { + "@id": "way/343977775", + "highway": "residential", + "name": "Gang Nuri 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278001, + -0.0230527 + ], + [ + 109.3279273, + -0.0230482 + ], + [ + 109.3285833, + -0.0230251 + ], + [ + 109.329357, + -0.0229953 + ] + ] + }, + "id": "way/343977775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/343977776", + "access": "no", + "bicycle": "no", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060199, + -0.0193156 + ], + [ + 109.3062642, + -0.0199744 + ], + [ + 109.306285, + -0.0199912 + ], + [ + 109.3063041, + -0.0199965 + ], + [ + 109.3063635, + -0.0199658 + ], + [ + 109.3065117, + -0.0199057 + ] + ] + }, + "id": "way/343977776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/343977794", + "highway": "unclassified", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088406, + -0.0178467 + ], + [ + 109.3090977, + -0.0179531 + ] + ] + }, + "id": "way/343977794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/359844097", + "highway": "residential", + "motorcar": "destination", + "name": "Jalan Sawo Jalur 3B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3152739, + -0.015137 + ], + [ + 109.3152471, + -0.0151072 + ], + [ + 109.3152148, + -0.0150807 + ], + [ + 109.314244, + -0.0143702 + ], + [ + 109.3124998, + -0.0131764 + ] + ] + }, + "id": "way/359844097" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365949262", + "highway": "residential", + "name": "Jalan Margodadi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330712, + -0.0439085 + ], + [ + 109.3336379, + -0.0450537 + ], + [ + 109.333658, + -0.0450655 + ], + [ + 109.3336794, + -0.0450695 + ], + [ + 109.3337049, + -0.0450641 + ], + [ + 109.3337835, + -0.0450535 + ], + [ + 109.3338068, + -0.0450611 + ], + [ + 109.3338239, + -0.0450728 + ], + [ + 109.3338471, + -0.0450976 + ], + [ + 109.3341216, + -0.0455559 + ] + ] + }, + "id": "way/365949262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953001", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364613, + -0.0428173 + ], + [ + 109.3359042, + -0.0432455 + ] + ] + }, + "id": "way/365953001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953254", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335535, + -0.04593 + ], + [ + 109.3335292, + -0.0459368 + ], + [ + 109.3335061, + -0.0459348 + ], + [ + 109.3334893, + -0.0459281 + ], + [ + 109.3334777, + -0.045916 + ], + [ + 109.3333901, + -0.045794 + ], + [ + 109.3332953, + -0.0456477 + ], + [ + 109.3330753, + -0.0452641 + ], + [ + 109.3325229, + -0.0442202 + ] + ] + }, + "id": "way/365953254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953256", + "highway": "residential", + "name": "Akcaya III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335535, + -0.04593 + ], + [ + 109.3341216, + -0.0455559 + ], + [ + 109.3347416, + -0.045182 + ] + ] + }, + "id": "way/365953256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953391", + "highway": "residential", + "name": "Akcaya II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350983, + -0.0457709 + ], + [ + 109.3350229, + -0.045637 + ], + [ + 109.3347416, + -0.045182 + ], + [ + 109.3344155, + -0.0445675 + ] + ] + }, + "id": "way/365953391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342348, + -0.0445424 + ], + [ + 109.3342762, + -0.0445682 + ], + [ + 109.3343129, + -0.0445833 + ], + [ + 109.3343424, + -0.0445866 + ], + [ + 109.3343818, + -0.0445824 + ], + [ + 109.3344155, + -0.0445675 + ] + ] + }, + "id": "way/365953392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953393", + "highway": "residential", + "name": "Akcaya I", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343507, + -0.0431798 + ], + [ + 109.3347186, + -0.043758 + ], + [ + 109.3350009, + -0.0442114 + ], + [ + 109.3352854, + -0.0446476 + ] + ] + }, + "id": "way/365953393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953394", + "highway": "residential", + "name": "Jalan Syuhada" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352854, + -0.0446476 + ], + [ + 109.3352914, + -0.0446539 + ], + [ + 109.3353027, + -0.0446593 + ], + [ + 109.3353198, + -0.0446601 + ], + [ + 109.3353423, + -0.0446567 + ], + [ + 109.3354024, + -0.0446299 + ], + [ + 109.3354953, + -0.0445683 + ], + [ + 109.3355747, + -0.0444952 + ], + [ + 109.335615, + -0.0444593 + ], + [ + 109.3362557, + -0.043896 + ], + [ + 109.3362879, + -0.0438601 + ], + [ + 109.3363026, + -0.0438417 + ], + [ + 109.3363076, + -0.0438176 + ], + [ + 109.3363073, + -0.0437944 + ], + [ + 109.3363003, + -0.043771 + ], + [ + 109.3362755, + -0.0437311 + ], + [ + 109.3362403, + -0.0436855 + ], + [ + 109.3361682, + -0.0435953 + ], + [ + 109.3359042, + -0.0432455 + ], + [ + 109.3353175, + -0.0425556 + ] + ] + }, + "id": "way/365953394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953479", + "highway": "unclassified", + "name": "Jalan Mujahidin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353561, + -0.0413469 + ], + [ + 109.3360162, + -0.0421767 + ], + [ + 109.3361948, + -0.0424012 + ], + [ + 109.3364613, + -0.0428173 + ], + [ + 109.3367777, + -0.043236 + ], + [ + 109.3373453, + -0.0439638 + ] + ] + }, + "id": "way/365953479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953608", + "highway": "residential", + "name": "Jalan Ahmad Sood", + "oneway:conditional": "yes @ (06:00-07:00, 10:30-11:00)" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334752, + -0.040664 + ], + [ + 109.3339532, + -0.0403105 + ], + [ + 109.3342056, + -0.0401344 + ], + [ + 109.3344363, + -0.0399734 + ], + [ + 109.3346204, + -0.0398262 + ], + [ + 109.3349208, + -0.0395872 + ], + [ + 109.3356174, + -0.0390387 + ], + [ + 109.3356637, + -0.0390023 + ] + ] + }, + "id": "way/365953608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/365953609", + "highway": "residential", + "name": "Jalan M. Hambal" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334496, + -0.0384078 + ], + [ + 109.3337829, + -0.038933 + ], + [ + 109.3338171, + -0.0389868 + ], + [ + 109.3340288, + -0.0393204 + ], + [ + 109.3341399, + -0.0394955 + ], + [ + 109.3344363, + -0.0399734 + ] + ] + }, + "id": "way/365953609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367294322", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343419, + -0.0464631 + ], + [ + 109.3345358, + -0.0466038 + ], + [ + 109.3347257, + -0.0466972 + ], + [ + 109.3350462, + -0.0468126 + ], + [ + 109.3354128, + -0.0469194 + ], + [ + 109.3357202, + -0.0470526 + ], + [ + 109.3358691, + -0.0470996 + ], + [ + 109.3360622, + -0.0471324 + ], + [ + 109.3362656, + -0.0471492 + ] + ] + }, + "id": "way/367294322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367294325", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354128, + -0.0469194 + ], + [ + 109.3355379, + -0.0468736 + ], + [ + 109.3358845, + -0.0467435 + ], + [ + 109.3361185, + -0.0466765 + ], + [ + 109.3361648, + -0.0466714 + ], + [ + 109.3362114, + -0.0466778 + ], + [ + 109.3362755, + -0.0467029 + ] + ] + }, + "id": "way/367294325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367294326", + "access": "yes", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362164, + -0.0482781 + ], + [ + 109.3362271, + -0.0479681 + ], + [ + 109.3362656, + -0.0471492 + ], + [ + 109.3362755, + -0.0467029 + ], + [ + 109.3362761, + -0.0466287 + ], + [ + 109.3362881, + -0.046075 + ], + [ + 109.3363127, + -0.0456521 + ], + [ + 109.3363252, + -0.0450938 + ], + [ + 109.3363202, + -0.0450552 + ], + [ + 109.3363162, + -0.0450318 + ], + [ + 109.3363055, + -0.04499 + ] + ] + }, + "id": "way/367294326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367294329", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366689, + -0.0489085 + ], + [ + 109.3366046, + -0.0487525 + ], + [ + 109.3365001, + -0.0484998 + ], + [ + 109.3364009, + -0.0483294 + ], + [ + 109.3363807, + -0.0483012 + ], + [ + 109.3363581, + -0.0482601 + ] + ] + }, + "id": "way/367294329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367294330", + "access": "yes", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33645, + -0.0456522 + ], + [ + 109.3364357, + -0.0462536 + ], + [ + 109.3364123, + -0.0467573 + ], + [ + 109.336421, + -0.0469037 + ], + [ + 109.3364223, + -0.0471375 + ], + [ + 109.3363801, + -0.0479431 + ], + [ + 109.3363599, + -0.0481557 + ], + [ + 109.3363581, + -0.0482601 + ] + ] + }, + "id": "way/367294330" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367294332", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362656, + -0.0471492 + ], + [ + 109.3364223, + -0.0471375 + ] + ] + }, + "id": "way/367294332" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367294333", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364223, + -0.0471375 + ], + [ + 109.3364863, + -0.0470996 + ], + [ + 109.3365169, + -0.0470714 + ], + [ + 109.33654, + -0.0470409 + ], + [ + 109.3365742, + -0.0469658 + ], + [ + 109.3366313, + -0.0468472 + ] + ] + }, + "id": "way/367294333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367294334", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360554, + -0.049249 + ], + [ + 109.3360129, + -0.0491622 + ], + [ + 109.3359706, + -0.0490896 + ], + [ + 109.3358701, + -0.0489614 + ] + ] + }, + "id": "way/367294334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367297161", + "highway": "residential", + "name": "Jalan Tanjung Pura Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400751, + -0.0234407 + ], + [ + 109.3405308, + -0.023012 + ], + [ + 109.3408844, + -0.0226902 + ], + [ + 109.3412734, + -0.0223516 + ] + ] + }, + "id": "way/367297161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367297162", + "highway": "service", + "name": "Jalan Batanghari Barat", + "name:id": "Jalan Batanghari Barat", + "name:ms": "Jalan Batanghari Barat", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433944, + -0.0246723 + ], + [ + 109.3422993, + -0.0254576 + ], + [ + 109.3419908, + -0.0256788 + ] + ] + }, + "id": "way/367297162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367297163", + "highway": "service", + "motor_vehicle": "no", + "name": "Jalan Batanghari Timur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434556, + -0.024753 + ], + [ + 109.3420671, + -0.025779 + ] + ] + }, + "id": "way/367297163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367297164", + "highway": "residential", + "name": "Jalan Mahakam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448519, + -0.0271724 + ], + [ + 109.3444779, + -0.0273536 + ], + [ + 109.3440809, + -0.0275614 + ], + [ + 109.3438586, + -0.0276588 + ], + [ + 109.3437884, + -0.0276914 + ], + [ + 109.3434048, + -0.0278695 + ] + ] + }, + "id": "way/367297164" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367297165", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451355, + -0.0277563 + ], + [ + 109.3451784, + -0.0278011 + ], + [ + 109.3452381, + -0.0278232 + ], + [ + 109.345279, + -0.0278306 + ], + [ + 109.3453051, + -0.0278467 + ], + [ + 109.3455117, + -0.0282868 + ], + [ + 109.3455554, + -0.0284179 + ], + [ + 109.3456933, + -0.028832 + ], + [ + 109.3457585, + -0.0289841 + ], + [ + 109.345808, + -0.0290994 + ], + [ + 109.3458647, + -0.029234 + ], + [ + 109.3459762, + -0.0294786 + ] + ] + }, + "id": "way/367297165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/367297166", + "highway": "residential", + "name": "Jalan Barito" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459762, + -0.0294786 + ], + [ + 109.3459585, + -0.02956 + ], + [ + 109.3459108, + -0.0296166 + ], + [ + 109.3448264, + -0.0302268 + ] + ] + }, + "id": "way/367297166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/407788965", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429649, + -0.0271554 + ], + [ + 109.3428938, + -0.0272191 + ] + ] + }, + "id": "way/407788965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/412032060", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153623, + -0.0851051 + ], + [ + 109.3162166, + -0.0851561 + ], + [ + 109.3170172, + -0.0852111 + ], + [ + 109.3177843, + -0.0852406 + ], + [ + 109.3194003, + -0.0852097 + ], + [ + 109.3197034, + -0.0851869 + ], + [ + 109.3199408, + -0.085148 + ], + [ + 109.3202097, + -0.0850911 + ], + [ + 109.3203941, + -0.0850381 + ], + [ + 109.3204657, + -0.0850051 + ] + ] + }, + "id": "way/412032060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/412032062", + "access": "destination", + "highway": "residential", + "smoothness": "horrible", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33062, + -0.070581 + ], + [ + 109.3305892, + -0.0706829 + ], + [ + 109.3305825, + -0.0707406 + ], + [ + 109.3306227, + -0.0708023 + ], + [ + 109.3307763, + -0.0709304 + ], + [ + 109.3310364, + -0.0711356 + ], + [ + 109.3313777, + -0.0714071 + ], + [ + 109.3315655, + -0.0715586 + ], + [ + 109.331886, + -0.0718483 + ], + [ + 109.3321972, + -0.0721152 + ], + [ + 109.3324063, + -0.0723022 + ], + [ + 109.3328202, + -0.0726624 + ], + [ + 109.3330414, + -0.0728468 + ], + [ + 109.333321, + -0.0730802 + ], + [ + 109.3336053, + -0.0733369 + ], + [ + 109.3331406, + -0.0737936 + ], + [ + 109.3326236, + -0.074267 + ], + [ + 109.3321415, + -0.0747417 + ], + [ + 109.3316822, + -0.0751608 + ], + [ + 109.3313342, + -0.0755088 + ], + [ + 109.331017, + -0.075873 + ], + [ + 109.330781, + -0.0761613 + ], + [ + 109.3305516, + -0.0764362 + ], + [ + 109.3301868, + -0.0768667 + ], + [ + 109.3298087, + -0.0773415 + ], + [ + 109.3296504, + -0.0775172 + ], + [ + 109.3294365, + -0.0777847 + ], + [ + 109.329238, + -0.0780851 + ], + [ + 109.3286178, + -0.0791144 + ], + [ + 109.3284394, + -0.0793934 + ], + [ + 109.3281832, + -0.0798413 + ], + [ + 109.3280987, + -0.0799808 + ], + [ + 109.3279989, + -0.0801826 + ], + [ + 109.3279418, + -0.0803268 + ], + [ + 109.3278922, + -0.0804729 + ], + [ + 109.327801, + -0.0807707 + ], + [ + 109.3277286, + -0.0809799 + ], + [ + 109.3276347, + -0.0812588 + ], + [ + 109.3275771, + -0.0814211 + ], + [ + 109.3275261, + -0.0815311 + ], + [ + 109.3274644, + -0.081633 + ], + [ + 109.3272753, + -0.0819227 + ], + [ + 109.3270138, + -0.0823438 + ], + [ + 109.3268891, + -0.0825329 + ], + [ + 109.326704, + -0.0828105 + ], + [ + 109.3264948, + -0.0830841 + ], + [ + 109.3262695, + -0.0833858 + ], + [ + 109.3261085, + -0.0836205 + ], + [ + 109.3259221, + -0.0838794 + ], + [ + 109.3257733, + -0.0840765 + ], + [ + 109.3256231, + -0.0842736 + ], + [ + 109.3253133, + -0.0847175 + ], + [ + 109.3250453, + -0.0851032 + ], + [ + 109.3248305, + -0.085423 + ], + [ + 109.3246266, + -0.0857234 + ], + [ + 109.3244027, + -0.0860372 + ], + [ + 109.3242028, + -0.0863188 + ], + [ + 109.3234203, + -0.0874567 + ], + [ + 109.3234089, + -0.0874829 + ], + [ + 109.3234062, + -0.087507 + ], + [ + 109.3234216, + -0.0875164 + ], + [ + 109.3235115, + -0.0875399 + ], + [ + 109.3237066, + -0.0875707 + ], + [ + 109.3240841, + -0.0876291 + ], + [ + 109.3247642, + -0.0877239 + ], + [ + 109.325092, + -0.0877803 + ] + ] + }, + "id": "way/412032062" + }, + { + "type": "Feature", + "properties": { + "@id": "way/440112562", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3814359, + -0.0533368 + ], + [ + 109.3812407, + -0.0530863 + ] + ] + }, + "id": "way/440112562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/440112564", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3835726, + -0.0460376 + ], + [ + 109.3827675, + -0.0465954 + ], + [ + 109.381947, + -0.0471832 + ], + [ + 109.3810516, + -0.0478506 + ] + ] + }, + "id": "way/440112564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/440112567", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.383499, + -0.0513169 + ], + [ + 109.383367, + -0.0511041 + ], + [ + 109.383153, + -0.0507927 + ], + [ + 109.3829522, + -0.0504868 + ], + [ + 109.3828176, + -0.0502997 + ], + [ + 109.3826809, + -0.0501054 + ], + [ + 109.3824655, + -0.0498181 + ], + [ + 109.3822489, + -0.0495123 + ], + [ + 109.3821005, + -0.0493047 + ], + [ + 109.3817967, + -0.0488975 + ], + [ + 109.3816096, + -0.0486294 + ], + [ + 109.3815906, + -0.0486072 + ], + [ + 109.3814355, + -0.0483836 + ], + [ + 109.3813466, + -0.0482717 + ], + [ + 109.3812333, + -0.0481032 + ], + [ + 109.3810516, + -0.0478506 + ], + [ + 109.3808792, + -0.0476152 + ], + [ + 109.380859, + -0.0475832 + ], + [ + 109.3807195, + -0.0473848 + ], + [ + 109.3806695, + -0.0473148 + ], + [ + 109.3805567, + -0.0471654 + ] + ] + }, + "id": "way/440112567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/440112568", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.383499, + -0.0513169 + ], + [ + 109.383417, + -0.0513797 + ], + [ + 109.3823287, + -0.052212 + ], + [ + 109.3817087, + -0.0527108 + ], + [ + 109.3812407, + -0.0530863 + ], + [ + 109.3809302, + -0.0533317 + ], + [ + 109.38054, + -0.0536455 + ], + [ + 109.3802154, + -0.0539117 + ], + [ + 109.3801577, + -0.0539734 + ], + [ + 109.3801564, + -0.0540022 + ], + [ + 109.3801597, + -0.0540405 + ], + [ + 109.3803325, + -0.0542444 + ] + ] + }, + "id": "way/440112568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/444053545", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039937, + -0.0054388 + ], + [ + 109.3039957, + -0.0054288 + ], + [ + 109.3040055, + -0.0054214 + ], + [ + 109.3042564, + -0.005428 + ], + [ + 109.304504, + -0.0054346 + ], + [ + 109.3047573, + -0.0054413 + ] + ] + }, + "id": "way/444053545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/444059205", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3218286, + -0.042675 + ], + [ + 109.3216051, + -0.0428604 + ], + [ + 109.3215246, + -0.0429388 + ], + [ + 109.3214596, + -0.0430018 + ], + [ + 109.3214073, + -0.0430521 + ], + [ + 109.3213617, + -0.0430924 + ], + [ + 109.3210083, + -0.0433733 + ] + ] + }, + "id": "way/444059205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/446588476", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067391, + -0.0205172 + ], + [ + 109.3065412, + -0.0205994 + ], + [ + 109.3065334, + -0.0206 + ], + [ + 109.3065257, + -0.020598 + ], + [ + 109.3065014, + -0.0205497 + ], + [ + 109.3064823, + -0.0204988 + ], + [ + 109.3064331, + -0.0203568 + ], + [ + 109.3064216, + -0.0203208 + ], + [ + 109.3063889, + -0.0202272 + ], + [ + 109.3063896, + -0.0202128 + ], + [ + 109.3063958, + -0.0201992 + ], + [ + 109.3064231, + -0.0201695 + ], + [ + 109.3064335, + -0.0201489 + ], + [ + 109.3064325, + -0.0201333 + ], + [ + 109.3063635, + -0.0199658 + ] + ] + }, + "id": "way/446588476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/465834519", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3036399, + -0.0238196 + ], + [ + 109.303455, + -0.0233991 + ], + [ + 109.3032016, + -0.022778 + ], + [ + 109.3029639, + -0.0222317 + ], + [ + 109.3027552, + -0.0217625 + ], + [ + 109.3027153, + -0.0216983 + ], + [ + 109.3025816, + -0.0214382 + ], + [ + 109.302332, + -0.020896 + ] + ] + }, + "id": "way/465834519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/465834520", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3000589, + -0.0219766 + ], + [ + 109.2997246, + -0.0213703 + ], + [ + 109.2997146, + -0.021363 + ], + [ + 109.2997035, + -0.0213633 + ], + [ + 109.2995993, + -0.0214067 + ], + [ + 109.2995849, + -0.021407 + ], + [ + 109.2995751, + -0.0214007 + ], + [ + 109.2991175, + -0.0205483 + ] + ] + }, + "id": "way/465834520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/465834521", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993394, + -0.0223126 + ], + [ + 109.298947, + -0.0215804 + ], + [ + 109.2988326, + -0.0213609 + ], + [ + 109.2985594, + -0.0208075 + ] + ] + }, + "id": "way/465834521" + }, + { + "type": "Feature", + "properties": { + "@id": "way/489639287", + "highway": "residential", + "name": "Gang Bina Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096639, + -0.0642283 + ], + [ + 109.3097431, + -0.0641434 + ], + [ + 109.3100751, + -0.0637835 + ], + [ + 109.3101386, + -0.0637147 + ], + [ + 109.3103995, + -0.0634319 + ], + [ + 109.3104529, + -0.0633716 + ], + [ + 109.3108461, + -0.062928 + ], + [ + 109.311244, + -0.0625091 + ] + ] + }, + "id": "way/489639287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/489639288", + "highway": "residential", + "name": "Gang Asia Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131737, + -0.0639156 + ], + [ + 109.3130635, + -0.0641056 + ], + [ + 109.3128661, + -0.0644375 + ], + [ + 109.3125654, + -0.0650389 + ], + [ + 109.3125466, + -0.0650814 + ], + [ + 109.3123321, + -0.0655652 + ] + ] + }, + "id": "way/489639288" + }, + { + "type": "Feature", + "properties": { + "@id": "way/489639289", + "highway": "residential", + "name": "Jalan Bina Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096639, + -0.0642283 + ], + [ + 109.309433, + -0.0645018 + ], + [ + 109.3093485, + -0.064586 + ], + [ + 109.3088139, + -0.0651999 + ], + [ + 109.3084566, + -0.0655754 + ], + [ + 109.3083191, + -0.065726 + ], + [ + 109.3081547, + -0.065902 + ], + [ + 109.3079857, + -0.0660887 + ], + [ + 109.3079277, + -0.0661527 + ], + [ + 109.3077667, + -0.0663231 + ], + [ + 109.3075996, + -0.0664945 + ], + [ + 109.3074849, + -0.0666311 + ], + [ + 109.3073411, + -0.0667924 + ], + [ + 109.3072208, + -0.0669221 + ], + [ + 109.307053, + -0.067075 + ], + [ + 109.3066567, + -0.0667673 + ] + ] + }, + "id": "way/489639289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/489639290", + "highway": "residential", + "name": "Gang Ilahi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084453, + -0.0635028 + ], + [ + 109.3081842, + -0.0639584 + ], + [ + 109.3080063, + -0.0642416 + ], + [ + 109.3078784, + -0.0644631 + ], + [ + 109.3078561, + -0.0645017 + ], + [ + 109.3076657, + -0.0648236 + ], + [ + 109.3074363, + -0.0652072 + ] + ] + }, + "id": "way/489639290" + }, + { + "type": "Feature", + "properties": { + "@id": "way/489639291", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3045218, + -0.0637514 + ], + [ + 109.3051256, + -0.0626792 + ] + ] + }, + "id": "way/489639291" + }, + { + "type": "Feature", + "properties": { + "@id": "way/489639292", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059555, + -0.0631675 + ], + [ + 109.3058049, + -0.0634282 + ], + [ + 109.3052953, + -0.0643059 + ] + ] + }, + "id": "way/489639292" + }, + { + "type": "Feature", + "properties": { + "@id": "way/514442836", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333699, + -0.0187857 + ], + [ + 109.3335801, + -0.0190157 + ], + [ + 109.3336897, + -0.0191021 + ], + [ + 109.3338103, + -0.0192001 + ], + [ + 109.333816, + -0.0192036 + ], + [ + 109.3338237, + -0.0192052 + ], + [ + 109.3338312, + -0.0192045 + ], + [ + 109.3338373, + -0.0192027 + ], + [ + 109.3338435, + -0.0191999 + ], + [ + 109.3339819, + -0.0190567 + ], + [ + 109.3341658, + -0.0191937 + ] + ] + }, + "id": "way/514442836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/514442837", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335971, + -0.0192151 + ], + [ + 109.3335625, + -0.0192607 + ], + [ + 109.3334858, + -0.0193532 + ], + [ + 109.3334082, + -0.0194693 + ], + [ + 109.3333335, + -0.0195662 + ], + [ + 109.33325, + -0.0196674 + ], + [ + 109.3331346, + -0.0198163 + ], + [ + 109.3330635, + -0.019902 + ] + ] + }, + "id": "way/514442837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/514442838", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335971, + -0.0192151 + ], + [ + 109.3336274, + -0.0191775 + ], + [ + 109.3336897, + -0.0191021 + ] + ] + }, + "id": "way/514442838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/514442839", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341356, + -0.0188578 + ], + [ + 109.3339819, + -0.0190567 + ], + [ + 109.3337225, + -0.0188492 + ], + [ + 109.3335801, + -0.0190157 + ] + ] + }, + "id": "way/514442839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/514442840", + "highway": "living_street", + "motorcar": "no", + "motorcycle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339483, + -0.0185893 + ], + [ + 109.3338958, + -0.018646 + ], + [ + 109.3338127, + -0.0187454 + ], + [ + 109.3337225, + -0.0188492 + ] + ] + }, + "id": "way/514442840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/537079340", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Delta", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2932066, + -0.0447604 + ], + [ + 109.2931389, + -0.0448239 + ] + ] + }, + "id": "way/537079340" + }, + { + "type": "Feature", + "properties": { + "@id": "way/537992866", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061961, + -0.0542615 + ], + [ + 109.3063864, + -0.0543926 + ], + [ + 109.3071335, + -0.0549165 + ], + [ + 109.3069144, + -0.0552263 + ] + ] + }, + "id": "way/537992866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/537993432", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303385, + -0.0485519 + ], + [ + 109.3035674, + -0.048243 + ], + [ + 109.3038439, + -0.0477809 + ] + ] + }, + "id": "way/537993432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/537993445", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074043, + -0.0465817 + ], + [ + 109.3079573, + -0.045962 + ] + ] + }, + "id": "way/537993445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/538143457", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285921, + 0.0247526 + ], + [ + 109.3285869, + 0.0248725 + ], + [ + 109.3284825, + 0.0275582 + ], + [ + 109.3284273, + 0.0289786 + ], + [ + 109.3283629, + 0.0310868 + ], + [ + 109.3283415, + 0.0313845 + ], + [ + 109.3283234, + 0.0318016 + ], + [ + 109.328253, + 0.0323662 + ], + [ + 109.3281886, + 0.0329804 + ], + [ + 109.3281, + 0.0337355 + ], + [ + 109.3278735, + 0.035259 + ], + [ + 109.3278211, + 0.0356466 + ], + [ + 109.3277648, + 0.0360435 + ] + ] + }, + "id": "way/538143457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/538143460", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3269845, + 0.0245801 + ], + [ + 109.3269812, + 0.0248366 + ], + [ + 109.3269124, + 0.027489 + ] + ] + }, + "id": "way/538143460" + }, + { + "type": "Feature", + "properties": { + "@id": "way/538399767", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071335, + -0.0549165 + ], + [ + 109.3072619, + -0.0547458 + ] + ] + }, + "id": "way/538399767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/538399768", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061663, + -0.0546889 + ], + [ + 109.3063864, + -0.0543926 + ] + ] + }, + "id": "way/538399768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/543636860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2790565, + -0.0337358 + ], + [ + 109.2792986, + -0.0334471 + ], + [ + 109.2793501, + -0.0333893 + ], + [ + 109.2796685, + -0.0329096 + ], + [ + 109.2800255, + -0.0324225 + ], + [ + 109.2800667, + -0.0323711 + ], + [ + 109.2803152, + -0.0319988 + ], + [ + 109.2805044, + -0.0317031 + ], + [ + 109.2807362, + -0.0313408 + ] + ] + }, + "id": "way/543636860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/543636861", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2800667, + -0.0323711 + ], + [ + 109.2810149, + -0.0337404 + ], + [ + 109.2811306, + -0.0338998 + ], + [ + 109.2812312, + -0.0340372 + ], + [ + 109.2813331, + -0.0341713 + ], + [ + 109.2814149, + -0.0342934 + ], + [ + 109.2815074, + -0.0344342 + ], + [ + 109.2815343, + -0.0344865 + ], + [ + 109.2815758, + -0.0345509 + ], + [ + 109.2816725, + -0.0346837 + ], + [ + 109.2817435, + -0.0347789 + ], + [ + 109.2819151, + -0.0350055 + ], + [ + 109.282009, + -0.0351477 + ], + [ + 109.2820828, + -0.0352482 + ], + [ + 109.2821592, + -0.0353488 + ], + [ + 109.2823081, + -0.035558 + ], + [ + 109.2823992, + -0.0356935 + ], + [ + 109.282457, + -0.0357914 + ], + [ + 109.2826205, + -0.0360154 + ], + [ + 109.2826992, + -0.0361277 + ] + ] + }, + "id": "way/543636861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/543636862", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.279999, + -0.0362133 + ], + [ + 109.2810606, + -0.0377401 + ] + ] + }, + "id": "way/543636862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/543636864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2798981, + -0.0388518 + ], + [ + 109.2815651, + -0.0416721 + ], + [ + 109.2815879, + -0.0416876 + ], + [ + 109.28161, + -0.0416896 + ], + [ + 109.2816972, + -0.0416446 + ], + [ + 109.2817113, + -0.0416433 + ], + [ + 109.2817267, + -0.0416507 + ], + [ + 109.2820422, + -0.0421732 + ] + ] + }, + "id": "way/543636864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549259925", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3768607, + -0.006417 + ], + [ + 109.3770618, + -0.0063294 + ] + ] + }, + "id": "way/549259925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688976", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443285, + -0.096256 + ], + [ + 109.3444723, + -0.0963342 + ] + ] + }, + "id": "way/549688976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688979", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438441, + -0.096972 + ], + [ + 109.3426055, + -0.0962939 + ], + [ + 109.3419765, + -0.095956 + ], + [ + 109.3413859, + -0.0956285 + ], + [ + 109.3410659, + -0.0954598 + ] + ] + }, + "id": "way/549688979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688980", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553645, + -0.079366 + ], + [ + 109.3538654, + -0.0784479 + ], + [ + 109.3523984, + -0.0775957 + ] + ] + }, + "id": "way/549688980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688982", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36149, + -0.069466 + ], + [ + 109.3615614, + -0.0695504 + ] + ] + }, + "id": "way/549688982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688988", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614878, + -0.0696365 + ], + [ + 109.3614355, + -0.0695822 + ] + ] + }, + "id": "way/549688988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688991", + "highway": "residential", + "name": "Villa Gading Raya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360157, + -0.0713396 + ], + [ + 109.3602224, + -0.0713916 + ] + ] + }, + "id": "way/549688991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688993", + "highway": "residential", + "maxspeed": "20", + "name": "Komplek Mitra Indah Utama I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599994, + -0.0717294 + ], + [ + 109.3599351, + -0.0716903 + ] + ] + }, + "id": "way/549688993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688997", + "highway": "residential", + "name": "Villa Kelapa Gading Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563145, + -0.0703741 + ], + [ + 109.3594478, + -0.0725806 + ] + ] + }, + "id": "way/549688997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688998", + "highway": "residential", + "motor_vehicle": "permissive", + "name": "Komplek Permata Agung" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591733, + -0.0728965 + ], + [ + 109.359005, + -0.0727764 + ], + [ + 109.3561685, + -0.0707577 + ] + ] + }, + "id": "way/549688998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549688999", + "highway": "residential", + "name": "Komplek Pondok Agung Utama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3590186, + -0.0732927 + ], + [ + 109.3589495, + -0.0732437 + ] + ] + }, + "id": "way/549688999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689001", + "highway": "residential", + "name": "Gang Sejahtera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585845, + -0.0739962 + ], + [ + 109.355452, + -0.0717457 + ] + ] + }, + "id": "way/549689001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689002", + "highway": "residential", + "motor_vehicle": "private", + "name": "Komplek Anggrek Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583647, + -0.0743418 + ], + [ + 109.3582162, + -0.0742399 + ], + [ + 109.3551529, + -0.072138 + ] + ] + }, + "id": "way/549689002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689003", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3581462, + -0.0746846 + ], + [ + 109.3581774, + -0.0747065 + ] + ] + }, + "id": "way/549689003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689004", + "highway": "residential", + "name": "Komplek Villa Mutiara Mas 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578394, + -0.0750013 + ], + [ + 109.357186, + -0.0745426 + ], + [ + 109.3565261, + -0.0740893 + ], + [ + 109.3551663, + -0.0731711 + ], + [ + 109.3548096, + -0.0729305 + ] + ] + }, + "id": "way/549689004" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689007", + "highway": "residential", + "name": "Komplek Bali Mas 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571772, + -0.0760718 + ], + [ + 109.3572403, + -0.0761094 + ] + ] + }, + "id": "way/549689007" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689011", + "highway": "residential", + "name": "Vila Losari Asri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555625, + -0.0790133 + ], + [ + 109.3555238, + -0.0789882 + ], + [ + 109.3548913, + -0.078578 + ], + [ + 109.3542436, + -0.0781864 + ], + [ + 109.3529511, + -0.0774197 + ], + [ + 109.3525355, + -0.0771876 + ] + ] + }, + "id": "way/549689011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689012", + "access": "no", + "bridge": "yes", + "highway": "tertiary_link", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561016, + -0.0782021 + ], + [ + 109.356187, + -0.0782489 + ] + ] + }, + "id": "way/549689012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689014", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475327, + -0.0913039 + ], + [ + 109.3476124, + -0.0913426 + ] + ] + }, + "id": "way/549689014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689016", + "highway": "residential", + "name": "Vila Gading Mansion" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483191, + -0.0900394 + ], + [ + 109.3482862, + -0.0900166 + ], + [ + 109.3468038, + -0.0891935 + ], + [ + 109.3453846, + -0.088503 + ] + ] + }, + "id": "way/549689016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689017", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Dinas Perhubungan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477333, + -0.090957 + ], + [ + 109.3478404, + -0.0910171 + ] + ] + }, + "id": "way/549689017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689019", + "highway": "residential", + "name": "Gading Premier" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544462, + -0.0807683 + ], + [ + 109.3544274, + -0.0807533 + ], + [ + 109.3543711, + -0.0807121 + ] + ] + }, + "id": "way/549689019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689022", + "highway": "residential", + "name": "Mediterania Palace" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532176, + -0.0824205 + ], + [ + 109.3526825, + -0.0820286 + ], + [ + 109.352197, + -0.0816893 + ], + [ + 109.3512856, + -0.0810268 + ], + [ + 109.3508559, + -0.0807157 + ] + ] + }, + "id": "way/549689022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689024", + "highway": "residential", + "name": "Gading Victoria" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520346, + -0.0826689 + ], + [ + 109.3514283, + -0.0822305 + ], + [ + 109.3512238, + -0.0820903 + ], + [ + 109.350558, + -0.081631 + ], + [ + 109.3502144, + -0.0813938 + ] + ] + }, + "id": "way/549689024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689025", + "highway": "residential", + "name": "Royal Serdam 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525271, + -0.0835765 + ], + [ + 109.3524546, + -0.0835189 + ], + [ + 109.349982, + -0.0818727 + ] + ] + }, + "id": "way/549689025" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689028", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369032, + -0.0628862 + ], + [ + 109.3368522, + -0.0628387 + ] + ] + }, + "id": "way/549689028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689029", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351901, + -0.0714113 + ], + [ + 109.3518543, + -0.0713814 + ] + ] + }, + "id": "way/549689029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689030", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542341, + -0.0672028 + ], + [ + 109.3541551, + -0.0671564 + ] + ] + }, + "id": "way/549689030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689031", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531187, + -0.0642209 + ], + [ + 109.3531344, + -0.0642315 + ], + [ + 109.3531954, + -0.0642784 + ], + [ + 109.3544534, + -0.0652684 + ], + [ + 109.354944, + -0.0656669 + ], + [ + 109.3549737, + -0.0656911 + ] + ] + }, + "id": "way/549689031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689032", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546358, + -0.0664552 + ], + [ + 109.3545453, + -0.0663979 + ] + ] + }, + "id": "way/549689032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689033", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548261, + -0.0661168 + ], + [ + 109.3547739, + -0.0660761 + ] + ] + }, + "id": "way/549689033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689034", + "highway": "residential", + "name": "Komplek Acisa Asri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536572, + -0.0677703 + ], + [ + 109.3523432, + -0.0666502 + ], + [ + 109.3510377, + -0.0654767 + ], + [ + 109.3510222, + -0.0654566 + ], + [ + 109.3510202, + -0.0654385 + ], + [ + 109.3511225, + -0.0652019 + ], + [ + 109.3513032, + -0.0649332 + ], + [ + 109.3513059, + -0.0649202 + ], + [ + 109.3513042, + -0.0649091 + ], + [ + 109.3513009, + -0.0649004 + ] + ] + }, + "id": "way/549689034" + }, + { + "type": "Feature", + "properties": { + "@id": "way/549689035", + "highway": "residential", + "name": "Gang Sejahtera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504373, + -0.0660952 + ], + [ + 109.3492627, + -0.0649242 + ], + [ + 109.3480039, + -0.0636629 + ] + ] + }, + "id": "way/549689035" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551852735", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496639, + -0.0612746 + ], + [ + 109.3497251, + -0.0613158 + ] + ] + }, + "id": "way/551852735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551852736", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498029, + -0.0610922 + ], + [ + 109.3498535, + -0.061132 + ] + ] + }, + "id": "way/551852736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551852737", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349322, + -0.0617749 + ], + [ + 109.3493852, + -0.0618154 + ] + ] + }, + "id": "way/551852737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551852738", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491794, + -0.0620113 + ], + [ + 109.3492287, + -0.0620438 + ] + ] + }, + "id": "way/551852738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551852740", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452058, + -0.0533089 + ], + [ + 109.3452764, + -0.0533625 + ] + ] + }, + "id": "way/551852740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551855774", + "highway": "residential", + "name": "Abdurrahman Saleh 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569675, + -0.0625132 + ], + [ + 109.3569278, + -0.0624827 + ] + ] + }, + "id": "way/551855774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551855775", + "highway": "residential", + "name": "Gang Cakra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586036, + -0.0596574 + ], + [ + 109.3564916, + -0.0574269 + ] + ] + }, + "id": "way/551855775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551855776", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518399, + -0.0581176 + ], + [ + 109.3518966, + -0.0581798 + ] + ] + }, + "id": "way/551855776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551855777", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "name:id": "Jalan Ahmad Yani", + "name:ms": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497337, + -0.055572 + ], + [ + 109.349805, + -0.0556385 + ], + [ + 109.3498159, + -0.0556487 + ], + [ + 109.350138, + -0.0560619 + ], + [ + 109.3503795, + -0.0563633 + ], + [ + 109.3506851, + -0.0567511 + ], + [ + 109.3512016, + -0.0573559 + ], + [ + 109.3516127, + -0.0578464 + ], + [ + 109.3518399, + -0.0581176 + ] + ] + }, + "id": "way/551855777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551855778", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518185, + -0.0582936 + ], + [ + 109.3517802, + -0.0582447 + ], + [ + 109.3517405, + -0.058194 + ] + ] + }, + "id": "way/551855778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551855779", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "name:id": "Jalan Ahmad Yani", + "name:ms": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3517405, + -0.058194 + ], + [ + 109.3515104, + -0.0579116 + ], + [ + 109.3514953, + -0.0578934 + ], + [ + 109.3513097, + -0.0576698 + ], + [ + 109.3511122, + -0.0574318 + ], + [ + 109.3505946, + -0.0568256 + ], + [ + 109.3500474, + -0.0561363 + ], + [ + 109.3498155, + -0.0558627 + ], + [ + 109.3497336, + -0.0557661 + ], + [ + 109.3496952, + -0.0557326 + ], + [ + 109.3496088, + -0.0556529 + ] + ] + }, + "id": "way/551855779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551855780", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552653, + -0.0529682 + ], + [ + 109.3553057, + -0.0529972 + ] + ] + }, + "id": "way/551855780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551865868", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Bahagia", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240302, + -0.0316246 + ], + [ + 109.324052, + -0.0316662 + ] + ] + }, + "id": "way/551865868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551865869", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Jalan Putri Candramidi", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229067, + -0.032322 + ], + [ + 109.3229382, + -0.0324655 + ] + ] + }, + "id": "way/551865869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/551865870", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241597, + -0.0290727 + ], + [ + 109.324226, + -0.0291788 + ], + [ + 109.3242336, + -0.0291903 + ], + [ + 109.3243861, + -0.029444 + ], + [ + 109.3244647, + -0.0295707 + ], + [ + 109.3247807, + -0.030073 + ], + [ + 109.3249427, + -0.0303305 + ], + [ + 109.3252044, + -0.0307715 + ] + ] + }, + "id": "way/551865870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552016149", + "bridge": "yes", + "foot": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Putri Dara Nante", + "oneway": "no", + "sidewalk": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325624, + -0.0301492 + ], + [ + 109.3257371, + -0.0303331 + ] + ] + }, + "id": "way/552016149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552016150", + "access": "yes", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "name": "Jalan K.H. Wahid Hasyim", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270751, + -0.0263018 + ], + [ + 109.3272056, + -0.0265378 + ] + ] + }, + "id": "way/552016150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552016151", + "access": "yes", + "highway": "primary", + "motor_vehicle": "yes", + "name": "Jalan K.H. Ahmad Dahlan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277679, + -0.0274755 + ], + [ + 109.3279912, + -0.0278656 + ], + [ + 109.3281223, + -0.0280752 + ], + [ + 109.3281502, + -0.0281199 + ], + [ + 109.3282636, + -0.0283022 + ], + [ + 109.3284047, + -0.0285369 + ], + [ + 109.3284538, + -0.0286129 + ], + [ + 109.3285478, + -0.0287543 + ], + [ + 109.3286411, + -0.0289075 + ], + [ + 109.3287797, + -0.0291515 + ], + [ + 109.3288561, + -0.0293005 + ], + [ + 109.328959, + -0.029475 + ], + [ + 109.3291351, + -0.0297615 + ], + [ + 109.3292221, + -0.029903 + ], + [ + 109.3292431, + -0.0299371 + ], + [ + 109.3294249, + -0.0302316 + ], + [ + 109.3296348, + -0.0305716 + ], + [ + 109.3296677, + -0.0306278 + ], + [ + 109.3299474, + -0.0310711 + ], + [ + 109.3300889, + -0.0313089 + ], + [ + 109.3302566, + -0.0315669 + ], + [ + 109.3303907, + -0.0317968 + ], + [ + 109.3304447, + -0.0318844 + ], + [ + 109.3306442, + -0.0321986 + ], + [ + 109.3307754, + -0.0324156 + ], + [ + 109.3309285, + -0.0326666 + ], + [ + 109.3310562, + -0.0328667 + ], + [ + 109.3312753, + -0.0332186 + ], + [ + 109.331297, + -0.0332534 + ], + [ + 109.3314234, + -0.0334614 + ], + [ + 109.3314933, + -0.0335688 + ], + [ + 109.3315404, + -0.0336346 + ], + [ + 109.3315779, + -0.0336853 + ], + [ + 109.3316256, + -0.0337539 + ], + [ + 109.3316786, + -0.033833 + ], + [ + 109.3317134, + -0.0338893 + ] + ] + }, + "id": "way/552016151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552016152", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281014, + -0.0251406 + ], + [ + 109.3280519, + -0.0250842 + ] + ] + }, + "id": "way/552016152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552016153", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325986, + -0.0292975 + ], + [ + 109.3260769, + -0.0293423 + ] + ] + }, + "id": "way/552016153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552016154", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3261989, + -0.0287952 + ], + [ + 109.3262929, + -0.0288429 + ] + ] + }, + "id": "way/552016154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552017097", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.371156, + -0.0272524 + ], + [ + 109.3711565, + -0.0273154 + ] + ] + }, + "id": "way/552017097" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552017098", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3727227, + -0.0256365 + ], + [ + 109.3728572, + -0.0256408 + ] + ] + }, + "id": "way/552017098" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552017099", + "highway": "primary", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626166, + -0.0256079 + ], + [ + 109.3628245, + -0.0255943 + ], + [ + 109.3631472, + -0.025603 + ], + [ + 109.3637533, + -0.0255923 + ], + [ + 109.3642589, + -0.0255829 + ], + [ + 109.3647511, + -0.0255641 + ], + [ + 109.3653989, + -0.0255668 + ], + [ + 109.3655491, + -0.0255641 + ], + [ + 109.3658026, + -0.0255614 + ], + [ + 109.3659541, + -0.0255574 + ], + [ + 109.3660533, + -0.0255534 + ], + [ + 109.3663658, + -0.0255521 + ], + [ + 109.3667132, + -0.0255387 + ], + [ + 109.3669277, + -0.0255279 + ], + [ + 109.3671758, + -0.0255252 + ], + [ + 109.3673623, + -0.0255226 + ], + [ + 109.36744, + -0.0255199 + ], + [ + 109.3676519, + -0.0255266 + ], + [ + 109.368065, + -0.0255279 + ], + [ + 109.3685545, + -0.0255159 + ], + [ + 109.3690002, + -0.0255335 + ], + [ + 109.369217, + -0.0255319 + ], + [ + 109.3694186, + -0.0255398 + ], + [ + 109.3696368, + -0.02554 + ], + [ + 109.3697642, + -0.0255387 + ], + [ + 109.3699385, + -0.0255408 + ], + [ + 109.3701947, + -0.025544 + ], + [ + 109.3712193, + -0.025579 + ], + [ + 109.3713851, + -0.0255864 + ], + [ + 109.3718818, + -0.0255977 + ], + [ + 109.3721755, + -0.0256151 + ], + [ + 109.3725974, + -0.0256234 + ], + [ + 109.3727227, + -0.0256365 + ] + ] + }, + "id": "way/552017099" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552017100", + "highway": "residential", + "name": "Gang Karya Bhakti 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3711565, + -0.0273154 + ], + [ + 109.3711606, + -0.0273495 + ], + [ + 109.3711764, + -0.0274993 + ], + [ + 109.3712005, + -0.0277052 + ], + [ + 109.3712414, + -0.0281323 + ], + [ + 109.3712501, + -0.0283697 + ], + [ + 109.3712535, + -0.0286929 + ], + [ + 109.3712475, + -0.0287105 + ], + [ + 109.3712359, + -0.0287237 + ], + [ + 109.3712217, + -0.0287312 + ], + [ + 109.3710748, + -0.0287947 + ] + ] + }, + "id": "way/552017100" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552017720", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Jalan Dokter Wahidin Sudirohusodo", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034546, + -0.0258891 + ], + [ + 109.3035365, + -0.0261038 + ] + ] + }, + "id": "way/552017720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552017721", + "highway": "unclassified", + "name": "Jalan Dokter Wahidin Sudirohusodo", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028373, + -0.0243137 + ], + [ + 109.3031153, + -0.0249285 + ], + [ + 109.30335, + -0.0255696 + ], + [ + 109.3033862, + -0.0256889 + ], + [ + 109.3034117, + -0.0257814 + ], + [ + 109.3034546, + -0.0258891 + ] + ] + }, + "id": "way/552017721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552019321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246806, + -0.0194179 + ], + [ + 109.3246923, + -0.0194789 + ] + ] + }, + "id": "way/552019321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552019322", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228551, + -0.019756 + ], + [ + 109.3228651, + -0.0198048 + ] + ] + }, + "id": "way/552019322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552019323", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239138, + -0.0195569 + ], + [ + 109.32392, + -0.0195902 + ], + [ + 109.3239252, + -0.0196177 + ] + ] + }, + "id": "way/552019323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552019324", + "alt_name": "Jalan Haji Rais A. Rachman", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Haji Rais Abdul Rachman", + "oneway": "no", + "ref": "002.2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3215971, + -0.0200061 + ], + [ + 109.321526, + -0.0200173 + ] + ] + }, + "id": "way/552019324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552019325", + "alt_name": "Jalan Haji Rais A. Rachman", + "highway": "tertiary", + "name": "Jalan Haji Rais Abdul Rachman", + "oneway": "no", + "ref": "002.2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326534, + -0.0190914 + ], + [ + 109.3263744, + -0.0191145 + ], + [ + 109.3260004, + -0.0191739 + ], + [ + 109.3258765, + -0.0191899 + ], + [ + 109.3258693, + -0.0191913 + ], + [ + 109.325767, + -0.0192109 + ], + [ + 109.3256078, + -0.0192412 + ], + [ + 109.325535, + -0.0192551 + ], + [ + 109.3254195, + -0.0192771 + ], + [ + 109.3250782, + -0.0193422 + ], + [ + 109.3250577, + -0.0193461 + ], + [ + 109.324843, + -0.019387 + ], + [ + 109.3246806, + -0.0194179 + ], + [ + 109.324568, + -0.0194387 + ], + [ + 109.3243756, + -0.0194742 + ], + [ + 109.3242478, + -0.0194971 + ], + [ + 109.324161, + -0.0195126 + ], + [ + 109.3239138, + -0.0195569 + ], + [ + 109.3235903, + -0.0196148 + ], + [ + 109.323504, + -0.0196302 + ], + [ + 109.3233494, + -0.0196595 + ], + [ + 109.3233292, + -0.0196633 + ], + [ + 109.3232551, + -0.0196709 + ], + [ + 109.3230235, + -0.0197213 + ], + [ + 109.3228551, + -0.019756 + ], + [ + 109.3226672, + -0.0197938 + ], + [ + 109.3224634, + -0.0198403 + ], + [ + 109.3223919, + -0.0198557 + ], + [ + 109.322231, + -0.0198904 + ], + [ + 109.3220148, + -0.0199318 + ], + [ + 109.3219132, + -0.0199504 + ], + [ + 109.3217623, + -0.0199781 + ], + [ + 109.3216022, + -0.0200053 + ], + [ + 109.3215971, + -0.0200061 + ] + ] + }, + "id": "way/552019325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552020549", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263409, + -0.00216 + ], + [ + 109.3267396, + -0.0024665 + ], + [ + 109.3276743, + -0.0031851 + ], + [ + 109.3280876, + -0.0035241 + ], + [ + 109.3282453, + -0.003654 + ], + [ + 109.3283576, + -0.0037645 + ], + [ + 109.3286395, + -0.0040352 + ], + [ + 109.3294784, + -0.0048896 + ], + [ + 109.3296068, + -0.0050135 + ], + [ + 109.3304895, + -0.0058651 + ], + [ + 109.3305527, + -0.0059262 + ], + [ + 109.3307906, + -0.0061564 + ], + [ + 109.3308157, + -0.0061798 + ], + [ + 109.3308918, + -0.0062521 + ] + ] + }, + "id": "way/552020549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552020552", + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263715, + -0.0207056 + ], + [ + 109.3262764, + -0.0206943 + ] + ] + }, + "id": "way/552020552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552020554", + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326298, + -0.0205661 + ], + [ + 109.3263955, + -0.0205834 + ] + ] + }, + "id": "way/552020554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552020557", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266075, + -0.0197703 + ], + [ + 109.3264997, + -0.0197651 + ] + ] + }, + "id": "way/552020557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552020559", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Merdeka", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329063, + -0.0188848 + ], + [ + 109.3290462, + -0.0187279 + ] + ] + }, + "id": "way/552020559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552020562", + "access": "yes", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "name": "Jalan K.H. Wahid Hasyim", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265378, + -0.0191509 + ], + [ + 109.3265292, + -0.019289 + ] + ] + }, + "id": "way/552020562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552022222", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610645, + 0.0242426 + ], + [ + 109.3610375, + 0.0241825 + ] + ] + }, + "id": "way/552022222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552277304", + "highway": "living_street", + "name": "Gang Gajah Mada 14", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340954, + -0.0337694 + ], + [ + 109.3407215, + -0.033886 + ], + [ + 109.3405337, + -0.0340107 + ], + [ + 109.3402508, + -0.0341783 + ] + ] + }, + "id": "way/552277304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552277936", + "highway": "living_street", + "name": "Gang Gajah Mada 16", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411134, + -0.0340093 + ], + [ + 109.3409937, + -0.0340871 + ], + [ + 109.3408307, + -0.0342032 + ], + [ + 109.3406906, + -0.0343004 + ], + [ + 109.3405619, + -0.0343916 + ], + [ + 109.3404707, + -0.0344633 + ], + [ + 109.3404564, + -0.0344711 + ], + [ + 109.3404342, + -0.0344751 + ], + [ + 109.3404168, + -0.0344751 + ], + [ + 109.3404, + -0.0344704 + ], + [ + 109.3403665, + -0.0344496 + ], + [ + 109.3402009, + -0.0342914 + ] + ] + }, + "id": "way/552277936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552279756", + "highway": "living_street", + "name": "Gang Gajah Mada 4", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3399997, + -0.0313456 + ], + [ + 109.339654, + -0.0315337 + ], + [ + 109.3392672, + -0.0317338 + ], + [ + 109.3391601, + -0.031799 + ], + [ + 109.3390853, + -0.0318663 + ], + [ + 109.3389499, + -0.0319548 + ] + ] + }, + "id": "way/552279756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552281471", + "highway": "residential", + "name": "Gang Gajah Mada 6", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340174, + -0.0317131 + ], + [ + 109.3399584, + -0.0318254 + ], + [ + 109.3398578, + -0.0318951 + ], + [ + 109.3397049, + -0.0319984 + ], + [ + 109.339481, + -0.0321674 + ], + [ + 109.3393882, + -0.0322629 + ], + [ + 109.3393093, + -0.0323565 + ], + [ + 109.3392503, + -0.0324597 + ], + [ + 109.339026, + -0.0327696 + ], + [ + 109.3389955, + -0.0328071 + ], + [ + 109.338919, + -0.032893 + ], + [ + 109.3388976, + -0.032917 + ] + ] + }, + "id": "way/552281471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552281625", + "highway": "residential", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3382621, + -0.031914 + ], + [ + 109.3384617, + -0.03217 + ], + [ + 109.3385811, + -0.0323189 + ], + [ + 109.3386897, + -0.0324342 + ], + [ + 109.338844, + -0.0326032 + ], + [ + 109.339026, + -0.0327696 + ] + ] + }, + "id": "way/552281625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552281786", + "highway": "living_street", + "name": "Gang Gajah Mada 10" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405018, + -0.0329157 + ], + [ + 109.3402494, + -0.0330552 + ], + [ + 109.3400684, + -0.0331611 + ], + [ + 109.339827, + -0.0333113 + ], + [ + 109.3396177, + -0.0334642 + ], + [ + 109.3395061, + -0.0335431 + ], + [ + 109.3393118, + -0.0337031 + ], + [ + 109.3391119, + -0.0339023 + ], + [ + 109.3390603, + -0.0339487 + ] + ] + }, + "id": "way/552281786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552282298", + "highway": "residential", + "name": "Gang Gajah Mada 12" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407085, + -0.0333192 + ], + [ + 109.3404224, + -0.0334897 + ], + [ + 109.3403095, + -0.0335678 + ], + [ + 109.340071, + -0.0337566 + ], + [ + 109.3399852, + -0.0338223 + ] + ] + }, + "id": "way/552282298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/552498817", + "highway": "residential", + "motor_vehicle": "permissive", + "name": "Jalan Chairil Anwar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406354, + -0.0354918 + ], + [ + 109.3403073, + -0.0352198 + ], + [ + 109.3396216, + -0.0346447 + ], + [ + 109.3395484, + -0.0345818 + ], + [ + 109.3390521, + -0.0350206 + ] + ] + }, + "id": "way/552498817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/556597633", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503829, + -0.045789 + ], + [ + 109.3501385, + -0.0455939 + ], + [ + 109.3501358, + -0.0455897 + ], + [ + 109.3501339, + -0.0455832 + ], + [ + 109.3501334, + -0.0455781 + ], + [ + 109.3501334, + -0.0455721 + ], + [ + 109.3501348, + -0.0455639 + ] + ] + }, + "id": "way/556597633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/556597635", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503829, + -0.045789 + ], + [ + 109.3506669, + -0.0454809 + ], + [ + 109.3509006, + -0.0452291 + ], + [ + 109.3510085, + -0.0451058 + ] + ] + }, + "id": "way/556597635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/556597641", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510085, + -0.0451058 + ], + [ + 109.3514537, + -0.0445957 + ] + ] + }, + "id": "way/556597641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/556598213", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481079, + -0.0466084 + ], + [ + 109.3483359, + -0.0462437 + ], + [ + 109.3487889, + -0.0466125 + ] + ] + }, + "id": "way/556598213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/556598226", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491431, + -0.0468994 + ], + [ + 109.3494176, + -0.0465578 + ], + [ + 109.349434, + -0.0465321 + ], + [ + 109.3494411, + -0.0465162 + ], + [ + 109.349446, + -0.0464976 + ], + [ + 109.3494476, + -0.0464773 + ], + [ + 109.3494476, + -0.0464614 + ], + [ + 109.3494423, + -0.0464453 + ], + [ + 109.3494349, + -0.046431 + ], + [ + 109.3494223, + -0.046416 + ], + [ + 109.3493692, + -0.0463681 + ], + [ + 109.3492969, + -0.0463001 + ], + [ + 109.3492056, + -0.0462286 + ], + [ + 109.3479611, + -0.0452362 + ], + [ + 109.3473308, + -0.0447212 + ] + ] + }, + "id": "way/556598226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/560434942", + "access": "no", + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435411, + -0.0332146 + ], + [ + 109.3440528, + -0.0329797 + ] + ] + }, + "id": "way/560434942" + }, + { + "type": "Feature", + "properties": { + "@id": "way/560602654", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993516, + -0.0106992 + ], + [ + 109.2991635, + -0.0107615 + ], + [ + 109.2989424, + -0.0108347 + ], + [ + 109.298913, + -0.0108314 + ], + [ + 109.2988902, + -0.01082 + ], + [ + 109.2988747, + -0.0108013 + ], + [ + 109.2988291, + -0.0106886 + ], + [ + 109.2983517, + -0.010761 + ], + [ + 109.2982377, + -0.0107751 + ], + [ + 109.2981284, + -0.0107992 + ], + [ + 109.2975838, + -0.0109788 + ] + ] + }, + "id": "way/560602654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/560602655", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2878511, + -0.0001914 + ], + [ + 109.2878294, + -0.0015637 + ], + [ + 109.2878081, + -0.0023584 + ] + ] + }, + "id": "way/560602655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/560602656", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2925106, + -0.008367 + ], + [ + 109.2925269, + -0.0079866 + ], + [ + 109.2925299, + -0.0076436 + ], + [ + 109.2925263, + -0.0076272 + ], + [ + 109.2925169, + -0.0076118 + ], + [ + 109.2924958, + -0.0075927 + ], + [ + 109.2924844, + -0.0075776 + ], + [ + 109.2924797, + -0.0075565 + ], + [ + 109.2925252, + -0.0070819 + ] + ] + }, + "id": "way/560602656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/560651672", + "highway": "residential", + "man_made": "pier" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2915323, + -0.0000247 + ], + [ + 109.2917289, + -0.0000969 + ], + [ + 109.2921209, + -0.0002369 + ], + [ + 109.2926405, + -0.0004316 + ], + [ + 109.2936218, + -0.0007919 + ] + ] + }, + "id": "way/560651672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564183893", + "highway": "residential", + "name": "Komplek Villa Mutiara Mas 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3579098, + -0.0750516 + ], + [ + 109.3578716, + -0.0750245 + ], + [ + 109.3578394, + -0.0750013 + ] + ] + }, + "id": "way/564183893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564183898", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Pondok Indah Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513461, + -0.085303 + ], + [ + 109.3514463, + -0.0853683 + ] + ] + }, + "id": "way/564183898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564259382", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2945397, + -0.0317275 + ], + [ + 109.2946261, + -0.0318574 + ] + ] + }, + "id": "way/564259382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564259383", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946261, + -0.0318574 + ], + [ + 109.2946719, + -0.0319086 + ], + [ + 109.2948108, + -0.0318098 + ], + [ + 109.2948863, + -0.0317627 + ] + ] + }, + "id": "way/564259383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469218", + "highway": "residential", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573966, + -0.0313919 + ], + [ + 109.3569608, + -0.0306482 + ], + [ + 109.3567951, + -0.0303473 + ] + ] + }, + "id": "way/564469218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469219", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574334, + -0.031459 + ], + [ + 109.3573966, + -0.0313919 + ] + ] + }, + "id": "way/564469219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469222", + "highway": "living_street", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329059, + -0.0356305 + ], + [ + 109.3278911, + -0.0369521 + ], + [ + 109.3276307, + -0.0372478 + ], + [ + 109.3271654, + -0.0378031 + ], + [ + 109.3268904, + -0.0380364 + ] + ] + }, + "id": "way/564469222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469225", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321483, + 0.005915 + ], + [ + 109.3216467, + 0.005697 + ], + [ + 109.322034, + 0.0051491 + ], + [ + 109.3224266, + 0.0046154 + ], + [ + 109.3224786, + 0.0045523 + ], + [ + 109.3225258, + 0.0045536 + ], + [ + 109.3225499, + 0.004547 + ], + [ + 109.322577, + 0.0045299 + ], + [ + 109.3226494, + 0.0044499 + ], + [ + 109.3229248, + 0.0040743 + ] + ] + }, + "id": "way/564469225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469226", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205738, + 0.0046831 + ], + [ + 109.3211116, + 0.0040189 + ], + [ + 109.3214643, + 0.0035834 + ], + [ + 109.3219335, + 0.0031016 + ] + ] + }, + "id": "way/564469226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469233", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499164, + -0.0875266 + ], + [ + 109.349885, + -0.0875097 + ], + [ + 109.3498675, + -0.087509 + ], + [ + 109.3497918, + -0.0874997 + ], + [ + 109.349694, + -0.087448 + ], + [ + 109.3475622, + -0.086174 + ], + [ + 109.347133, + -0.085946 + ] + ] + }, + "id": "way/564469233" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469234", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348741, + -0.0704978 + ], + [ + 109.3483696, + -0.0703074 + ], + [ + 109.3480826, + -0.0701567 + ], + [ + 109.3475582, + -0.0698608 + ], + [ + 109.3472162, + -0.0696704 + ], + [ + 109.3470754, + -0.0695953 + ], + [ + 109.3468751, + -0.0694828 + ] + ] + }, + "id": "way/564469234" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469235", + "highway": "residential", + "name": "Gang Karya Baru 6", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334407, + -0.054266 + ], + [ + 109.3346735, + -0.0548854 + ], + [ + 109.3349337, + -0.055446 + ], + [ + 109.3350102, + -0.0556244 + ], + [ + 109.3353356, + -0.05633 + ], + [ + 109.3354883, + -0.0566611 + ], + [ + 109.3356592, + -0.0569936 + ], + [ + 109.3357437, + -0.0571317 + ], + [ + 109.3358724, + -0.0573275 + ], + [ + 109.3360194, + -0.0575441 + ], + [ + 109.3365316, + -0.058271 + ], + [ + 109.3362761, + -0.0585608 + ], + [ + 109.3360274, + -0.0588396 + ], + [ + 109.3359537, + -0.0589041 + ], + [ + 109.3358322, + -0.0590106 + ], + [ + 109.3358094, + -0.0590206 + ], + [ + 109.3357819, + -0.0590239 + ], + [ + 109.3357484, + -0.0590321 + ], + [ + 109.3357263, + -0.0590456 + ], + [ + 109.3357021, + -0.0590696 + ], + [ + 109.3352837, + -0.0595001 + ], + [ + 109.335092, + -0.0596637 + ], + [ + 109.334895, + -0.0597777 + ], + [ + 109.3347419, + -0.0598662 + ], + [ + 109.3346289, + -0.0597417 + ], + [ + 109.3342122, + -0.0593137 + ] + ] + }, + "id": "way/564469235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469236", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344308, + -0.0556351 + ], + [ + 109.3345032, + -0.0556082 + ], + [ + 109.3349337, + -0.055446 + ], + [ + 109.3351979, + -0.0553293 + ] + ] + }, + "id": "way/564469236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469237", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348867, + -0.0568729 + ], + [ + 109.3352461, + -0.0567508 + ], + [ + 109.3354883, + -0.0566611 + ], + [ + 109.3358473, + -0.0564734 + ] + ] + }, + "id": "way/564469237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469238", + "highway": "residential", + "name": "Gang Karya Baru 7", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340097, + -0.0544361 + ], + [ + 109.3340848, + -0.0546507 + ], + [ + 109.3344308, + -0.0556351 + ], + [ + 109.3346054, + -0.0560941 + ], + [ + 109.3348867, + -0.0568729 + ], + [ + 109.3351523, + -0.0575368 + ], + [ + 109.3353347, + -0.057974 + ], + [ + 109.3353656, + -0.0580423 + ], + [ + 109.3354071, + -0.0581108 + ], + [ + 109.3360274, + -0.0588396 + ] + ] + }, + "id": "way/564469238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469239", + "highway": "residential", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323755, + -0.0552182 + ], + [ + 109.3324191, + -0.0553239 + ], + [ + 109.3328027, + -0.056378 + ], + [ + 109.3331836, + -0.057365 + ], + [ + 109.3333819, + -0.0578377 + ], + [ + 109.3335376, + -0.0582154 + ], + [ + 109.3338756, + -0.0590254 + ], + [ + 109.3340224, + -0.0593372 + ], + [ + 109.3340311, + -0.0593579 + ], + [ + 109.334046, + -0.0593839 + ] + ] + }, + "id": "way/564469239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469240", + "highway": "residential", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356425, + -0.0560595 + ], + [ + 109.3356915, + -0.0561689 + ], + [ + 109.3357028, + -0.0561942 + ], + [ + 109.3357263, + -0.056246 + ], + [ + 109.335745, + -0.0562842 + ], + [ + 109.3358473, + -0.0564734 + ] + ] + }, + "id": "way/564469240" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469241", + "highway": "service", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348678, + -0.0437468 + ], + [ + 109.3487612, + -0.043618 + ], + [ + 109.348885, + -0.0434516 + ], + [ + 109.349284, + -0.042957 + ], + [ + 109.3494076, + -0.0427973 + ], + [ + 109.3495625, + -0.0426397 + ], + [ + 109.3497931, + -0.0424433 + ], + [ + 109.349937, + -0.0423098 + ], + [ + 109.3499581, + -0.042273 + ], + [ + 109.3499742, + -0.0422361 + ], + [ + 109.3499861, + -0.0421888 + ] + ] + }, + "id": "way/564469241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469242", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982793, + -0.0172225 + ], + [ + 109.298054, + -0.0172117 + ], + [ + 109.2967021, + -0.0171474 + ], + [ + 109.2946469, + -0.0171229 + ] + ] + }, + "id": "way/564469242" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469243", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2988291, + -0.0106886 + ], + [ + 109.298628, + -0.0102487 + ] + ] + }, + "id": "way/564469243" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469244", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3024789, + -0.0049561 + ], + [ + 109.3024971, + -0.004826 + ], + [ + 109.3025903, + -0.0039096 + ], + [ + 109.302632, + -0.0034902 + ], + [ + 109.3026467, + -0.0033323 + ], + [ + 109.3027062, + -0.0027017 + ], + [ + 109.3027089, + -0.0026735 + ], + [ + 109.3028645, + -0.0013458 + ] + ] + }, + "id": "way/564469244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469245", + "highway": "residential", + "incline": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098269, + -0.0234344 + ], + [ + 109.3097953, + -0.0234459 + ] + ] + }, + "id": "way/564469245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469247", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097953, + -0.0234459 + ], + [ + 109.30976, + -0.0234601 + ], + [ + 109.3101292, + -0.0245529 + ], + [ + 109.3106469, + -0.0261676 + ], + [ + 109.3107675, + -0.0265751 + ] + ] + }, + "id": "way/564469247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469248", + "highway": "residential", + "incline": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098698, + -0.0234177 + ], + [ + 109.3098269, + -0.0234344 + ] + ] + }, + "id": "way/564469248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469249", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109044, + -0.0265123 + ], + [ + 109.3103385, + -0.0245932 + ], + [ + 109.3099304, + -0.0233964 + ], + [ + 109.3098698, + -0.0234177 + ] + ] + }, + "id": "way/564469249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469251", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984263, + -0.0169004 + ], + [ + 109.2981988, + -0.0168979 + ], + [ + 109.2959833, + -0.0167397 + ], + [ + 109.2949212, + -0.0166807 + ] + ] + }, + "id": "way/564469251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469252", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414897, + -0.0706775 + ], + [ + 109.3412149, + -0.0709727 + ], + [ + 109.3411866, + -0.0710008 + ], + [ + 109.3409345, + -0.0712656 + ], + [ + 109.3409034, + -0.0712963 + ], + [ + 109.3406296, + -0.071562 + ], + [ + 109.3403178, + -0.0718647 + ], + [ + 109.3400252, + -0.0721701 + ], + [ + 109.3397636, + -0.0724233 + ], + [ + 109.3394552, + -0.0727011 + ], + [ + 109.3391347, + -0.0729708 + ], + [ + 109.3388832, + -0.0732216 + ], + [ + 109.3388383, + -0.0732639 + ], + [ + 109.3388025, + -0.0732864 + ], + [ + 109.3384681, + -0.0735628 + ], + [ + 109.3379172, + -0.0740387 + ], + [ + 109.3377257, + -0.0742041 + ], + [ + 109.3376096, + -0.0743044 + ], + [ + 109.3366818, + -0.0751058 + ], + [ + 109.33645, + -0.0753274 + ], + [ + 109.3364058, + -0.075386 + ], + [ + 109.3361145, + -0.0756342 + ], + [ + 109.3358061, + -0.0759092 + ], + [ + 109.335552, + -0.0761328 + ], + [ + 109.335505, + -0.0761741 + ], + [ + 109.3351798, + -0.076455 + ], + [ + 109.3343408, + -0.0772094 + ], + [ + 109.3342619, + -0.0772804 + ], + [ + 109.3337978, + -0.0777123 + ], + [ + 109.3333472, + -0.078187 + ], + [ + 109.3330897, + -0.0785599 + ], + [ + 109.3329223, + -0.0787899 + ], + [ + 109.332542, + -0.0792287 + ], + [ + 109.3321623, + -0.0797286 + ], + [ + 109.3319524, + -0.0800257 + ] + ] + }, + "id": "way/564469252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469253", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.327745, + 0.0131505 + ], + [ + 109.3289047, + 0.0129121 + ], + [ + 109.329763, + 0.0127351 + ], + [ + 109.3301118, + 0.0126602 + ], + [ + 109.3302896, + 0.012622 + ], + [ + 109.3304846, + 0.0125849 + ], + [ + 109.3305416, + 0.0125849 + ], + [ + 109.3306777, + 0.0125923 + ], + [ + 109.3316969, + 0.0126614 + ], + [ + 109.3318297, + 0.0126587 + ], + [ + 109.3320966, + 0.0126587 + ], + [ + 109.3321261, + 0.0126587 + ], + [ + 109.3322763, + 0.0126573 + ], + [ + 109.3324547, + 0.0126708 + ], + [ + 109.3327323, + 0.0126989 + ], + [ + 109.3337384, + 0.0127866 + ] + ] + }, + "id": "way/564469253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564469254", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277909, + 0.0086138 + ], + [ + 109.3278292, + 0.0086474 + ], + [ + 109.3281752, + 0.0088862 + ], + [ + 109.3282006, + 0.008917 + ], + [ + 109.3282074, + 0.008968 + ], + [ + 109.3281892, + 0.0090927 + ], + [ + 109.328153, + 0.0091483 + ], + [ + 109.3281296, + 0.0091973 + ], + [ + 109.3281162, + 0.0093099 + ], + [ + 109.3281262, + 0.0094192 + ], + [ + 109.3282141, + 0.0097364 + ], + [ + 109.328717, + 0.0120592 + ], + [ + 109.3289047, + 0.0129121 + ], + [ + 109.3296075, + 0.0159377 + ], + [ + 109.33005, + 0.0181612 + ] + ] + }, + "id": "way/564469254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564486977", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530346, + -0.0335122 + ], + [ + 109.3530721, + -0.0335846 + ], + [ + 109.353117, + -0.0336765 + ] + ] + }, + "id": "way/564486977" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564486979", + "bridge": "yes", + "highway": "tertiary", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545986, + -0.0327852 + ], + [ + 109.3546227, + -0.0328177 + ], + [ + 109.3546631, + -0.0328728 + ] + ] + }, + "id": "way/564486979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564486981", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553191, + -0.0337717 + ], + [ + 109.355543, + -0.0340695 + ], + [ + 109.3555994, + -0.0341445 + ], + [ + 109.3556295, + -0.0341803 + ], + [ + 109.3558346, + -0.0344258 + ], + [ + 109.3558567, + -0.0344487 + ], + [ + 109.3558703, + -0.0344637 + ] + ] + }, + "id": "way/564486981" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564486984", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353117, + -0.0336765 + ], + [ + 109.353163, + -0.0337833 + ], + [ + 109.353172, + -0.0337972 + ], + [ + 109.3532096, + -0.0338914 + ], + [ + 109.3532705, + -0.0340279 + ], + [ + 109.3533075, + -0.034111 + ], + [ + 109.3534905, + -0.0344872 + ], + [ + 109.3535093, + -0.0345207 + ], + [ + 109.3536271, + -0.0347824 + ] + ] + }, + "id": "way/564486984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564486985", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546631, + -0.0328728 + ], + [ + 109.3546684, + -0.0328793 + ], + [ + 109.3547011, + -0.0329265 + ], + [ + 109.354894, + -0.033205 + ], + [ + 109.354951, + -0.0332902 + ], + [ + 109.3550442, + -0.0333975 + ], + [ + 109.3551348, + -0.0335276 + ], + [ + 109.3553191, + -0.0337717 + ] + ] + }, + "id": "way/564486985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488854", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516822, + -0.0321019 + ], + [ + 109.3516322, + -0.0320366 + ] + ] + }, + "id": "way/564488854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488856", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525479, + -0.026547 + ], + [ + 109.352635, + -0.0265343 + ] + ] + }, + "id": "way/564488856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488857", + "bridge": "yes", + "highway": "tertiary", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526223, + -0.030329 + ], + [ + 109.3526538, + -0.0303625 + ] + ] + }, + "id": "way/564488857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488858", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506187, + -0.0252576 + ], + [ + 109.3506509, + -0.0252455 + ] + ] + }, + "id": "way/564488858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488859", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559631, + -0.0284293 + ], + [ + 109.3559613, + -0.0283831 + ] + ] + }, + "id": "way/564488859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488861", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506509, + -0.0252455 + ], + [ + 109.3508793, + -0.0251859 + ] + ] + }, + "id": "way/564488861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488862", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352635, + -0.0265343 + ], + [ + 109.3526997, + -0.0265234 + ], + [ + 109.3527124, + -0.0265219 + ], + [ + 109.3529293, + -0.0264906 + ], + [ + 109.3530467, + -0.0264751 + ] + ] + }, + "id": "way/564488862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488863", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351984, + -0.0325424 + ], + [ + 109.3516822, + -0.0321019 + ] + ] + }, + "id": "way/564488863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488864", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505466, + -0.0305694 + ], + [ + 109.3504921, + -0.0305076 + ] + ] + }, + "id": "way/564488864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488865", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516322, + -0.0320366 + ], + [ + 109.3515187, + -0.0318746 + ], + [ + 109.3514069, + -0.0317224 + ], + [ + 109.3511613, + -0.0313873 + ], + [ + 109.3511294, + -0.0313474 + ], + [ + 109.3510295, + -0.031205 + ], + [ + 109.3508814, + -0.031003 + ], + [ + 109.3508273, + -0.0309247 + ], + [ + 109.3505608, + -0.0305835 + ], + [ + 109.3505466, + -0.0305694 + ] + ] + }, + "id": "way/564488865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488866", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526538, + -0.0303625 + ], + [ + 109.3526597, + -0.0303681 + ], + [ + 109.3526844, + -0.030391 + ], + [ + 109.3527669, + -0.0304755 + ], + [ + 109.3529022, + -0.0306252 + ], + [ + 109.3531397, + -0.0308878 + ], + [ + 109.3532982, + -0.0310631 + ], + [ + 109.3535341, + -0.0313521 + ], + [ + 109.3535021, + -0.0312952 + ], + [ + 109.3535171, + -0.0313124 + ] + ] + }, + "id": "way/564488866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564488867", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537674, + -0.0316087 + ], + [ + 109.3539275, + -0.0318243 + ], + [ + 109.3541096, + -0.0320813 + ], + [ + 109.3542375, + -0.0322603 + ], + [ + 109.3543874, + -0.0324701 + ], + [ + 109.3544317, + -0.0325351 + ], + [ + 109.3545986, + -0.0327852 + ] + ] + }, + "id": "way/564488867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564490042", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489736, + -0.0271184 + ], + [ + 109.3490299, + -0.0270798 + ] + ] + }, + "id": "way/564490042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564490043", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498588, + -0.0297473 + ], + [ + 109.3497944, + -0.0296749 + ] + ] + }, + "id": "way/564490043" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564490045", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497944, + -0.0296749 + ], + [ + 109.3496863, + -0.0295348 + ], + [ + 109.3495078, + -0.0293258 + ], + [ + 109.3493357, + -0.029113 + ], + [ + 109.3492308, + -0.0289993 + ] + ] + }, + "id": "way/564490045" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564490047", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483222, + -0.0274478 + ], + [ + 109.3483969, + -0.0275096 + ], + [ + 109.3489736, + -0.0271184 + ] + ] + }, + "id": "way/564490047" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564493114", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559984, + -0.0388236 + ], + [ + 109.355964, + -0.03878 + ], + [ + 109.3559568, + -0.0387708 + ], + [ + 109.3559265, + -0.0387346 + ] + ] + }, + "id": "way/564493114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564493115", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559052, + -0.0387083 + ], + [ + 109.3557523, + -0.0384763 + ], + [ + 109.3556504, + -0.0383288 + ], + [ + 109.3555257, + -0.0381369 + ], + [ + 109.3555136, + -0.0381182 + ], + [ + 109.3552682, + -0.0377507 + ], + [ + 109.3552483, + -0.0377216 + ], + [ + 109.3551274, + -0.0375442 + ], + [ + 109.355004, + -0.0373632 + ], + [ + 109.3549208, + -0.0372331 + ], + [ + 109.3547827, + -0.0369903 + ], + [ + 109.3547344, + -0.0369059 + ], + [ + 109.3545547, + -0.0365907 + ], + [ + 109.3544944, + -0.0364901 + ], + [ + 109.3543991, + -0.0362876 + ], + [ + 109.35433, + -0.0361535 + ], + [ + 109.3542279, + -0.0359719 + ], + [ + 109.3548377, + -0.0356117 + ], + [ + 109.3551636, + -0.0354001 + ], + [ + 109.355409, + -0.0352629 + ], + [ + 109.3555632, + -0.0351631 + ], + [ + 109.3560221, + -0.0348798 + ] + ] + }, + "id": "way/564493115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564493116", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalan Tanjung Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604312, + -0.0431393 + ], + [ + 109.360341, + -0.0430457 + ] + ] + }, + "id": "way/564493116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564493117", + "highway": "residential", + "name": "Jalan Tanjung Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360341, + -0.0430457 + ], + [ + 109.3601149, + -0.0428255 + ], + [ + 109.3598776, + -0.0425854 + ], + [ + 109.3596576, + -0.0423708 + ], + [ + 109.3594508, + -0.0421777 + ], + [ + 109.3592406, + -0.041982 + ], + [ + 109.3591119, + -0.0418733 + ], + [ + 109.3589495, + -0.0417218 + ], + [ + 109.358849, + -0.0416239 + ], + [ + 109.3587356, + -0.0415132 + ], + [ + 109.3585938, + -0.0413747 + ], + [ + 109.3584289, + -0.0412138 + ], + [ + 109.3583058, + -0.0410955 + ], + [ + 109.3580685, + -0.0408619 + ], + [ + 109.3577975, + -0.0406019 + ], + [ + 109.3575653, + -0.0403839 + ], + [ + 109.3575251, + -0.0403438 + ], + [ + 109.3574408, + -0.0402559 + ], + [ + 109.3573502, + -0.0401709 + ], + [ + 109.3570949, + -0.0399302 + ] + ] + }, + "id": "way/564493117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564493784", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638411, + -0.0427847 + ], + [ + 109.3637212, + -0.0428979 + ], + [ + 109.3635193, + -0.0431125 + ], + [ + 109.3632665, + -0.0433988 + ], + [ + 109.3629467, + -0.0437602 + ], + [ + 109.3627207, + -0.044007 + ] + ] + }, + "id": "way/564493784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564493787", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36645, + -0.0455526 + ], + [ + 109.3660165, + -0.0458457 + ], + [ + 109.3655625, + -0.0461601 + ], + [ + 109.3647453, + -0.0467425 + ] + ] + }, + "id": "way/564493787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564494433", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469989, + -0.0376602 + ], + [ + 109.346952, + -0.0375268 + ], + [ + 109.3469211, + -0.0374208 + ] + ] + }, + "id": "way/564494433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564494434", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469863, + -0.0373959 + ], + [ + 109.3469951, + -0.0374214 + ], + [ + 109.3470799, + -0.0376319 + ] + ] + }, + "id": "way/564494434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564494437", + "highway": "trunk", + "motorcycle": "yes", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470799, + -0.0376319 + ], + [ + 109.3471018, + -0.0376898 + ], + [ + 109.3472082, + -0.0379221 + ], + [ + 109.3472739, + -0.0380572 + ], + [ + 109.347406, + -0.0383143 + ], + [ + 109.3474933, + -0.0384855 + ], + [ + 109.3476338, + -0.0387139 + ], + [ + 109.3477611, + -0.0389101 + ], + [ + 109.3478453, + -0.0390492 + ], + [ + 109.3479759, + -0.0392608 + ] + ] + }, + "id": "way/564494437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564495268", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411348, + -0.0453124 + ], + [ + 109.3413977, + -0.0456343 + ] + ] + }, + "id": "way/564495268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564495269", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413226, + -0.0457362 + ], + [ + 109.3410705, + -0.0454197 + ] + ] + }, + "id": "way/564495269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564495270", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464537, + -0.0518337 + ], + [ + 109.3464317, + -0.0518086 + ], + [ + 109.3462041, + -0.0515492 + ], + [ + 109.3461526, + -0.0514895 + ], + [ + 109.3454004, + -0.0505876 + ], + [ + 109.3453213, + -0.050487 + ], + [ + 109.3447604, + -0.0498297 + ], + [ + 109.3447375, + -0.049801 + ], + [ + 109.3447037, + -0.0497586 + ], + [ + 109.3446791, + -0.0497316 + ], + [ + 109.3440662, + -0.0490106 + ], + [ + 109.3439599, + -0.0488855 + ], + [ + 109.3438055, + -0.0487038 + ], + [ + 109.3437752, + -0.0486682 + ], + [ + 109.34362, + -0.0484644 + ], + [ + 109.3433015, + -0.0480956 + ], + [ + 109.3429776, + -0.0477207 + ], + [ + 109.3429593, + -0.0477009 + ], + [ + 109.3426883, + -0.0473628 + ], + [ + 109.3425661, + -0.047217 + ], + [ + 109.3424553, + -0.0470828 + ], + [ + 109.3418442, + -0.0463452 + ], + [ + 109.3413226, + -0.0457362 + ] + ] + }, + "id": "way/564495270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564495271", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413977, + -0.0456343 + ], + [ + 109.3419667, + -0.0463129 + ], + [ + 109.342027, + -0.0463848 + ], + [ + 109.3423499, + -0.0467916 + ], + [ + 109.3426954, + -0.0471985 + ], + [ + 109.3433926, + -0.0480187 + ], + [ + 109.3434356, + -0.0480694 + ], + [ + 109.3437625, + -0.0484555 + ], + [ + 109.3438893, + -0.0486052 + ], + [ + 109.3440233, + -0.0487635 + ], + [ + 109.3440723, + -0.0488189 + ], + [ + 109.3441726, + -0.0489315 + ], + [ + 109.3443819, + -0.0491833 + ], + [ + 109.3445743, + -0.0494098 + ], + [ + 109.3448393, + -0.0497216 + ], + [ + 109.345211, + -0.0501591 + ], + [ + 109.3458726, + -0.0509374 + ], + [ + 109.3465341, + -0.0517157 + ] + ] + }, + "id": "way/564495271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564495272", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Gajah Mada", + "oneway": "yes", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441966, + -0.0397226 + ], + [ + 109.3442712, + -0.0398298 + ] + ] + }, + "id": "way/564495272" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564495273", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Gajah Mada", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442039, + -0.0398859 + ], + [ + 109.3441545, + -0.0398299 + ], + [ + 109.3441285, + -0.0397937 + ], + [ + 109.3441172, + -0.0397779 + ] + ] + }, + "id": "way/564495273" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564495274", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345323, + -0.0412203 + ], + [ + 109.3452797, + -0.0411718 + ], + [ + 109.3450835, + -0.040952 + ], + [ + 109.3448465, + -0.0406679 + ], + [ + 109.3445734, + -0.0403329 + ], + [ + 109.3442773, + -0.0399844 + ], + [ + 109.3442039, + -0.0398859 + ] + ] + }, + "id": "way/564495274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564495275", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "oneway": "yes", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442712, + -0.0398298 + ], + [ + 109.3442828, + -0.039844 + ], + [ + 109.3446074, + -0.0402427 + ], + [ + 109.3449832, + -0.0406881 + ], + [ + 109.3451465, + -0.040889 + ], + [ + 109.3453553, + -0.0411084 + ], + [ + 109.3454037, + -0.0411593 + ] + ] + }, + "id": "way/564495275" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564495276", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383869, + -0.0484548 + ], + [ + 109.3383473, + -0.0483245 + ] + ] + }, + "id": "way/564495276" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564497254", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361055, + -0.0495826 + ], + [ + 109.3359715, + -0.0494694 + ] + ] + }, + "id": "way/564497254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564497255", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360697, + -0.0493774 + ], + [ + 109.3361868, + -0.0494966 + ] + ] + }, + "id": "way/564497255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564497257", + "highway": "tertiary", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361868, + -0.0494966 + ], + [ + 109.3362553, + -0.0495672 + ], + [ + 109.3363304, + -0.0496423 + ], + [ + 109.3363844, + -0.0496839 + ] + ] + }, + "id": "way/564497257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564497259", + "highway": "tertiary", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3363363, + -0.0498098 + ], + [ + 109.3362825, + -0.0497644 + ], + [ + 109.3361849, + -0.0496638 + ], + [ + 109.3361055, + -0.0495826 + ] + ] + }, + "id": "way/564497259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498328", + "highway": "tertiary", + "horse": "no", + "lanes": "2", + "name": "Jalan Tanjung Raya II", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704204, + -0.0503383 + ], + [ + 109.3704843, + -0.0504167 + ], + [ + 109.3705104, + -0.0504493 + ], + [ + 109.3707075, + -0.0507089 + ], + [ + 109.370777, + -0.050794 + ], + [ + 109.3708468, + -0.0508805 + ], + [ + 109.370901, + -0.0509373 + ], + [ + 109.371014, + -0.0510671 + ], + [ + 109.3711833, + -0.0512677 + ], + [ + 109.3712209, + -0.0513096 + ], + [ + 109.371444, + -0.0515782 + ], + [ + 109.3714573, + -0.051593 + ], + [ + 109.3716663, + -0.0518479 + ], + [ + 109.3718876, + -0.0521177 + ], + [ + 109.3718996, + -0.0521322 + ], + [ + 109.3721155, + -0.0523948 + ], + [ + 109.3725664, + -0.052926 + ], + [ + 109.3727756, + -0.0532164 + ], + [ + 109.3729787, + -0.0534882 + ], + [ + 109.3731907, + -0.053783 + ], + [ + 109.3733912, + -0.0541035 + ], + [ + 109.3735958, + -0.0544302 + ], + [ + 109.3736049, + -0.0544447 + ], + [ + 109.3737029, + -0.0545887 + ], + [ + 109.373811, + -0.0547506 + ], + [ + 109.3739075, + -0.0548786 + ], + [ + 109.374038, + -0.0550673 + ], + [ + 109.3742546, + -0.055403 + ], + [ + 109.3744726, + -0.055732 + ], + [ + 109.3744975, + -0.0557671 + ], + [ + 109.3745204, + -0.0557968 + ], + [ + 109.374568, + -0.0558583 + ], + [ + 109.3747515, + -0.0561131 + ], + [ + 109.3747883, + -0.0561609 + ], + [ + 109.3748658, + -0.0562863 + ], + [ + 109.3750399, + -0.0565441 + ], + [ + 109.3751581, + -0.0567212 + ], + [ + 109.3752976, + -0.0569198 + ], + [ + 109.3754448, + -0.0571179 + ], + [ + 109.3755329, + -0.0572437 + ], + [ + 109.3756005, + -0.057359 + ], + [ + 109.3756877, + -0.0574755 + ], + [ + 109.3757354, + -0.0575334 + ], + [ + 109.375944, + -0.0578063 + ], + [ + 109.3761674, + -0.0581259 + ], + [ + 109.3762211, + -0.0581974 + ], + [ + 109.3763521, + -0.0583581 + ], + [ + 109.3764278, + -0.0584496 + ], + [ + 109.3764489, + -0.0584752 + ], + [ + 109.3765351, + -0.0585891 + ], + [ + 109.3768281, + -0.0589903 + ], + [ + 109.3770611, + -0.0592875 + ], + [ + 109.3770888, + -0.0593242 + ], + [ + 109.3770972, + -0.0593341 + ] + ] + }, + "id": "way/564498328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498420", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465341, + -0.0517157 + ], + [ + 109.3466129, + -0.0518156 + ] + ] + }, + "id": "way/564498420" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498421", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465318, + -0.0519378 + ], + [ + 109.346471, + -0.0518567 + ], + [ + 109.3464537, + -0.0518337 + ] + ] + }, + "id": "way/564498421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498422", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466129, + -0.0518156 + ], + [ + 109.3466327, + -0.0518394 + ], + [ + 109.3470001, + -0.0522928 + ], + [ + 109.3474884, + -0.0528884 + ], + [ + 109.347598, + -0.0530206 + ], + [ + 109.3491717, + -0.0548397 + ] + ] + }, + "id": "way/564498422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498423", + "highway": "trunk", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490289, + -0.0549058 + ], + [ + 109.34808, + -0.0537758 + ], + [ + 109.3474359, + -0.0529964 + ], + [ + 109.3471453, + -0.0526474 + ], + [ + 109.346916, + -0.0523728 + ], + [ + 109.3466667, + -0.0520829 + ], + [ + 109.3465474, + -0.0519592 + ], + [ + 109.3465318, + -0.0519378 + ] + ] + }, + "id": "way/564498423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498424", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418255, + -0.0570969 + ], + [ + 109.3419265, + -0.057174 + ] + ] + }, + "id": "way/564498424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498902", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3357711, + -0.0495918 + ], + [ + 109.335789, + -0.0496262 + ], + [ + 109.3357969, + -0.049641 + ] + ] + }, + "id": "way/564498902" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498903", + "colour": "#606060", + "highway": "residential", + "name": "Purnama 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354431, + -0.0498225 + ], + [ + 109.3354702, + -0.0498746 + ] + ] + }, + "id": "way/564498903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498904", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351791, + -0.0502358 + ], + [ + 109.3351188, + -0.050063 + ] + ] + }, + "id": "way/564498904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498905", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Pelangi Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346802, + -0.0503109 + ], + [ + 109.3346368, + -0.0502109 + ] + ] + }, + "id": "way/564498905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498906", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama Anggrek 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343235, + -0.050394 + ], + [ + 109.3343054, + -0.0503113 + ] + ] + }, + "id": "way/564498906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498907", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama Anggrek 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338675, + -0.0505121 + ], + [ + 109.3338403, + -0.0504175 + ] + ] + }, + "id": "way/564498907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498908", + "bridge": "yes", + "colour": "#606060", + "highway": "living_street", + "layer": "1", + "name": "Anggrek 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335376, + -0.0506167 + ], + [ + 109.3334941, + -0.0504928 + ] + ] + }, + "id": "way/564498908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498909", + "bridge": "yes", + "colour": "#606060", + "highway": "living_street", + "layer": "1", + "name": "Purnama Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332292, + -0.0506864 + ], + [ + 109.3331955, + -0.0505687 + ] + ] + }, + "id": "way/564498909" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498910", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama Anggrek 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329288, + -0.0507937 + ], + [ + 109.33287, + -0.0506591 + ] + ] + }, + "id": "way/564498910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498911", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama 8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318183, + -0.0511933 + ], + [ + 109.3317634, + -0.0510627 + ] + ] + }, + "id": "way/564498911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498912", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Permata Purnama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3314643, + -0.0514267 + ], + [ + 109.331388, + -0.051301 + ] + ] + }, + "id": "way/564498912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498913", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309504, + -0.0516346 + ], + [ + 109.3309825, + -0.0516797 + ] + ] + }, + "id": "way/564498913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498914", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3306851, + -0.0518712 + ], + [ + 109.3307207, + -0.0519174 + ] + ] + }, + "id": "way/564498914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498915", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama Agung 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291658, + -0.0533881 + ], + [ + 109.3290938, + -0.0532955 + ] + ] + }, + "id": "way/564498915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498916", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288478, + -0.0536824 + ], + [ + 109.3287961, + -0.0535909 + ] + ] + }, + "id": "way/564498916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498917", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Purnama Prima" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285192, + -0.0539661 + ], + [ + 109.3284681, + -0.0538781 + ] + ] + }, + "id": "way/564498917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498918", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277541, + -0.0544327 + ], + [ + 109.32778, + -0.054472 + ] + ] + }, + "id": "way/564498918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498919", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3269763, + -0.0553655 + ], + [ + 109.3269277, + -0.0552757 + ] + ] + }, + "id": "way/564498919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498920", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267852, + -0.0555566 + ], + [ + 109.3267405, + -0.0554659 + ] + ] + }, + "id": "way/564498920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498921", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272015, + -0.0551436 + ], + [ + 109.3271407, + -0.0550643 + ] + ] + }, + "id": "way/564498921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498922", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262011, + -0.0561755 + ], + [ + 109.3261387, + -0.0560665 + ] + ] + }, + "id": "way/564498922" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498923", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258129, + -0.0565685 + ], + [ + 109.3257386, + -0.0564534 + ] + ] + }, + "id": "way/564498923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498924", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254729, + -0.0568749 + ], + [ + 109.3254045, + -0.0567561 + ] + ] + }, + "id": "way/564498924" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498925", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249825, + -0.0571552 + ], + [ + 109.325001, + -0.057192 + ] + ] + }, + "id": "way/564498925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498926", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246595, + -0.0576414 + ], + [ + 109.3246076, + -0.057565 + ] + ] + }, + "id": "way/564498926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/564498927", + "highway": "residential", + "name": "Gang Wonobaru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240238, + -0.058285 + ], + [ + 109.3247614, + -0.0598327 + ], + [ + 109.3255854, + -0.0614047 + ] + ] + }, + "id": "way/564498927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565650983", + "bicycle": "yes", + "highway": "trunk", + "name": "Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2952807, + 0.0101255 + ], + [ + 109.2959534, + 0.0097574 + ], + [ + 109.2963913, + 0.0095068 + ], + [ + 109.2965843, + 0.0093962 + ], + [ + 109.2966833, + 0.0093445 + ], + [ + 109.2968854, + 0.0092344 + ], + [ + 109.2969545, + 0.0091992 + ], + [ + 109.2970707, + 0.00914 + ], + [ + 109.297112, + 0.0091182 + ], + [ + 109.297548, + 0.0088883 + ], + [ + 109.2977715, + 0.0087818 + ], + [ + 109.298396, + 0.0084704 + ], + [ + 109.2991512, + 0.0080686 + ], + [ + 109.2991983, + 0.0080443 + ], + [ + 109.2992583, + 0.0080133 + ], + [ + 109.299447, + 0.0079158 + ], + [ + 109.2996351, + 0.0078227 + ] + ] + }, + "id": "way/565650983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565656699", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Beringin 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145493, + 0.0101353 + ], + [ + 109.3145877, + 0.0101984 + ] + ] + }, + "id": "way/565656699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565659675", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440689, + 0.0007029 + ], + [ + 109.3464578, + -0.0000623 + ], + [ + 109.3471384, + -0.0002749 + ] + ] + }, + "id": "way/565659675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565661672", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540906, + 0.005853 + ], + [ + 109.3539961, + 0.0058801 + ] + ] + }, + "id": "way/565661672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565661673", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508217, + 0.0007637 + ], + [ + 109.3509163, + 0.0007059 + ] + ] + }, + "id": "way/565661673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565661674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351139, + 0.0010645 + ], + [ + 109.3519646, + 0.0006014 + ] + ] + }, + "id": "way/565661674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565661675", + "highway": "residential", + "name": "KOMPLEK ALOEVERA PERMAI II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351365, + 0.0014368 + ], + [ + 109.3531244, + 0.0004224 + ] + ] + }, + "id": "way/565661675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565661676", + "highway": "tertiary", + "name": "Budi Utomo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567068, + 0.0021846 + ], + [ + 109.3567592, + 0.0021759 + ] + ] + }, + "id": "way/565661676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565661677", + "highway": "tertiary", + "name": "Budi Utomo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569069, + 0.0021549 + ], + [ + 109.3587301, + 0.0019295 + ], + [ + 109.3592803, + 0.0018616 + ], + [ + 109.3593098, + 0.001858 + ], + [ + 109.3599005, + 0.0017783 + ], + [ + 109.3599333, + 0.0017732 + ], + [ + 109.3602878, + 0.0017374 + ], + [ + 109.3611611, + 0.0016297 + ], + [ + 109.3615174, + 0.0015857 + ], + [ + 109.3618958, + 0.001539 + ], + [ + 109.3620538, + 0.0015164 + ], + [ + 109.362239, + 0.0014967 + ], + [ + 109.3631576, + 0.0013493 + ], + [ + 109.3633188, + 0.0013223 + ], + [ + 109.3635267, + 0.001258 + ], + [ + 109.3640808, + 0.0010797 + ] + ] + }, + "id": "way/565661677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565663724", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36612, + 0.0005525 + ], + [ + 109.3660815, + 0.0005579 + ] + ] + }, + "id": "way/565663724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565663725", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3659416, + 0.0005779 + ], + [ + 109.3657945, + 0.0006149 + ], + [ + 109.365702, + 0.0006437 + ], + [ + 109.3655233, + 0.0006921 + ], + [ + 109.3647887, + 0.0009079 + ], + [ + 109.3643381, + 0.0010246 + ], + [ + 109.3640808, + 0.0010797 + ] + ] + }, + "id": "way/565663725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565663726", + "bridge": "yes", + "highway": "unclassified", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693181, + 0.0079208 + ], + [ + 109.3693516, + 0.0078357 + ] + ] + }, + "id": "way/565663726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565663727", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693516, + 0.0078357 + ], + [ + 109.3693703, + 0.0077965 + ] + ] + }, + "id": "way/565663727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565663728", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3707256, + 0.0084199 + ], + [ + 109.3705748, + 0.0083878 + ] + ] + }, + "id": "way/565663728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565663729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3705748, + 0.0083878 + ], + [ + 109.3705297, + 0.0083683 + ], + [ + 109.3702325, + 0.0082399 + ], + [ + 109.3700823, + 0.0081695 + ], + [ + 109.3699224, + 0.0081043 + ], + [ + 109.369795, + 0.0080413 + ], + [ + 109.3695858, + 0.0079206 + ], + [ + 109.3693703, + 0.0077965 + ] + ] + }, + "id": "way/565663729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565663732", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.370917, + 0.003633 + ], + [ + 109.3710919, + 0.0037122 + ], + [ + 109.3713064, + 0.0037739 + ], + [ + 109.3716388, + 0.0038637 + ], + [ + 109.3717088, + 0.0038865 + ] + ] + }, + "id": "way/565663732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565672040", + "highway": "trunk", + "name": "Batulayang - Jungkat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2882331, + 0.0128478 + ], + [ + 109.2882703, + 0.0128339 + ], + [ + 109.2883615, + 0.0128063 + ], + [ + 109.2888755, + 0.0126359 + ], + [ + 109.2893459, + 0.0124779 + ], + [ + 109.289536, + 0.0124072 + ], + [ + 109.2897527, + 0.0123247 + ], + [ + 109.2898206, + 0.0122977 + ], + [ + 109.2899, + 0.012266 + ], + [ + 109.2902482, + 0.012132 + ], + [ + 109.2903891, + 0.0120778 + ], + [ + 109.2911265, + 0.0118072 + ], + [ + 109.2914673, + 0.0116772 + ], + [ + 109.2918831, + 0.0115141 + ], + [ + 109.2923262, + 0.0113479 + ], + [ + 109.2926019, + 0.0112445 + ] + ] + }, + "id": "way/565672040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565675281", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654843, + 0.0227224 + ], + [ + 109.365477, + 0.0226818 + ] + ] + }, + "id": "way/565675281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565675282", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3702876, + 0.0153775 + ], + [ + 109.3704114, + 0.0154136 + ] + ] + }, + "id": "way/565675282" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565675283", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3699268, + 0.0152617 + ], + [ + 109.370083, + 0.0153098 + ], + [ + 109.3702876, + 0.0153775 + ] + ] + }, + "id": "way/565675283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565675284", + "bridge": "yes", + "highway": "unclassified", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703211, + 0.0158003 + ], + [ + 109.3701974, + 0.0156508 + ] + ] + }, + "id": "way/565675284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565675285", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701974, + 0.0156508 + ], + [ + 109.3699223, + 0.0153265 + ], + [ + 109.3698835, + 0.015298 + ], + [ + 109.3698527, + 0.0152819 + ], + [ + 109.3698151, + 0.0152719 + ], + [ + 109.3681768, + 0.0152738 + ] + ] + }, + "id": "way/565675285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565675286", + "bridge": "yes", + "highway": "unclassified", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681768, + 0.0152738 + ], + [ + 109.3680538, + 0.0152788 + ] + ] + }, + "id": "way/565675286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/565675287", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652634, + 0.0156842 + ], + [ + 109.3652406, + 0.015707 + ], + [ + 109.3652031, + 0.0157419 + ], + [ + 109.3646822, + 0.0162436 + ], + [ + 109.3641363, + 0.0167072 + ], + [ + 109.3641079, + 0.0167432 + ], + [ + 109.3640512, + 0.0167974 + ], + [ + 109.3635194, + 0.0173059 + ], + [ + 109.3629148, + 0.0178192 + ], + [ + 109.3627864, + 0.0179118 + ], + [ + 109.3626776, + 0.0179717 + ], + [ + 109.3624936, + 0.0180614 + ], + [ + 109.3622786, + 0.0181454 + ], + [ + 109.3613648, + 0.0184833 + ], + [ + 109.3593563, + 0.0190236 + ], + [ + 109.3582268, + 0.0193355 + ], + [ + 109.3577665, + 0.0194665 + ], + [ + 109.357342, + 0.0195818 + ], + [ + 109.3568395, + 0.0197179 + ], + [ + 109.3543704, + 0.0203867 + ], + [ + 109.3542698, + 0.0204139 + ], + [ + 109.3535395, + 0.0206033 + ], + [ + 109.3529093, + 0.0207538 + ], + [ + 109.3521501, + 0.0209503 + ], + [ + 109.3518296, + 0.0210354 + ], + [ + 109.3511963, + 0.0212007 + ], + [ + 109.3508909, + 0.021285 + ], + [ + 109.3502734, + 0.0214501 + ], + [ + 109.3489276, + 0.0218349 + ], + [ + 109.3479249, + 0.0221147 + ], + [ + 109.3476916, + 0.0221774 + ], + [ + 109.3471739, + 0.0223166 + ], + [ + 109.3466307, + 0.0224627 + ], + [ + 109.3463948, + 0.0225239 + ], + [ + 109.3454107, + 0.02279 + ], + [ + 109.3443167, + 0.0230858 + ], + [ + 109.3433982, + 0.023319 + ], + [ + 109.3417507, + 0.0237422 + ], + [ + 109.341662, + 0.0237621 + ], + [ + 109.341436, + 0.0238127 + ], + [ + 109.3403001, + 0.0241131 + ], + [ + 109.338814, + 0.0245183 + ], + [ + 109.3386099, + 0.024567 + ], + [ + 109.3382226, + 0.0246744 + ], + [ + 109.3377301, + 0.024803 + ], + [ + 109.3371086, + 0.0249665 + ], + [ + 109.336895, + 0.0250317 + ], + [ + 109.3366523, + 0.0250947 + ], + [ + 109.3361895, + 0.025218 + ], + [ + 109.3357953, + 0.0253361 + ], + [ + 109.3356116, + 0.0253844 + ], + [ + 109.335452, + 0.0254233 + ], + [ + 109.3353434, + 0.0254233 + ], + [ + 109.3348062, + 0.0253818 + ], + [ + 109.3343514, + 0.0253433 + ], + [ + 109.3335396, + 0.0252771 + ], + [ + 109.3333845, + 0.0252624 + ] + ] + }, + "id": "way/565675287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497301", + "bridge": "yes", + "highway": "unclassified", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2857252, + -0.0184584 + ], + [ + 109.2856219, + -0.0184992 + ] + ] + }, + "id": "way/566497301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497720", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106119, + -0.006732 + ], + [ + 109.3105864, + -0.0067309 + ], + [ + 109.3103957, + -0.0066754 + ], + [ + 109.3101486, + -0.0066062 + ], + [ + 109.3094275, + -0.0064127 + ], + [ + 109.3093641, + -0.0063957 + ], + [ + 109.3089369, + -0.0062931 + ], + [ + 109.3085979, + -0.0061983 + ], + [ + 109.3083485, + -0.0061298 + ], + [ + 109.3081082, + -0.0060414 + ], + [ + 109.3079866, + -0.006001 + ], + [ + 109.3077464, + -0.0059398 + ], + [ + 109.3075949, + -0.0058785 + ], + [ + 109.3074099, + -0.0058199 + ], + [ + 109.3073487, + -0.0058019 + ], + [ + 109.3070794, + -0.0057227 + ], + [ + 109.3068823, + -0.0056734 + ], + [ + 109.3065511, + -0.0055791 + ], + [ + 109.3064638, + -0.005545 + ], + [ + 109.3062592, + -0.005465 + ], + [ + 109.3060161, + -0.0053649 + ], + [ + 109.3059939, + -0.0053558 + ], + [ + 109.305731, + -0.0052373 + ], + [ + 109.3056018, + -0.0051791 + ], + [ + 109.3054126, + -0.0050935 + ], + [ + 109.3052756, + -0.0050572 + ] + ] + }, + "id": "way/566497720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497721", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107287, + -0.0067262 + ], + [ + 109.3106119, + -0.006732 + ] + ] + }, + "id": "way/566497721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497722", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049353, + -0.0082564 + ], + [ + 109.3048802, + -0.0082478 + ] + ] + }, + "id": "way/566497722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497723", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049367, + -0.0087888 + ], + [ + 109.3048882, + -0.0087728 + ] + ] + }, + "id": "way/566497723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497724", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049641, + -0.0091228 + ], + [ + 109.304909, + -0.0091155 + ] + ] + }, + "id": "way/566497724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497725", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304983, + -0.0095906 + ], + [ + 109.3063146, + -0.0099705 + ] + ] + }, + "id": "way/566497725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497726", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050093, + -0.0098362 + ], + [ + 109.3049731, + -0.00983 + ] + ] + }, + "id": "way/566497726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497727", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050581, + -0.010227 + ], + [ + 109.3050227, + -0.0102212 + ] + ] + }, + "id": "way/566497727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497728", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051185, + -0.0106328 + ], + [ + 109.3050646, + -0.0106276 + ] + ] + }, + "id": "way/566497728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050968, + -0.0113794 + ], + [ + 109.3051099, + -0.0113809 + ] + ] + }, + "id": "way/566497729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566497730", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051233, + -0.0122707 + ], + [ + 109.3051722, + -0.0122817 + ] + ] + }, + "id": "way/566497730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566498953", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3686822, + -0.0269214 + ], + [ + 109.3687439, + -0.0269273 + ], + [ + 109.369296, + -0.0270146 + ], + [ + 109.3695491, + -0.0270408 + ], + [ + 109.369618, + -0.0270554 + ], + [ + 109.3697312, + -0.0271065 + ], + [ + 109.3700341, + -0.0272859 + ], + [ + 109.3700898, + -0.0272951 + ], + [ + 109.3701531, + -0.0272953 + ], + [ + 109.3703354, + -0.0272542 + ], + [ + 109.3703516, + -0.0272559 + ], + [ + 109.3703603, + -0.02726 + ], + [ + 109.3703715, + -0.0272707 + ] + ] + }, + "id": "way/566498953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566498954", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703715, + -0.0272707 + ], + [ + 109.3704015, + -0.027335 + ] + ] + }, + "id": "way/566498954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500114", + "highway": "unclassified", + "name": "Selat Panjang", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3735139, + -0.0155042 + ], + [ + 109.3736534, + -0.0154831 + ], + [ + 109.3738559, + -0.0154717 + ], + [ + 109.3740859, + -0.0154649 + ], + [ + 109.3744647, + -0.0154312 + ], + [ + 109.3746469, + -0.0153853 + ], + [ + 109.3748952, + -0.0153087 + ], + [ + 109.3752868, + -0.0151489 + ], + [ + 109.3759078, + -0.0148849 + ], + [ + 109.3760446, + -0.0148071 + ], + [ + 109.3761827, + -0.0147159 + ], + [ + 109.3764348, + -0.0145711 + ], + [ + 109.3766145, + -0.014445 + ], + [ + 109.376987, + -0.0142004 + ], + [ + 109.3773637, + -0.0139429 + ], + [ + 109.3774884, + -0.0138594 + ] + ] + }, + "id": "way/566500114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500115", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Selat Panjang", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3734348, + -0.0155102 + ], + [ + 109.3735139, + -0.0155042 + ] + ] + }, + "id": "way/566500115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500116", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Selat Panjang", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3667917, + -0.0148568 + ], + [ + 109.3668573, + -0.0148801 + ] + ] + }, + "id": "way/566500116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500117", + "highway": "unclassified", + "name": "Selat Panjang", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639204, + -0.0155115 + ], + [ + 109.3639345, + -0.0155018 + ], + [ + 109.3640833, + -0.0153998 + ], + [ + 109.3642206, + -0.01531 + ], + [ + 109.3643748, + -0.0152033 + ], + [ + 109.3645314, + -0.0151043 + ], + [ + 109.3646149, + -0.0150571 + ], + [ + 109.3647116, + -0.015017 + ], + [ + 109.3648081, + -0.0149915 + ], + [ + 109.3649308, + -0.0149734 + ], + [ + 109.3650509, + -0.0149667 + ], + [ + 109.3652992, + -0.0149525 + ], + [ + 109.3653308, + -0.0149507 + ], + [ + 109.3654736, + -0.0149351 + ], + [ + 109.3655726, + -0.014927 + ], + [ + 109.3658839, + -0.0148904 + ], + [ + 109.3661489, + -0.0148492 + ], + [ + 109.3662934, + -0.0148239 + ], + [ + 109.3664034, + -0.0148179 + ], + [ + 109.3665791, + -0.0148232 + ], + [ + 109.366689, + -0.0148252 + ], + [ + 109.3667172, + -0.0148313 + ], + [ + 109.3667917, + -0.0148568 + ] + ] + }, + "id": "way/566500117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500118", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Selat Panjang", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3637601, + -0.0155726 + ], + [ + 109.3638391, + -0.0155445 + ], + [ + 109.3639204, + -0.0155115 + ] + ] + }, + "id": "way/566500118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500119", + "highway": "unclassified", + "name": "Selat Panjang", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630416, + -0.0155804 + ], + [ + 109.3632585, + -0.0156011 + ], + [ + 109.3634261, + -0.0156064 + ], + [ + 109.3635723, + -0.0156011 + ], + [ + 109.3637601, + -0.0155726 + ] + ] + }, + "id": "way/566500119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500331", + "highway": "trunk", + "name": "Gusti Situt Mahmud", + "name:id": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224186, + 0.0011963 + ], + [ + 109.3225662, + 0.0009335 + ], + [ + 109.3227424, + 0.0007107 + ], + [ + 109.3229682, + 0.0003923 + ], + [ + 109.3233928, + 0.0000359 + ], + [ + 109.3234818, + -0.0000388 + ], + [ + 109.3235477, + -0.0000882 + ], + [ + 109.3239094, + -0.0003631 + ] + ] + }, + "id": "way/566500331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500842", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549027, + -0.0127089 + ], + [ + 109.3549964, + -0.0127185 + ] + ] + }, + "id": "way/566500842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500844", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354785, + -0.0146545 + ], + [ + 109.3548625, + -0.014656 + ] + ] + }, + "id": "way/566500844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566500845", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548386, + -0.0151562 + ], + [ + 109.3547378, + -0.015153 + ] + ] + }, + "id": "way/566500845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501782", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475293, + -0.0044539 + ], + [ + 109.3475914, + -0.0044852 + ] + ] + }, + "id": "way/566501782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501783", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439533, + -0.0009362 + ], + [ + 109.3446606, + -0.0011602 + ], + [ + 109.3450516, + -0.0012901 + ], + [ + 109.3455264, + -0.0014403 + ], + [ + 109.3458858, + -0.001541 + ], + [ + 109.3461353, + -0.0016281 + ], + [ + 109.3464786, + -0.0017434 + ] + ] + }, + "id": "way/566501783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501784", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438167, + -0.0009005 + ], + [ + 109.3439533, + -0.0009362 + ] + ] + }, + "id": "way/566501784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501786", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436264, + -0.0017035 + ], + [ + 109.3435121, + -0.0016496 + ] + ] + }, + "id": "way/566501786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501788", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433524, + -0.0020387 + ], + [ + 109.3432648, + -0.0019914 + ] + ] + }, + "id": "way/566501788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501793", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426714, + -0.0045537 + ], + [ + 109.3436587, + -0.0050569 + ], + [ + 109.3442309, + -0.0053376 + ], + [ + 109.3448098, + -0.0056045 + ] + ] + }, + "id": "way/566501793" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501794", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425662, + -0.0045381 + ], + [ + 109.3426714, + -0.0045537 + ] + ] + }, + "id": "way/566501794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501795", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426001, + -0.0049272 + ], + [ + 109.342507, + -0.0049155 + ] + ] + }, + "id": "way/566501795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501796", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426696, + -0.0049493 + ], + [ + 109.3426001, + -0.0049272 + ] + ] + }, + "id": "way/566501796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501797", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426697, + -0.0057691 + ], + [ + 109.3425699, + -0.005712 + ] + ] + }, + "id": "way/566501797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501798", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427666, + -0.0058137 + ], + [ + 109.3426697, + -0.0057691 + ] + ] + }, + "id": "way/566501798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501799", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425331, + -0.0062011 + ], + [ + 109.3425838, + -0.006258 + ] + ] + }, + "id": "way/566501799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501800", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418713, + -0.006707 + ], + [ + 109.3418109, + -0.0066376 + ] + ] + }, + "id": "way/566501800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501801", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341496, + -0.0069409 + ], + [ + 109.3414345, + -0.0068566 + ] + ] + }, + "id": "way/566501801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501802", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407344, + -0.0074631 + ], + [ + 109.3407845, + -0.0075242 + ], + [ + 109.3408751, + -0.0076345 + ], + [ + 109.3410296, + -0.0078228 + ], + [ + 109.3424458, + -0.0095485 + ] + ] + }, + "id": "way/566501802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501803", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402495, + -0.0079264 + ], + [ + 109.3401693, + -0.0078365 + ] + ] + }, + "id": "way/566501803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501804", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Jalan Dharma Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3374926, + -0.0110099 + ], + [ + 109.3375292, + -0.0108625 + ] + ] + }, + "id": "way/566501804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501805", + "highway": "unclassified", + "name": "Jalan Dharma Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365464, + -0.0122879 + ], + [ + 109.3369507, + -0.0117269 + ], + [ + 109.337255, + -0.0113489 + ], + [ + 109.3372939, + -0.0112966 + ], + [ + 109.3374273, + -0.0111178 + ], + [ + 109.3374552, + -0.0110717 + ], + [ + 109.3374926, + -0.0110099 + ] + ] + }, + "id": "way/566501805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501806", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.338326, + -0.009269 + ], + [ + 109.3382909, + -0.0092213 + ], + [ + 109.3379974, + -0.0088593 + ] + ] + }, + "id": "way/566501806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501807", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Jalan Dharma Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383494, + -0.0094172 + ], + [ + 109.3383326, + -0.0093501 + ] + ] + }, + "id": "way/566501807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566501809", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392328, + -0.0086662 + ], + [ + 109.3391925, + -0.0086251 + ] + ] + }, + "id": "way/566501809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503088", + "highway": "residential", + "name": "Jalan Lapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648683, + -0.0046831 + ], + [ + 109.3648127, + -0.004681 + ], + [ + 109.3636368, + -0.0046363 + ] + ] + }, + "id": "way/566503088" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503090", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalan Lapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650412, + -0.0046948 + ], + [ + 109.3648683, + -0.0046831 + ] + ] + }, + "id": "way/566503090" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503475", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259267, + -0.0005929 + ], + [ + 109.3258826, + -0.0006178 + ], + [ + 109.325833, + -0.0006674 + ], + [ + 109.3254795, + -0.0010951 + ], + [ + 109.3252696, + -0.0013491 + ] + ] + }, + "id": "way/566503475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503476", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260138, + -0.0005416 + ], + [ + 109.3259267, + -0.0005929 + ] + ] + }, + "id": "way/566503476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503477", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332733, + -0.0087312 + ], + [ + 109.3333861, + -0.0088511 + ], + [ + 109.3336259, + -0.0091144 + ], + [ + 109.333696, + -0.0091914 + ], + [ + 109.3337887, + -0.0092995 + ], + [ + 109.333879, + -0.0094049 + ], + [ + 109.3340349, + -0.0095868 + ], + [ + 109.3342524, + -0.0098405 + ], + [ + 109.3343818, + -0.0099899 + ], + [ + 109.3344948, + -0.0101185 + ], + [ + 109.334732, + -0.0103875 + ], + [ + 109.3350597, + -0.0107228 + ], + [ + 109.3351523, + -0.0108234 + ], + [ + 109.3352482, + -0.0109233 + ], + [ + 109.335326, + -0.0110158 + ], + [ + 109.3353481, + -0.011038 + ], + [ + 109.3353756, + -0.0110695 + ], + [ + 109.3355707, + -0.011276 + ], + [ + 109.3357551, + -0.0114758 + ], + [ + 109.3358778, + -0.0116073 + ], + [ + 109.3361635, + -0.011909 + ], + [ + 109.3363157, + -0.0120666 + ] + ] + }, + "id": "way/566503477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503479", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333325, + -0.0077828 + ], + [ + 109.3334028, + -0.0078039 + ] + ] + }, + "id": "way/566503479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332853, + -0.0077572 + ], + [ + 109.333325, + -0.0077828 + ] + ] + }, + "id": "way/566503480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503481", + "highway": "residential", + "name": "Sungai Selamat 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334511, + -0.0076161 + ], + [ + 109.3340002, + -0.0077651 + ] + ] + }, + "id": "way/566503481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503482", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Sungai Selamat 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333639, + -0.0075907 + ], + [ + 109.3334511, + -0.0076161 + ] + ] + }, + "id": "way/566503482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503483", + "highway": "residential", + "name": "Sungai Selamat 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334725, + -0.0073332 + ], + [ + 109.3343329, + -0.0074956 + ] + ] + }, + "id": "way/566503483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503484", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Sungai Selamat 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334055, + -0.0073184 + ], + [ + 109.3334725, + -0.0073332 + ] + ] + }, + "id": "way/566503484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503486", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Sungai Selamat 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333465, + -0.0069952 + ], + [ + 109.3334337, + -0.0070019 + ] + ] + }, + "id": "way/566503486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503488", + "highway": "residential", + "name": "Sungai Selamat 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333311, + -0.0069846 + ], + [ + 109.3333465, + -0.0069952 + ] + ] + }, + "id": "way/566503488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503491", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332678, + -0.0058451 + ], + [ + 109.3338511, + -0.0058848 + ] + ] + }, + "id": "way/566503491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503492", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332016, + -0.0058405 + ], + [ + 109.3332678, + -0.0058451 + ] + ] + }, + "id": "way/566503492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503495", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Sungai Selamat 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332333, + -0.0055739 + ], + [ + 109.3333076, + -0.0055897 + ] + ] + }, + "id": "way/566503495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503498", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328328, + -0.0055321 + ], + [ + 109.3331815, + -0.0055853 + ], + [ + 109.3332333, + -0.0055739 + ] + ] + }, + "id": "way/566503498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503500", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Sungai Selamat 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333425, + -0.0051646 + ], + [ + 109.3334282, + -0.0051844 + ] + ] + }, + "id": "way/566503500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503502", + "highway": "residential", + "name": "Sungai Selamat 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332962, + -0.0051429 + ], + [ + 109.3333425, + -0.0051646 + ] + ] + }, + "id": "way/566503502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503503", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Sungai Selamat 9" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335212, + -0.0047193 + ], + [ + 109.3335973, + -0.0047395 + ] + ] + }, + "id": "way/566503503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503504", + "highway": "residential", + "name": "Sungai Selamat 9" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333457, + -0.0046968 + ], + [ + 109.3335212, + -0.0047193 + ] + ] + }, + "id": "way/566503504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503505", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335798, + -0.0045383 + ], + [ + 109.333671, + -0.0045712 + ] + ] + }, + "id": "way/566503505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503506", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333526, + -0.004508 + ], + [ + 109.3335798, + -0.0045383 + ] + ] + }, + "id": "way/566503506" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503507", + "highway": "residential", + "name": "Flamboyan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342591, + -0.0028454 + ], + [ + 109.3344942, + -0.0029235 + ], + [ + 109.3348718, + -0.0030998 + ], + [ + 109.3350128, + -0.0031657 + ], + [ + 109.3350449, + -0.0031807 + ], + [ + 109.3352306, + -0.0032984 + ], + [ + 109.3353921, + -0.0034007 + ], + [ + 109.3354867, + -0.0034734 + ], + [ + 109.3357763, + -0.003696 + ], + [ + 109.3358294, + -0.0037486 + ], + [ + 109.3359866, + -0.0039098 + ], + [ + 109.3360823, + -0.0039925 + ], + [ + 109.336238, + -0.0040731 + ], + [ + 109.3363454, + -0.0041387 + ], + [ + 109.3364588, + -0.0042271 + ], + [ + 109.336494, + -0.0042545 + ], + [ + 109.3366001, + -0.0043382 + ], + [ + 109.3367393, + -0.0045116 + ], + [ + 109.336975, + -0.0046695 + ], + [ + 109.3371711, + -0.004844 + ] + ] + }, + "id": "way/566503507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566503508", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Flamboyan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341356, + -0.0027967 + ], + [ + 109.3342591, + -0.0028454 + ] + ] + }, + "id": "way/566503508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505683", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499763, + -0.0240134 + ], + [ + 109.3499835, + -0.0240554 + ] + ] + }, + "id": "way/566505683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505684", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349964, + -0.0239383 + ], + [ + 109.3499693, + -0.0239705 + ], + [ + 109.3499757, + -0.0240097 + ], + [ + 109.3499763, + -0.0240134 + ] + ] + }, + "id": "way/566505684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505685", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497927, + -0.0126898 + ], + [ + 109.3498688, + -0.0126958 + ] + ] + }, + "id": "way/566505685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505687", + "highway": "residential", + "name": "Jalan Sealat Sumba" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474806, + -0.0185518 + ], + [ + 109.3475676, + -0.0180808 + ], + [ + 109.3476735, + -0.0176801 + ], + [ + 109.3477515, + -0.0175183 + ], + [ + 109.3479604, + -0.0170967 + ], + [ + 109.3480817, + -0.016852 + ], + [ + 109.348116, + -0.0167926 + ], + [ + 109.3481631, + -0.0166968 + ], + [ + 109.3481935, + -0.0166324 + ], + [ + 109.3483171, + -0.0163899 + ], + [ + 109.3483465, + -0.0163269 + ], + [ + 109.3484223, + -0.0161709 + ], + [ + 109.3486605, + -0.0155952 + ], + [ + 109.348728, + -0.0154473 + ], + [ + 109.3488007, + -0.0152961 + ], + [ + 109.3489055, + -0.0150453 + ], + [ + 109.3490665, + -0.0146076 + ], + [ + 109.3491742, + -0.01435 + ], + [ + 109.3492026, + -0.0142864 + ], + [ + 109.3492389, + -0.0141835 + ], + [ + 109.3493043, + -0.0140135 + ], + [ + 109.3494184, + -0.0137217 + ], + [ + 109.34944, + -0.013673 + ], + [ + 109.3495028, + -0.0135317 + ], + [ + 109.3496421, + -0.0132202 + ], + [ + 109.3496662, + -0.0131667 + ], + [ + 109.3496921, + -0.013096 + ], + [ + 109.3497084, + -0.0130531 + ], + [ + 109.3497198, + -0.0130074 + ] + ] + }, + "id": "way/566505687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505691", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476454, + -0.0174592 + ], + [ + 109.3477515, + -0.0175183 + ] + ] + }, + "id": "way/566505691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505694", + "highway": "residential", + "name": "Gang Selat Malaka 1", + "name:id": "Gang Selat Malaka 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476916, + -0.021005 + ], + [ + 109.34786, + -0.0210132 + ], + [ + 109.3480309, + -0.0210091 + ], + [ + 109.3481992, + -0.020993 + ], + [ + 109.3482213, + -0.0209887 + ], + [ + 109.3483943, + -0.0209548 + ], + [ + 109.3485191, + -0.0209259 + ], + [ + 109.3487035, + -0.0208803 + ], + [ + 109.3488718, + -0.0208502 + ], + [ + 109.3489958, + -0.0208314 + ], + [ + 109.3491514, + -0.0208039 + ], + [ + 109.3494183, + -0.020763 + ], + [ + 109.3499748, + -0.0207067 + ], + [ + 109.3503215, + -0.0206751 + ], + [ + 109.3508888, + -0.0206289 + ], + [ + 109.3509552, + -0.0206195 + ], + [ + 109.3509954, + -0.020598 + ], + [ + 109.3510202, + -0.0205672 + ], + [ + 109.3510397, + -0.0205249 + ], + [ + 109.3510732, + -0.0199637 + ], + [ + 109.3511094, + -0.0196083 + ], + [ + 109.3511295, + -0.0194058 + ], + [ + 109.3511416, + -0.0191697 + ], + [ + 109.3511496, + -0.0185971 + ] + ] + }, + "id": "way/566505694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505695", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476212, + -0.021003 + ], + [ + 109.3476916, + -0.021005 + ] + ] + }, + "id": "way/566505695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420226, + -0.0191182 + ], + [ + 109.3413603, + -0.0186812 + ], + [ + 109.3409334, + -0.0184008 + ], + [ + 109.3409227, + -0.0183835 + ], + [ + 109.3409187, + -0.0183621 + ], + [ + 109.3409231, + -0.0183416 + ], + [ + 109.341314, + -0.0177535 + ], + [ + 109.3413113, + -0.0177053 + ], + [ + 109.3413153, + -0.0176617 + ], + [ + 109.3413254, + -0.0176342 + ], + [ + 109.3416297, + -0.0172103 + ] + ] + }, + "id": "way/566505696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505697", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421079, + -0.0191684 + ], + [ + 109.3420226, + -0.0191182 + ] + ] + }, + "id": "way/566505697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505698", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421642, + -0.0187822 + ], + [ + 109.3415752, + -0.0183574 + ] + ] + }, + "id": "way/566505698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505699", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422315, + -0.0188177 + ], + [ + 109.3421642, + -0.0187822 + ] + ] + }, + "id": "way/566505699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505700", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342289, + -0.0184053 + ], + [ + 109.3417751, + -0.0180645 + ] + ] + }, + "id": "way/566505700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505701", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423418, + -0.0184261 + ], + [ + 109.342289, + -0.0184053 + ] + ] + }, + "id": "way/566505701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566505703", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370411, + -0.0128519 + ], + [ + 109.337092, + -0.0129056 + ], + [ + 109.3371103, + -0.0129249 + ], + [ + 109.3371263, + -0.0129416 + ], + [ + 109.3371519, + -0.0129685 + ], + [ + 109.3372095, + -0.0130248 + ], + [ + 109.337571, + -0.0133829 + ], + [ + 109.3377057, + -0.0135143 + ], + [ + 109.3377969, + -0.0136068 + ], + [ + 109.3379854, + -0.0137812 + ], + [ + 109.3380813, + -0.0138784 + ], + [ + 109.3383075, + -0.0140847 + ], + [ + 109.338352, + -0.0141278 + ], + [ + 109.3387333, + -0.0145005 + ], + [ + 109.3389805, + -0.014724 + ], + [ + 109.339191, + -0.0149218 + ], + [ + 109.3392574, + -0.0149882 + ], + [ + 109.3395605, + -0.0152759 + ] + ] + }, + "id": "way/566505703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566562497", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222203, + -0.0605961 + ], + [ + 109.3221715, + -0.0605414 + ] + ] + }, + "id": "way/566562497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566563084", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3739377, + -0.0617129 + ], + [ + 109.3740249, + -0.0618122 + ] + ] + }, + "id": "way/566563084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566563087", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373645, + -0.0614111 + ], + [ + 109.3738787, + -0.0616535 + ] + ] + }, + "id": "way/566563087" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566840702", + "highway": "secondary", + "name": "Jalan Adisucipto", + "oneway": "no", + "ref": "001.2", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574284, + -0.0497995 + ], + [ + 109.3575502, + -0.049917 + ], + [ + 109.3578289, + -0.0501684 + ], + [ + 109.3580846, + -0.0503803 + ], + [ + 109.3583236, + -0.0505796 + ], + [ + 109.3586327, + -0.0508522 + ], + [ + 109.3588732, + -0.0510634 + ], + [ + 109.3591463, + -0.0513033 + ], + [ + 109.3592189, + -0.051367 + ], + [ + 109.3593698, + -0.0514833 + ], + [ + 109.359547, + -0.0516198 + ], + [ + 109.3596044, + -0.0516641 + ], + [ + 109.3598542, + -0.0518626 + ], + [ + 109.3599528, + -0.0519507 + ], + [ + 109.3600781, + -0.0520514 + ], + [ + 109.3601745, + -0.0521327 + ], + [ + 109.3602849, + -0.0522258 + ], + [ + 109.3604273, + -0.0523459 + ], + [ + 109.3606147, + -0.0525166 + ], + [ + 109.3607932, + -0.0526792 + ], + [ + 109.3609041, + -0.0527802 + ], + [ + 109.3609793, + -0.0528555 + ], + [ + 109.3610346, + -0.0529281 + ] + ] + }, + "id": "way/566840702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566841112", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297368, + -0.0371851 + ], + [ + 109.2973363, + -0.0372091 + ] + ] + }, + "id": "way/566841112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566841113", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2929046, + -0.0330936 + ], + [ + 109.2930313, + -0.0332644 + ] + ] + }, + "id": "way/566841113" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566846534", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090654, + -0.0151416 + ], + [ + 109.3102128, + -0.0155854 + ], + [ + 109.3108282, + -0.0158313 + ], + [ + 109.3111099, + -0.0159438 + ], + [ + 109.3113631, + -0.016045 + ], + [ + 109.3122912, + -0.0164157 + ] + ] + }, + "id": "way/566846534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566846535", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Bersama 1 B", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090697, + -0.0143285 + ], + [ + 109.3091196, + -0.0143332 + ] + ] + }, + "id": "way/566846535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566846536", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090892, + -0.0138738 + ], + [ + 109.309156, + -0.0138925 + ] + ] + }, + "id": "way/566846536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566846537", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091256, + -0.0133344 + ], + [ + 109.3091811, + -0.0133547 + ] + ] + }, + "id": "way/566846537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566846538", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091701, + -0.0127609 + ], + [ + 109.3092415, + -0.012774 + ] + ] + }, + "id": "way/566846538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566846886", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343726, + -0.0145664 + ], + [ + 109.3439385, + -0.0146489 + ], + [ + 109.3441343, + -0.014734 + ], + [ + 109.3443362, + -0.0148202 + ], + [ + 109.3444766, + -0.0148789 + ], + [ + 109.3445405, + -0.0149099 + ], + [ + 109.3445489, + -0.0149116 + ], + [ + 109.3445549, + -0.0149097 + ], + [ + 109.3445637, + -0.0148968 + ], + [ + 109.3446198, + -0.0148024 + ], + [ + 109.3446822, + -0.0147039 + ], + [ + 109.3447398, + -0.0145805 + ], + [ + 109.3447409, + -0.0145637 + ], + [ + 109.3447325, + -0.0145557 + ] + ] + }, + "id": "way/566846886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566846887", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438527, + -0.0141594 + ], + [ + 109.3444946, + -0.0144574 + ] + ] + }, + "id": "way/566846887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/566846888", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442037, + -0.0130063 + ], + [ + 109.3442973, + -0.0130457 + ] + ] + }, + "id": "way/566846888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/567303852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500232, + -0.0872822 + ], + [ + 109.3485396, + -0.0864156 + ], + [ + 109.3474155, + -0.0857286 + ] + ] + }, + "id": "way/567303852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120029", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3736965, + -0.0256896 + ], + [ + 109.3737185, + -0.0254584 + ], + [ + 109.3738002, + -0.0248844 + ] + ] + }, + "id": "way/570120029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120030", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.372636, + -0.0235202 + ], + [ + 109.3725711, + -0.0237107 + ], + [ + 109.3724826, + -0.0239414 + ], + [ + 109.372378, + -0.0242485 + ], + [ + 109.3722414, + -0.0246303 + ], + [ + 109.3721607, + -0.0248332 + ], + [ + 109.3720266, + -0.0251739 + ], + [ + 109.3719663, + -0.0253442 + ], + [ + 109.3718818, + -0.0255977 + ] + ] + }, + "id": "way/570120030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120033", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3796541, + -0.027357 + ], + [ + 109.3800173, + -0.0274803 + ] + ] + }, + "id": "way/570120033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120034", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3795382, + -0.027683 + ], + [ + 109.3798946, + -0.0278118 + ] + ] + }, + "id": "way/570120034" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120035", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3794265, + -0.0280259 + ], + [ + 109.3797732, + -0.0281598 + ] + ] + }, + "id": "way/570120035" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120036", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793781, + -0.0323966 + ], + [ + 109.3794947, + -0.0324786 + ] + ] + }, + "id": "way/570120036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120037", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3777612, + -0.0300481 + ], + [ + 109.3780765, + -0.0300464 + ], + [ + 109.3784039, + -0.0300402 + ] + ] + }, + "id": "way/570120037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120038", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3766625, + -0.0287217 + ], + [ + 109.3766487, + -0.0286219 + ], + [ + 109.3766351, + -0.0284858 + ], + [ + 109.376632, + -0.0280237 + ], + [ + 109.3766233, + -0.027962 + ], + [ + 109.3766092, + -0.0279406 + ], + [ + 109.376566, + -0.0279398 + ], + [ + 109.3761469, + -0.0279853 + ] + ] + }, + "id": "way/570120038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120070", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3721755, + -0.0256151 + ], + [ + 109.3721433, + -0.026 + ], + [ + 109.3721272, + -0.026295 + ], + [ + 109.3721017, + -0.0263621 + ], + [ + 109.3720762, + -0.0264251 + ], + [ + 109.3720601, + -0.0264721 + ], + [ + 109.372028, + -0.0265431 + ], + [ + 109.3719855, + -0.0266716 + ], + [ + 109.371977, + -0.0266974 + ], + [ + 109.371973, + -0.0269079 + ], + [ + 109.3718657, + -0.0269254 + ], + [ + 109.371749, + -0.0270192 + ], + [ + 109.3717517, + -0.0272767 + ] + ] + }, + "id": "way/570120070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120079", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.377312, + -0.0298659 + ], + [ + 109.3772728, + -0.0294831 + ], + [ + 109.3771967, + -0.0287066 + ] + ] + }, + "id": "way/570120079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120081", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3757883, + -0.0278563 + ], + [ + 109.3759804, + -0.0278395 + ] + ] + }, + "id": "way/570120081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120083", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3754787, + -0.0278608 + ], + [ + 109.3754787, + -0.0277188 + ] + ] + }, + "id": "way/570120083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120084", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3745095, + -0.0274675 + ], + [ + 109.3744192, + -0.0270702 + ], + [ + 109.3744238, + -0.0270414 + ], + [ + 109.3744326, + -0.0270239 + ], + [ + 109.3747654, + -0.0269475 + ] + ] + }, + "id": "way/570120084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120085", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.374628, + -0.027913 + ], + [ + 109.3744668, + -0.0279433 + ], + [ + 109.374448, + -0.0279593 + ], + [ + 109.3744379, + -0.0279808 + ], + [ + 109.3744587, + -0.0282913 + ], + [ + 109.3744607, + -0.0283818 + ], + [ + 109.3744609, + -0.0284179 + ] + ] + }, + "id": "way/570120085" + }, + { + "type": "Feature", + "properties": { + "@id": "way/570120086", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3728219, + -0.027388 + ], + [ + 109.3728661, + -0.0289188 + ] + ] + }, + "id": "way/570120086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572005830", + "highway": "residential", + "name": "Gang Sealat Karimata I", + "name:id": "Gang Sealat Karimata I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460576, + -0.0183917 + ], + [ + 109.3458315, + -0.0194152 + ], + [ + 109.3458271, + -0.019436 + ], + [ + 109.3458305, + -0.01945 + ], + [ + 109.3458392, + -0.0194601 + ], + [ + 109.3458986, + -0.0194997 + ], + [ + 109.3459354, + -0.0195453 + ], + [ + 109.3459556, + -0.0195868 + ], + [ + 109.3459629, + -0.0196472 + ], + [ + 109.3459599, + -0.0196766 + ], + [ + 109.3458939, + -0.0203164 + ], + [ + 109.3458739, + -0.0205821 + ] + ] + }, + "id": "way/572005830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869368", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401003, + 0.0095111 + ], + [ + 109.3413777, + 0.0093508 + ], + [ + 109.3414726, + 0.0093475 + ] + ] + }, + "id": "way/572869368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869369", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410776, + 0.0103675 + ], + [ + 109.3411352, + 0.0103919 + ] + ] + }, + "id": "way/572869369" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869370", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467106, + 0.0017179 + ], + [ + 109.34683, + 0.0020385 + ], + [ + 109.3468556, + 0.0021198 + ], + [ + 109.3469265, + 0.0023577 + ] + ] + }, + "id": "way/572869370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869371", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465642, + 0.0013224 + ], + [ + 109.3467106, + 0.0017179 + ] + ] + }, + "id": "way/572869371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869372", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440565, + 0.0019492 + ], + [ + 109.3451536, + 0.0016878 + ], + [ + 109.3465642, + 0.0013224 + ] + ] + }, + "id": "way/572869372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869373", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443409, + 0.0022611 + ], + [ + 109.345157, + 0.0020771 + ], + [ + 109.3466341, + 0.0017354 + ], + [ + 109.3467106, + 0.0017179 + ] + ] + }, + "id": "way/572869373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869374", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438366, + 0.0031154 + ], + [ + 109.3439868, + 0.0030772 + ], + [ + 109.3441196, + 0.0030292 + ], + [ + 109.3447082, + 0.0028953 + ], + [ + 109.3453073, + 0.0027539 + ], + [ + 109.3469265, + 0.0023577 + ] + ] + }, + "id": "way/572869374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869375", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344078, + 0.0026956 + ], + [ + 109.3452273, + 0.0024212 + ], + [ + 109.34683, + 0.0020385 + ] + ] + }, + "id": "way/572869375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869376", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451536, + 0.0016878 + ], + [ + 109.3451676, + 0.0018259 + ], + [ + 109.345165, + 0.0018715 + ], + [ + 109.3451482, + 0.001903 + ], + [ + 109.3451409, + 0.0019265 + ], + [ + 109.345157, + 0.0020771 + ], + [ + 109.3452273, + 0.0024212 + ], + [ + 109.3453073, + 0.0027539 + ], + [ + 109.3453956, + 0.0030932 + ], + [ + 109.3454097, + 0.0035593 + ], + [ + 109.3454018, + 0.0038623 + ], + [ + 109.3454198, + 0.0044427 + ] + ] + }, + "id": "way/572869376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869377", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442174, + 0.0033393 + ], + [ + 109.3447485, + 0.0032489 + ], + [ + 109.3448689, + 0.003216 + ], + [ + 109.3453956, + 0.0030932 + ], + [ + 109.3469533, + 0.0027251 + ], + [ + 109.3469775, + 0.0027037 + ], + [ + 109.3469909, + 0.0026688 + ], + [ + 109.3469727, + 0.002525 + ], + [ + 109.3469265, + 0.0023577 + ] + ] + }, + "id": "way/572869377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869378", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435488, + 0.0036016 + ], + [ + 109.3436086, + 0.0036196 + ] + ] + }, + "id": "way/572869378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869379", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428138, + 0.006045 + ], + [ + 109.3428576, + 0.0060591 + ] + ] + }, + "id": "way/572869379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869380", + "highway": "residential", + "lanes": "1", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423013, + 0.0072316 + ], + [ + 109.342344, + 0.0072379 + ] + ] + }, + "id": "way/572869380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869381", + "highway": "residential", + "lanes": "1", + "name": "Gang Kenanga 3", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423035, + 0.0075915 + ], + [ + 109.3423939, + 0.0076014 + ], + [ + 109.342689, + 0.0076191 + ], + [ + 109.3427141, + 0.0076208 + ], + [ + 109.3427265, + 0.0076255 + ], + [ + 109.3427332, + 0.0076322 + ], + [ + 109.34275, + 0.0076627 + ], + [ + 109.3427567, + 0.0076684 + ], + [ + 109.3427661, + 0.0076704 + ], + [ + 109.3427915, + 0.0076781 + ], + [ + 109.3428696, + 0.0076818 + ], + [ + 109.342981, + 0.0076858 + ], + [ + 109.3430822, + 0.0076877 + ], + [ + 109.3434141, + 0.0076939 + ], + [ + 109.3450047, + 0.0077837 + ] + ] + }, + "id": "way/572869381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869382", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341721, + 0.0089961 + ], + [ + 109.3447083, + 0.0092053 + ], + [ + 109.3452314, + 0.0092322 + ] + ] + }, + "id": "way/572869382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869384", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440064, + 0.0098128 + ], + [ + 109.3445734, + 0.0099101 + ], + [ + 109.3447036, + 0.0099324 + ], + [ + 109.3449773, + 0.0099794 + ], + [ + 109.3453681, + 0.0100529 + ], + [ + 109.3455465, + 0.0100797 + ], + [ + 109.3456015, + 0.0100824 + ], + [ + 109.3456106, + 0.0100801 + ], + [ + 109.3456176, + 0.010073 + ], + [ + 109.3456015, + 0.0098115 + ], + [ + 109.3456055, + 0.0097753 + ], + [ + 109.3456256, + 0.0097673 + ], + [ + 109.3459817, + 0.0097632 + ] + ] + }, + "id": "way/572869384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869385", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456686, + 0.0075316 + ], + [ + 109.3456686, + 0.0088459 + ] + ] + }, + "id": "way/572869385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869386", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460168, + 0.0075302 + ], + [ + 109.3459931, + 0.0088298 + ] + ] + }, + "id": "way/572869386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869387", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466844, + 0.0087828 + ], + [ + 109.3466912, + 0.0075471 + ] + ] + }, + "id": "way/572869387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869388", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346323, + 0.0087547 + ], + [ + 109.3463418, + 0.0075316 + ] + ] + }, + "id": "way/572869388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869389", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455747, + 0.0075316 + ], + [ + 109.3456686, + 0.0075316 + ], + [ + 109.3460168, + 0.0075302 + ], + [ + 109.3463418, + 0.0075316 + ], + [ + 109.3466912, + 0.0075471 + ], + [ + 109.3470361, + 0.0075521 + ] + ] + }, + "id": "way/572869389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869390", + "highway": "residential", + "name": "KOMPLEK TAMAN ANGGREK" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466388, + 0.0058804 + ], + [ + 109.3466912, + 0.0075471 + ] + ] + }, + "id": "way/572869390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869391", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462987, + 0.0058935 + ], + [ + 109.3463418, + 0.0075316 + ] + ] + }, + "id": "way/572869391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467588, + 0.0058728 + ], + [ + 109.3466914, + 0.0043112 + ] + ] + }, + "id": "way/572869392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869393", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345534, + 0.0058928 + ], + [ + 109.3456379, + 0.0058921 + ], + [ + 109.345955, + 0.0058909 + ], + [ + 109.3462987, + 0.0058935 + ], + [ + 109.3466388, + 0.0058804 + ], + [ + 109.3467588, + 0.0058728 + ], + [ + 109.3469855, + 0.0058746 + ] + ] + }, + "id": "way/572869393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458926, + 0.0044007 + ], + [ + 109.3459171, + 0.0047381 + ], + [ + 109.3459488, + 0.0051753 + ], + [ + 109.3459341, + 0.0052089 + ], + [ + 109.3459086, + 0.0052343 + ], + [ + 109.3457102, + 0.0052585 + ] + ] + }, + "id": "way/572869394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869395", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457102, + 0.0052585 + ], + [ + 109.3455566, + 0.0052726 + ], + [ + 109.3455338, + 0.0052645 + ], + [ + 109.3455157, + 0.005241 + ], + [ + 109.3454848, + 0.0049111 + ], + [ + 109.3454902, + 0.0048669 + ], + [ + 109.3455076, + 0.0048105 + ], + [ + 109.3455172, + 0.0047688 + ], + [ + 109.345483, + 0.0044362 + ] + ] + }, + "id": "way/572869395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869396", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433673, + 0.0051525 + ], + [ + 109.3434986, + 0.0053081 + ], + [ + 109.3441192, + 0.0052814 + ], + [ + 109.3444321, + 0.0052679 + ] + ] + }, + "id": "way/572869396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869397", + "highway": "residential", + "lanes": "1", + "name": "Jalan Komplek Dharma Citra Residence", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392983, + 0.0070274 + ], + [ + 109.3399643, + 0.0069922 + ], + [ + 109.342469, + 0.006857 + ] + ] + }, + "id": "way/572869397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869398", + "highway": "residential", + "lanes": "1", + "name": "Jalan Komplek Mulia Dharma", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391575, + 0.0081592 + ], + [ + 109.3399997, + 0.0080708 + ], + [ + 109.3409277, + 0.0079916 + ], + [ + 109.3415038, + 0.0079246 + ], + [ + 109.3420444, + 0.0078782 + ] + ] + }, + "id": "way/572869398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869399", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395449, + 0.0042132 + ], + [ + 109.3402518, + 0.0042084 + ], + [ + 109.3411826, + 0.0042017 + ], + [ + 109.3427704, + 0.004131 + ], + [ + 109.3428791, + 0.0041301 + ], + [ + 109.3429394, + 0.0041297 + ], + [ + 109.343018, + 0.0041291 + ], + [ + 109.3431225, + 0.0041283 + ], + [ + 109.3432393, + 0.0041274 + ], + [ + 109.343396, + 0.0041262 + ] + ] + }, + "id": "way/572869399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869400", + "highway": "residential", + "name": "Jalan Komplek Sonya Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397966, + 0.003554 + ], + [ + 109.3413454, + 0.003514 + ], + [ + 109.3426298, + 0.0034844 + ] + ] + }, + "id": "way/572869400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869401", + "highway": "residential", + "name": "KOMPLEK SONYA PERMAI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396515, + 0.0038781 + ], + [ + 109.3413512, + 0.003842 + ], + [ + 109.3426232, + 0.00381 + ] + ] + }, + "id": "way/572869401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869402", + "highway": "residential", + "name": "Jalan Komplek Sonya Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435151, + 0.0037308 + ], + [ + 109.3426406, + 0.0037367 + ] + ] + }, + "id": "way/572869402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869403", + "highway": "residential", + "name": "Jalan Komplek Sonya Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426232, + 0.00381 + ], + [ + 109.3426373, + 0.0037983 + ], + [ + 109.342642, + 0.0037916 + ], + [ + 109.3426437, + 0.0037833 + ], + [ + 109.3426406, + 0.0037367 + ], + [ + 109.3426298, + 0.0034844 + ], + [ + 109.3426377, + 0.0033783 + ], + [ + 109.3426383, + 0.0033704 + ], + [ + 109.34264, + 0.0033667 + ], + [ + 109.342646, + 0.0033639 + ] + ] + }, + "id": "way/572869403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869404", + "highway": "residential", + "name": "Jalan Komplek Sonya Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342646, + 0.0033639 + ], + [ + 109.3436033, + 0.003334 + ] + ] + }, + "id": "way/572869404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869405", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429032, + 0.0017327 + ], + [ + 109.3439149, + 0.0017344 + ] + ] + }, + "id": "way/572869405" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869406", + "highway": "residential", + "name": "KOMPLEK GARDEN MAS 8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340508, + 0.0005418 + ], + [ + 109.340762, + 0.0005385 + ], + [ + 109.3439091, + 0.0004801 + ] + ] + }, + "id": "way/572869406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572869407", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425813, + 0.0009254 + ], + [ + 109.3439106, + 0.0009147 + ] + ] + }, + "id": "way/572869407" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880016", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411849, + 0.0104036 + ], + [ + 109.341825, + 0.0105733 + ] + ] + }, + "id": "way/572880016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880017", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411352, + 0.0103919 + ], + [ + 109.3411849, + 0.0104036 + ] + ] + }, + "id": "way/572880017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880018", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415017, + 0.0093797 + ], + [ + 109.3415835, + 0.0093985 + ] + ] + }, + "id": "way/572880018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880019", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414661, + 0.0093706 + ], + [ + 109.3415017, + 0.0093797 + ] + ] + }, + "id": "way/572880019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880020", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416486, + 0.0089914 + ], + [ + 109.341721, + 0.0089961 + ] + ] + }, + "id": "way/572880020" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880021", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416113, + 0.0089842 + ], + [ + 109.3416486, + 0.0089914 + ] + ] + }, + "id": "way/572880021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880022", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422736, + 0.0074615 + ], + [ + 109.3423455, + 0.0074723 + ] + ] + }, + "id": "way/572880022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880023", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422127, + 0.0074554 + ], + [ + 109.3422736, + 0.0074615 + ] + ] + }, + "id": "way/572880023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880024", + "highway": "residential", + "lanes": "1", + "name": "Jalan Komplek Amy Permai Residence", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424375, + 0.0072401 + ], + [ + 109.3443221, + 0.0072902 + ] + ] + }, + "id": "way/572880024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880025", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342344, + 0.0072379 + ], + [ + 109.3424375, + 0.0072401 + ] + ] + }, + "id": "way/572880025" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880026", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429582, + 0.0060712 + ], + [ + 109.3436515, + 0.0060591 + ] + ] + }, + "id": "way/572880026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880027", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432888, + 0.0050754 + ], + [ + 109.3433673, + 0.0051525 + ] + ] + }, + "id": "way/572880027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880028", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432314, + 0.005021 + ], + [ + 109.3432888, + 0.0050754 + ] + ] + }, + "id": "way/572880028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880031", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436944, + 0.003629 + ], + [ + 109.3454097, + 0.0035593 + ] + ] + }, + "id": "way/572880031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880032", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438849, + 0.0019741 + ], + [ + 109.3439781, + 0.0019647 + ] + ] + }, + "id": "way/572880032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572880524", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459817, + 0.0097632 + ], + [ + 109.3459864, + 0.009774 + ], + [ + 109.3460025, + 0.0097827 + ], + [ + 109.3460219, + 0.0097874 + ], + [ + 109.3463753, + 0.0097418 + ] + ] + }, + "id": "way/572880524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572883450", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409131, + 0.010893 + ], + [ + 109.3401915, + 0.0110292 + ], + [ + 109.3392346, + 0.0112224 + ] + ] + }, + "id": "way/572883450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572885144", + "highway": "residential", + "name": "Gang Karya Bhakti 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258484, + -0.0473601 + ], + [ + 109.3262769, + -0.0471083 + ], + [ + 109.3265746, + -0.0469286 + ], + [ + 109.3267744, + -0.0468361 + ], + [ + 109.3270655, + -0.0466711 + ], + [ + 109.3273435, + -0.0464875 + ], + [ + 109.3276622, + -0.0463049 + ], + [ + 109.3278057, + -0.0462272 + ], + [ + 109.3287189, + -0.0456918 + ] + ] + }, + "id": "way/572885144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572885423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308326, + -0.0446568 + ], + [ + 109.3307374, + -0.0444073 + ], + [ + 109.3306256, + -0.044194 + ] + ] + }, + "id": "way/572885423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572885636", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3261662, + -0.045096 + ], + [ + 109.3262514, + -0.0452388 + ], + [ + 109.3262608, + -0.0452643 + ], + [ + 109.3262596, + -0.0452772 + ], + [ + 109.3262561, + -0.0452885 + ], + [ + 109.3261414, + -0.0453662 + ], + [ + 109.3260428, + -0.0454136 + ], + [ + 109.3260328, + -0.0454242 + ], + [ + 109.3260287, + -0.0454386 + ], + [ + 109.3260281, + -0.0454514 + ], + [ + 109.326175, + -0.0457109 + ], + [ + 109.3263667, + -0.0460194 + ] + ] + }, + "id": "way/572885636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572885732", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265243, + -0.0456727 + ], + [ + 109.3265431, + -0.045724 + ], + [ + 109.3265927, + -0.0458363 + ], + [ + 109.326596, + -0.045852 + ], + [ + 109.3265952, + -0.0458655 + ], + [ + 109.3265853, + -0.0458772 + ], + [ + 109.3264164, + -0.0459778 + ], + [ + 109.3263667, + -0.0460194 + ], + [ + 109.3264231, + -0.0461374 + ], + [ + 109.3264727, + -0.0462514 + ], + [ + 109.3266142, + -0.04648 + ] + ] + }, + "id": "way/572885732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572886028", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336026, + -0.0524171 + ], + [ + 109.3336637, + -0.0525613 + ], + [ + 109.3338662, + -0.0530682 + ], + [ + 109.3340566, + -0.0535993 + ], + [ + 109.3342337, + -0.0541196 + ], + [ + 109.3343165, + -0.0543117 + ] + ] + }, + "id": "way/572886028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572886409", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290771, + -0.0548975 + ], + [ + 109.3288894, + -0.054589 + ], + [ + 109.3287694, + -0.0543898 + ] + ] + }, + "id": "way/572886409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572886677", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254306, + -0.0491448 + ], + [ + 109.3254628, + -0.0491087 + ], + [ + 109.325496, + -0.049066 + ], + [ + 109.3255221, + -0.0490328 + ], + [ + 109.3255376, + -0.0490123 + ], + [ + 109.3255614, + -0.0489822 + ], + [ + 109.3255704, + -0.0489679 + ], + [ + 109.3255798, + -0.0489505 + ], + [ + 109.3255872, + -0.0489315 + ], + [ + 109.3255914, + -0.0489151 + ], + [ + 109.3255926, + -0.0488972 + ], + [ + 109.3255937, + -0.0488816 + ], + [ + 109.3255966, + -0.0488648 + ], + [ + 109.3256019, + -0.0488437 + ], + [ + 109.325612, + -0.0488212 + ], + [ + 109.3256418, + -0.048774 + ] + ] + }, + "id": "way/572886677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572886679", + "highway": "residential", + "name": "Gang 2A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249346, + -0.0501347 + ], + [ + 109.3250746, + -0.049936 + ], + [ + 109.3252636, + -0.0496678 + ], + [ + 109.3254407, + -0.0494371 + ], + [ + 109.3258323, + -0.0489248 + ] + ] + }, + "id": "way/572886679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572886708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324815, + -0.0508959 + ], + [ + 109.3251108, + -0.0504329 + ], + [ + 109.3251993, + -0.0502901 + ] + ] + }, + "id": "way/572886708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572886812", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258786, + -0.0530655 + ], + [ + 109.3256399, + -0.0533606 + ] + ] + }, + "id": "way/572886812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572886813", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262434, + -0.0533713 + ], + [ + 109.3259723, + -0.0536674 + ] + ] + }, + "id": "way/572886813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572886814", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260784, + -0.0518129 + ], + [ + 109.3258517, + -0.0521012 + ], + [ + 109.3254702, + -0.0525934 + ], + [ + 109.3254266, + -0.0526498 + ], + [ + 109.3252671, + -0.0528563 + ], + [ + 109.3251919, + -0.0529729 + ], + [ + 109.3251849, + -0.052985 + ], + [ + 109.3251822, + -0.0529994 + ], + [ + 109.3251818, + -0.0530132 + ], + [ + 109.3251892, + -0.0530333 + ], + [ + 109.3252234, + -0.0530708 + ], + [ + 109.325266, + -0.0531058 + ], + [ + 109.325373, + -0.0531768 + ], + [ + 109.3256399, + -0.0533606 + ], + [ + 109.3259723, + -0.0536674 + ] + ] + }, + "id": "way/572886814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572891671", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267889, + 0.0014141 + ], + [ + 109.3268281, + 0.0013468 + ] + ] + }, + "id": "way/572891671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572891672", + "highway": "living_street", + "motorcar": "no", + "tracktype": "grade1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264664, + 0.0016377 + ], + [ + 109.3264951, + 0.0015967 + ], + [ + 109.3265223, + 0.0015624 + ], + [ + 109.3265878, + 0.0015252 + ], + [ + 109.326698, + 0.0014493 + ], + [ + 109.3267516, + 0.0014363 + ], + [ + 109.3267755, + 0.0014396 + ] + ] + }, + "id": "way/572891672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892010", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301211, + 0.0088814 + ], + [ + 109.3301788, + 0.0094575 + ], + [ + 109.3301842, + 0.0094716 + ], + [ + 109.3301949, + 0.0094816 + ], + [ + 109.3318123, + 0.009487 + ] + ] + }, + "id": "way/572892010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892011", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281892, + 0.0090927 + ], + [ + 109.3301211, + 0.0088814 + ], + [ + 109.3303987, + 0.0088567 + ] + ] + }, + "id": "way/572892011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892069", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326341, + 0.0048566 + ], + [ + 109.3265323, + 0.0049447 + ], + [ + 109.3268006, + 0.0050721 + ], + [ + 109.3269313, + 0.0051525 + ], + [ + 109.3270661, + 0.0052585 + ] + ] + }, + "id": "way/572892069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892369", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267322, + 0.0078991 + ], + [ + 109.3265485, + 0.0081838 + ], + [ + 109.3262494, + 0.0086474 + ], + [ + 109.3258343, + 0.0093027 + ], + [ + 109.325729, + 0.0094575 + ], + [ + 109.3257196, + 0.009497 + ], + [ + 109.325729, + 0.0095346 + ], + [ + 109.3257525, + 0.0095614 + ], + [ + 109.325788, + 0.0095969 + ], + [ + 109.3260886, + 0.0097859 + ], + [ + 109.3267808, + 0.010221 + ] + ] + }, + "id": "way/572892369" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892370", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256037, + 0.0072452 + ], + [ + 109.3267322, + 0.0078991 + ] + ] + }, + "id": "way/572892370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892372", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258313, + 0.0008405 + ], + [ + 109.3260357, + 0.0006545 + ] + ] + }, + "id": "way/572892372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892373", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259202, + 0.0005055 + ], + [ + 109.3260357, + 0.0006545 + ], + [ + 109.326698, + 0.0014493 + ] + ] + }, + "id": "way/572892373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892374", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33143, + 0.0006169 + ], + [ + 109.3309987, + 0.0012079 + ] + ] + }, + "id": "way/572892374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892375", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319611, + 0.0012741 + ], + [ + 109.3321238, + 0.0012053 + ], + [ + 109.3322267, + 0.0011815 + ], + [ + 109.3324815, + 0.0011507 + ], + [ + 109.3325546, + 0.001148 + ], + [ + 109.332627, + 0.0011453 + ], + [ + 109.3328409, + 0.0011507 + ] + ] + }, + "id": "way/572892375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892376", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307901, + -0.0001501 + ], + [ + 109.3309861, + 0.0001448 + ], + [ + 109.3310733, + 0.0002575 + ], + [ + 109.3311591, + 0.0003527 + ], + [ + 109.3312852, + 0.0004734 + ], + [ + 109.33143, + 0.0006169 + ], + [ + 109.3316782, + 0.0009213 + ], + [ + 109.3319611, + 0.0012741 + ], + [ + 109.3320349, + 0.0013867 + ], + [ + 109.3321019, + 0.0015289 + ], + [ + 109.3321234, + 0.0016093 + ], + [ + 109.3321516, + 0.0017099 + ], + [ + 109.3321583, + 0.0017488 + ], + [ + 109.3321462, + 0.0017998 + ], + [ + 109.3320952, + 0.0019299 + ], + [ + 109.3320242, + 0.0020707 + ], + [ + 109.3318338, + 0.0023685 + ] + ] + }, + "id": "way/572892376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892377", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282493, + 0.0054981 + ], + [ + 109.3292147, + 0.006226 + ] + ] + }, + "id": "way/572892377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892378", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268749, + 0.0031709 + ], + [ + 109.3268877, + 0.003165 + ], + [ + 109.327212, + 0.0028213 + ], + [ + 109.3272275, + 0.0028089 + ], + [ + 109.3272336, + 0.0028091 + ] + ] + }, + "id": "way/572892378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892379", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272336, + 0.0028091 + ], + [ + 109.3272399, + 0.0028128 + ], + [ + 109.3272495, + 0.0028187 + ], + [ + 109.3274389, + 0.0030081 + ], + [ + 109.3274932, + 0.003049 + ], + [ + 109.3275596, + 0.0030919 + ], + [ + 109.3276926, + 0.0031849 + ] + ] + }, + "id": "way/572892379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892380", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326407, + 0.0023205 + ], + [ + 109.3267523, + 0.0026205 + ], + [ + 109.3268157, + 0.0026664 + ] + ] + }, + "id": "way/572892380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892381", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263448, + 0.0023587 + ], + [ + 109.326407, + 0.0023205 + ], + [ + 109.3266899, + 0.0021699 + ], + [ + 109.3266973, + 0.0021565 + ], + [ + 109.3266939, + 0.0021384 + ] + ] + }, + "id": "way/572892381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892382", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262628, + 0.0014216 + ], + [ + 109.3258767, + 0.001653 + ], + [ + 109.3255321, + 0.0018542 + ] + ] + }, + "id": "way/572892382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892383", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257056, + 0.0006834 + ], + [ + 109.3258313, + 0.0008405 + ], + [ + 109.3262628, + 0.0014216 + ], + [ + 109.3264318, + 0.0016871 + ], + [ + 109.3266939, + 0.0021384 + ] + ] + }, + "id": "way/572892383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892384", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262118, + 0.0002535 + ], + [ + 109.3259462, + 0.0004861 + ], + [ + 109.3259202, + 0.0005055 + ], + [ + 109.3257056, + 0.0006834 + ], + [ + 109.3256173, + 0.0007463 + ], + [ + 109.3253885, + 0.0009131 + ] + ] + }, + "id": "way/572892384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892385", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251476, + 0.0007416 + ], + [ + 109.3254139, + 0.0005458 + ], + [ + 109.3254453, + 0.0005115 + ], + [ + 109.3257728, + 0.0002639 + ], + [ + 109.3260737, + 0.0000308 + ] + ] + }, + "id": "way/572892385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892386", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259342, + -0.0001998 + ], + [ + 109.3256029, + 0.0000432 + ], + [ + 109.3252798, + 0.000293 + ], + [ + 109.3249606, + 0.0005418 + ] + ] + }, + "id": "way/572892386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892387", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259462, + 0.0004861 + ], + [ + 109.3257728, + 0.0002639 + ], + [ + 109.3256029, + 0.0000432 + ] + ] + }, + "id": "way/572892387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892389", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3252798, + 0.000293 + ], + [ + 109.3254453, + 0.0005115 + ], + [ + 109.3256173, + 0.0007463 + ] + ] + }, + "id": "way/572892389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892390", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270875, + 0.0009063 + ], + [ + 109.3276213, + 0.0012741 + ] + ] + }, + "id": "way/572892390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892391", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273019, + 0.0005696 + ], + [ + 109.3278185, + 0.0009616 + ], + [ + 109.3278812, + 0.001005 + ], + [ + 109.3279143, + 0.0010219 + ], + [ + 109.327944, + 0.0010242 + ], + [ + 109.3279897, + 0.0010128 + ], + [ + 109.3280233, + 0.0009869 + ], + [ + 109.3281124, + 0.0009068 + ], + [ + 109.3281271, + 0.0008755 + ], + [ + 109.3281324, + 0.0008535 + ], + [ + 109.3281417, + 0.0008355 + ] + ] + }, + "id": "way/572892391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291985, + 0.0012488 + ], + [ + 109.3288806, + 0.0008516 + ], + [ + 109.3286131, + 0.0004506 + ], + [ + 109.3286023, + 0.0004399 + ], + [ + 109.3285849, + 0.0004379 + ], + [ + 109.3284548, + 0.0005237 + ], + [ + 109.3283261, + 0.0006297 + ], + [ + 109.3282315, + 0.0007376 + ], + [ + 109.3281417, + 0.0008355 + ] + ] + }, + "id": "way/572892392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892393", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278493, + 0.0012848 + ], + [ + 109.3280451, + 0.0013961 + ], + [ + 109.3281631, + 0.0014578 + ], + [ + 109.3283422, + 0.0015329 + ], + [ + 109.3287227, + 0.0016989 + ] + ] + }, + "id": "way/572892393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282315, + 0.0007376 + ], + [ + 109.3284595, + 0.0009803 + ], + [ + 109.3289439, + 0.0014757 + ] + ] + }, + "id": "way/572892394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892395", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312193, + 0.0032953 + ], + [ + 109.3316406, + 0.0035888 + ] + ] + }, + "id": "way/572892395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892396", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304865, + 0.0044269 + ], + [ + 109.3311444, + 0.004895 + ] + ] + }, + "id": "way/572892396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892397", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266829, + 0.0041768 + ], + [ + 109.3272404, + 0.0048092 + ] + ] + }, + "id": "way/572892397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892398", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264496, + 0.0044954 + ], + [ + 109.3266282, + 0.0046013 + ], + [ + 109.3267328, + 0.0046737 + ], + [ + 109.326822, + 0.0047502 + ], + [ + 109.3269709, + 0.0049064 + ], + [ + 109.3272015, + 0.0051472 + ] + ] + }, + "id": "way/572892398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892399", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258118, + 0.0038939 + ], + [ + 109.3258457, + 0.0039107 + ] + ] + }, + "id": "way/572892399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892400", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248679, + 0.004279 + ], + [ + 109.3252062, + 0.0041481 + ], + [ + 109.3253389, + 0.0040965 + ], + [ + 109.3257029, + 0.0039804 + ], + [ + 109.3257176, + 0.0039737 + ], + [ + 109.3257411, + 0.0039502 + ], + [ + 109.325785, + 0.0038822 + ], + [ + 109.3258255, + 0.0037577 + ], + [ + 109.3258443, + 0.0036921 + ], + [ + 109.3258524, + 0.0036451 + ], + [ + 109.3258604, + 0.0035895 + ], + [ + 109.3258663, + 0.0034346 + ] + ] + }, + "id": "way/572892400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572892401", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257573, + 0.0027663 + ], + [ + 109.3268421, + 0.0035915 + ] + ] + }, + "id": "way/572892401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895736", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3006075, + -0.0197732 + ], + [ + 109.300647, + -0.019849 + ], + [ + 109.3006886, + -0.0199255 + ], + [ + 109.3007255, + -0.0199918 + ], + [ + 109.3007856, + -0.0201001 + ], + [ + 109.3008819, + -0.0202777 + ], + [ + 109.3009688, + -0.0204473 + ], + [ + 109.3011042, + -0.0207275 + ], + [ + 109.3012592, + -0.0210406 + ], + [ + 109.3013962, + -0.0213321 + ] + ] + }, + "id": "way/572895736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895737", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303327, + -0.0204626 + ], + [ + 109.3026017, + -0.018931 + ], + [ + 109.3025728, + -0.0188915 + ], + [ + 109.3025373, + -0.0188807 + ], + [ + 109.3024743, + -0.0188941 + ] + ] + }, + "id": "way/572895737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895738", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3024074, + -0.0187617 + ], + [ + 109.3022926, + -0.018501 + ], + [ + 109.3021869, + -0.0182284 + ], + [ + 109.3021081, + -0.0179587 + ], + [ + 109.3020894, + -0.0177978 + ], + [ + 109.302082, + -0.017774 + ], + [ + 109.3020771, + -0.017767 + ], + [ + 109.3020679, + -0.0177576 + ] + ] + }, + "id": "way/572895738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895739", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025153, + -0.0174048 + ], + [ + 109.3023787, + -0.0171594 + ] + ] + }, + "id": "way/572895739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895740", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049214, + -0.0198031 + ], + [ + 109.3045698, + -0.0191184 + ], + [ + 109.3034025, + -0.0169194 + ], + [ + 109.303397, + -0.0169009 + ], + [ + 109.3033987, + -0.0168645 + ], + [ + 109.303391, + -0.0168263 + ], + [ + 109.3033729, + -0.01676 + ] + ] + }, + "id": "way/572895740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895741", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035659, + -0.0178912 + ], + [ + 109.3032311, + -0.017242 + ], + [ + 109.3031321, + -0.01705 + ] + ] + }, + "id": "way/572895741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895764", + "highway": "residential", + "name": "Gang Sy. Nauval" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2989364, + -0.0224969 + ], + [ + 109.298683, + -0.0219896 + ], + [ + 109.2982306, + -0.0211451 + ] + ] + }, + "id": "way/572895764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895765", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996457, + -0.0221747 + ], + [ + 109.2990366, + -0.0210457 + ], + [ + 109.298861, + -0.0207191 + ] + ] + }, + "id": "way/572895765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895766", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3002442, + -0.0218801 + ], + [ + 109.2996313, + -0.0207499 + ], + [ + 109.2994595, + -0.0203901 + ] + ] + }, + "id": "way/572895766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895767", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005391, + -0.0217266 + ], + [ + 109.3000287, + -0.0207561 + ], + [ + 109.2997453, + -0.0202262 + ] + ] + }, + "id": "way/572895767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895776", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999604, + -0.0220238 + ], + [ + 109.3006806, + -0.0234265 + ] + ] + }, + "id": "way/572895776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895777", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996457, + -0.0221747 + ], + [ + 109.3002896, + -0.023413 + ], + [ + 109.3009468, + -0.0246733 + ], + [ + 109.3009608, + -0.0247059 + ], + [ + 109.3009501, + -0.0247367 + ], + [ + 109.3007037, + -0.0248731 + ] + ] + }, + "id": "way/572895777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895778", + "highway": "residential", + "name": "Gang Harisma" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3032031, + -0.0239904 + ], + [ + 109.301912, + -0.021072 + ] + ] + }, + "id": "way/572895778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895779", + "highway": "residential", + "name": "Gang Tidar", + "note": "Gang Gn Tidar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026839, + -0.0207509 + ], + [ + 109.3033023, + -0.0222213 + ] + ] + }, + "id": "way/572895779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895782", + "highway": "residential", + "name": "Gang Sri Medan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3043955, + -0.0200363 + ], + [ + 109.3047059, + -0.0208704 + ] + ] + }, + "id": "way/572895782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572895830", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979735, + -0.0179758 + ], + [ + 109.2972111, + -0.0179845 + ], + [ + 109.2968916, + -0.0179906 + ], + [ + 109.2966673, + -0.0180057 + ], + [ + 109.2962406, + -0.0180349 + ], + [ + 109.2961933, + -0.0180381 + ], + [ + 109.2961858, + -0.0180361 + ], + [ + 109.2961812, + -0.0180336 + ], + [ + 109.2961753, + -0.0180271 + ], + [ + 109.2961711, + -0.0180177 + ], + [ + 109.2961515, + -0.0179153 + ], + [ + 109.2961491, + -0.0179112 + ], + [ + 109.2961462, + -0.0179072 + ], + [ + 109.2961426, + -0.0179037 + ], + [ + 109.2961349, + -0.0179017 + ], + [ + 109.2955153, + -0.0179292 + ] + ] + }, + "id": "way/572895830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572897582", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402374, + 0.0143089 + ], + [ + 109.3395048, + 0.0146475 + ] + ] + }, + "id": "way/572897582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572897583", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340924, + 0.0110088 + ], + [ + 109.3409952, + 0.0110289 + ] + ] + }, + "id": "way/572897583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572897584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407854, + 0.0113828 + ], + [ + 109.3408298, + 0.011396 + ] + ] + }, + "id": "way/572897584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572897585", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340519, + 0.0124716 + ], + [ + 109.3405864, + 0.0124843 + ] + ] + }, + "id": "way/572897585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572897586", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408433, + 0.0118252 + ], + [ + 109.3411267, + 0.0118846 + ], + [ + 109.341178, + 0.0118983 + ], + [ + 109.3431909, + 0.0124528 + ], + [ + 109.3446989, + 0.0128464 + ] + ] + }, + "id": "way/572897586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572916954", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535395, + 0.0206033 + ], + [ + 109.3535697, + 0.020702 + ], + [ + 109.3535971, + 0.0207845 + ], + [ + 109.3536186, + 0.0208421 + ] + ] + }, + "id": "way/572916954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572916964", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518296, + 0.0210354 + ], + [ + 109.3519664, + 0.0214684 + ], + [ + 109.3520468, + 0.0216629 + ], + [ + 109.3521219, + 0.0218144 + ], + [ + 109.3523338, + 0.0222167 + ] + ] + }, + "id": "way/572916964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572916994", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508734, + 0.021235 + ], + [ + 109.3508251, + 0.021121 + ], + [ + 109.3507325, + 0.0209172 + ], + [ + 109.3506682, + 0.0207683 + ], + [ + 109.350628, + 0.0206744 + ], + [ + 109.3505703, + 0.0205283 + ], + [ + 109.3505126, + 0.0203942 + ], + [ + 109.3504871, + 0.0203325 + ] + ] + }, + "id": "way/572916994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917020", + "embankment": "yes", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481724, + 0.0197035 + ], + [ + 109.3481496, + 0.0196552 + ], + [ + 109.3480396, + 0.0193548 + ], + [ + 109.3479243, + 0.0190651 + ], + [ + 109.3477929, + 0.0186655 + ], + [ + 109.3477017, + 0.0183919 + ], + [ + 109.3475327, + 0.0179333 + ], + [ + 109.3474039, + 0.0175577 + ], + [ + 109.347361, + 0.0174129 + ] + ] + }, + "id": "way/572917020" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917022", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488939, + 0.0217339 + ], + [ + 109.3487638, + 0.0213531 + ], + [ + 109.348281, + 0.0200039 + ], + [ + 109.3482032, + 0.0197772 + ], + [ + 109.3481724, + 0.0197035 + ] + ] + }, + "id": "way/572917022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917033", + "embankment": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469366, + 0.0200509 + ], + [ + 109.3471169, + 0.0199932 + ], + [ + 109.3473315, + 0.0199369 + ], + [ + 109.3475381, + 0.0198671 + ], + [ + 109.3477553, + 0.0197974 + ], + [ + 109.347986, + 0.0197384 + ], + [ + 109.3481724, + 0.0197035 + ] + ] + }, + "id": "way/572917033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917037", + "embankment": "yes", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357342, + 0.0195818 + ], + [ + 109.3574864, + 0.0200227 + ], + [ + 109.3576714, + 0.0204679 + ], + [ + 109.3577948, + 0.0208139 + ], + [ + 109.3578672, + 0.0210553 + ], + [ + 109.3579477, + 0.0213343 + ], + [ + 109.3577573, + 0.0214148 + ], + [ + 109.3574783, + 0.0215247 + ] + ] + }, + "id": "way/572917037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917040", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582268, + 0.0193355 + ], + [ + 109.3583635, + 0.0198366 + ], + [ + 109.3583769, + 0.0198698 + ], + [ + 109.3584254, + 0.0200137 + ], + [ + 109.3584674, + 0.0201305 + ], + [ + 109.3584868, + 0.0201863 + ], + [ + 109.3585297, + 0.0202923 + ] + ] + }, + "id": "way/572917040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917042", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357143, + 0.0183436 + ], + [ + 109.3572745, + 0.0186011 + ], + [ + 109.3574166, + 0.0188425 + ], + [ + 109.3575038, + 0.018986 + ], + [ + 109.3576593, + 0.0192623 + ], + [ + 109.3577665, + 0.0194665 + ] + ] + }, + "id": "way/572917042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917044", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3590186, + 0.0170627 + ], + [ + 109.3588851, + 0.0170991 + ], + [ + 109.3586934, + 0.0171849 + ], + [ + 109.3584466, + 0.0173405 + ], + [ + 109.3582052, + 0.0174987 + ], + [ + 109.3580282, + 0.0176382 + ], + [ + 109.3579021, + 0.0177589 + ], + [ + 109.3576366, + 0.0179815 + ], + [ + 109.3573496, + 0.0182202 + ], + [ + 109.3572181, + 0.0183034 + ], + [ + 109.357143, + 0.0183436 + ] + ] + }, + "id": "way/572917044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917046", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357143, + 0.0183436 + ], + [ + 109.3570572, + 0.0181907 + ], + [ + 109.356958, + 0.0180164 + ], + [ + 109.356856, + 0.0178286 + ], + [ + 109.3567541, + 0.0176221 + ], + [ + 109.3566927, + 0.0175127 + ], + [ + 109.3566066, + 0.0173593 + ], + [ + 109.356498, + 0.0171434 + ] + ] + }, + "id": "way/572917046" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917049", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557563, + 0.0174907 + ], + [ + 109.3558958, + 0.0174263 + ], + [ + 109.3560433, + 0.0173619 + ], + [ + 109.3562177, + 0.0172734 + ], + [ + 109.3563598, + 0.0172064 + ], + [ + 109.356498, + 0.0171434 + ] + ] + }, + "id": "way/572917049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917051", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356498, + 0.0171434 + ], + [ + 109.3564081, + 0.0169972 + ], + [ + 109.3563102, + 0.0168188 + ], + [ + 109.3561171, + 0.0163983 + ], + [ + 109.3558589, + 0.015822 + ] + ] + }, + "id": "way/572917051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917077", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521273, + 0.0208874 + ], + [ + 109.3521092, + 0.0208187 + ], + [ + 109.3520925, + 0.0207697 + ], + [ + 109.3520576, + 0.0207073 + ], + [ + 109.3519825, + 0.0205752 + ], + [ + 109.3519483, + 0.0205008 + ], + [ + 109.35192, + 0.020423 + ], + [ + 109.3518953, + 0.0203425 + ], + [ + 109.3518491, + 0.0202259 + ], + [ + 109.3517974, + 0.0201213 + ], + [ + 109.3517236, + 0.0199845 + ], + [ + 109.3514977, + 0.0196157 + ] + ] + }, + "id": "way/572917077" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917104", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354194, + 0.0203251 + ], + [ + 109.353978, + 0.0201085 + ], + [ + 109.3537849, + 0.0198993 + ], + [ + 109.3536454, + 0.0197572 + ], + [ + 109.3535388, + 0.0196358 + ], + [ + 109.3534818, + 0.0195587 + ], + [ + 109.3534785, + 0.0195386 + ], + [ + 109.3534818, + 0.0195211 + ], + [ + 109.3535274, + 0.0194809 + ], + [ + 109.3536159, + 0.0194246 + ], + [ + 109.3537071, + 0.0193816 + ], + [ + 109.353793, + 0.0193441 + ], + [ + 109.3538117, + 0.0193314 + ], + [ + 109.3538225, + 0.0193039 + ], + [ + 109.3538218, + 0.0192656 + ], + [ + 109.353803, + 0.0192348 + ], + [ + 109.3537527, + 0.0191456 + ], + [ + 109.3536428, + 0.0189096 + ], + [ + 109.3534886, + 0.0186159 + ], + [ + 109.3533316, + 0.0183329 + ], + [ + 109.3532538, + 0.0181881 + ], + [ + 109.3531063, + 0.0178769 + ], + [ + 109.3529092, + 0.0174451 + ] + ] + }, + "id": "way/572917104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3773536, + -0.0511489 + ], + [ + 109.377666, + -0.0508996 + ], + [ + 109.3778537, + -0.0507467 + ], + [ + 109.3780589, + -0.0505878 + ], + [ + 109.3783412, + -0.0503591 + ], + [ + 109.3786282, + -0.0501298 + ], + [ + 109.3789145, + -0.0499058 + ], + [ + 109.3790889, + -0.0497859 + ], + [ + 109.3801587, + -0.0489333 + ] + ] + }, + "id": "way/572917480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572917481", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3771958, + -0.0509308 + ], + [ + 109.3777746, + -0.0504792 + ], + [ + 109.3781112, + -0.0502123 + ], + [ + 109.3784532, + -0.0499347 + ], + [ + 109.3786825, + -0.0497429 + ], + [ + 109.3789116, + -0.049565 + ], + [ + 109.3791439, + -0.0493848 + ], + [ + 109.3794054, + -0.0491736 + ], + [ + 109.3796837, + -0.0489496 + ], + [ + 109.3799954, + -0.0487232 + ] + ] + }, + "id": "way/572917481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919583", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558588, + -0.0522618 + ], + [ + 109.3564323, + -0.0528395 + ], + [ + 109.3570561, + -0.0535248 + ], + [ + 109.3575188, + -0.0540121 + ], + [ + 109.3580461, + -0.0544981 + ] + ] + }, + "id": "way/572919583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534946, + -0.048128 + ], + [ + 109.3541409, + -0.0488464 + ] + ] + }, + "id": "way/572919584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919586", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530902, + -0.0473007 + ], + [ + 109.3530331, + -0.0472544 + ], + [ + 109.352873, + -0.0471244 + ], + [ + 109.352702, + -0.0469945 + ], + [ + 109.3526973, + -0.0469735 + ], + [ + 109.3527015, + -0.0469313 + ], + [ + 109.3527036, + -0.0469085 + ], + [ + 109.352756, + -0.0468083 + ], + [ + 109.3530379, + -0.0463787 + ], + [ + 109.3532882, + -0.0459501 + ], + [ + 109.3532911, + -0.0459357 + ], + [ + 109.353287, + -0.0459218 + ], + [ + 109.3532773, + -0.0459082 + ], + [ + 109.3531636, + -0.0458081 + ] + ] + }, + "id": "way/572919586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919587", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3541415, + -0.0464571 + ], + [ + 109.3539639, + -0.0466014 + ], + [ + 109.3537927, + -0.0467271 + ], + [ + 109.3536991, + -0.0468072 + ], + [ + 109.3531779, + -0.0472296 + ], + [ + 109.3530902, + -0.0473007 + ], + [ + 109.3529152, + -0.0475783 + ], + [ + 109.3527788, + -0.0477775 + ], + [ + 109.3527677, + -0.0478006 + ], + [ + 109.3527667, + -0.0478221 + ], + [ + 109.352769, + -0.0478466 + ], + [ + 109.3527734, + -0.0478586 + ], + [ + 109.3527824, + -0.0478721 + ], + [ + 109.3529759, + -0.0479837 + ], + [ + 109.3530004, + -0.0479877 + ], + [ + 109.3530225, + -0.0479839 + ], + [ + 109.3530431, + -0.047971 + ], + [ + 109.3530634, + -0.0479455 + ], + [ + 109.3532968, + -0.0475717 + ], + [ + 109.3533128, + -0.0474523 + ], + [ + 109.3531779, + -0.0472296 + ] + ] + }, + "id": "way/572919587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919588", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570974, + -0.0456961 + ], + [ + 109.3569573, + -0.0458262 + ] + ] + }, + "id": "way/572919588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919589", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572158, + -0.045541 + ], + [ + 109.357257, + -0.0455749 + ] + ] + }, + "id": "way/572919589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919590", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563891, + -0.0466528 + ], + [ + 109.3564322, + -0.0465873 + ], + [ + 109.356506, + -0.046486 + ], + [ + 109.3565965, + -0.0463868 + ], + [ + 109.3567079, + -0.046258 + ], + [ + 109.3568527, + -0.0460958 + ], + [ + 109.3569788, + -0.0459563 + ], + [ + 109.357143, + -0.0458047 + ], + [ + 109.3571544, + -0.045791 + ], + [ + 109.3571538, + -0.0457766 + ], + [ + 109.3571481, + -0.0457592 + ], + [ + 109.3570974, + -0.0456961 + ], + [ + 109.357136, + -0.0456402 + ], + [ + 109.3572158, + -0.045541 + ], + [ + 109.3572691, + -0.0454822 + ], + [ + 109.3574024, + -0.0453373 + ] + ] + }, + "id": "way/572919590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919591", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565378, + -0.0467556 + ], + [ + 109.3565992, + -0.0466684 + ], + [ + 109.356669, + -0.0465799 + ], + [ + 109.3567642, + -0.0464585 + ], + [ + 109.3570344, + -0.0461441 + ], + [ + 109.357143, + -0.046024 + ] + ] + }, + "id": "way/572919591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919592", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567276, + -0.0469052 + ], + [ + 109.3568037, + -0.0468045 + ], + [ + 109.3568996, + -0.0466932 + ], + [ + 109.3569734, + -0.0466094 + ], + [ + 109.3570713, + -0.0464887 + ], + [ + 109.3572436, + -0.0462721 + ], + [ + 109.3573107, + -0.0461749 + ] + ] + }, + "id": "way/572919592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919593", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560537, + -0.0464365 + ], + [ + 109.356107, + -0.0463724 + ], + [ + 109.3561922, + -0.0462708 + ], + [ + 109.3562639, + -0.0461796 + ], + [ + 109.3563424, + -0.0460844 + ], + [ + 109.3564262, + -0.0459798 + ], + [ + 109.3564673, + -0.0459212 + ], + [ + 109.3565255, + -0.0458383 + ], + [ + 109.3566167, + -0.0457115 + ], + [ + 109.3567307, + -0.0455593 + ], + [ + 109.3567937, + -0.0454822 + ] + ] + }, + "id": "way/572919593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919594", + "highway": "living_street", + "lanes": "1", + "motorcar": "yes", + "name": "Gang Berkah", + "smoothness": "intermediate", + "surface": "concrete", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550716, + -0.0507419 + ], + [ + 109.3554125, + -0.0510543 + ], + [ + 109.3555045, + -0.0511274 + ], + [ + 109.3557724, + -0.0513402 + ] + ] + }, + "id": "way/572919594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919595", + "highway": "residential", + "name": "Gang Ramadhan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354766, + -0.0449791 + ], + [ + 109.3548598, + -0.0449008 + ], + [ + 109.3549409, + -0.0448184 + ], + [ + 109.3550248, + -0.0447285 + ], + [ + 109.355128, + -0.044632 + ], + [ + 109.3552313, + -0.0445414 + ], + [ + 109.3553084, + -0.0444778 + ], + [ + 109.3554553, + -0.044359 + ], + [ + 109.3555793, + -0.0442692 + ], + [ + 109.3556685, + -0.0442021 + ], + [ + 109.3558461, + -0.0440532 + ] + ] + }, + "id": "way/572919595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919596", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350349, + -0.0439748 + ], + [ + 109.350697, + -0.0442732 + ] + ] + }, + "id": "way/572919596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572919597", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504316, + -0.0445743 + ], + [ + 109.350697, + -0.0442732 + ], + [ + 109.3509304, + -0.0444542 + ] + ] + }, + "id": "way/572919597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927075", + "highway": "residential", + "name": "Gang Sabar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3723901, + -0.0450946 + ], + [ + 109.3722372, + -0.0451979 + ], + [ + 109.3719153, + -0.0454031 + ], + [ + 109.3717276, + -0.0455251 + ], + [ + 109.3714553, + -0.0457022 + ], + [ + 109.3711549, + -0.0458899 + ], + [ + 109.3707888, + -0.0461085 + ], + [ + 109.3704428, + -0.0463278 + ], + [ + 109.3702114, + -0.0464632 + ], + [ + 109.3699513, + -0.0466161 + ], + [ + 109.3696824, + -0.0467744 + ], + [ + 109.3694209, + -0.0469319 + ], + [ + 109.3690588, + -0.0471425 + ], + [ + 109.3687858, + -0.0472987 + ], + [ + 109.3683942, + -0.0475234 + ], + [ + 109.3681668, + -0.0476562 + ] + ] + }, + "id": "way/572927075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927076", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693241, + -0.0490464 + ], + [ + 109.3695476, + -0.0488906 + ], + [ + 109.3696991, + -0.0487786 + ], + [ + 109.3698218, + -0.0486935 + ], + [ + 109.3699881, + -0.0485775 + ], + [ + 109.3701705, + -0.0484568 + ], + [ + 109.3705085, + -0.0482201 + ], + [ + 109.370715, + -0.0480799 + ], + [ + 109.370935, + -0.0479284 + ], + [ + 109.3711925, + -0.0477487 + ], + [ + 109.3714795, + -0.0475509 + ], + [ + 109.3716947, + -0.0474027 + ], + [ + 109.3718583, + -0.047288 + ], + [ + 109.3721051, + -0.0471197 + ], + [ + 109.3725389, + -0.0468233 + ], + [ + 109.3728581, + -0.0466141 + ], + [ + 109.3731478, + -0.046429 + ] + ] + }, + "id": "way/572927076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927077", + "highway": "residential", + "name": "Jalan Kompleks Parit Mayor Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3785417, + -0.0536173 + ], + [ + 109.3778993, + -0.0540814 + ], + [ + 109.3773736, + -0.0544663 + ], + [ + 109.3769847, + -0.0547412 + ], + [ + 109.3766011, + -0.0550041 + ], + [ + 109.3762337, + -0.0552615 + ], + [ + 109.3759024, + -0.0554761 + ], + [ + 109.3755805, + -0.0556666 + ], + [ + 109.3750964, + -0.0559723 + ], + [ + 109.3747883, + -0.0561609 + ] + ] + }, + "id": "way/572927077" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927078", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3780267, + -0.0544649 + ], + [ + 109.3785404, + -0.0540813 + ], + [ + 109.3789084, + -0.0538058 + ] + ] + }, + "id": "way/572927078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927079", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3787499, + -0.054335 + ], + [ + 109.3785404, + -0.0540813 + ] + ] + }, + "id": "way/572927079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927080", + "highway": "residential", + "name": "Jalan Haji Kadir" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793303, + -0.0539124 + ], + [ + 109.379168, + -0.054025 + ], + [ + 109.3790969, + -0.0540773 + ], + [ + 109.3788448, + -0.0542584 + ], + [ + 109.3787499, + -0.054335 + ], + [ + 109.3782601, + -0.054701 + ], + [ + 109.3778054, + -0.055047 + ] + ] + }, + "id": "way/572927080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927081", + "highway": "residential", + "name": "Gang Suka Suka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3729787, + -0.0534882 + ], + [ + 109.3733007, + -0.0532734 + ], + [ + 109.3735421, + -0.0531091 + ], + [ + 109.3738009, + -0.0529286 + ], + [ + 109.3740027, + -0.0527849 + ], + [ + 109.3741583, + -0.0526762 + ], + [ + 109.3743125, + -0.0525686 + ], + [ + 109.3744768, + -0.0524539 + ], + [ + 109.3746934, + -0.0523078 + ], + [ + 109.3749442, + -0.0521281 + ], + [ + 109.3750548, + -0.0520563 + ], + [ + 109.3751554, + -0.0519892 + ], + [ + 109.3752889, + -0.0518987 + ], + [ + 109.3754384, + -0.0517908 + ], + [ + 109.3756363, + -0.0516478 + ] + ] + }, + "id": "way/572927081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927082", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3729711, + -0.0478698 + ], + [ + 109.3731513, + -0.0481569 + ] + ] + }, + "id": "way/572927082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927331", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3726687, + -0.0454245 + ], + [ + 109.3730217, + -0.0451845 + ], + [ + 109.3733731, + -0.0449216 + ], + [ + 109.3736158, + -0.04475 + ], + [ + 109.3739873, + -0.0445099 + ], + [ + 109.3749236, + -0.0438623 + ], + [ + 109.3769867, + -0.0424367 + ] + ] + }, + "id": "way/572927331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927332", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373129, + -0.0459181 + ], + [ + 109.3734254, + -0.0457022 + ], + [ + 109.3734599, + -0.0456767 + ], + [ + 109.3737164, + -0.0454876 + ], + [ + 109.3739699, + -0.0453186 + ], + [ + 109.3748604, + -0.0447205 + ], + [ + 109.3753338, + -0.0443959 + ], + [ + 109.3758085, + -0.0440727 + ], + [ + 109.376119, + -0.0438595 + ], + [ + 109.3764865, + -0.0436107 + ], + [ + 109.3768559, + -0.0433519 + ], + [ + 109.3774205, + -0.0429784 + ] + ] + }, + "id": "way/572927332" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927333", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3707611, + -0.0470421 + ], + [ + 109.3709128, + -0.0469286 + ], + [ + 109.3711562, + -0.046767 + ], + [ + 109.371741, + -0.0463647 + ], + [ + 109.3723458, + -0.0459234 + ], + [ + 109.3725497, + -0.0457974 + ] + ] + }, + "id": "way/572927333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927334", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3707611, + -0.0470421 + ], + [ + 109.3707768, + -0.0470718 + ], + [ + 109.3707769, + -0.0471055 + ], + [ + 109.3707615, + -0.0471354 + ], + [ + 109.370734, + -0.0471547 + ], + [ + 109.3707006, + -0.0471592 + ], + [ + 109.370669, + -0.0471477 + ], + [ + 109.3706462, + -0.0471229 + ], + [ + 109.3706375, + -0.04709 + ], + [ + 109.3706452, + -0.0470568 + ], + [ + 109.3706675, + -0.0470311 + ], + [ + 109.3706993, + -0.0470188 + ], + [ + 109.3707331, + -0.0470228 + ], + [ + 109.3707611, + -0.0470421 + ] + ] + }, + "id": "way/572927334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927335", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3687188, + -0.0483219 + ], + [ + 109.368926, + -0.0481859 + ], + [ + 109.3692237, + -0.0480249 + ], + [ + 109.3694597, + -0.0478935 + ], + [ + 109.3696408, + -0.0477835 + ], + [ + 109.3699747, + -0.0475784 + ], + [ + 109.3703569, + -0.0473209 + ], + [ + 109.3706292, + -0.0471345 + ], + [ + 109.3706462, + -0.0471229 + ] + ] + }, + "id": "way/572927335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927337", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3690283, + -0.0486979 + ], + [ + 109.3692183, + -0.0485694 + ], + [ + 109.3694584, + -0.0484233 + ], + [ + 109.369732, + -0.0482516 + ], + [ + 109.3699539, + -0.0481148 + ] + ] + }, + "id": "way/572927337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572927338", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3697113, + -0.0494868 + ], + [ + 109.3698983, + -0.0493634 + ], + [ + 109.3700928, + -0.049236 + ], + [ + 109.3703797, + -0.0490563 + ], + [ + 109.3707526, + -0.0488121 + ] + ] + }, + "id": "way/572927338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572937378", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349592, + -0.0752943 + ], + [ + 109.3494934, + -0.0752386 + ], + [ + 109.3490455, + -0.0749677 + ], + [ + 109.3485895, + -0.0746727 + ], + [ + 109.3481898, + -0.0744366 + ], + [ + 109.3475756, + -0.0740343 + ], + [ + 109.3469721, + -0.0736668 + ] + ] + }, + "id": "way/572937378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572937379", + "highway": "living_street", + "name": "Jalan Pemda 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493801, + -0.0756349 + ], + [ + 109.3489838, + -0.0753996 + ], + [ + 109.3484607, + -0.0750777 + ], + [ + 109.3480262, + -0.0748014 + ], + [ + 109.3477983, + -0.0746539 + ], + [ + 109.3476447, + -0.0745352 + ], + [ + 109.3475883, + -0.0744889 + ], + [ + 109.3474831, + -0.0743991 + ], + [ + 109.3471163, + -0.0741637 + ], + [ + 109.3468957, + -0.0740497 + ], + [ + 109.3468682, + -0.0740457 + ], + [ + 109.3468283, + -0.0740938 + ], + [ + 109.3467139, + -0.0742788 + ] + ] + }, + "id": "way/572937379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572937380", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474918, + -0.0747609 + ], + [ + 109.3470633, + -0.0744903 + ], + [ + 109.3467139, + -0.0742788 + ], + [ + 109.3463904, + -0.0740794 + ] + ] + }, + "id": "way/572937380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572937381", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471795, + -0.0752254 + ], + [ + 109.3472944, + -0.0750505 + ], + [ + 109.3473691, + -0.0749469 + ], + [ + 109.3474361, + -0.0748497 + ], + [ + 109.3474918, + -0.0747609 + ], + [ + 109.3475474, + -0.0746767 + ], + [ + 109.3476447, + -0.0745352 + ] + ] + }, + "id": "way/572937381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572937382", + "highway": "living_street", + "name": "Jalan Pemda 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492037, + -0.0759434 + ], + [ + 109.3487558, + -0.0756839 + ], + [ + 109.3483722, + -0.0754264 + ], + [ + 109.3479055, + -0.0751313 + ], + [ + 109.3474361, + -0.0748497 + ] + ] + }, + "id": "way/572937382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572937383", + "highway": "living_street", + "name": "Jalan Rimbawan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349148, + -0.0764104 + ], + [ + 109.3480208, + -0.0757456 + ], + [ + 109.3471795, + -0.0752254 + ], + [ + 109.3460843, + -0.0745546 + ] + ] + }, + "id": "way/572937383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572937385", + "highway": "residential", + "name": "Gang Anggrek" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486579, + -0.0770719 + ], + [ + 109.3486304, + -0.0770753 + ], + [ + 109.3486022, + -0.0771014 + ], + [ + 109.3485606, + -0.0771309 + ], + [ + 109.3485137, + -0.0771463 + ], + [ + 109.3479404, + -0.0768373 + ], + [ + 109.3468018, + -0.0761251 + ] + ] + }, + "id": "way/572937385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949146", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464786, + -0.0017434 + ], + [ + 109.3466084, + -0.0014798 + ], + [ + 109.3466556, + -0.001384 + ] + ] + }, + "id": "way/572949146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949147", + "highway": "residential", + "name": "KOMPLEK DHARMA PUTRA", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440083, + -0.0005539 + ], + [ + 109.3440358, + -0.0005633 + ], + [ + 109.3444589, + -0.0006893 + ], + [ + 109.3452609, + -0.0009415 + ], + [ + 109.34558, + -0.001038 + ], + [ + 109.3458456, + -0.0011238 + ], + [ + 109.3462586, + -0.0012553 + ], + [ + 109.3466556, + -0.001384 + ] + ] + }, + "id": "way/572949147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949148", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462104, + -0.0022906 + ], + [ + 109.3462989, + -0.0020948 + ], + [ + 109.3464786, + -0.0017434 + ] + ] + }, + "id": "way/572949148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949149", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456873, + -0.0034574 + ], + [ + 109.3457812, + -0.0032187 + ], + [ + 109.3458422, + -0.0030697 + ], + [ + 109.3459073, + -0.0029424 + ], + [ + 109.34604, + -0.0026554 + ], + [ + 109.3461142, + -0.0025034 + ] + ] + }, + "id": "way/572949149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949150", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396738, + -0.0054549 + ], + [ + 109.3399533, + -0.0052673 + ], + [ + 109.3401504, + -0.0051348 + ], + [ + 109.3406112, + -0.0048253 + ], + [ + 109.3408406, + -0.0046912 + ], + [ + 109.3410981, + -0.004549 + ], + [ + 109.3413314, + -0.0044122 + ], + [ + 109.3415232, + -0.004325 + ], + [ + 109.3417324, + -0.0042526 + ], + [ + 109.3419255, + -0.0042057 + ], + [ + 109.3420547, + -0.0041538 + ], + [ + 109.3421776, + -0.0041306 + ], + [ + 109.3425443, + -0.0041328 + ] + ] + }, + "id": "way/572949150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949151", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413926, + -0.0068598 + ], + [ + 109.3413582, + -0.0066787 + ], + [ + 109.3412617, + -0.0063837 + ], + [ + 109.3410686, + -0.0058874 + ], + [ + 109.3409186, + -0.0054272 + ] + ] + }, + "id": "way/572949151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949152", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403979, + -0.0057597 + ], + [ + 109.3407199, + -0.0055414 + ], + [ + 109.3409186, + -0.0054272 + ], + [ + 109.341023, + -0.0053671 + ], + [ + 109.3412215, + -0.0052323 + ] + ] + }, + "id": "way/572949152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949153", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401504, + -0.0051348 + ], + [ + 109.3402505, + -0.0053993 + ], + [ + 109.3403979, + -0.0057597 + ] + ] + }, + "id": "way/572949153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949154", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396738, + -0.0054549 + ], + [ + 109.3396638, + -0.0054724 + ], + [ + 109.3396625, + -0.0054911 + ], + [ + 109.3397015, + -0.0055711 + ], + [ + 109.3397496, + -0.0056789 + ], + [ + 109.3398267, + -0.0058767 + ], + [ + 109.339904, + -0.0060909 + ] + ] + }, + "id": "way/572949154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949155", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341737, + -0.0066488 + ], + [ + 109.3415835, + -0.0062066 + ], + [ + 109.3414575, + -0.0058499 + ], + [ + 109.3413421, + -0.0055388 + ], + [ + 109.3412624, + -0.0052625 + ], + [ + 109.3412416, + -0.0052377 + ], + [ + 109.3412215, + -0.0052323 + ] + ] + }, + "id": "way/572949155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949156", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420864, + -0.0064468 + ], + [ + 109.3419832, + -0.0062039 + ], + [ + 109.341782, + -0.0057051 + ] + ] + }, + "id": "way/572949156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949158", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458885, + -0.0085703 + ], + [ + 109.3462077, + -0.0087118 + ], + [ + 109.3462895, + -0.0087504 + ], + [ + 109.3464484, + -0.0088238 + ], + [ + 109.3465678, + -0.0088758 + ], + [ + 109.3466814, + -0.0089257 + ], + [ + 109.3467864, + -0.0089757 + ], + [ + 109.3468906, + -0.0090216 + ], + [ + 109.3470667, + -0.009096 + ] + ] + }, + "id": "way/572949158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949159", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454763, + -0.009625 + ], + [ + 109.3455467, + -0.0096533 + ] + ] + }, + "id": "way/572949159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949160", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455467, + -0.0096533 + ], + [ + 109.3458898, + -0.0098269 + ], + [ + 109.3460809, + -0.0099208 + ], + [ + 109.3462774, + -0.01001 + ], + [ + 109.3464652, + -0.0101046 + ], + [ + 109.3466905, + -0.0102078 + ], + [ + 109.3469091, + -0.0103024 + ] + ] + }, + "id": "way/572949160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949161", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440582, + -0.0089236 + ], + [ + 109.3443759, + -0.0090884 + ], + [ + 109.3446084, + -0.0091926 + ], + [ + 109.3449503, + -0.0093401 + ], + [ + 109.3452421, + -0.0094655 + ], + [ + 109.3454349, + -0.0095363 + ] + ] + }, + "id": "way/572949161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949162", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343916, + -0.0092679 + ], + [ + 109.3442037, + -0.0093861 + ], + [ + 109.3443502, + -0.0094441 + ], + [ + 109.344423, + -0.0094772 + ], + [ + 109.3445095, + -0.0095212 + ], + [ + 109.3445675, + -0.0095487 + ], + [ + 109.3446322, + -0.0095815 + ], + [ + 109.3446037, + -0.0096492 + ], + [ + 109.344589, + -0.0096855 + ], + [ + 109.3445607, + -0.0097559 + ] + ] + }, + "id": "way/572949162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949163", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438337, + -0.0094391 + ], + [ + 109.3440076, + -0.0095044 + ], + [ + 109.344137, + -0.0095621 + ], + [ + 109.3443107, + -0.0096439 + ], + [ + 109.3444555, + -0.0097076 + ], + [ + 109.3445607, + -0.0097559 + ], + [ + 109.3447271, + -0.0098336 + ], + [ + 109.3448874, + -0.0099014 + ], + [ + 109.3450999, + -0.0099899 + ], + [ + 109.3452387, + -0.0100388 + ] + ] + }, + "id": "way/572949163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949164", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439481, + -0.0091642 + ], + [ + 109.3431472, + -0.0086904 + ] + ] + }, + "id": "way/572949164" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949165", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411785, + -0.0071615 + ], + [ + 109.34142, + -0.0074538 + ], + [ + 109.3416989, + -0.007773 + ], + [ + 109.3419939, + -0.0081298 + ], + [ + 109.3422863, + -0.0084678 + ], + [ + 109.3425169, + -0.00876 + ], + [ + 109.3427767, + -0.0091108 + ] + ] + }, + "id": "way/572949165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949166", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343408, + -0.0061586 + ], + [ + 109.343327, + -0.0063032 + ], + [ + 109.343217, + -0.00644 + ], + [ + 109.3429944, + -0.0066331 + ], + [ + 109.3429201, + -0.0066876 + ] + ] + }, + "id": "way/572949166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949167", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445619, + -0.0076608 + ], + [ + 109.3444931, + -0.0078381 + ], + [ + 109.34443, + -0.007997 + ], + [ + 109.3443618, + -0.0081971 + ] + ] + }, + "id": "way/572949167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949168", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430735, + -0.0087748 + ], + [ + 109.3431472, + -0.0086904 + ], + [ + 109.3432713, + -0.0085569 + ], + [ + 109.343329, + -0.0084946 + ], + [ + 109.3434423, + -0.0083873 + ], + [ + 109.3435926, + -0.0082693 + ], + [ + 109.3437079, + -0.0081593 + ], + [ + 109.3437669, + -0.0080922 + ], + [ + 109.3438511, + -0.0079494 + ], + [ + 109.3438721, + -0.007877 + ] + ] + }, + "id": "way/572949168" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949169", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425893, + -0.0093394 + ], + [ + 109.3428334, + -0.009436 + ], + [ + 109.343115, + -0.0095701 + ], + [ + 109.3433806, + -0.0096881 + ], + [ + 109.3436717, + -0.0098295 + ], + [ + 109.3440331, + -0.0099718 + ] + ] + }, + "id": "way/572949169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949170", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424458, + -0.0095485 + ], + [ + 109.3425893, + -0.0093394 + ], + [ + 109.3427208, + -0.0091732 + ], + [ + 109.3427767, + -0.0091108 + ], + [ + 109.3428817, + -0.0089934 + ], + [ + 109.3429328, + -0.0089362 + ], + [ + 109.3430105, + -0.0088486 + ], + [ + 109.3430735, + -0.0087748 + ] + ] + }, + "id": "way/572949170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949171", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422144, + -0.0103771 + ], + [ + 109.3423131, + -0.0102836 + ], + [ + 109.3425518, + -0.0101173 + ], + [ + 109.3427208, + -0.0099805 + ] + ] + }, + "id": "way/572949171" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949172", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426178, + -0.0107113 + ], + [ + 109.3427986, + -0.0103694 + ], + [ + 109.3429649, + -0.0101548 + ], + [ + 109.3431151, + -0.0099912 + ] + ] + }, + "id": "way/572949172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949173", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421459, + -0.010072 + ], + [ + 109.3423399, + -0.0097418 + ], + [ + 109.3424458, + -0.0095485 + ] + ] + }, + "id": "way/572949173" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949174", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420662, + -0.0101655 + ], + [ + 109.3421459, + -0.010072 + ] + ] + }, + "id": "way/572949174" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949175", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400606, + -0.0095183 + ], + [ + 109.3404141, + -0.0093153 + ], + [ + 109.340677, + -0.009149 + ] + ] + }, + "id": "way/572949175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949176", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417293, + -0.0103306 + ], + [ + 109.3414629, + -0.0100019 + ], + [ + 109.3411544, + -0.0096479 + ], + [ + 109.3411195, + -0.0096104 + ], + [ + 109.3409553, + -0.0094299 + ], + [ + 109.340913, + -0.0093783 + ], + [ + 109.340799, + -0.0092335 + ], + [ + 109.3407058, + -0.0091286 + ], + [ + 109.3406998, + -0.0091338 + ], + [ + 109.3406914, + -0.0091398 + ], + [ + 109.340677, + -0.009149 + ] + ] + }, + "id": "way/572949176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949177", + "highway": "living_street", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3378946, + -0.0074297 + ], + [ + 109.3378955, + -0.0072366 + ], + [ + 109.3378707, + -0.0071014 + ] + ] + }, + "id": "way/572949177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949178", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.336975, + -0.0046695 + ], + [ + 109.337009, + -0.0046114 + ], + [ + 109.3370358, + -0.0045436 + ], + [ + 109.3370607, + -0.0044551 + ], + [ + 109.3371351, + -0.0043774 + ], + [ + 109.3371834, + -0.0043412 + ], + [ + 109.3372464, + -0.0043103 + ], + [ + 109.3372826, + -0.0043029 + ], + [ + 109.3373403, + -0.0043063 + ], + [ + 109.3373859, + -0.0043003 + ], + [ + 109.3374215, + -0.0042849 + ], + [ + 109.3376219, + -0.0041279 + ], + [ + 109.3378365, + -0.003975 + ] + ] + }, + "id": "way/572949178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949179", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359402, + -0.0012687 + ], + [ + 109.3363237, + -0.0012955 + ], + [ + 109.3365705, + -0.0013089 + ], + [ + 109.3366805, + -0.0013089 + ], + [ + 109.3367475, + -0.0012794 + ], + [ + 109.3367824, + -0.0012365 + ], + [ + 109.3368092, + -0.0012285 + ], + [ + 109.336883, + -0.0012244 + ], + [ + 109.3372196, + -0.0012553 + ], + [ + 109.3374824, + -0.0012848 + ] + ] + }, + "id": "way/572949179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949180", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437092, + -0.0011824 + ], + [ + 109.3433753, + -0.0011694 + ], + [ + 109.3427798, + -0.0011453 + ], + [ + 109.3424231, + -0.0011346 + ] + ] + }, + "id": "way/572949180" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949181", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438086, + -0.0007755 + ], + [ + 109.3433183, + -0.0007389 + ], + [ + 109.3430353, + -0.0007343 + ], + [ + 109.3427409, + -0.0007303 + ], + [ + 109.3425424, + -0.0007229 + ] + ] + }, + "id": "way/572949181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949182", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451187, + -0.0048353 + ], + [ + 109.3454835, + -0.005013 + ], + [ + 109.3458738, + -0.0052182 + ], + [ + 109.3461379, + -0.0053537 + ], + [ + 109.3462935, + -0.0054476 + ], + [ + 109.3463123, + -0.0054617 + ], + [ + 109.3463377, + -0.0054878 + ], + [ + 109.3464598, + -0.0055656 + ], + [ + 109.3468923, + -0.0057932 + ] + ] + }, + "id": "way/572949182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949183", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453125, + -0.0052421 + ], + [ + 109.3454969, + -0.0053483 + ], + [ + 109.3456565, + -0.0054475 + ], + [ + 109.3459529, + -0.0056112 + ], + [ + 109.3463016, + -0.005807 + ], + [ + 109.3466046, + -0.005976 + ], + [ + 109.3467758, + -0.0060574 + ] + ] + }, + "id": "way/572949183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949184", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452126, + -0.0045732 + ], + [ + 109.3453266, + -0.0042915 + ], + [ + 109.3454272, + -0.0040716 + ], + [ + 109.345435, + -0.0040514 + ], + [ + 109.3455137, + -0.003855 + ], + [ + 109.3455907, + -0.0036706 + ], + [ + 109.3456873, + -0.0034574 + ] + ] + }, + "id": "way/572949184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949185", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450141, + -0.0051188 + ], + [ + 109.345057, + -0.0050197 + ], + [ + 109.3451187, + -0.0048353 + ], + [ + 109.3451363, + -0.0047896 + ], + [ + 109.3452126, + -0.0045732 + ] + ] + }, + "id": "way/572949185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949193", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448869, + -0.005403 + ], + [ + 109.3448098, + -0.0056045 + ], + [ + 109.3447702, + -0.0056931 + ] + ] + }, + "id": "way/572949193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949194", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344637, + -0.005982 + ], + [ + 109.344671, + -0.0059144 + ], + [ + 109.3447034, + -0.0058416 + ], + [ + 109.3447164, + -0.0058123 + ], + [ + 109.3447702, + -0.0056931 + ] + ] + }, + "id": "way/572949194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949195", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444566, + -0.0063888 + ], + [ + 109.3445071, + -0.0062749 + ], + [ + 109.344637, + -0.005982 + ] + ] + }, + "id": "way/572949195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949196", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443385, + -0.006672 + ], + [ + 109.3444566, + -0.0063888 + ] + ] + }, + "id": "way/572949196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949197", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344021, + -0.0074069 + ], + [ + 109.3440636, + -0.0072946 + ], + [ + 109.3441042, + -0.007188 + ], + [ + 109.3441441, + -0.0071075 + ], + [ + 109.3441816, + -0.0070341 + ], + [ + 109.3442403, + -0.006903 + ], + [ + 109.3442873, + -0.0068295 + ], + [ + 109.344307, + -0.0067424 + ], + [ + 109.3443385, + -0.006672 + ] + ] + }, + "id": "way/572949197" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949198", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448869, + -0.005403 + ], + [ + 109.3454728, + -0.005697 + ], + [ + 109.3460649, + -0.0060007 + ], + [ + 109.3463204, + -0.0061181 + ], + [ + 109.3466718, + -0.0062895 + ] + ] + }, + "id": "way/572949198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949199", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447702, + -0.0056931 + ], + [ + 109.3451214, + -0.0058848 + ], + [ + 109.3456257, + -0.0061449 + ], + [ + 109.3459415, + -0.0063076 + ], + [ + 109.3461567, + -0.0064185 + ], + [ + 109.3465366, + -0.0066053 + ] + ] + }, + "id": "way/572949199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949200", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431216, + -0.0023875 + ], + [ + 109.343217, + -0.0024274 + ], + [ + 109.3436274, + -0.002591 + ], + [ + 109.3440592, + -0.0027814 + ], + [ + 109.3445072, + -0.0029665 + ], + [ + 109.3448639, + -0.0031007 + ], + [ + 109.3451992, + -0.0032428 + ], + [ + 109.3454594, + -0.0033582 + ], + [ + 109.3456873, + -0.0034574 + ] + ] + }, + "id": "way/572949200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572949201", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345108, + -0.0017515 + ], + [ + 109.3452501, + -0.0017917 + ], + [ + 109.3454084, + -0.0018373 + ], + [ + 109.3456095, + -0.0019017 + ], + [ + 109.3462989, + -0.0020948 + ] + ] + }, + "id": "way/572949201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572950174", + "highway": "tertiary", + "junction": "roundabout", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317314, + -0.026256 + ], + [ + 109.3317148, + -0.0262857 + ], + [ + 109.3316891, + -0.026308 + ], + [ + 109.3316573, + -0.0263202 + ], + [ + 109.3316233, + -0.0263209 + ], + [ + 109.3315927, + -0.0263108 + ], + [ + 109.3315621, + -0.0262858 + ], + [ + 109.3315439, + -0.0262508 + ], + [ + 109.3315408, + -0.0262113 + ], + [ + 109.3315536, + -0.0261738 + ], + [ + 109.3315801, + -0.0261444 + ], + [ + 109.3316159, + -0.0261278 + ], + [ + 109.3316531, + -0.0261263 + ], + [ + 109.3316883, + -0.0261387 + ], + [ + 109.3317162, + -0.0261633 + ], + [ + 109.3317331, + -0.0261965 + ], + [ + 109.3317369, + -0.0262264 + ], + [ + 109.3317314, + -0.026256 + ] + ] + }, + "id": "way/572950174" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572950177", + "highway": "residential", + "name": "Jalan Karimun" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282636, + -0.0283022 + ], + [ + 109.3266907, + -0.0294779 + ], + [ + 109.3264264, + -0.029676 + ] + ] + }, + "id": "way/572950177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952630", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040629, + -0.0032015 + ], + [ + 109.3034943, + -0.0030644 + ] + ] + }, + "id": "way/572952630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952631", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3041324, + -0.0028749 + ], + [ + 109.30356, + -0.0027439 + ] + ] + }, + "id": "way/572952631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952632", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042243, + -0.002564 + ], + [ + 109.303501, + -0.0024019 + ] + ] + }, + "id": "way/572952632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952633", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042935, + -0.0022517 + ], + [ + 109.3036512, + -0.0021055 + ] + ] + }, + "id": "way/572952633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952645", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033523, + -0.0043748 + ], + [ + 109.3036752, + -0.0044226 + ] + ] + }, + "id": "way/572952645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952678", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013231, + -0.0090208 + ], + [ + 109.3013731, + -0.0092881 + ], + [ + 109.3013874, + -0.0093646 + ], + [ + 109.3014152, + -0.009513 + ], + [ + 109.3014433, + -0.0096636 + ], + [ + 109.3014617, + -0.0097618 + ], + [ + 109.3015075, + -0.0100064 + ], + [ + 109.3015202, + -0.0100747 + ] + ] + }, + "id": "way/572952678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952679", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051034, + -0.0110244 + ], + [ + 109.3050894, + -0.0110215 + ], + [ + 109.3032536, + -0.0110223 + ] + ] + }, + "id": "way/572952679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033671, + -0.0115247 + ], + [ + 109.302461, + -0.0115185 + ] + ] + }, + "id": "way/572952680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952681", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.30346, + -0.0124946 + ], + [ + 109.3019836, + -0.0125646 + ] + ] + }, + "id": "way/572952681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952682", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038958, + -0.0128813 + ], + [ + 109.3039819, + -0.0128891 + ], + [ + 109.3043842, + -0.0128757 + ], + [ + 109.304411, + -0.0128543 + ], + [ + 109.3044271, + -0.0127684 + ], + [ + 109.3044539, + -0.012755 + ], + [ + 109.3050939, + -0.0127241 + ] + ] + }, + "id": "way/572952682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952683", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3024039, + -0.0146023 + ], + [ + 109.3032622, + -0.0145939 + ], + [ + 109.3033091, + -0.0145905 + ], + [ + 109.3033641, + -0.0145791 + ], + [ + 109.3033909, + -0.0145604 + ], + [ + 109.3033976, + -0.014496 + ], + [ + 109.3033993, + -0.0141426 + ] + ] + }, + "id": "way/572952683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952684", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983201, + -0.0151303 + ], + [ + 109.2983896, + -0.0151309 + ], + [ + 109.2993629, + -0.0151625 + ], + [ + 109.2995118, + -0.0151773 + ], + [ + 109.2997961, + -0.0152162 + ] + ] + }, + "id": "way/572952684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952685", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983958, + -0.0156721 + ], + [ + 109.2984912, + -0.0156862 + ], + [ + 109.299445, + -0.0158488 + ] + ] + }, + "id": "way/572952685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952686", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296432, + -0.0217311 + ], + [ + 109.2963755, + -0.0217517 + ], + [ + 109.2941664, + -0.0224128 + ], + [ + 109.2934116, + -0.0225853 + ] + ] + }, + "id": "way/572952686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952687", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2925735, + -0.0230056 + ], + [ + 109.2925659, + -0.0229866 + ], + [ + 109.2923552, + -0.022309 + ], + [ + 109.2921357, + -0.0215945 + ], + [ + 109.2918579, + -0.0207235 + ], + [ + 109.2919384, + -0.0207015 + ], + [ + 109.292012, + -0.0206882 + ], + [ + 109.2921089, + -0.0206798 + ], + [ + 109.2922595, + -0.0206815 + ], + [ + 109.2925809, + -0.0206759 + ], + [ + 109.292793, + -0.0206726 + ] + ] + }, + "id": "way/572952687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952689", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.292793, + -0.0206726 + ], + [ + 109.2930041, + -0.0207053 + ], + [ + 109.2931087, + -0.0207268 + ], + [ + 109.2932364, + -0.0207529 + ], + [ + 109.2933316, + -0.020769 + ], + [ + 109.2934315, + -0.0207754 + ], + [ + 109.293462, + -0.0207797 + ], + [ + 109.29352, + -0.0207849 + ], + [ + 109.2935845, + -0.0207795 + ] + ] + }, + "id": "way/572952689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952690", + "highway": "residential", + "name": "Gang Berlian" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2962383, + -0.0224759 + ], + [ + 109.297953, + -0.0231069 + ] + ] + }, + "id": "way/572952690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952691", + "highway": "living_street", + "motorcar": "destination", + "name": "Gang Fajar Kencana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2964402, + -0.0217003 + ], + [ + 109.296507, + -0.0217279 + ], + [ + 109.2965683, + -0.0217466 + ], + [ + 109.2977412, + -0.0222035 + ], + [ + 109.2979103, + -0.0222694 + ], + [ + 109.2987445, + -0.0225963 + ] + ] + }, + "id": "way/572952691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952762", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999205, + -0.0081476 + ], + [ + 109.2999853, + -0.0085224 + ] + ] + }, + "id": "way/572952762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572952763", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3002247, + -0.0080576 + ], + [ + 109.3002978, + -0.0084637 + ] + ] + }, + "id": "way/572952763" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572953808", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3721815, + 0.0018272 + ], + [ + 109.3723471, + 0.0018453 + ] + ] + }, + "id": "way/572953808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572953813", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718667, + 0.0017781 + ], + [ + 109.3721276, + 0.0018135 + ], + [ + 109.3721815, + 0.0018272 + ] + ] + }, + "id": "way/572953813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572955343", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266075, + -0.0376571 + ], + [ + 109.3264076, + -0.0378446 + ], + [ + 109.3260106, + -0.038204 + ], + [ + 109.3256029, + -0.038546 + ] + ] + }, + "id": "way/572955343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572955345", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267201, + -0.0421543 + ], + [ + 109.3271479, + -0.0428671 + ], + [ + 109.3271577, + -0.0429175 + ], + [ + 109.3271446, + -0.042959 + ], + [ + 109.3271184, + -0.0429851 + ], + [ + 109.3269964, + -0.0430471 + ], + [ + 109.326658, + -0.043219 + ], + [ + 109.3263231, + -0.0433998 + ], + [ + 109.3262976, + -0.0434135 + ], + [ + 109.3261488, + -0.0435001 + ], + [ + 109.3260261, + -0.0435691 + ], + [ + 109.3259718, + -0.0435953 + ], + [ + 109.3259459, + -0.043604 + ], + [ + 109.3259255, + -0.0436104 + ], + [ + 109.325906, + -0.0436141 + ], + [ + 109.3258921, + -0.0436147 + ], + [ + 109.3258817, + -0.0436132 + ], + [ + 109.3258715, + -0.0436099 + ], + [ + 109.3258628, + -0.0436035 + ], + [ + 109.3258527, + -0.0435916 + ] + ] + }, + "id": "way/572955345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572955346", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335444, + -0.0408033 + ], + [ + 109.332578, + -0.0413113 + ], + [ + 109.3327283, + -0.0415716 + ] + ] + }, + "id": "way/572955346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572955347", + "highway": "residential", + "name": "Gang Adhyaksa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333812, + -0.0361908 + ], + [ + 109.3333379, + -0.0362132 + ], + [ + 109.3319678, + -0.0369206 + ] + ] + }, + "id": "way/572955347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572955348", + "highway": "living_street", + "layer": "-1", + "name": "Gang Aren", + "name:id": "Gang Aren" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310619, + -0.0355986 + ], + [ + 109.3305865, + -0.0361105 + ], + [ + 109.3305697, + -0.0361374 + ], + [ + 109.3305657, + -0.036183 + ], + [ + 109.3305758, + -0.0362259 + ], + [ + 109.3311225, + -0.0369579 + ] + ] + }, + "id": "way/572955348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572955349", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274537, + -0.0387118 + ], + [ + 109.3280693, + -0.037985 + ], + [ + 109.3285212, + -0.0375402 + ], + [ + 109.3287572, + -0.0373203 + ] + ] + }, + "id": "way/572955349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572955350", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260752, + -0.0398585 + ], + [ + 109.3264845, + -0.0394626 + ], + [ + 109.3265266, + -0.0394219 + ], + [ + 109.3270272, + -0.0389376 + ], + [ + 109.3273376, + -0.0385791 + ] + ] + }, + "id": "way/572955350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958144", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467012, + -0.0410217 + ], + [ + 109.3470991, + -0.0407028 + ], + [ + 109.3475904, + -0.040341 + ], + [ + 109.3476319, + -0.0403029 + ], + [ + 109.3476708, + -0.040264 + ], + [ + 109.3476333, + -0.0402284 + ], + [ + 109.3474334, + -0.0400169 + ] + ] + }, + "id": "way/572958144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958145", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483293, + -0.0400078 + ], + [ + 109.3481107, + -0.0402036 + ], + [ + 109.3478653, + -0.0404296 + ], + [ + 109.3479565, + -0.0405168 + ], + [ + 109.3479605, + -0.0405321 + ], + [ + 109.3479585, + -0.0405456 + ], + [ + 109.3478237, + -0.0406683 + ], + [ + 109.347815, + -0.0406851 + ], + [ + 109.347809, + -0.0406999 + ], + [ + 109.347811, + -0.040722 + ], + [ + 109.3478244, + -0.0407669 + ], + [ + 109.3478244, + -0.0407769 + ], + [ + 109.3478214, + -0.0407863 + ], + [ + 109.347522, + -0.0410821 + ], + [ + 109.3478465, + -0.0412886 + ] + ] + }, + "id": "way/572958145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958146", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529036, + -0.0332974 + ], + [ + 109.3524411, + -0.0335062 + ], + [ + 109.3521725, + -0.0336489 + ], + [ + 109.3518893, + -0.0337925 + ], + [ + 109.3518685, + -0.0338106 + ], + [ + 109.3518531, + -0.0338347 + ], + [ + 109.3518155, + -0.0339185 + ], + [ + 109.3518081, + -0.0339259 + ], + [ + 109.3517371, + -0.033946 + ] + ] + }, + "id": "way/572958146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958147", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527389, + -0.0349693 + ], + [ + 109.3535093, + -0.0345207 + ] + ] + }, + "id": "way/572958147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958149", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543991, + -0.0362876 + ], + [ + 109.3556812, + -0.0354883 + ], + [ + 109.355738, + -0.0354453 + ], + [ + 109.3564195, + -0.0350042 + ] + ] + }, + "id": "way/572958149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958150", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549208, + -0.0372331 + ], + [ + 109.3545011, + -0.0375281 + ] + ] + }, + "id": "way/572958150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958151", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552682, + -0.0377507 + ], + [ + 109.3545815, + -0.0382644 + ] + ] + }, + "id": "way/572958151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958152", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556222, + -0.0371942 + ], + [ + 109.3551274, + -0.0375442 + ], + [ + 109.354546, + -0.0379767 + ], + [ + 109.3544408, + -0.0380633 + ], + [ + 109.354369, + -0.0381242 + ], + [ + 109.3542992, + -0.0381893 + ], + [ + 109.3542141, + -0.0382724 + ], + [ + 109.3541135, + -0.0383831 + ], + [ + 109.3539512, + -0.0385594 + ] + ] + }, + "id": "way/572958152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958153", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573797, + -0.0359423 + ], + [ + 109.3572054, + -0.0360529 + ], + [ + 109.3570995, + -0.0361139 + ], + [ + 109.357021, + -0.0361602 + ], + [ + 109.3568131, + -0.036291 + ], + [ + 109.3565907, + -0.0364326 + ], + [ + 109.3563786, + -0.0365692 + ], + [ + 109.3558985, + -0.0368763 + ], + [ + 109.3558428, + -0.0369136 + ], + [ + 109.355804, + -0.0369424 + ], + [ + 109.3557815, + -0.0369649 + ], + [ + 109.355763, + -0.0369917 + ], + [ + 109.3557548, + -0.0370089 + ], + [ + 109.3557518, + -0.0370267 + ], + [ + 109.3557513, + -0.0370453 + ], + [ + 109.355754, + -0.0370618 + ], + [ + 109.3557595, + -0.0370777 + ], + [ + 109.3557667, + -0.0370946 + ], + [ + 109.3558019, + -0.0371633 + ], + [ + 109.355987, + -0.037508 + ], + [ + 109.3561667, + -0.0378232 + ] + ] + }, + "id": "way/572958153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572958154", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547344, + -0.0369059 + ], + [ + 109.3569405, + -0.0355272 + ] + ] + }, + "id": "way/572958154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962149", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519691, + -0.0341043 + ], + [ + 109.3519315, + -0.0340191 + ] + ] + }, + "id": "way/572962149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962150", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523607, + -0.0338951 + ], + [ + 109.3523224, + -0.0337811 + ] + ] + }, + "id": "way/572962150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962151", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523224, + -0.0337811 + ], + [ + 109.3522547, + -0.0337999 + ], + [ + 109.3521725, + -0.0336489 + ] + ] + }, + "id": "way/572962151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962152", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519315, + -0.0340191 + ], + [ + 109.3518953, + -0.0340258 + ], + [ + 109.3517371, + -0.033946 + ] + ] + }, + "id": "way/572962152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962153", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353172, + -0.0337972 + ], + [ + 109.3530741, + -0.0338159 + ], + [ + 109.3530332, + -0.0338253 + ], + [ + 109.3529695, + -0.0338361 + ], + [ + 109.3529065, + -0.0338475 + ], + [ + 109.3528401, + -0.0338548 + ], + [ + 109.3527174, + -0.0338689 + ], + [ + 109.3524224, + -0.033883 + ], + [ + 109.3523607, + -0.0338951 + ], + [ + 109.3519691, + -0.0341043 + ], + [ + 109.3518336, + -0.0341888 + ], + [ + 109.3518148, + -0.0342438 + ], + [ + 109.3516975, + -0.0343061 + ], + [ + 109.3516898, + -0.0343098 + ], + [ + 109.3517132, + -0.0343594 + ], + [ + 109.3516013, + -0.0344303 + ], + [ + 109.3515099, + -0.0344764 + ], + [ + 109.3515188, + -0.0345001 + ], + [ + 109.3514211, + -0.0345423 + ] + ] + }, + "id": "way/572962153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962390", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511283, + -0.0334272 + ], + [ + 109.3512157, + -0.0336577 + ], + [ + 109.3512717, + -0.0338052 + ], + [ + 109.3512878, + -0.0338119 + ], + [ + 109.3513092, + -0.0338159 + ], + [ + 109.3513307, + -0.033822 + ], + [ + 109.3513421, + -0.033828 + ], + [ + 109.3513857, + -0.0339125 + ], + [ + 109.3514063, + -0.0339598 + ], + [ + 109.3514306, + -0.0340158 + ], + [ + 109.3514447, + -0.0340339 + ], + [ + 109.3514561, + -0.0340386 + ], + [ + 109.3514722, + -0.0340366 + ], + [ + 109.351621, + -0.0339675 + ], + [ + 109.3516395, + -0.0339635 + ], + [ + 109.3517371, + -0.033946 + ] + ] + }, + "id": "way/572962390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513353, + -0.0328824 + ], + [ + 109.3515339, + -0.0332591 + ], + [ + 109.3515332, + -0.0332721 + ], + [ + 109.3515262, + -0.0332805 + ], + [ + 109.3513877, + -0.0333469 + ], + [ + 109.3513802, + -0.0333456 + ], + [ + 109.3513708, + -0.0333409 + ], + [ + 109.3513585, + -0.033331 + ], + [ + 109.3513501, + -0.0333288 + ], + [ + 109.3513414, + -0.033331 + ], + [ + 109.3511283, + -0.0334272 + ], + [ + 109.351037, + -0.0334679 + ], + [ + 109.3509565, + -0.0334941 + ], + [ + 109.3507795, + -0.0335933 + ] + ] + }, + "id": "way/572962392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962426", + "highway": "living_street", + "name": "Gang Garuda 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491109, + -0.0411514 + ], + [ + 109.3496811, + -0.04072 + ], + [ + 109.3501452, + -0.0403874 + ], + [ + 109.3505622, + -0.0400843 + ], + [ + 109.3506883, + -0.039977 + ], + [ + 109.3511295, + -0.0396135 + ] + ] + }, + "id": "way/572962426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962844", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2976017, + 0.0205936 + ], + [ + 109.2976492, + 0.0205843 + ] + ] + }, + "id": "way/572962844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962846", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979007, + 0.0215163 + ], + [ + 109.2966163, + 0.0219914 + ] + ] + }, + "id": "way/572962846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962847", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2977738, + 0.0211294 + ], + [ + 109.2973955, + 0.0212553 + ], + [ + 109.2964668, + 0.0215643 + ] + ] + }, + "id": "way/572962847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962848", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2976479, + 0.020747 + ], + [ + 109.2972449, + 0.0208726 + ], + [ + 109.2970859, + 0.0209201 + ], + [ + 109.2968457, + 0.0209918 + ], + [ + 109.2966768, + 0.0210422 + ] + ] + }, + "id": "way/572962848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962855", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3012473, + 0.0117379 + ], + [ + 109.3009425, + 0.0118766 + ], + [ + 109.3007532, + 0.0119676 + ], + [ + 109.3004635, + 0.0120986 + ], + [ + 109.3001947, + 0.0122136 + ], + [ + 109.3000657, + 0.0122729 + ], + [ + 109.2999279, + 0.0123419 + ] + ] + }, + "id": "way/572962855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962875", + "highway": "residential", + "surface": "grass" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2978974, + 0.0211453 + ], + [ + 109.2984345, + 0.0209711 + ], + [ + 109.298837, + 0.0208404 + ], + [ + 109.2991637, + 0.0207344 + ], + [ + 109.2994461, + 0.0206427 + ], + [ + 109.2995569, + 0.0206068 + ], + [ + 109.3004547, + 0.0203154 + ] + ] + }, + "id": "way/572962875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962878", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984402, + 0.0170428 + ], + [ + 109.2978635, + 0.0172198 + ], + [ + 109.2974424, + 0.0173687 + ], + [ + 109.2971702, + 0.0174585 + ], + [ + 109.2970247, + 0.0175014 + ], + [ + 109.2968979, + 0.0175416 + ], + [ + 109.2968115, + 0.0175643 + ] + ] + }, + "id": "way/572962878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962880", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2965239, + 0.0164785 + ], + [ + 109.2967982, + 0.0163934 + ], + [ + 109.2970576, + 0.0163019 + ], + [ + 109.2974095, + 0.0161891 + ], + [ + 109.2978314, + 0.016044 + ], + [ + 109.2982008, + 0.0159155 + ], + [ + 109.2984392, + 0.0158299 + ], + [ + 109.2990441, + 0.0156128 + ], + [ + 109.2993334, + 0.0155005 + ] + ] + }, + "id": "way/572962880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572962881", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296411, + 0.0160924 + ], + [ + 109.2971132, + 0.0158587 + ], + [ + 109.2973777, + 0.0157627 + ], + [ + 109.2978575, + 0.0155965 + ], + [ + 109.2982364, + 0.015462 + ], + [ + 109.2991835, + 0.0151314 + ] + ] + }, + "id": "way/572962881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572968869", + "highway": "residential", + "name": "Gang Bangsir 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537809, + -0.0428174 + ], + [ + 109.353402, + -0.0431514 + ], + [ + 109.3528086, + -0.0436556 + ], + [ + 109.3524307, + -0.0440335 + ] + ] + }, + "id": "way/572968869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572968870", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532815, + -0.043016 + ], + [ + 109.3533785, + -0.0431225 + ] + ] + }, + "id": "way/572968870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572968871", + "highway": "residential", + "name": "Gang Kuantan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522636, + -0.0438897 + ], + [ + 109.3526772, + -0.0434786 + ], + [ + 109.3530446, + -0.0431487 + ], + [ + 109.3532426, + -0.0429764 + ], + [ + 109.3534175, + -0.0428241 + ], + [ + 109.3536545, + -0.0426219 + ], + [ + 109.3538198, + -0.0424808 + ], + [ + 109.3540344, + -0.0423065 + ] + ] + }, + "id": "way/572968871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572973058", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539271, + -0.0353971 + ], + [ + 109.3535154, + -0.0356653 + ] + ] + }, + "id": "way/572973058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572973112", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520455, + -0.0357612 + ], + [ + 109.3521006, + -0.0357305 + ] + ] + }, + "id": "way/572973112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572973198", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494417, + -0.0824074 + ], + [ + 109.3494354, + -0.0824286 + ], + [ + 109.3494214, + -0.0824457 + ], + [ + 109.349402, + -0.0824562 + ], + [ + 109.34938, + -0.0824584 + ], + [ + 109.3493589, + -0.0824521 + ], + [ + 109.3493418, + -0.0824381 + ], + [ + 109.3493313, + -0.0824187 + ], + [ + 109.3493291, + -0.0823967 + ], + [ + 109.3493354, + -0.0823756 + ], + [ + 109.3493494, + -0.0823585 + ], + [ + 109.3493688, + -0.082348 + ], + [ + 109.3493908, + -0.0823458 + ], + [ + 109.3494119, + -0.0823521 + ], + [ + 109.349429, + -0.082366 + ], + [ + 109.3494395, + -0.0823855 + ], + [ + 109.3494417, + -0.0824074 + ] + ] + }, + "id": "way/572973198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572973637", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Royal Serdam 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525989, + -0.0836252 + ], + [ + 109.3525271, + -0.0835765 + ] + ] + }, + "id": "way/572973637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974959", + "highway": "living_street", + "name": "Komplek Villa Paris" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496224, + -0.0690864 + ], + [ + 109.3498032, + -0.069213 + ], + [ + 109.3501489, + -0.0694642 + ], + [ + 109.3509482, + -0.0700382 + ], + [ + 109.3517904, + -0.070639 + ], + [ + 109.352119, + -0.0708574 + ] + ] + }, + "id": "way/572974959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974960", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554646, + -0.0758807 + ], + [ + 109.355633, + -0.0756342 + ], + [ + 109.355637, + -0.0756101 + ], + [ + 109.3556216, + -0.075592 + ], + [ + 109.3554412, + -0.0754894 + ], + [ + 109.3552636, + -0.0753755 + ], + [ + 109.355, + -0.0752064 + ], + [ + 109.3547425, + -0.0750428 + ], + [ + 109.3546278, + -0.0749684 + ], + [ + 109.3545091, + -0.0748993 + ], + [ + 109.3544179, + -0.0748437 + ], + [ + 109.3543287, + -0.0748041 + ], + [ + 109.3542858, + -0.0748208 + ], + [ + 109.3542194, + -0.0748873 + ], + [ + 109.3541685, + -0.0749556 + ], + [ + 109.3541312, + -0.0750247 + ] + ] + }, + "id": "way/572974960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512099, + -0.0727692 + ], + [ + 109.3512481, + -0.0728207 + ], + [ + 109.3513414, + -0.0729131 + ], + [ + 109.3515345, + -0.0731197 + ], + [ + 109.3516552, + -0.0732699 + ], + [ + 109.3520388, + -0.073691 + ], + [ + 109.3522829, + -0.0739914 + ], + [ + 109.3526074, + -0.0743186 + ], + [ + 109.3528274, + -0.0745708 + ], + [ + 109.3529695, + -0.0747129 + ], + [ + 109.353168, + -0.0749355 + ], + [ + 109.3534845, + -0.0752708 + ] + ] + }, + "id": "way/572974961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974962", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529142, + -0.0765912 + ], + [ + 109.3528906, + -0.076573 + ], + [ + 109.352653, + -0.0763651 + ], + [ + 109.352366, + -0.0760942 + ], + [ + 109.3521193, + -0.0758099 + ], + [ + 109.3517733, + -0.0753996 + ], + [ + 109.3516029, + -0.0751804 + ] + ] + }, + "id": "way/572974962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974963", + "highway": "living_street", + "name": "Gang Karya II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481231, + -0.0715098 + ], + [ + 109.3478599, + -0.0713347 + ], + [ + 109.3477271, + -0.0712395 + ], + [ + 109.3473094, + -0.0709706 + ], + [ + 109.3470412, + -0.0707902 + ] + ] + }, + "id": "way/572974963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974964", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483165, + -0.0697185 + ], + [ + 109.3480826, + -0.0701567 + ] + ] + }, + "id": "way/572974964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974965", + "highway": "living_street", + "name": "Gang Karya V" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474415, + -0.068853 + ], + [ + 109.3475917, + -0.0689582 + ], + [ + 109.3478103, + -0.0691178 + ], + [ + 109.3480973, + -0.0693217 + ], + [ + 109.3483521, + -0.0695041 + ], + [ + 109.3486901, + -0.0697334 + ], + [ + 109.3488845, + -0.0698608 + ], + [ + 109.349022, + -0.0699746 + ] + ] + }, + "id": "way/572974965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974966", + "highway": "residential", + "name": "Gang Padaherang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474541, + -0.0688305 + ], + [ + 109.3474207, + -0.068793 + ], + [ + 109.3473074, + -0.0686659 + ], + [ + 109.3470673, + -0.0683789 + ], + [ + 109.3454436, + -0.0664246 + ] + ] + }, + "id": "way/572974966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974968", + "access": "destination", + "highway": "residential", + "name": "Gang Karya VII" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494848, + -0.0690505 + ], + [ + 109.3494565, + -0.0690308 + ], + [ + 109.3491542, + -0.0688203 + ], + [ + 109.349083, + -0.0687732 + ], + [ + 109.3487256, + -0.0685525 + ], + [ + 109.3482918, + -0.0682568 + ], + [ + 109.3482334, + -0.0682253 + ], + [ + 109.3481864, + -0.0682073 + ], + [ + 109.3481449, + -0.0681972 + ], + [ + 109.348112, + -0.0681965 + ], + [ + 109.3480785, + -0.0681911 + ], + [ + 109.3480343, + -0.0681643 + ], + [ + 109.3479739, + -0.0680785 + ], + [ + 109.3477379, + -0.0678532 + ], + [ + 109.3473919, + -0.0675085 + ], + [ + 109.34595, + -0.0660649 + ], + [ + 109.3458743, + -0.0659837 + ] + ] + }, + "id": "way/572974968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974969", + "highway": "residential", + "name": "Komplek Casa De Paris" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535878, + -0.0681919 + ], + [ + 109.3530339, + -0.0677217 + ], + [ + 109.3526611, + -0.0674039 + ], + [ + 109.352134, + -0.0669747 + ], + [ + 109.3517223, + -0.0666261 + ], + [ + 109.3510812, + -0.0661057 + ] + ] + }, + "id": "way/572974969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974970", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544193, + -0.06691 + ], + [ + 109.3546295, + -0.0671473 + ], + [ + 109.3549799, + -0.0675422 + ], + [ + 109.3554377, + -0.0680581 + ], + [ + 109.3558963, + -0.068575 + ] + ] + }, + "id": "way/572974970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974971", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545442, + -0.0667017 + ], + [ + 109.3548417, + -0.0670311 + ], + [ + 109.3554747, + -0.0677552 + ], + [ + 109.3559361, + -0.0682998 + ], + [ + 109.3561855, + -0.0685626 + ] + ] + }, + "id": "way/572974971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974973", + "highway": "residential", + "lanes": "1", + "maxspeed": "20", + "name": "Gang Amali", + "note": "Tidak dapat dilalui 2 Mobil bersamaan. Harus mengalah salah satunya.", + "oneway": "no", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545614, + -0.073068 + ], + [ + 109.3545547, + -0.0731022 + ], + [ + 109.3545594, + -0.073119 + ], + [ + 109.3545829, + -0.0731438 + ], + [ + 109.3548483, + -0.0733394 + ], + [ + 109.3549555, + -0.0734186 + ], + [ + 109.3550693, + -0.0734841 + ], + [ + 109.3551607, + -0.0735446 + ], + [ + 109.3552137, + -0.0735795 + ], + [ + 109.355272, + -0.0736151 + ], + [ + 109.3554162, + -0.0737189 + ], + [ + 109.3556583, + -0.0738894 + ], + [ + 109.3558715, + -0.0740388 + ], + [ + 109.3560096, + -0.074132 + ], + [ + 109.3560974, + -0.0741957 + ], + [ + 109.3562154, + -0.0742782 + ], + [ + 109.3563771, + -0.0743995 + ], + [ + 109.3566091, + -0.0745746 + ], + [ + 109.3569672, + -0.0748173 + ], + [ + 109.3573272, + -0.0750769 + ], + [ + 109.3575908, + -0.0752579 + ], + [ + 109.3577073, + -0.0753371 + ] + ] + }, + "id": "way/572974973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974974", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496737, + -0.075454 + ], + [ + 109.3496985, + -0.0754792 + ], + [ + 109.3499614, + -0.0757938 + ], + [ + 109.3503262, + -0.0761935 + ], + [ + 109.3506937, + -0.0766052 + ], + [ + 109.3507835, + -0.0767004 + ], + [ + 109.3510511, + -0.0770069 + ] + ] + }, + "id": "way/572974974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974975", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510167, + -0.0764821 + ], + [ + 109.3507835, + -0.0767004 + ] + ] + }, + "id": "way/572974975" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974976", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498253, + -0.0751782 + ], + [ + 109.3498555, + -0.0752038 + ], + [ + 109.3500525, + -0.0754117 + ], + [ + 109.3501452, + -0.0755095 + ], + [ + 109.3504751, + -0.075885 + ], + [ + 109.3507969, + -0.0762337 + ], + [ + 109.3510167, + -0.0764821 + ], + [ + 109.3510839, + -0.0765422 + ], + [ + 109.3514836, + -0.0769888 + ] + ] + }, + "id": "way/572974976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/572974977", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495023, + -0.0757658 + ], + [ + 109.3495386, + -0.0758109 + ], + [ + 109.3498152, + -0.0761291 + ], + [ + 109.3500459, + -0.0763866 + ], + [ + 109.3503329, + -0.0767085 + ], + [ + 109.3504807, + -0.0768802 + ], + [ + 109.3505421, + -0.0769499 + ] + ] + }, + "id": "way/572974977" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573001889", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414652, + -0.0896642 + ], + [ + 109.3417556, + -0.0898037 + ], + [ + 109.342474, + -0.090131 + ], + [ + 109.3433263, + -0.0905285 + ] + ] + }, + "id": "way/573001889" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573001890", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417748, + -0.0891308 + ], + [ + 109.3395317, + -0.0878852 + ], + [ + 109.3385266, + -0.0873371 + ] + ] + }, + "id": "way/573001890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573001891", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410919, + -0.0903193 + ], + [ + 109.3418176, + -0.0905051 + ], + [ + 109.3419081, + -0.0905238 + ], + [ + 109.3419973, + -0.0905299 + ], + [ + 109.3420979, + -0.0905332 + ], + [ + 109.3424794, + -0.0905647 + ] + ] + }, + "id": "way/573001891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573001905", + "highway": "residential", + "motorcar": "no", + "motorcycle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375227, + -0.0919944 + ], + [ + 109.3374322, + -0.092227 + ], + [ + 109.3372142, + -0.0928312 + ], + [ + 109.3370929, + -0.0931611 + ], + [ + 109.337005, + -0.0933945 + ], + [ + 109.3368615, + -0.0937975 + ], + [ + 109.336712, + -0.0942186 + ], + [ + 109.3366107, + -0.0945063 + ], + [ + 109.3365316, + -0.0947208 + ], + [ + 109.3364652, + -0.0949018 + ], + [ + 109.3363978, + -0.0950601 + ], + [ + 109.3363888, + -0.0950923 + ], + [ + 109.3363838, + -0.0951124 + ], + [ + 109.3363832, + -0.0951209 + ], + [ + 109.3363849, + -0.0951267 + ], + [ + 109.3363901, + -0.0951312 + ], + [ + 109.3363975, + -0.0951336 + ], + [ + 109.3364733, + -0.0951339 + ], + [ + 109.3366181, + -0.0951292 + ], + [ + 109.3371069, + -0.0951091 + ], + [ + 109.337169, + -0.0951097 + ], + [ + 109.3372877, + -0.0951054 + ], + [ + 109.3373661, + -0.095097 + ], + [ + 109.3374918, + -0.0950769 + ], + [ + 109.3376226, + -0.0950618 + ], + [ + 109.3379632, + -0.09503 + ] + ] + }, + "id": "way/573001905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573001908", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411806, + -0.09016 + ], + [ + 109.3411349, + -0.0901372 + ], + [ + 109.3407708, + -0.0899666 + ], + [ + 109.3400493, + -0.089626 + ], + [ + 109.3397248, + -0.0894731 + ], + [ + 109.339294, + -0.0892641 + ], + [ + 109.3391143, + -0.0891769 + ], + [ + 109.3388236, + -0.089048 + ], + [ + 109.3387605, + -0.0890171 + ], + [ + 109.3387417, + -0.089056 + ], + [ + 109.3387082, + -0.0891378 + ], + [ + 109.3385218, + -0.0896045 + ] + ] + }, + "id": "way/573001908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573001910", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408174, + -0.0918663 + ], + [ + 109.3407708, + -0.091875 + ], + [ + 109.3407186, + -0.0918837 + ], + [ + 109.3406575, + -0.0918951 + ], + [ + 109.3406012, + -0.0919052 + ], + [ + 109.3402874, + -0.0919166 + ], + [ + 109.3396765, + -0.0919461 + ], + [ + 109.3380806, + -0.0919729 + ], + [ + 109.3375227, + -0.0919944 + ], + [ + 109.3375455, + -0.0919347 + ], + [ + 109.3375683, + -0.0918569 + ], + [ + 109.3375824, + -0.0917952 + ], + [ + 109.3376112, + -0.0915759 + ], + [ + 109.3377078, + -0.090833 + ] + ] + }, + "id": "way/573001910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573001914", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447096, + -0.0901927 + ], + [ + 109.3444052, + -0.0900028 + ], + [ + 109.3436515, + -0.0895308 + ], + [ + 109.3426953, + -0.0889635 + ], + [ + 109.3421538, + -0.0886506 + ], + [ + 109.3420988, + -0.0886109 + ] + ] + }, + "id": "way/573001914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573001915", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416796, + -0.0892908 + ], + [ + 109.3417398, + -0.0893236 + ], + [ + 109.342759, + -0.0898848 + ], + [ + 109.343209, + -0.0901275 + ], + [ + 109.3435416, + -0.0903207 + ], + [ + 109.3438071, + -0.0904776 + ], + [ + 109.3441397, + -0.0906922 + ], + [ + 109.3444012, + -0.0908585 + ], + [ + 109.3444074, + -0.090861 + ], + [ + 109.344415, + -0.0908605 + ], + [ + 109.3444218, + -0.090859 + ], + [ + 109.3444277, + -0.0908538 + ], + [ + 109.3444646, + -0.0907894 + ], + [ + 109.3445062, + -0.0906952 + ], + [ + 109.344566, + -0.0905565 + ], + [ + 109.3445963, + -0.0904836 + ], + [ + 109.3446761, + -0.0902865 + ], + [ + 109.3447096, + -0.0901927 + ], + [ + 109.3447537, + -0.0900932 + ], + [ + 109.3448527, + -0.0898148 + ] + ] + }, + "id": "way/573001915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004947", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Padat Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488599, + -0.0768406 + ], + [ + 109.3487729, + -0.0767853 + ] + ] + }, + "id": "way/573004947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004948", + "highway": "tertiary", + "name": "Jalan Padat Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489078, + -0.0768711 + ], + [ + 109.3488599, + -0.0768406 + ] + ] + }, + "id": "way/573004948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004950", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348743, + -0.0771262 + ], + [ + 109.3486579, + -0.0770719 + ] + ] + }, + "id": "way/573004950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004952", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487738, + -0.0771477 + ], + [ + 109.348743, + -0.0771262 + ] + ] + }, + "id": "way/573004952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004967", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515435, + -0.0849142 + ], + [ + 109.3513716, + -0.084792 + ], + [ + 109.3508573, + -0.0844963 + ] + ] + }, + "id": "way/573004967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004968", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535837, + -0.082195 + ], + [ + 109.3534899, + -0.0821158 + ] + ] + }, + "id": "way/573004968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004970", + "access": "private", + "highway": "residential", + "name": "Royal Serdam Residence" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533616, + -0.0820186 + ], + [ + 109.3532056, + -0.0819026 + ], + [ + 109.3525068, + -0.0813849 + ], + [ + 109.351902, + -0.0809464 + ], + [ + 109.3515627, + -0.0806889 + ], + [ + 109.3509592, + -0.0802624 + ], + [ + 109.3506682, + -0.0800264 + ] + ] + }, + "id": "way/573004970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004974", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Sarjana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568474, + -0.0771323 + ], + [ + 109.3567143, + -0.0770416 + ] + ] + }, + "id": "way/573004974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004976", + "access": "no", + "bridge": "yes", + "highway": "tertiary_link", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562634, + -0.0780972 + ], + [ + 109.3561695, + -0.0780477 + ] + ] + }, + "id": "way/573004976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004980", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562177, + -0.0778694 + ], + [ + 109.3560393, + -0.0777827 + ], + [ + 109.3533424, + -0.0760849 + ] + ] + }, + "id": "way/573004980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004996", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476132, + -0.0789481 + ], + [ + 109.3470164, + -0.0786289 + ], + [ + 109.3467737, + -0.0784707 + ], + [ + 109.3462493, + -0.0781515 + ], + [ + 109.3455801, + -0.0777559 + ], + [ + 109.3451134, + -0.077485 + ], + [ + 109.3445702, + -0.0771363 + ] + ] + }, + "id": "way/573004996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573004998", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476916, + -0.0790125 + ], + [ + 109.3476132, + -0.0789481 + ] + ] + }, + "id": "way/573004998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573005001", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501894, + -0.0812193 + ], + [ + 109.349883, + -0.0809625 + ], + [ + 109.3496074, + -0.0807116 + ], + [ + 109.3491976, + -0.0803549 + ], + [ + 109.3489596, + -0.0801497 + ], + [ + 109.3485305, + -0.0797823 + ], + [ + 109.348104, + -0.0794175 + ], + [ + 109.3477526, + -0.0790606 + ], + [ + 109.3476916, + -0.0790125 + ] + ] + }, + "id": "way/573005001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573005003", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483584, + -0.0779286 + ], + [ + 109.3486359, + -0.0782082 + ], + [ + 109.3489831, + -0.078533 + ], + [ + 109.3497092, + -0.079227 + ] + ] + }, + "id": "way/573005003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573005011", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557606, + -0.078664 + ], + [ + 109.3552494, + -0.0783258 + ], + [ + 109.3545118, + -0.077882 + ], + [ + 109.3538493, + -0.0775279 + ], + [ + 109.3527267, + -0.0768513 + ] + ] + }, + "id": "way/573005011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573005013", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3524665, + -0.0780857 + ], + [ + 109.3522582, + -0.0783901 + ] + ] + }, + "id": "way/573005013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573005017", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514836, + -0.0769888 + ], + [ + 109.351676, + -0.0771946 + ], + [ + 109.3517069, + -0.0772436 + ], + [ + 109.3517096, + -0.0772798 + ], + [ + 109.3517035, + -0.0773093 + ], + [ + 109.3516311, + -0.0774441 + ], + [ + 109.3515566, + -0.0775453 + ], + [ + 109.3514544, + -0.0776805 + ], + [ + 109.3513725, + -0.0778163 + ] + ] + }, + "id": "way/573005017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573005019", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513725, + -0.0778163 + ], + [ + 109.3519482, + -0.0781915 + ], + [ + 109.3522582, + -0.0783901 + ], + [ + 109.3534671, + -0.0791385 + ], + [ + 109.3536884, + -0.07881 + ], + [ + 109.3532565, + -0.0785739 + ], + [ + 109.3528528, + -0.0783218 + ], + [ + 109.3524665, + -0.0780857 + ], + [ + 109.3521365, + -0.077882 + ], + [ + 109.3518229, + -0.0777009 + ], + [ + 109.3515566, + -0.0775453 + ], + [ + 109.3514259, + -0.0774152 + ], + [ + 109.3510511, + -0.0770069 + ] + ] + }, + "id": "way/573005019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573005028", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500028, + -0.0875878 + ], + [ + 109.3499164, + -0.0875266 + ] + ] + }, + "id": "way/573005028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573005032", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510866, + -0.0856073 + ], + [ + 109.3498474, + -0.0848677 + ], + [ + 109.3485519, + -0.0840872 + ] + ] + }, + "id": "way/573005032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573018741", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455137, + -0.003855 + ], + [ + 109.3453803, + -0.0037916 + ], + [ + 109.3453267, + -0.0037678 + ], + [ + 109.3452585, + -0.0037376 + ], + [ + 109.3451753, + -0.0037006 + ], + [ + 109.34502, + -0.0036317 + ], + [ + 109.3449319, + -0.0035926 + ], + [ + 109.3447697, + -0.0035205 + ], + [ + 109.3445063, + -0.0034036 + ], + [ + 109.3443525, + -0.0033353 + ], + [ + 109.3441967, + -0.0032661 + ], + [ + 109.3440911, + -0.0032193 + ], + [ + 109.3439552, + -0.0031589 + ], + [ + 109.3437203, + -0.0030546 + ], + [ + 109.3432291, + -0.0028366 + ], + [ + 109.3430885, + -0.0027741 + ], + [ + 109.3430024, + -0.0027359 + ] + ] + }, + "id": "way/573018741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573018744", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344884, + -0.0051915 + ], + [ + 109.344774, + -0.0051337 + ], + [ + 109.3443529, + -0.0049353 + ], + [ + 109.3440364, + -0.0047824 + ], + [ + 109.3440102, + -0.0047697 + ], + [ + 109.3437602, + -0.0046483 + ], + [ + 109.3434571, + -0.00449 + ], + [ + 109.3433028, + -0.0044176 + ], + [ + 109.3432049, + -0.0043747 + ], + [ + 109.3430762, + -0.0043157 + ], + [ + 109.3429943, + -0.0042714 + ], + [ + 109.3428965, + -0.0042231 + ], + [ + 109.3427972, + -0.0041735 + ], + [ + 109.3427315, + -0.0041494 + ] + ] + }, + "id": "way/573018744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573018999", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467481, + -0.010753 + ], + [ + 109.3466489, + -0.0107228 + ], + [ + 109.3464893, + -0.0106712 + ], + [ + 109.3462737, + -0.0105984 + ], + [ + 109.3461275, + -0.0105471 + ], + [ + 109.3460642, + -0.0105243 + ], + [ + 109.3459961, + -0.0104992 + ], + [ + 109.3459096, + -0.0104643 + ], + [ + 109.3458372, + -0.0104365 + ], + [ + 109.345686, + -0.0103818 + ], + [ + 109.345574, + -0.0103396 + ], + [ + 109.3454603, + -0.010298 + ], + [ + 109.3453575, + -0.0102611 + ] + ] + }, + "id": "way/573018999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573019522", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398643, + -0.0070623 + ], + [ + 109.3398133, + -0.0069228 + ], + [ + 109.3397838, + -0.0068316 + ], + [ + 109.3397596, + -0.0067726 + ], + [ + 109.3397355, + -0.0067055 + ], + [ + 109.3397006, + -0.0065902 + ], + [ + 109.3396416, + -0.0064748 + ], + [ + 109.3395586, + -0.0062916 + ] + ] + }, + "id": "way/573019522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023665", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455118, + -0.0829331 + ], + [ + 109.3458938, + -0.0832061 + ], + [ + 109.3459086, + -0.083233 + ], + [ + 109.3459128, + -0.0832964 + ], + [ + 109.3459382, + -0.0833463 + ], + [ + 109.3461443, + -0.0834814 + ] + ] + }, + "id": "way/573023665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023667", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458208, + -0.0822727 + ], + [ + 109.3458, + -0.0822615 + ], + [ + 109.3457819, + -0.0822512 + ], + [ + 109.3457671, + -0.0822432 + ], + [ + 109.345758, + -0.0822378 + ] + ] + }, + "id": "way/573023667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023668", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458905, + -0.0823093 + ], + [ + 109.3458208, + -0.0822727 + ] + ] + }, + "id": "way/573023668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023669", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463213, + -0.0813189 + ], + [ + 109.3460903, + -0.0811683 + ] + ] + }, + "id": "way/573023669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023670", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464091, + -0.0813778 + ], + [ + 109.3463213, + -0.0813189 + ] + ] + }, + "id": "way/573023670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023671", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456498, + -0.0788381 + ], + [ + 109.3451495, + -0.0785216 + ] + ] + }, + "id": "way/573023671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023672", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430891, + -0.0868426 + ], + [ + 109.3430477, + -0.0868174 + ] + ] + }, + "id": "way/573023672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023673", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431243, + -0.0868641 + ], + [ + 109.3430891, + -0.0868426 + ] + ] + }, + "id": "way/573023673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023674", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460508, + -0.0818985 + ], + [ + 109.3459837, + -0.0818583 + ] + ] + }, + "id": "way/573023674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023675", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461072, + -0.0819365 + ], + [ + 109.3460508, + -0.0818985 + ] + ] + }, + "id": "way/573023675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023676", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426618, + -0.0875372 + ], + [ + 109.3426148, + -0.0875057 + ] + ] + }, + "id": "way/573023676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023677", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427113, + -0.0875645 + ], + [ + 109.3426618, + -0.0875372 + ] + ] + }, + "id": "way/573023677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023678", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434986, + -0.086123 + ], + [ + 109.3434128, + -0.0860707 + ] + ] + }, + "id": "way/573023678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023679", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435403, + -0.0861503 + ], + [ + 109.3434986, + -0.086123 + ] + ] + }, + "id": "way/573023679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468553, + -0.0804374 + ], + [ + 109.3447452, + -0.0791246 + ], + [ + 109.3439461, + -0.0786226 + ] + ] + }, + "id": "way/573023680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023681", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469158, + -0.080471 + ], + [ + 109.3468553, + -0.0804374 + ] + ] + }, + "id": "way/573023681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023688", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461185, + -0.0810107 + ], + [ + 109.3460327, + -0.0811308 + ], + [ + 109.3459234, + -0.081281 + ] + ] + }, + "id": "way/573023688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023689", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465671, + -0.0867976 + ], + [ + 109.3463881, + -0.0870511 + ], + [ + 109.3463679, + -0.0870678 + ], + [ + 109.3463505, + -0.0870725 + ], + [ + 109.3463311, + -0.0870651 + ] + ] + }, + "id": "way/573023689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023690", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463311, + -0.0870651 + ], + [ + 109.3458308, + -0.0867225 + ], + [ + 109.3454298, + -0.0864623 + ], + [ + 109.3451823, + -0.086293 + ], + [ + 109.3443583, + -0.0857287 + ], + [ + 109.3443415, + -0.085714 + ], + [ + 109.3443348, + -0.0856945 + ], + [ + 109.34452, + -0.0853389 + ] + ] + }, + "id": "way/573023690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023691", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345422, + -0.085953 + ], + [ + 109.3451823, + -0.086293 + ] + ] + }, + "id": "way/573023691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023692", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441471, + -0.0851288 + ], + [ + 109.34452, + -0.0853389 + ], + [ + 109.344723, + -0.08549 + ], + [ + 109.3451496, + -0.085773 + ], + [ + 109.345422, + -0.085953 + ], + [ + 109.3455505, + -0.0860479 + ], + [ + 109.3458885, + -0.0862759 + ], + [ + 109.3463767, + -0.0866032 + ], + [ + 109.3465537, + -0.0867223 + ], + [ + 109.3465617, + -0.0867426 + ], + [ + 109.3465684, + -0.0867621 + ], + [ + 109.3465671, + -0.0867976 + ] + ] + }, + "id": "way/573023692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023700", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454325, + -0.0780402 + ], + [ + 109.3459476, + -0.0783674 + ], + [ + 109.3464725, + -0.0786859 + ], + [ + 109.3468038, + -0.0788831 + ], + [ + 109.3468159, + -0.0789012 + ], + [ + 109.3468118, + -0.0789153 + ], + [ + 109.3466725, + -0.0791498 + ] + ] + }, + "id": "way/573023700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023701", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449444, + -0.0777358 + ], + [ + 109.3454325, + -0.0780402 + ] + ] + }, + "id": "way/573023701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023702", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451495, + -0.0785216 + ], + [ + 109.3453024, + -0.0782815 + ], + [ + 109.3454325, + -0.0780402 + ] + ] + }, + "id": "way/573023702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023703", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466725, + -0.0791498 + ], + [ + 109.3465658, + -0.0793659 + ], + [ + 109.3465544, + -0.0793739 + ], + [ + 109.3465389, + -0.0793719 + ], + [ + 109.3462801, + -0.0792284 + ], + [ + 109.3459046, + -0.0789964 + ], + [ + 109.3456498, + -0.0788381 + ] + ] + }, + "id": "way/573023703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023704", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459476, + -0.0783674 + ], + [ + 109.3458024, + -0.0786023 + ], + [ + 109.3456498, + -0.0788381 + ] + ] + }, + "id": "way/573023704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023705", + "highway": "residential", + "import": "yes", + "name": "Komplek Pesona Mutiara Dewata", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472665, + -0.0795147 + ], + [ + 109.3468711, + -0.0792708 + ], + [ + 109.3466725, + -0.0791498 + ], + [ + 109.3460467, + -0.0787477 + ], + [ + 109.3458024, + -0.0786023 + ], + [ + 109.3453024, + -0.0782815 + ] + ] + }, + "id": "way/573023705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023707", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469579, + -0.080495 + ], + [ + 109.3469158, + -0.080471 + ] + ] + }, + "id": "way/573023707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023748", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448955, + -0.0801897 + ], + [ + 109.3446841, + -0.0805445 + ] + ] + }, + "id": "way/573023748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023749", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343909, + -0.0784117 + ], + [ + 109.3438227, + -0.0785636 + ], + [ + 109.3433877, + -0.079263 + ] + ] + }, + "id": "way/573023749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023750", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428404, + -0.0794051 + ], + [ + 109.3430554, + -0.079107 + ], + [ + 109.3430709, + -0.0790842 + ], + [ + 109.343093, + -0.0790614 + ], + [ + 109.3433163, + -0.0787174 + ], + [ + 109.3436542, + -0.0782722 + ] + ] + }, + "id": "way/573023750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023751", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431285, + -0.0795848 + ], + [ + 109.3429622, + -0.07984 + ], + [ + 109.3427114, + -0.0801967 + ] + ] + }, + "id": "way/573023751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023752", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434391, + -0.0792972 + ], + [ + 109.3432414, + -0.0796419 + ] + ] + }, + "id": "way/573023752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023753", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428404, + -0.0794051 + ], + [ + 109.3431285, + -0.0795848 + ], + [ + 109.3432414, + -0.0796419 + ], + [ + 109.3435402, + -0.0798339 + ], + [ + 109.3439761, + -0.0801061 + ], + [ + 109.3444407, + -0.0803918 + ], + [ + 109.3446841, + -0.0805445 + ], + [ + 109.344947, + -0.0807304 + ], + [ + 109.3456417, + -0.081124 + ], + [ + 109.3458727, + -0.0812686 + ], + [ + 109.3458969, + -0.0812826 + ], + [ + 109.3459103, + -0.081283 + ], + [ + 109.3459234, + -0.081281 + ] + ] + }, + "id": "way/573023753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023755", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343093, + -0.0790614 + ], + [ + 109.3433547, + -0.0792429 + ], + [ + 109.3433877, + -0.079263 + ], + [ + 109.3434391, + -0.0792972 + ], + [ + 109.3438983, + -0.0795691 + ], + [ + 109.3447787, + -0.0801129 + ], + [ + 109.3448955, + -0.0801897 + ], + [ + 109.3458496, + -0.080768 + ], + [ + 109.3461084, + -0.0809437 + ], + [ + 109.3461265, + -0.0809745 + ], + [ + 109.3461265, + -0.081 + ], + [ + 109.3461185, + -0.0810107 + ] + ] + }, + "id": "way/573023755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023756", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346441, + -0.0813989 + ], + [ + 109.3464091, + -0.0813778 + ] + ] + }, + "id": "way/573023756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023757", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459837, + -0.0818583 + ], + [ + 109.3456833, + -0.0816799 + ], + [ + 109.3452515, + -0.0814278 + ], + [ + 109.3447901, + -0.0811475 + ], + [ + 109.3442255, + -0.0807868 + ], + [ + 109.3436904, + -0.0804354 + ], + [ + 109.3432881, + -0.0801994 + ], + [ + 109.3429307, + -0.0799768 + ] + ] + }, + "id": "way/573023757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023761", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462914, + -0.081637 + ], + [ + 109.3466409, + -0.0819052 + ], + [ + 109.3469976, + -0.0821573 + ] + ] + }, + "id": "way/573023761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023762", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460697, + -0.0820026 + ], + [ + 109.3466046, + -0.0823759 + ], + [ + 109.3473499, + -0.0828889 + ] + ] + }, + "id": "way/573023762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023768", + "highway": "residential", + "name": "Gang Amanah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457489, + -0.082542 + ], + [ + 109.3459924, + -0.0826978 + ], + [ + 109.3462493, + -0.0828735 + ], + [ + 109.3473621, + -0.0836347 + ] + ] + }, + "id": "way/573023768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023787", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434128, + -0.0860707 + ], + [ + 109.3428529, + -0.08574 + ], + [ + 109.3417814, + -0.0851105 + ], + [ + 109.3412409, + -0.0848034 + ], + [ + 109.3406783, + -0.0844781 + ] + ] + }, + "id": "way/573023787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023788", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340331, + -0.084049 + ], + [ + 109.3405136, + -0.0841723 + ], + [ + 109.3405952, + -0.0842274 + ], + [ + 109.3406086, + -0.0842314 + ], + [ + 109.34062, + -0.0842267 + ], + [ + 109.3406334, + -0.0842133 + ], + [ + 109.3411102, + -0.0834099 + ] + ] + }, + "id": "way/573023788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023794", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343732, + -0.0886523 + ], + [ + 109.3424973, + -0.0879126 + ], + [ + 109.342401, + -0.0878497 + ], + [ + 109.3423211, + -0.0878071 + ], + [ + 109.3420985, + -0.0876921 + ], + [ + 109.3415648, + -0.0873944 + ], + [ + 109.3410471, + -0.0871101 + ], + [ + 109.3404731, + -0.0867828 + ], + [ + 109.3402116, + -0.086642 + ], + [ + 109.3395652, + -0.086292 + ], + [ + 109.3392447, + -0.0861277 + ], + [ + 109.3392273, + -0.0861109 + ], + [ + 109.3392514, + -0.0860788 + ], + [ + 109.3392782, + -0.0860352 + ], + [ + 109.3393882, + -0.0858991 + ], + [ + 109.3395007, + -0.0857616 + ] + ] + }, + "id": "way/573023794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023824", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426148, + -0.0875057 + ], + [ + 109.3418195, + -0.0870658 + ], + [ + 109.3409331, + -0.0865777 + ], + [ + 109.3397677, + -0.0859192 + ], + [ + 109.3395007, + -0.0857616 + ], + [ + 109.3392313, + -0.085608 + ], + [ + 109.3389744, + -0.0854706 + ], + [ + 109.3384668, + -0.0852077 + ], + [ + 109.3380041, + -0.0849777 + ] + ] + }, + "id": "way/573023824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023829", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391167, + -0.08328 + ], + [ + 109.338897, + -0.0836111 + ], + [ + 109.3388188, + -0.0837432 + ] + ] + }, + "id": "way/573023829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023830", + "access": "private", + "bicycle": "yes", + "highway": "living_street", + "horse": "no", + "lanes": "1", + "maxspeed": "20", + "motor_vehicle": "yes", + "name": "Permata Paris", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337693, + -0.0828615 + ], + [ + 109.3379471, + -0.0830224 + ], + [ + 109.3382455, + -0.0832068 + ], + [ + 109.3385701, + -0.083408 + ], + [ + 109.338897, + -0.0836111 + ], + [ + 109.3393245, + -0.0838854 + ], + [ + 109.3397972, + -0.0841838 + ], + [ + 109.340115, + -0.0843863 + ] + ] + }, + "id": "way/573023830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023906", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379524, + -0.0825369 + ], + [ + 109.3391167, + -0.08328 + ], + [ + 109.3398736, + -0.083764 + ], + [ + 109.340331, + -0.084049 + ] + ] + }, + "id": "way/573023906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573023974", + "highway": "residential", + "maxspeed": "20", + "name": "Permata Paris", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430477, + -0.0868174 + ], + [ + 109.3428911, + -0.0867332 + ], + [ + 109.3424968, + -0.0864945 + ], + [ + 109.3418719, + -0.0861337 + ], + [ + 109.3412255, + -0.0857743 + ], + [ + 109.3400473, + -0.0851057 + ], + [ + 109.3399561, + -0.0850542 + ], + [ + 109.3400111, + -0.084971 + ], + [ + 109.3400426, + -0.0849107 + ], + [ + 109.340046, + -0.0848691 + ], + [ + 109.3400299, + -0.0848315 + ], + [ + 109.3399715, + -0.0847759 + ], + [ + 109.3399192, + -0.084747 + ], + [ + 109.3399105, + -0.0847276 + ], + [ + 109.3399125, + -0.08469 + ], + [ + 109.340115, + -0.0843863 + ], + [ + 109.340331, + -0.084049 + ], + [ + 109.3404034, + -0.0839323 + ], + [ + 109.3405441, + -0.0837018 + ], + [ + 109.3408607, + -0.0831833 + ], + [ + 109.3394847, + -0.0823197 + ], + [ + 109.3384145, + -0.081633 + ] + ] + }, + "id": "way/573023974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076851", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529014, + -0.0565724 + ], + [ + 109.3528566, + -0.0565397 + ] + ] + }, + "id": "way/573076851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529418, + -0.056601 + ], + [ + 109.3529014, + -0.0565724 + ] + ] + }, + "id": "way/573076852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076853", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485225, + -0.0615501 + ], + [ + 109.3479437, + -0.0623258 + ], + [ + 109.34771, + -0.0626408 + ], + [ + 109.3476427, + -0.0627315 + ] + ] + }, + "id": "way/573076853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076856", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Abdurrahman Saleh 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569278, + -0.0624827 + ], + [ + 109.3568492, + -0.0624255 + ] + ] + }, + "id": "way/573076856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076857", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573405, + -0.0618057 + ], + [ + 109.3573732, + -0.0618334 + ] + ] + }, + "id": "way/573076857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076858", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3577887, + -0.0610689 + ], + [ + 109.3578101, + -0.0610923 + ] + ] + }, + "id": "way/573076858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076859", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357917, + -0.0608667 + ], + [ + 109.3578465, + -0.0608052 + ] + ] + }, + "id": "way/573076859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575628, + -0.0614326 + ], + [ + 109.3575916, + -0.0614567 + ] + ] + }, + "id": "way/573076860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076861", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550429, + -0.0657323 + ], + [ + 109.3549737, + -0.0656911 + ] + ] + }, + "id": "way/573076861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076862", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553554, + -0.0652724 + ], + [ + 109.3553082, + -0.0652517 + ] + ] + }, + "id": "way/573076862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076863", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474688, + -0.0639787 + ], + [ + 109.3474509, + -0.0639604 + ] + ] + }, + "id": "way/573076863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076866", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498535, + -0.061132 + ], + [ + 109.349875, + -0.0611488 + ] + ] + }, + "id": "way/573076866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076867", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495087, + -0.0616336 + ], + [ + 109.3495395, + -0.0616549 + ], + [ + 109.3497455, + -0.0618692 + ], + [ + 109.350345, + -0.0623385 + ] + ] + }, + "id": "way/573076867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076868", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493418, + -0.0615218 + ], + [ + 109.3495087, + -0.0616336 + ] + ] + }, + "id": "way/573076868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076883", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493852, + -0.0618154 + ], + [ + 109.3494404, + -0.0618175 + ] + ] + }, + "id": "way/573076883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076884", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499024, + -0.0633712 + ], + [ + 109.3495068, + -0.0630017 + ], + [ + 109.3489797, + -0.0625051 + ] + ] + }, + "id": "way/573076884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076885", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495068, + -0.0630017 + ], + [ + 109.3496597, + -0.0628307 + ], + [ + 109.3496798, + -0.0628281 + ], + [ + 109.34971, + -0.0628395 + ], + [ + 109.3500808, + -0.0632029 + ], + [ + 109.3500848, + -0.063229 + ], + [ + 109.3500727, + -0.0632458 + ], + [ + 109.3499601, + -0.0633806 + ], + [ + 109.3499366, + -0.0633906 + ], + [ + 109.3499212, + -0.0633859 + ], + [ + 109.3499024, + -0.0633712 + ] + ] + }, + "id": "way/573076885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076886", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349217, + -0.0621584 + ], + [ + 109.3495833, + -0.0625008 + ], + [ + 109.3500486, + -0.06293 + ], + [ + 109.3512006, + -0.0639867 + ], + [ + 109.3517545, + -0.0644763 + ] + ] + }, + "id": "way/573076886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076887", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509471, + -0.0623292 + ], + [ + 109.3506555, + -0.0620509 + ], + [ + 109.3504013, + -0.061845 + ], + [ + 109.3501988, + -0.0616586 + ], + [ + 109.3500084, + -0.0614943 + ], + [ + 109.3497803, + -0.061293 + ] + ] + }, + "id": "way/573076887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076888", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497251, + -0.0613158 + ], + [ + 109.349753, + -0.0613346 + ] + ] + }, + "id": "way/573076888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076890", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476076, + -0.0641025 + ], + [ + 109.3475526, + -0.0640525 + ] + ] + }, + "id": "way/573076890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076891", + "highway": "living_street", + "name": "Gang Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346586, + -0.0652451 + ], + [ + 109.3486838, + -0.0673736 + ] + ] + }, + "id": "way/573076891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076892", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468585, + -0.0649513 + ], + [ + 109.3483701, + -0.0664529 + ], + [ + 109.3485094, + -0.0665924 + ] + ] + }, + "id": "way/573076892" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076893", + "highway": "residential", + "name": "Gang Citra Mandiri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482527, + -0.0633628 + ], + [ + 109.3486987, + -0.0637835 + ], + [ + 109.3493693, + -0.0644649 + ], + [ + 109.3497951, + -0.0648793 + ], + [ + 109.3501089, + -0.0651884 + ] + ] + }, + "id": "way/573076893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076894", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477045, + -0.0640024 + ], + [ + 109.348509, + -0.0648075 + ], + [ + 109.3491152, + -0.0654351 + ], + [ + 109.3498823, + -0.0661888 + ], + [ + 109.3501425, + -0.0664598 + ] + ] + }, + "id": "way/573076894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076895", + "highway": "residential", + "name": "Gang Arwana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554519, + -0.0651026 + ], + [ + 109.3555787, + -0.0651864 + ], + [ + 109.355696, + -0.0653017 + ], + [ + 109.3558737, + -0.0655035 + ], + [ + 109.3563639, + -0.066091 + ] + ] + }, + "id": "way/573076895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076896", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572067, + -0.0653527 + ], + [ + 109.3572101, + -0.0653259 + ], + [ + 109.3572007, + -0.065299 + ], + [ + 109.3570244, + -0.0651006 + ], + [ + 109.3568172, + -0.0648947 + ], + [ + 109.3566482, + -0.0646868 + ], + [ + 109.3566093, + -0.0646546 + ], + [ + 109.3565771, + -0.0646466 + ] + ] + }, + "id": "way/573076896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076897", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571214, + -0.064611 + ], + [ + 109.3570368, + -0.0646899 + ], + [ + 109.3570202, + -0.0647054 + ], + [ + 109.3568172, + -0.0648947 + ] + ] + }, + "id": "way/573076897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076898", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573135, + -0.0648093 + ], + [ + 109.3572228, + -0.0649007 + ], + [ + 109.3572091, + -0.0649145 + ], + [ + 109.3570244, + -0.0651006 + ] + ] + }, + "id": "way/573076898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076899", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565771, + -0.0646466 + ], + [ + 109.3561137, + -0.065114 + ], + [ + 109.356105, + -0.0651347 + ], + [ + 109.356107, + -0.0651555 + ], + [ + 109.3564081, + -0.0654867 + ], + [ + 109.3565087, + -0.0655887 + ], + [ + 109.3566267, + -0.0656766 + ], + [ + 109.3567012, + -0.0657302 + ], + [ + 109.356732, + -0.0657329 + ], + [ + 109.3568762, + -0.0656216 + ], + [ + 109.3572067, + -0.0653527 + ] + ] + }, + "id": "way/573076899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076900", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549176, + -0.0649505 + ], + [ + 109.3551702, + -0.0646399 + ], + [ + 109.3552085, + -0.0645651 + ], + [ + 109.3552266, + -0.0645192 + ], + [ + 109.3551998, + -0.0644655 + ], + [ + 109.3551743, + -0.0644397 + ], + [ + 109.355129, + -0.0643901 + ], + [ + 109.3548216, + -0.064141 + ], + [ + 109.3543911, + -0.063756 + ] + ] + }, + "id": "way/573076900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076901", + "highway": "residential", + "name": "Gang Pd. Arham" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567276, + -0.0628993 + ], + [ + 109.356854, + -0.0629856 + ], + [ + 109.3569151, + -0.0630373 + ], + [ + 109.3569681, + -0.0631043 + ], + [ + 109.3570244, + -0.0632143 + ], + [ + 109.3570626, + -0.0632813 + ], + [ + 109.3571303, + -0.0633611 + ], + [ + 109.357422, + -0.0636817 + ] + ] + }, + "id": "way/573076901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076902", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570512, + -0.05665 + ], + [ + 109.3570979, + -0.0566962 + ], + [ + 109.3582781, + -0.0579281 + ] + ] + }, + "id": "way/573076902" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076903", + "highway": "residential", + "name": "Gang Tunas Bakti" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568334, + -0.0569262 + ], + [ + 109.3553386, + -0.0553355 + ], + [ + 109.3544397, + -0.0543403 + ] + ] + }, + "id": "way/573076903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573076904", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528566, + -0.0565397 + ], + [ + 109.3528181, + -0.0565126 + ], + [ + 109.3527989, + -0.0565128 + ], + [ + 109.3527831, + -0.0565212 + ], + [ + 109.3527293, + -0.0565939 + ], + [ + 109.3527117, + -0.0565968 + ], + [ + 109.3526958, + -0.0565909 + ], + [ + 109.3521387, + -0.0561801 + ] + ] + }, + "id": "way/573076904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573082917", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095716, + 0.0054565 + ], + [ + 109.3098007, + 0.0061356 + ], + [ + 109.3100193, + 0.0068128 + ], + [ + 109.3101213, + 0.0070917 + ], + [ + 109.3105893, + 0.0085066 + ], + [ + 109.3106575, + 0.0086943 + ], + [ + 109.3106989, + 0.008723 + ], + [ + 109.3107175, + 0.0087627 + ], + [ + 109.3107437, + 0.0089655 + ], + [ + 109.3107631, + 0.0089908 + ], + [ + 109.3107851, + 0.0090052 + ], + [ + 109.311134, + 0.0090043 + ] + ] + }, + "id": "way/573082917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573084433", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597561, + -0.0157587 + ], + [ + 109.3597558, + -0.016268 + ], + [ + 109.3597573, + -0.0163034 + ], + [ + 109.3597573, + -0.0163573 + ], + [ + 109.3597508, + -0.0164366 + ], + [ + 109.3597488, + -0.0164976 + ], + [ + 109.3597455, + -0.0165895 + ], + [ + 109.3597488, + -0.0166699 + ], + [ + 109.3597495, + -0.0167698 + ], + [ + 109.3597495, + -0.016851 + ], + [ + 109.3597502, + -0.0169314 + ], + [ + 109.3597488, + -0.0169898 + ], + [ + 109.3597414, + -0.0170756 + ], + [ + 109.3597404, + -0.0171784 + ], + [ + 109.3597388, + -0.0172832 + ], + [ + 109.3597374, + -0.017376 + ], + [ + 109.3597281, + -0.0175405 + ], + [ + 109.359725, + -0.017676 + ], + [ + 109.3597204, + -0.0178024 + ], + [ + 109.3597111, + -0.0179549 + ], + [ + 109.3597049, + -0.0180904 + ], + [ + 109.3596988, + -0.0182768 + ], + [ + 109.3596898, + -0.0184449 + ], + [ + 109.3597012, + -0.0184583 + ], + [ + 109.3597166, + -0.018469 + ], + [ + 109.3597589, + -0.018471 + ], + [ + 109.3598916, + -0.0184536 + ], + [ + 109.3599299, + -0.0184201 + ], + [ + 109.35996, + -0.0183953 + ], + [ + 109.360017, + -0.0183765 + ], + [ + 109.3601455, + -0.0183708 + ] + ] + }, + "id": "way/573084433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573084442", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3598916, + -0.0184536 + ], + [ + 109.3599, + -0.0184825 + ], + [ + 109.3599067, + -0.0185133 + ], + [ + 109.3599161, + -0.0185696 + ], + [ + 109.3599336, + -0.0186085 + ], + [ + 109.3599443, + -0.01863 + ], + [ + 109.3599671, + -0.0186588 + ], + [ + 109.3599832, + -0.0186709 + ], + [ + 109.3600134, + -0.0186743 + ] + ] + }, + "id": "way/573084442" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573084445", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601455, + -0.0183708 + ], + [ + 109.3601807, + -0.0183665 + ], + [ + 109.3602209, + -0.0183618 + ], + [ + 109.3602876, + -0.0183604 + ], + [ + 109.360468, + -0.0183594 + ], + [ + 109.3604741, + -0.0183276 + ], + [ + 109.3604848, + -0.0182786 + ] + ] + }, + "id": "way/573084445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573084448", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360468, + -0.0183594 + ], + [ + 109.360468, + -0.0183805 + ], + [ + 109.3604669, + -0.0184271 + ], + [ + 109.360462, + -0.0184848 + ], + [ + 109.3604526, + -0.0185696 + ] + ] + }, + "id": "way/573084448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573084800", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626139, + -0.0154993 + ], + [ + 109.36258, + -0.0157301 + ], + [ + 109.3625613, + -0.0158562 + ], + [ + 109.3625053, + -0.0163045 + ], + [ + 109.3624461, + -0.0166589 + ], + [ + 109.3623979, + -0.0169957 + ] + ] + }, + "id": "way/573084800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573084803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624461, + -0.0166589 + ], + [ + 109.3622543, + -0.0166371 + ], + [ + 109.3622376, + -0.0166391 + ], + [ + 109.3622305, + -0.0166505 + ], + [ + 109.3622151, + -0.0167336 + ], + [ + 109.3622037, + -0.0167444 + ], + [ + 109.3621822, + -0.0167417 + ], + [ + 109.3620927, + -0.0167299 + ], + [ + 109.3619846, + -0.0167073 + ], + [ + 109.3617471, + -0.0166686 + ], + [ + 109.3617162, + -0.0166558 + ], + [ + 109.3617082, + -0.0166431 + ], + [ + 109.3617055, + -0.0166123 + ], + [ + 109.3617172, + -0.0164668 + ], + [ + 109.3617744, + -0.0157476 + ], + [ + 109.361798, + -0.0154388 + ] + ] + }, + "id": "way/573084803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573084808", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608217, + -0.0155555 + ], + [ + 109.3608485, + -0.0160991 + ], + [ + 109.3608509, + -0.0163654 + ], + [ + 109.3608505, + -0.0164982 + ], + [ + 109.3607281, + -0.0165139 + ], + [ + 109.3606655, + -0.0165291 + ], + [ + 109.3606346, + -0.0165499 + ], + [ + 109.3606151, + -0.016574 + ], + [ + 109.3606438, + -0.0170137 + ], + [ + 109.3606694, + -0.0172247 + ], + [ + 109.3606802, + -0.0173418 + ], + [ + 109.3606896, + -0.0174404 + ], + [ + 109.3606963, + -0.0175738 + ], + [ + 109.3607412, + -0.0185414 + ], + [ + 109.3607486, + -0.0185817 + ], + [ + 109.3607667, + -0.0186192 + ], + [ + 109.3608116, + -0.0186447 + ], + [ + 109.3609075, + -0.0186487 + ], + [ + 109.3612649, + -0.018644 + ], + [ + 109.3613508, + -0.0186414 + ], + [ + 109.3614466, + -0.0186393 + ] + ] + }, + "id": "way/573084808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573085086", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358322, + -0.0178806 + ], + [ + 109.3584116, + -0.0178815 + ], + [ + 109.3584116, + -0.0180944 + ], + [ + 109.3584304, + -0.0187825 + ] + ] + }, + "id": "way/573085086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573085088", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584116, + -0.0178815 + ], + [ + 109.3584168, + -0.0178195 + ] + ] + }, + "id": "way/573085088" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573101729", + "highway": "residential", + "horse": "no", + "lanes": "1", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3150565, + -0.0249177 + ], + [ + 109.315006, + -0.024731 + ], + [ + 109.3141855, + -0.0219221 + ] + ] + }, + "id": "way/573101729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573101731", + "highway": "residential", + "name": "Gang Margodadirejo I Dalem" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311965, + -0.02601 + ], + [ + 109.3119504, + -0.0264706 + ], + [ + 109.31194, + -0.0267992 + ], + [ + 109.3119392, + -0.0268241 + ], + [ + 109.311937, + -0.0271371 + ], + [ + 109.3119356, + -0.0273304 + ], + [ + 109.311927, + -0.0277953 + ], + [ + 109.3119308, + -0.0280026 + ], + [ + 109.3119193, + -0.0281592 + ], + [ + 109.3119105, + -0.028618 + ], + [ + 109.3119009, + -0.0291201 + ] + ] + }, + "id": "way/573101731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573101734", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108553, + -0.0302354 + ], + [ + 109.3105974, + -0.0291785 + ], + [ + 109.3109916, + -0.0291201 + ], + [ + 109.3110278, + -0.0291295 + ], + [ + 109.3110708, + -0.0291482 + ], + [ + 109.3111097, + -0.0291657 + ], + [ + 109.3111512, + -0.0291657 + ], + [ + 109.3113348, + -0.0291545 + ], + [ + 109.3119009, + -0.0291201 + ], + [ + 109.3119432, + -0.0291234 + ], + [ + 109.3123496, + -0.0291013 + ], + [ + 109.3124431, + -0.0290931 + ], + [ + 109.3125862, + -0.0290845 + ], + [ + 109.3127699, + -0.0290892 + ] + ] + }, + "id": "way/573101734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573101739", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105974, + -0.0291785 + ], + [ + 109.3104678, + -0.0286015 + ], + [ + 109.3102651, + -0.0276987 + ], + [ + 109.3101785, + -0.0273132 + ], + [ + 109.3100709, + -0.0268317 + ] + ] + }, + "id": "way/573101739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573101741", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312306, + -0.026743 + ], + [ + 109.3123025, + -0.0270785 + ], + [ + 109.3123013, + -0.0271936 + ], + [ + 109.3122899, + -0.0282837 + ] + ] + }, + "id": "way/573101741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573101744", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128044, + -0.0269214 + ], + [ + 109.3123025, + -0.0270785 + ] + ] + }, + "id": "way/573101744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573101746", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124577, + -0.0313333 + ], + [ + 109.3130761, + -0.0311811 + ], + [ + 109.3135075, + -0.0311016 + ], + [ + 109.313537, + -0.0310707 + ], + [ + 109.3135478, + -0.031005 + ], + [ + 109.3135632, + -0.0307835 + ], + [ + 109.3135571, + -0.0307461 + ], + [ + 109.31354, + -0.0307375 + ], + [ + 109.3135125, + -0.0307375 + ], + [ + 109.3133615, + -0.030765 + ] + ] + }, + "id": "way/573101746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573104206", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190498, + -0.0293054 + ], + [ + 109.31917, + -0.0292135 + ], + [ + 109.319531, + -0.0289303 + ], + [ + 109.3202193, + -0.0283913 + ] + ] + }, + "id": "way/573104206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573104955", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3382265, + 0.0256982 + ], + [ + 109.3381158, + 0.0257271 + ] + ] + }, + "id": "way/573104955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573104957", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3381811, + 0.0255199 + ], + [ + 109.3382254, + 0.0256661 + ], + [ + 109.3382304, + 0.0256899 + ], + [ + 109.338229, + 0.0256951 + ], + [ + 109.3382265, + 0.0256982 + ] + ] + }, + "id": "way/573104957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573104959", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337758, + 0.0249492 + ], + [ + 109.3378069, + 0.0252114 + ], + [ + 109.337872, + 0.0255514 + ], + [ + 109.3378828, + 0.0255755 + ], + [ + 109.3379015, + 0.0255889 + ], + [ + 109.3381811, + 0.0255199 + ], + [ + 109.3382576, + 0.0254971 + ] + ] + }, + "id": "way/573104959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573104968", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371086, + 0.0249665 + ], + [ + 109.3371043, + 0.0248587 + ], + [ + 109.3368494, + 0.0242231 + ] + ] + }, + "id": "way/573104968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573104977", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463418, + 0.026173 + ], + [ + 109.3463069, + 0.0259987 + ], + [ + 109.3462372, + 0.0257841 + ], + [ + 109.3461916, + 0.0255936 + ], + [ + 109.3461755, + 0.0255212 + ], + [ + 109.346213, + 0.0254864 + ], + [ + 109.3462372, + 0.0254166 + ], + [ + 109.3462667, + 0.025312 + ], + [ + 109.346256, + 0.0252557 + ], + [ + 109.3462104, + 0.0250733 + ], + [ + 109.3461165, + 0.0247487 + ], + [ + 109.3460065, + 0.0243545 + ], + [ + 109.3459502, + 0.0240809 + ], + [ + 109.3458858, + 0.0239012 + ], + [ + 109.3458429, + 0.0237456 + ], + [ + 109.3458107, + 0.0237671 + ], + [ + 109.3456927, + 0.0238127 + ], + [ + 109.3456525, + 0.0238153 + ], + [ + 109.3455908, + 0.0236383 + ], + [ + 109.3454107, + 0.02279 + ] + ] + }, + "id": "way/573104977" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573105019", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433982, + 0.023319 + ], + [ + 109.3434182, + 0.0233937 + ] + ] + }, + "id": "way/573105019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573105034", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465269, + 0.0229711 + ], + [ + 109.3464826, + 0.0230375 + ], + [ + 109.3464632, + 0.0230543 + ], + [ + 109.3464276, + 0.0230764 + ], + [ + 109.346331, + 0.0231085 + ] + ] + }, + "id": "way/573105034" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573105035", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464269, + 0.0226504 + ], + [ + 109.3464518, + 0.0227532 + ], + [ + 109.3465269, + 0.0229711 + ], + [ + 109.3466006, + 0.0230877 + ] + ] + }, + "id": "way/573105035" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573105036", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466046, + 0.0223348 + ], + [ + 109.3465725, + 0.0221658 + ], + [ + 109.3465268, + 0.0219405 + ], + [ + 109.3463686, + 0.0209186 + ], + [ + 109.3463418, + 0.0206906 + ] + ] + }, + "id": "way/573105036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573105047", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388667, + 0.0246526 + ], + [ + 109.3389201, + 0.024789 + ], + [ + 109.3393466, + 0.025937 + ] + ] + }, + "id": "way/573105047" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573115895", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182456, + 0.0230455 + ], + [ + 109.3205827, + 0.0229407 + ], + [ + 109.321585, + 0.0228958 + ] + ] + }, + "id": "way/573115895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573115896", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3183476, + 0.023582 + ], + [ + 109.3186743, + 0.0235709 + ], + [ + 109.3187346, + 0.0235584 + ], + [ + 109.3216613, + 0.0234695 + ] + ] + }, + "id": "way/573115896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573115924", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241603, + 0.023008 + ], + [ + 109.3245864, + 0.0230482 + ], + [ + 109.3246521, + 0.0230683 + ], + [ + 109.3246843, + 0.0230804 + ], + [ + 109.3247111, + 0.0231119 + ], + [ + 109.3247581, + 0.0232387 + ], + [ + 109.3247755, + 0.0232548 + ], + [ + 109.324801, + 0.0232662 + ], + [ + 109.3249673, + 0.0232829 + ] + ] + }, + "id": "way/573115924" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573115925", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236923, + 0.0260765 + ], + [ + 109.3238018, + 0.0260938 + ], + [ + 109.324982, + 0.0262521 + ], + [ + 109.3254769, + 0.0263366 + ], + [ + 109.3262735, + 0.0264815 + ], + [ + 109.3264908, + 0.0265284 + ], + [ + 109.3264894, + 0.026401 + ], + [ + 109.3264934, + 0.0262575 + ], + [ + 109.3265296, + 0.0257143 + ], + [ + 109.326539, + 0.025147 + ], + [ + 109.3265809, + 0.0245297 + ] + ] + }, + "id": "way/573115925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573115926", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3235129, + 0.0267217 + ], + [ + 109.3249619, + 0.0269642 + ] + ] + }, + "id": "way/573115926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573115927", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236204, + 0.0263497 + ], + [ + 109.3242145, + 0.0264454 + ], + [ + 109.3242676, + 0.026454 + ], + [ + 109.3243922, + 0.026474 + ], + [ + 109.3244951, + 0.0264906 + ], + [ + 109.3245835, + 0.0265049 + ], + [ + 109.3247376, + 0.0265297 + ], + [ + 109.3249726, + 0.0265753 + ], + [ + 109.3255949, + 0.0266705 + ], + [ + 109.3261541, + 0.0267577 + ], + [ + 109.3265436, + 0.0268251 + ] + ] + }, + "id": "way/573115927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573116033", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242434, + 0.0221236 + ], + [ + 109.322513, + 0.0220132 + ], + [ + 109.322499, + 0.0220166 + ], + [ + 109.3224889, + 0.0220236 + ], + [ + 109.3224218, + 0.022084 + ], + [ + 109.3224101, + 0.022092 + ], + [ + 109.3224031, + 0.0220933 + ], + [ + 109.3214965, + 0.0220424 + ] + ] + }, + "id": "way/573116033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573116035", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214965, + 0.0220424 + ], + [ + 109.3215363, + 0.0224264 + ], + [ + 109.321585, + 0.0228958 + ], + [ + 109.3216613, + 0.0234695 + ], + [ + 109.3217116, + 0.0239342 + ] + ] + }, + "id": "way/573116035" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573116036", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217499, + 0.0329938 + ], + [ + 109.3218237, + 0.0327069 + ], + [ + 109.3220477, + 0.0318378 + ], + [ + 109.3223897, + 0.0305665 + ], + [ + 109.3235129, + 0.0267217 + ], + [ + 109.3236204, + 0.0263497 + ], + [ + 109.3236923, + 0.0260765 + ], + [ + 109.3240318, + 0.0250169 + ], + [ + 109.3240265, + 0.0249848 + ], + [ + 109.3240164, + 0.024962 + ], + [ + 109.3239719, + 0.0249065 + ], + [ + 109.323999, + 0.024785 + ], + [ + 109.3240533, + 0.0242137 + ] + ] + }, + "id": "way/573116036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573119012", + "highway": "residential", + "name": "Sei Selamat Darat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339366, + 0.0421375 + ], + [ + 109.3339365, + 0.041998 + ], + [ + 109.3338788, + 0.0400098 + ], + [ + 109.3337206, + 0.0345607 + ], + [ + 109.3337066, + 0.0340778 + ], + [ + 109.3336684, + 0.0327605 + ], + [ + 109.3336174, + 0.0304914 + ], + [ + 109.3335664, + 0.0273438 + ], + [ + 109.3335396, + 0.0252771 + ] + ] + }, + "id": "way/573119012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573119037", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340774, + 0.0304525 + ], + [ + 109.3340908, + 0.030211 + ] + ] + }, + "id": "way/573119037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573119039", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336174, + 0.0304914 + ], + [ + 109.3336844, + 0.0304833 + ], + [ + 109.3340774, + 0.0304525 + ], + [ + 109.3342974, + 0.030431 + ], + [ + 109.3343912, + 0.0304149 + ], + [ + 109.3345293, + 0.0303827 + ], + [ + 109.3360502, + 0.0297859 + ] + ] + }, + "id": "way/573119039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573119210", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249673, + 0.0232829 + ], + [ + 109.3257035, + 0.0234613 + ] + ] + }, + "id": "way/573119210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133840", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202171, + 0.0216186 + ], + [ + 109.3214653, + 0.0215461 + ] + ] + }, + "id": "way/573133840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133841", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213382, + 0.0199986 + ], + [ + 109.3213865, + 0.0206101 + ], + [ + 109.3214653, + 0.0215461 + ], + [ + 109.3214965, + 0.0220424 + ] + ] + }, + "id": "way/573133841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133842", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224058, + 0.0195842 + ], + [ + 109.3233821, + 0.019623 + ], + [ + 109.3243733, + 0.0196258 + ] + ] + }, + "id": "way/573133842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133843", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3174826, + 0.0138026 + ], + [ + 109.3173652, + 0.013804 + ], + [ + 109.3172291, + 0.0138174 + ], + [ + 109.3169747, + 0.0138515 + ] + ] + }, + "id": "way/573133843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133844", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175462, + 0.013816 + ], + [ + 109.3174826, + 0.0138026 + ] + ] + }, + "id": "way/573133844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133846", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3139447, + 0.0149158 + ], + [ + 109.3141687, + 0.01553 + ] + ] + }, + "id": "way/573133846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133847", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105021, + 0.0162917 + ], + [ + 109.3105937, + 0.0162822 + ], + [ + 109.3106317, + 0.0162782 + ], + [ + 109.3115696, + 0.0161764 + ], + [ + 109.3119559, + 0.0161201 + ], + [ + 109.3121744, + 0.016078 + ], + [ + 109.312318, + 0.0160503 + ], + [ + 109.3125124, + 0.0160074 + ], + [ + 109.3127176, + 0.0159511 + ], + [ + 109.3132728, + 0.0157848 + ], + [ + 109.3135706, + 0.0156963 + ], + [ + 109.3135971, + 0.0156892 + ], + [ + 109.3139353, + 0.0155984 + ], + [ + 109.3141687, + 0.01553 + ], + [ + 109.3150679, + 0.0153573 + ] + ] + }, + "id": "way/573133847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133848", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141883, + 0.0135382 + ], + [ + 109.3145276, + 0.0134357 + ] + ] + }, + "id": "way/573133848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133849", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140312, + 0.0129781 + ], + [ + 109.3140445, + 0.0130221 + ], + [ + 109.3141883, + 0.0135382 + ], + [ + 109.3142679, + 0.0137986 + ] + ] + }, + "id": "way/573133849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133850", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3150679, + 0.0153573 + ], + [ + 109.3160395, + 0.0151438 + ], + [ + 109.3171807, + 0.0148625 + ] + ] + }, + "id": "way/573133850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3157086, + 0.0134534 + ], + [ + 109.3157901, + 0.013914 + ], + [ + 109.31592, + 0.0145507 + ], + [ + 109.315951, + 0.0147025 + ], + [ + 109.3160395, + 0.0151438 + ] + ] + }, + "id": "way/573133851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169617, + 0.0137898 + ], + [ + 109.3157901, + 0.013914 + ] + ] + }, + "id": "way/573133852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133854", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212806, + 0.0149721 + ], + [ + 109.3222241, + 0.0149573 + ] + ] + }, + "id": "way/573133854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133855", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213651, + 0.0156681 + ], + [ + 109.3222313, + 0.0156493 + ] + ] + }, + "id": "way/573133855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133856", + "highway": "residential", + "name": "KOMPLEK KHATULISTIWA RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214522, + 0.01599 + ], + [ + 109.3222348, + 0.0159753 + ] + ] + }, + "id": "way/573133856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133857", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210392, + 0.0172868 + ], + [ + 109.3219501, + 0.0172733 + ] + ] + }, + "id": "way/573133857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133858", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210392, + 0.017602 + ], + [ + 109.3219559, + 0.0175818 + ] + ] + }, + "id": "way/573133858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133859", + "highway": "residential", + "name": "KOMPLEK KHATULISTIWA RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210338, + 0.0179145 + ], + [ + 109.3219619, + 0.0179008 + ] + ] + }, + "id": "way/573133859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211719, + 0.0182337 + ], + [ + 109.3213414, + 0.0182337 + ], + [ + 109.3219679, + 0.0182201 + ] + ] + }, + "id": "way/573133860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133861", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213597, + 0.018864 + ], + [ + 109.3219797, + 0.0188492 + ] + ] + }, + "id": "way/573133861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133862", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321349, + 0.0185381 + ], + [ + 109.3219737, + 0.0185287 + ] + ] + }, + "id": "way/573133862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133863", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222529, + 0.0171608 + ], + [ + 109.3222569, + 0.0169469 + ] + ] + }, + "id": "way/573133863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243898, + 0.0191944 + ], + [ + 109.3238541, + 0.0191724 + ], + [ + 109.3220101, + 0.0191255 + ], + [ + 109.3219932, + 0.0191236 + ], + [ + 109.321985, + 0.0191168 + ], + [ + 109.321982, + 0.0191074 + ], + [ + 109.3219797, + 0.0188492 + ], + [ + 109.3219737, + 0.0185287 + ], + [ + 109.3219679, + 0.0182201 + ], + [ + 109.3219619, + 0.0179008 + ], + [ + 109.3219559, + 0.0175818 + ], + [ + 109.3219501, + 0.0172733 + ], + [ + 109.3219444, + 0.016973 + ], + [ + 109.3220061, + 0.016965 + ], + [ + 109.3222569, + 0.0169469 + ] + ] + }, + "id": "way/573133864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133865", + "highway": "residential", + "name": "KOMPLEK QEYSHA RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322334, + 0.0132709 + ], + [ + 109.3222073, + 0.0133507 + ], + [ + 109.3222241, + 0.0149573 + ], + [ + 109.3222313, + 0.0156493 + ], + [ + 109.3222348, + 0.0159753 + ], + [ + 109.3222569, + 0.0169469 + ] + ] + }, + "id": "way/573133865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133867", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323653, + 0.0130919 + ], + [ + 109.323722, + 0.0122762 + ], + [ + 109.3237522, + 0.0110078 + ] + ] + }, + "id": "way/573133867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133868", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3234693, + 0.0099639 + ], + [ + 109.323422, + 0.0110166 + ], + [ + 109.3233975, + 0.0122913 + ], + [ + 109.3233325, + 0.0131187 + ] + ] + }, + "id": "way/573133868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133869", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237522, + 0.0110078 + ], + [ + 109.323422, + 0.0110166 + ], + [ + 109.3230991, + 0.0110252 + ], + [ + 109.3227705, + 0.0110386 + ], + [ + 109.3224527, + 0.01104 + ] + ] + }, + "id": "way/573133869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133870", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230173, + 0.0130181 + ], + [ + 109.3230793, + 0.0123005 + ], + [ + 109.3230991, + 0.0110252 + ] + ] + }, + "id": "way/573133870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133871", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322806, + 0.0100024 + ], + [ + 109.3227705, + 0.0110386 + ], + [ + 109.3227605, + 0.0123084 + ], + [ + 109.3226954, + 0.012951 + ] + ] + }, + "id": "way/573133871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133872", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224527, + 0.01104 + ], + [ + 109.3223929, + 0.0122976 + ], + [ + 109.3223561, + 0.0129081 + ], + [ + 109.322334, + 0.0132709 + ] + ] + }, + "id": "way/573133872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133873", + "highway": "residential", + "name": "KOMPLEK KHATULISTIWA CITY" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242562, + 0.0122222 + ], + [ + 109.323722, + 0.0122762 + ], + [ + 109.3233975, + 0.0122913 + ], + [ + 109.3230793, + 0.0123005 + ], + [ + 109.3227605, + 0.0123084 + ], + [ + 109.3223929, + 0.0122976 + ] + ] + }, + "id": "way/573133873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133874", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322334, + 0.0132709 + ], + [ + 109.3225318, + 0.0132313 + ], + [ + 109.3226364, + 0.0132287 + ], + [ + 109.3236221, + 0.0134238 + ], + [ + 109.3238387, + 0.0135076 + ], + [ + 109.3238676, + 0.0135197 + ], + [ + 109.3239165, + 0.0135304 + ], + [ + 109.3243509, + 0.0135044 + ] + ] + }, + "id": "way/573133874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133875", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243963, + 0.0137097 + ], + [ + 109.3250344, + 0.0136564 + ] + ] + }, + "id": "way/573133875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133876", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238997, + 0.0146234 + ], + [ + 109.3244856, + 0.0145737 + ] + ] + }, + "id": "way/573133876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133878", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244893, + 0.0145484 + ], + [ + 109.3250163, + 0.014494 + ] + ] + }, + "id": "way/573133878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133879", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244952, + 0.0153691 + ], + [ + 109.3241934, + 0.0153972 + ], + [ + 109.3239333, + 0.0154173 + ] + ] + }, + "id": "way/573133879" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133880", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237536, + 0.0166699 + ], + [ + 109.3244722, + 0.0166111 + ] + ] + }, + "id": "way/573133880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133881", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244456, + 0.0177708 + ], + [ + 109.3249981, + 0.0177576 + ], + [ + 109.3260844, + 0.0177375 + ], + [ + 109.3263231, + 0.0177294 + ] + ] + }, + "id": "way/573133881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573133882", + "highway": "residential", + "name": "KOMPLEK D'KASIO RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244722, + 0.0166111 + ], + [ + 109.3249754, + 0.0165385 + ], + [ + 109.326362, + 0.0163373 + ] + ] + }, + "id": "way/573133882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153466", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349111, + -0.00058 + ], + [ + 109.348281, + -0.0000845 + ], + [ + 109.3476222, + 0.0003253 + ] + ] + }, + "id": "way/573153466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153467", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477912, + 0.0006298 + ], + [ + 109.3489637, + -0.0000268 + ], + [ + 109.3499183, + -0.0005921 + ] + ] + }, + "id": "way/573153467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153969", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578409, + 0.0091722 + ], + [ + 109.3580762, + 0.0091553 + ], + [ + 109.3581355, + 0.0091437 + ] + ] + }, + "id": "way/573153969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153971", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576661, + 0.0091436 + ], + [ + 109.3577298, + 0.0091081 + ] + ] + }, + "id": "way/573153971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153973", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576158, + 0.0088419 + ], + [ + 109.3576962, + 0.0088278 + ] + ] + }, + "id": "way/573153973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153974", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575025, + 0.0085536 + ], + [ + 109.3575983, + 0.0085381 + ] + ] + }, + "id": "way/573153974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153976", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572852, + 0.008162 + ], + [ + 109.3574327, + 0.0080882 + ], + [ + 109.3574998, + 0.0080453 + ] + ] + }, + "id": "way/573153976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153977", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560192, + 0.0078106 + ], + [ + 109.356903, + 0.0073345 + ], + [ + 109.3569379, + 0.0073278 + ], + [ + 109.3569982, + 0.0073238 + ], + [ + 109.3571565, + 0.0073358 + ], + [ + 109.3573053, + 0.007352 + ], + [ + 109.3574461, + 0.0073545 + ] + ] + }, + "id": "way/573153977" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153979", + "highway": "residential", + "name": "KOMPLEK GRAND SRIWEDARI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543963, + 0.00852 + ], + [ + 109.3571297, + 0.0069684 + ], + [ + 109.3573388, + 0.0068664 + ] + ] + }, + "id": "way/573153979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153981", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522212, + 0.0064856 + ], + [ + 109.3538976, + 0.0056903 + ] + ] + }, + "id": "way/573153981" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153983", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497041, + 0.0035685 + ], + [ + 109.3498327, + 0.0040461 + ], + [ + 109.3498313, + 0.0040796 + ], + [ + 109.3498059, + 0.0041226 + ], + [ + 109.3496074, + 0.0041628 + ], + [ + 109.3495631, + 0.0042124 + ], + [ + 109.3495457, + 0.0042687 + ], + [ + 109.349598, + 0.0053456 + ], + [ + 109.3496047, + 0.0054261 + ], + [ + 109.3496315, + 0.0055039 + ], + [ + 109.3496798, + 0.0056876 + ], + [ + 109.3497348, + 0.0058593 + ], + [ + 109.3497737, + 0.0060135 + ], + [ + 109.3498018, + 0.0062147 + ], + [ + 109.3498112, + 0.0062697 + ], + [ + 109.3498126, + 0.0063059 + ], + [ + 109.3497455, + 0.006735 + ], + [ + 109.3496302, + 0.0075611 + ], + [ + 109.3495953, + 0.0077865 + ] + ] + }, + "id": "way/573153983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153986", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470398, + 0.0087782 + ], + [ + 109.3466844, + 0.0087828 + ] + ] + }, + "id": "way/573153986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153987", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487826, + 0.0084946 + ], + [ + 109.3482193, + 0.0088003 + ], + [ + 109.3479927, + 0.0089103 + ], + [ + 109.3478331, + 0.008972 + ], + [ + 109.3472138, + 0.0091323 + ], + [ + 109.3471672, + 0.0091363 + ], + [ + 109.3471384, + 0.0091302 + ], + [ + 109.3471216, + 0.0091095 + ], + [ + 109.3471089, + 0.0090736 + ], + [ + 109.3470861, + 0.0089157 + ], + [ + 109.3470594, + 0.0088338 + ], + [ + 109.3470398, + 0.0087782 + ], + [ + 109.3470418, + 0.0087272 + ] + ] + }, + "id": "way/573153987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153989", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348918, + 0.0069911 + ], + [ + 109.3488936, + 0.005821 + ] + ] + }, + "id": "way/573153989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153992", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486786, + 0.0082539 + ], + [ + 109.3486109, + 0.0070274 + ], + [ + 109.3485799, + 0.0058285 + ] + ] + }, + "id": "way/573153992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153994", + "highway": "residential", + "name": "KOMPLEK TAMAN ANGGREK 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348918, + 0.0069911 + ], + [ + 109.3489663, + 0.008056 + ], + [ + 109.3489663, + 0.0080895 + ], + [ + 109.3489489, + 0.0081123 + ], + [ + 109.3486786, + 0.0082539 + ], + [ + 109.3483575, + 0.0084221 + ], + [ + 109.348336, + 0.0084087 + ], + [ + 109.3483306, + 0.0083779 + ], + [ + 109.3482837, + 0.0070703 + ], + [ + 109.3482635, + 0.0058371 + ] + ] + }, + "id": "way/573153994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573153998", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483575, + 0.0084221 + ], + [ + 109.348053, + 0.008575 + ], + [ + 109.3480298, + 0.0079193 + ], + [ + 109.3480074, + 0.0072902 + ], + [ + 109.3479504, + 0.0058435 + ] + ] + }, + "id": "way/573153998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573154000", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476722, + 0.0072259 + ], + [ + 109.3476348, + 0.0058567 + ] + ] + }, + "id": "way/573154000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573154002", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473396, + 0.0066143 + ], + [ + 109.3473236, + 0.0058681 + ] + ] + }, + "id": "way/573154002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573154004", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473905, + 0.0087695 + ], + [ + 109.3473918, + 0.0075571 + ], + [ + 109.3470361, + 0.0075521 + ] + ] + }, + "id": "way/573154004" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573154006", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470418, + 0.0087272 + ], + [ + 109.3470361, + 0.0075521 + ] + ] + }, + "id": "way/573154006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573154009", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469855, + 0.0058746 + ], + [ + 109.3470361, + 0.0075521 + ] + ] + }, + "id": "way/573154009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573154011", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488936, + 0.005821 + ], + [ + 109.3485799, + 0.0058285 + ], + [ + 109.3482635, + 0.0058371 + ], + [ + 109.3479504, + 0.0058435 + ], + [ + 109.3476348, + 0.0058567 + ], + [ + 109.3473236, + 0.0058681 + ], + [ + 109.3469855, + 0.0058746 + ] + ] + }, + "id": "way/573154011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573154013", + "highway": "residential", + "name": "KOMPLEK GARDEN MAS 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492179, + 0.0036921 + ], + [ + 109.3494344, + 0.0057372 + ] + ] + }, + "id": "way/573154013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573178425", + "highway": "tertiary", + "name": "Budi Utomo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522521, + 0.0028781 + ], + [ + 109.3525582, + 0.0027784 + ], + [ + 109.3526919, + 0.0027359 + ], + [ + 109.3528716, + 0.002701 + ], + [ + 109.3532904, + 0.0026356 + ], + [ + 109.3543035, + 0.0024886 + ], + [ + 109.3546792, + 0.0024371 + ], + [ + 109.3550743, + 0.0023931 + ], + [ + 109.3551547, + 0.0023856 + ], + [ + 109.355842, + 0.0023019 + ], + [ + 109.3567068, + 0.0021846 + ] + ] + }, + "id": "way/573178425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573178426", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Budi Utomo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352186, + 0.0029092 + ], + [ + 109.3522521, + 0.0028781 + ] + ] + }, + "id": "way/573178426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573178932", + "highway": "residential", + "name": "KOMPLEK AMY PERMAI 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506951, + 0.0004131 + ], + [ + 109.3515372, + -0.0000711 + ], + [ + 109.3530178, + -0.0008959 + ] + ] + }, + "id": "way/573178932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573178934", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506402, + 0.0004477 + ], + [ + 109.3506951, + 0.0004131 + ] + ] + }, + "id": "way/573178934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179214", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428989, + -0.0745075 + ], + [ + 109.3427965, + -0.0743736 + ], + [ + 109.3425505, + -0.0740745 + ], + [ + 109.3423666, + -0.0738379 + ] + ] + }, + "id": "way/573179214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179218", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463197, + -0.0701324 + ], + [ + 109.3464435, + -0.069981 + ], + [ + 109.3465604, + -0.069834 + ], + [ + 109.3466254, + -0.0697481 + ], + [ + 109.346732, + -0.0696221 + ], + [ + 109.3467723, + -0.0695832 + ], + [ + 109.3468212, + -0.0695316 + ], + [ + 109.3468751, + -0.0694828 + ], + [ + 109.3469379, + -0.0694316 + ], + [ + 109.3470485, + -0.0693136 + ], + [ + 109.3471142, + -0.0692441 + ], + [ + 109.3471652, + -0.0691932 + ], + [ + 109.3472457, + -0.0691151 + ], + [ + 109.3473283, + -0.0690291 + ], + [ + 109.3473905, + -0.0689381 + ], + [ + 109.3474415, + -0.068853 + ], + [ + 109.3474541, + -0.0688305 + ], + [ + 109.347522, + -0.0687517 + ], + [ + 109.3476868, + -0.0685547 + ] + ] + }, + "id": "way/573179218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179219", + "highway": "residential", + "name": "Gang Sospol" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418275, + -0.0673274 + ], + [ + 109.3415688, + -0.0676104 + ], + [ + 109.3415075, + -0.0676793 + ], + [ + 109.3412671, + -0.0679497 + ], + [ + 109.3412357, + -0.0679831 + ], + [ + 109.340938, + -0.0682993 + ], + [ + 109.3405898, + -0.0679873 + ], + [ + 109.3404624, + -0.0678599 + ], + [ + 109.3402626, + -0.0676761 + ] + ] + }, + "id": "way/573179219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179223", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392617, + -0.0667723 + ], + [ + 109.3389282, + -0.0664624 + ] + ] + }, + "id": "way/573179223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179224", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395574, + -0.0664351 + ], + [ + 109.338904, + -0.0658589 + ], + [ + 109.3386519, + -0.0656336 + ], + [ + 109.3378285, + -0.0649094 + ], + [ + 109.3371096, + -0.0642925 + ], + [ + 109.3372973, + -0.0640774 + ], + [ + 109.3374208, + -0.0639358 + ], + [ + 109.337581, + -0.0637662 + ], + [ + 109.3377704, + -0.063605 + ] + ] + }, + "id": "way/573179224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179226", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389712, + -0.06709 + ], + [ + 109.338448, + -0.06661 + ], + [ + 109.3380162, + -0.0662264 + ], + [ + 109.3375522, + -0.0658348 + ] + ] + }, + "id": "way/573179226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179227", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404855, + -0.0660846 + ], + [ + 109.3404398, + -0.0661814 + ], + [ + 109.340369, + -0.0662706 + ], + [ + 109.3403036, + -0.0663423 + ], + [ + 109.3402313, + -0.0664193 + ], + [ + 109.3401901, + -0.0664395 + ], + [ + 109.3401603, + -0.0664297 + ], + [ + 109.3401355, + -0.0663951 + ], + [ + 109.3399612, + -0.0662274 + ], + [ + 109.3398746, + -0.066153 + ], + [ + 109.3398304, + -0.0661402 + ], + [ + 109.3398083, + -0.066151 + ], + [ + 109.3395574, + -0.0664351 + ], + [ + 109.3395399, + -0.0664527 + ], + [ + 109.339532, + -0.0664607 + ], + [ + 109.3392802, + -0.0667555 + ], + [ + 109.3392617, + -0.0667723 + ], + [ + 109.3392155, + -0.0668255 + ], + [ + 109.3389712, + -0.06709 + ], + [ + 109.3387595, + -0.067319 + ], + [ + 109.3387166, + -0.0673687 + ] + ] + }, + "id": "way/573179227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179248", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454874, + -0.0753499 + ], + [ + 109.3461058, + -0.0757053 + ], + [ + 109.3462061, + -0.0757672 + ], + [ + 109.3463364, + -0.0758475 + ], + [ + 109.3468018, + -0.0761251 + ] + ] + }, + "id": "way/573179248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179249", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426157, + -0.0694078 + ], + [ + 109.3428697, + -0.0696851 + ], + [ + 109.3434799, + -0.0704509 + ], + [ + 109.3441799, + -0.0713414 + ], + [ + 109.3445608, + -0.0718537 + ], + [ + 109.344623, + -0.0719326 + ], + [ + 109.34466, + -0.0719797 + ], + [ + 109.344762, + -0.0720911 + ], + [ + 109.344939, + -0.0722748 + ], + [ + 109.3451267, + -0.0724706 + ] + ] + }, + "id": "way/573179249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179253", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3384681, + -0.0735628 + ], + [ + 109.3384182, + -0.0735201 + ], + [ + 109.3377963, + -0.0729882 + ], + [ + 109.3365008, + -0.0719851 + ], + [ + 109.3357719, + -0.0714011 + ] + ] + }, + "id": "way/573179253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179254", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409345, + -0.0712656 + ], + [ + 109.3414307, + -0.0719073 + ], + [ + 109.342812, + -0.0737419 + ] + ] + }, + "id": "way/573179254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179255", + "highway": "residential", + "name": "Gang Bersaudara" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412149, + -0.0709727 + ], + [ + 109.341597, + -0.0714487 + ], + [ + 109.341951, + -0.0719234 + ], + [ + 109.3423212, + -0.072433 + ], + [ + 109.342804, + -0.0730499 + ], + [ + 109.3434906, + -0.0739459 + ] + ] + }, + "id": "way/573179255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179301", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417463, + -0.0758411 + ], + [ + 109.3431205, + -0.0766521 + ], + [ + 109.3442658, + -0.0772879 + ], + [ + 109.3438178, + -0.0779879 + ] + ] + }, + "id": "way/573179301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179302", + "highway": "residential", + "name": "Gang Hidayah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411866, + -0.0710008 + ], + [ + 109.3411064, + -0.070937 + ], + [ + 109.338483, + -0.0688174 + ] + ] + }, + "id": "way/573179302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179305", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409034, + -0.0712963 + ], + [ + 109.340827, + -0.0712371 + ], + [ + 109.3380027, + -0.0690402 + ] + ] + }, + "id": "way/573179305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179306", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426455, + -0.0748161 + ], + [ + 109.342466, + -0.0746137 + ], + [ + 109.3423533, + -0.0744715 + ], + [ + 109.3419591, + -0.0739753 + ], + [ + 109.3416184, + -0.0735006 + ], + [ + 109.3414012, + -0.0732457 + ], + [ + 109.3408138, + -0.0724625 + ], + [ + 109.3406394, + -0.0722614 + ], + [ + 109.3403178, + -0.0718647 + ] + ] + }, + "id": "way/573179306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179307", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397636, + -0.0724233 + ], + [ + 109.3399702, + -0.0727147 + ], + [ + 109.3402277, + -0.0731009 + ], + [ + 109.3406555, + -0.0737111 + ], + [ + 109.3410216, + -0.0742408 + ], + [ + 109.3413287, + -0.0746713 + ], + [ + 109.3415882, + -0.0750555 + ], + [ + 109.3416305, + -0.0751099 + ], + [ + 109.3416451, + -0.0751279 + ], + [ + 109.3416747, + -0.0751642 + ], + [ + 109.3420234, + -0.0755261 + ] + ] + }, + "id": "way/573179307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179310", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442456, + -0.0748953 + ], + [ + 109.3442805, + -0.074851 + ], + [ + 109.3443073, + -0.074792 + ], + [ + 109.3443087, + -0.0747572 + ], + [ + 109.3441638, + -0.0746526 + ], + [ + 109.3436971, + -0.0743508 + ], + [ + 109.343504, + -0.0742194 + ], + [ + 109.3433967, + -0.0741402 + ], + [ + 109.3433317, + -0.0740887 + ] + ] + }, + "id": "way/573179310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179311", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432298, + -0.0746814 + ], + [ + 109.3430775, + -0.0745547 + ], + [ + 109.3429595, + -0.0744608 + ] + ] + }, + "id": "way/573179311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179312", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344122, + -0.0750566 + ], + [ + 109.3437387, + -0.0748229 + ], + [ + 109.3433605, + -0.0745734 + ], + [ + 109.343333, + -0.0745687 + ], + [ + 109.3433069, + -0.0745815 + ], + [ + 109.3432298, + -0.0746814 + ], + [ + 109.3431661, + -0.0747867 + ], + [ + 109.3431097, + -0.0748846 + ] + ] + }, + "id": "way/573179312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179313", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453448, + -0.0755758 + ], + [ + 109.344998, + -0.07535 + ], + [ + 109.3448639, + -0.0752797 + ], + [ + 109.3446694, + -0.0751354 + ], + [ + 109.3443905, + -0.0749637 + ], + [ + 109.3442819, + -0.0749047 + ], + [ + 109.3442456, + -0.0748953 + ], + [ + 109.3442014, + -0.0749208 + ], + [ + 109.3441477, + -0.075016 + ], + [ + 109.344122, + -0.0750566 + ], + [ + 109.3440109, + -0.0752319 + ], + [ + 109.3439479, + -0.0753151 + ], + [ + 109.3438956, + -0.0754063 + ], + [ + 109.3436247, + -0.0752453 + ], + [ + 109.3433605, + -0.0750857 + ], + [ + 109.3431795, + -0.0749852 + ], + [ + 109.3431178, + -0.0749409 + ], + [ + 109.3431057, + -0.0749134 + ], + [ + 109.3431097, + -0.0748846 + ] + ] + }, + "id": "way/573179313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179314", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453448, + -0.0755758 + ], + [ + 109.3451563, + -0.0758341 + ], + [ + 109.3450999, + -0.0758878 + ], + [ + 109.3450731, + -0.0759012 + ], + [ + 109.3450491, + -0.0758867 + ], + [ + 109.3449886, + -0.0758502 + ], + [ + 109.3448398, + -0.0757563 + ], + [ + 109.3446587, + -0.0756436 + ], + [ + 109.3444669, + -0.0755296 + ], + [ + 109.3442014, + -0.0753607 + ], + [ + 109.3440109, + -0.0752319 + ] + ] + }, + "id": "way/573179314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179315", + "highway": "living_street", + "name": "Gang Karya Kita 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461991, + -0.0743815 + ], + [ + 109.3456578, + -0.0740236 + ], + [ + 109.3451482, + -0.0736803 + ], + [ + 109.3447781, + -0.0734228 + ], + [ + 109.3443608, + -0.073143 + ] + ] + }, + "id": "way/573179315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179316", + "highway": "residential", + "name": "Jalan Karya Kita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461991, + -0.0743815 + ], + [ + 109.3462439, + -0.0743186 + ], + [ + 109.3463904, + -0.0740794 + ], + [ + 109.3464177, + -0.0740371 + ], + [ + 109.3464422, + -0.0739992 + ], + [ + 109.3465778, + -0.0737975 + ], + [ + 109.3466128, + -0.0737431 + ], + [ + 109.3467502, + -0.0735421 + ], + [ + 109.3468434, + -0.0733718 + ] + ] + }, + "id": "way/573179316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179317", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344037, + -0.0734132 + ], + [ + 109.3444066, + -0.0736628 + ], + [ + 109.3445742, + -0.0737768 + ], + [ + 109.3447968, + -0.0739418 + ], + [ + 109.3450704, + -0.0741201 + ], + [ + 109.3454298, + -0.0743602 + ], + [ + 109.3456806, + -0.0745265 + ], + [ + 109.3459824, + -0.074729 + ] + ] + }, + "id": "way/573179317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179318", + "highway": "residential", + "name": "Gang Karya Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437643, + -0.0736548 + ], + [ + 109.344019, + -0.0734281 + ], + [ + 109.344037, + -0.0734132 + ], + [ + 109.3441195, + -0.0733445 + ], + [ + 109.3442979, + -0.0731961 + ], + [ + 109.3443608, + -0.073143 + ], + [ + 109.3444496, + -0.073068 + ], + [ + 109.3446807, + -0.0728728 + ], + [ + 109.3447942, + -0.0727616 + ], + [ + 109.3449239, + -0.0726481 + ], + [ + 109.3451267, + -0.0724706 + ] + ] + }, + "id": "way/573179318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179349", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431742, + -0.06878 + ], + [ + 109.3438098, + -0.0695953 + ], + [ + 109.3449815, + -0.0711318 + ], + [ + 109.3451468, + -0.0713485 + ] + ] + }, + "id": "way/573179349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573179350", + "access": "destination", + "highway": "residential", + "name": "Gang Amali", + "smoothness": "horrible", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385906, + -0.068176 + ], + [ + 109.3382562, + -0.0678103 + ], + [ + 109.3382137, + -0.0677693 + ], + [ + 109.3381919, + -0.0677325 + ], + [ + 109.3381851, + -0.0676171 + ], + [ + 109.3381852, + -0.0674763 + ], + [ + 109.3381677, + -0.0673368 + ], + [ + 109.3380632, + -0.0671893 + ], + [ + 109.3378982, + -0.0670337 + ], + [ + 109.3371123, + -0.0663041 + ], + [ + 109.3362513, + -0.0655237 + ], + [ + 109.3354024, + -0.0647017 + ] + ] + }, + "id": "way/573179350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573206991", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114677, + 0.023928 + ], + [ + 109.311547, + 0.0239102 + ] + ] + }, + "id": "way/573206991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573206992", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107542, + 0.0240648 + ], + [ + 109.3114677, + 0.023928 + ] + ] + }, + "id": "way/573206992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573206993", + "highway": "residential", + "name": "KOMPLEK GRIYA CAHAYA PERMAI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133989, + 0.0230268 + ], + [ + 109.3114778, + 0.0234699 + ] + ] + }, + "id": "way/573206993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207115", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084905, + 0.0220075 + ], + [ + 109.3062488, + 0.0229721 + ] + ] + }, + "id": "way/573207115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207116", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306511, + 0.0249003 + ], + [ + 109.3062951, + 0.0249935 + ], + [ + 109.305996, + 0.0251296 + ], + [ + 109.3059665, + 0.0251289 + ], + [ + 109.3059511, + 0.0251182 + ], + [ + 109.305819, + 0.0248332 + ], + [ + 109.3058049, + 0.0247943 + ], + [ + 109.3058056, + 0.0247756 + ], + [ + 109.3061086, + 0.0246361 + ], + [ + 109.3061522, + 0.0246144 + ], + [ + 109.3068128, + 0.0242857 + ] + ] + }, + "id": "way/573207116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207117", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030458, + 0.0157542 + ], + [ + 109.3031103, + 0.015923 + ], + [ + 109.3033272, + 0.0164634 + ], + [ + 109.3034404, + 0.0167153 + ], + [ + 109.3036383, + 0.0171554 + ], + [ + 109.3039978, + 0.0179306 + ], + [ + 109.3042794, + 0.0185448 + ], + [ + 109.3046334, + 0.0192985 + ], + [ + 109.3048131, + 0.0197142 + ], + [ + 109.3049526, + 0.0200066 + ], + [ + 109.305076, + 0.0202614 + ], + [ + 109.3052423, + 0.0206262 + ], + [ + 109.3053256, + 0.0208167 + ], + [ + 109.3053828, + 0.0209474 + ], + [ + 109.3057948, + 0.0218895 + ], + [ + 109.3062488, + 0.0229721 + ], + [ + 109.3068241, + 0.024211 + ], + [ + 109.3068362, + 0.0242431 + ], + [ + 109.3068342, + 0.0242673 + ], + [ + 109.3068128, + 0.0242857 + ] + ] + }, + "id": "way/573207117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207414", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488603, + -0.0279247 + ], + [ + 109.3490522, + -0.0277032 + ] + ] + }, + "id": "way/573207414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207418", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486642, + -0.0277432 + ], + [ + 109.3488274, + -0.0275719 + ], + [ + 109.3489046, + -0.0274873 + ], + [ + 109.3489958, + -0.0273961 + ] + ] + }, + "id": "way/573207418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207419", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499711, + -0.0265811 + ], + [ + 109.3500262, + -0.0266927 + ] + ] + }, + "id": "way/573207419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207420", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34944, + -0.0267933 + ], + [ + 109.3495538, + -0.026922 + ], + [ + 109.3496416, + -0.0270099 + ] + ] + }, + "id": "way/573207420" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501901, + -0.0272687 + ], + [ + 109.3501371, + -0.0273046 + ], + [ + 109.3501321, + -0.0273113 + ], + [ + 109.3501328, + -0.0273186 + ], + [ + 109.3502042, + -0.0274517 + ], + [ + 109.3503137, + -0.0275826 + ] + ] + }, + "id": "way/573207423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207424", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497097, + -0.0266283 + ], + [ + 109.3499326, + -0.0269133 + ], + [ + 109.3500184, + -0.0270246 + ], + [ + 109.3501109, + -0.0271541 + ], + [ + 109.3501901, + -0.0272687 + ] + ] + }, + "id": "way/573207424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207425", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498051, + -0.0265618 + ], + [ + 109.3499527, + -0.0267591 + ], + [ + 109.3500352, + -0.0268852 + ], + [ + 109.3501039, + -0.0270228 + ], + [ + 109.3501084, + -0.0270244 + ], + [ + 109.3501131, + -0.0270239 + ], + [ + 109.3501401, + -0.0270124 + ], + [ + 109.3501448, + -0.0270124 + ], + [ + 109.3501495, + -0.0270147 + ], + [ + 109.350169, + -0.0270632 + ], + [ + 109.3501708, + -0.0270661 + ], + [ + 109.3501743, + -0.0270665 + ], + [ + 109.3503609, + -0.0269952 + ] + ] + }, + "id": "way/573207425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207426", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499254, + -0.0264913 + ], + [ + 109.3499711, + -0.0265811 + ] + ] + }, + "id": "way/573207426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207428", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504206, + -0.0271335 + ], + [ + 109.3501901, + -0.0272687 + ] + ] + }, + "id": "way/573207428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207429", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505422, + -0.0274154 + ], + [ + 109.3503137, + -0.0275826 + ], + [ + 109.3502872, + -0.0276093 + ], + [ + 109.3502746, + -0.0276254 + ] + ] + }, + "id": "way/573207429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207430", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502746, + -0.0276254 + ], + [ + 109.3502538, + -0.0276448 + ], + [ + 109.3502389, + -0.0276542 + ], + [ + 109.3502304, + -0.0276596 + ], + [ + 109.3500882, + -0.027781 + ] + ] + }, + "id": "way/573207430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207625", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483222, + -0.0274478 + ], + [ + 109.3479936, + -0.0276284 + ], + [ + 109.3476158, + -0.027836 + ] + ] + }, + "id": "way/573207625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207626", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480517, + -0.0286359 + ], + [ + 109.3482616, + -0.0285119 + ], + [ + 109.3483645, + -0.0284512 + ], + [ + 109.3483803, + -0.0284495 + ], + [ + 109.348391, + -0.0284535 + ], + [ + 109.3484638, + -0.028536 + ], + [ + 109.3484701, + -0.028538 + ], + [ + 109.3484782, + -0.0285384 + ], + [ + 109.3485378, + -0.028479 + ], + [ + 109.3485774, + -0.0284288 + ], + [ + 109.3486391, + -0.0283429 + ] + ] + }, + "id": "way/573207626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207627", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489662, + -0.0280195 + ], + [ + 109.3487394, + -0.0282537 + ], + [ + 109.3486884, + -0.0283017 + ], + [ + 109.3486391, + -0.0283429 + ] + ] + }, + "id": "way/573207627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207628", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490045, + -0.0284928 + ], + [ + 109.3487994, + -0.028308 + ], + [ + 109.3487394, + -0.0282537 + ] + ] + }, + "id": "way/573207628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207629", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487949, + -0.0292191 + ], + [ + 109.3487122, + -0.0290691 + ] + ] + }, + "id": "way/573207629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207630", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489628, + -0.028548 + ], + [ + 109.3491132, + -0.0286876 + ], + [ + 109.3491903, + -0.0287472 + ], + [ + 109.3493251, + -0.0288888 + ] + ] + }, + "id": "way/573207630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207631", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492148, + -0.0282422 + ], + [ + 109.3490045, + -0.0284928 + ], + [ + 109.3489628, + -0.028548 + ], + [ + 109.3488711, + -0.0286366 + ], + [ + 109.3487879, + -0.0287173 + ], + [ + 109.3487544, + -0.0287499 + ] + ] + }, + "id": "way/573207631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207653", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487511, + -0.0302131 + ], + [ + 109.3489368, + -0.0301219 + ], + [ + 109.3491943, + -0.0300139 + ], + [ + 109.3495594, + -0.0298047 + ], + [ + 109.3495648, + -0.029795 + ], + [ + 109.3495645, + -0.0297863 + ], + [ + 109.3495608, + -0.0297799 + ], + [ + 109.3494877, + -0.02965 + ] + ] + }, + "id": "way/573207653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207655", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486371, + -0.0299402 + ], + [ + 109.3491299, + -0.0297165 + ], + [ + 109.349143, + -0.0297172 + ], + [ + 109.3491494, + -0.0297229 + ], + [ + 109.3491923, + -0.0298067 + ], + [ + 109.3492004, + -0.0298164 + ], + [ + 109.3492091, + -0.0298178 + ], + [ + 109.3494877, + -0.02965 + ], + [ + 109.3495417, + -0.0296176 + ], + [ + 109.3496863, + -0.0295348 + ] + ] + }, + "id": "way/573207655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207657", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486941, + -0.0295646 + ], + [ + 109.3487464, + -0.0296511 + ] + ] + }, + "id": "way/573207657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207659", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493357, + -0.029113 + ], + [ + 109.3492168, + -0.029231 + ], + [ + 109.3491108, + -0.0292937 + ], + [ + 109.3489492, + -0.0294087 + ], + [ + 109.3486941, + -0.0295646 + ], + [ + 109.3485325, + -0.0296438 + ] + ] + }, + "id": "way/573207659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207661", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492565, + -0.0294936 + ], + [ + 109.3491953, + -0.0294114 + ], + [ + 109.3491108, + -0.0292937 + ] + ] + }, + "id": "way/573207661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207665", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495078, + -0.0293258 + ], + [ + 109.3494384, + -0.0293776 + ], + [ + 109.3493754, + -0.0294232 + ], + [ + 109.3492565, + -0.0294936 + ], + [ + 109.3492453, + -0.0295003 + ], + [ + 109.3491038, + -0.0295801 + ] + ] + }, + "id": "way/573207665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207996", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351479, + -0.0250015 + ], + [ + 109.3514313, + -0.0246146 + ], + [ + 109.3514139, + -0.0244832 + ], + [ + 109.3514024, + -0.0244087 + ], + [ + 109.351391, + -0.0243243 + ], + [ + 109.3513799, + -0.0242603 + ], + [ + 109.3513713, + -0.0242079 + ], + [ + 109.3513652, + -0.0241429 + ], + [ + 109.3513602, + -0.02405 + ], + [ + 109.3513508, + -0.0238642 + ] + ] + }, + "id": "way/573207996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207997", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520074, + -0.0245925 + ], + [ + 109.3518913, + -0.024626 + ], + [ + 109.3517661, + -0.0246351 + ] + ] + }, + "id": "way/573207997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207998", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519232, + -0.0241647 + ], + [ + 109.3516452, + -0.0241902 + ], + [ + 109.3514903, + -0.0241979 + ], + [ + 109.3513713, + -0.0242079 + ] + ] + }, + "id": "way/573207998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573207999", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519831, + -0.0244457 + ], + [ + 109.3517136, + -0.0244812 + ], + [ + 109.3515862, + -0.0244852 + ] + ] + }, + "id": "way/573207999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208000", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520281, + -0.0249353 + ], + [ + 109.3520358, + -0.0248483 + ], + [ + 109.3520378, + -0.0247876 + ], + [ + 109.3520311, + -0.0246988 + ], + [ + 109.3520074, + -0.0245925 + ], + [ + 109.3519831, + -0.0244457 + ], + [ + 109.3519232, + -0.0241647 + ], + [ + 109.3519047, + -0.0240943 + ], + [ + 109.3518899, + -0.0239971 + ], + [ + 109.3518809, + -0.0239035 + ], + [ + 109.3518732, + -0.023824 + ], + [ + 109.3518487, + -0.0237037 + ] + ] + }, + "id": "way/573208000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208266", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507111, + -0.0244094 + ], + [ + 109.3507376, + -0.0245415 + ], + [ + 109.3507611, + -0.0246565 + ], + [ + 109.3507926, + -0.0247997 + ], + [ + 109.3507983, + -0.0248319 + ], + [ + 109.3508325, + -0.025023 + ], + [ + 109.3508793, + -0.0251859 + ] + ] + }, + "id": "way/573208266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208293", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500666, + -0.024764 + ], + [ + 109.3499745, + -0.0247571 + ], + [ + 109.349879, + -0.0247562 + ] + ] + }, + "id": "way/573208293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208295", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497286, + -0.0244528 + ], + [ + 109.3497257, + -0.0244949 + ], + [ + 109.3497228, + -0.0245063 + ], + [ + 109.3496094, + -0.0245074 + ] + ] + }, + "id": "way/573208295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208297", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500225, + -0.0244478 + ], + [ + 109.3498159, + -0.0244477 + ], + [ + 109.3497286, + -0.0244528 + ], + [ + 109.3496775, + -0.0244527 + ] + ] + }, + "id": "way/573208297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208299", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495691, + -0.026716 + ], + [ + 109.3494465, + -0.0265626 + ], + [ + 109.3493761, + -0.0264808 + ], + [ + 109.3493238, + -0.0264265 + ], + [ + 109.349247, + -0.0263353 + ], + [ + 109.3492004, + -0.0262887 + ], + [ + 109.3491042, + -0.0261971 + ] + ] + }, + "id": "way/573208299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208302", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492028, + -0.0269536 + ], + [ + 109.349011, + -0.026736 + ], + [ + 109.348984, + -0.0267053 + ], + [ + 109.3489537, + -0.0266775 + ], + [ + 109.3489278, + -0.0266538 + ], + [ + 109.3489074, + -0.0266373 + ], + [ + 109.3488907, + -0.026626 + ], + [ + 109.3488764, + -0.0266157 + ], + [ + 109.3488634, + -0.026604 + ], + [ + 109.3488637, + -0.0265867 + ], + [ + 109.3488714, + -0.0265574 + ], + [ + 109.3488778, + -0.0265213 + ], + [ + 109.3488793, + -0.0264939 + ], + [ + 109.3488847, + -0.0264687 + ] + ] + }, + "id": "way/573208302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208306", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490303, + -0.0262854 + ], + [ + 109.3488839, + -0.0261592 + ], + [ + 109.3488286, + -0.0261197 + ], + [ + 109.348735, + -0.0260503 + ] + ] + }, + "id": "way/573208306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208308", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491416, + -0.0261608 + ], + [ + 109.3489, + -0.02595 + ], + [ + 109.3487437, + -0.025823 + ] + ] + }, + "id": "way/573208308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208310", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491422, + -0.0255859 + ], + [ + 109.3491308, + -0.0255444 + ] + ] + }, + "id": "way/573208310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208312", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498487, + -0.0256424 + ], + [ + 109.349751, + -0.0253474 + ], + [ + 109.3497445, + -0.0253372 + ], + [ + 109.3497389, + -0.0253297 + ], + [ + 109.3497297, + -0.0253166 + ], + [ + 109.3497269, + -0.0253109 + ], + [ + 109.3497247, + -0.0253041 + ], + [ + 109.3497158, + -0.0252332 + ], + [ + 109.3497172, + -0.0252289 + ], + [ + 109.3497185, + -0.0252269 + ], + [ + 109.3497203, + -0.0252254 + ], + [ + 109.3497225, + -0.0252243 + ] + ] + }, + "id": "way/573208312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208314", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499862, + -0.0252006 + ], + [ + 109.3500083, + -0.0253189 + ], + [ + 109.350054, + -0.0255133 + ] + ] + }, + "id": "way/573208314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573208316", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501651, + -0.0251895 + ], + [ + 109.3499862, + -0.0252006 + ], + [ + 109.3498196, + -0.0252147 + ], + [ + 109.3497225, + -0.0252243 + ] + ] + }, + "id": "way/573208316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573209428", + "highway": "path", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474255, + -0.0239937 + ], + [ + 109.3473818, + -0.0242177 + ] + ] + }, + "id": "way/573209428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573209429", + "highway": "path", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476607, + -0.0239944 + ], + [ + 109.3475159, + -0.0239883 + ], + [ + 109.3474847, + -0.0239974 + ], + [ + 109.3474418, + -0.023994 + ], + [ + 109.3474255, + -0.0239937 + ], + [ + 109.3473939, + -0.023993 + ], + [ + 109.3474038, + -0.023867 + ], + [ + 109.347357, + -0.0238522 + ], + [ + 109.3473711, + -0.0237448 + ] + ] + }, + "id": "way/573209429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573209430", + "highway": "path", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476239, + -0.0238106 + ], + [ + 109.3475018, + -0.0237878 + ], + [ + 109.3474646, + -0.0237587 + ], + [ + 109.3473711, + -0.0237448 + ], + [ + 109.3473406, + -0.0237402 + ], + [ + 109.3472692, + -0.0237134 + ], + [ + 109.3471277, + -0.0237101 + ], + [ + 109.3468675, + -0.0237523 + ], + [ + 109.3466087, + -0.0238073 + ] + ] + }, + "id": "way/573209430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573217189", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439073, + -0.0603434 + ], + [ + 109.3437314, + -0.0600983 + ], + [ + 109.3436971, + -0.0600472 + ], + [ + 109.3436515, + -0.0599688 + ], + [ + 109.3435368, + -0.0598508 + ], + [ + 109.3434462, + -0.0597631 + ], + [ + 109.3433809, + -0.0597 + ], + [ + 109.3432415, + -0.0595568 + ], + [ + 109.3431291, + -0.0594226 + ], + [ + 109.342679, + -0.0589089 + ] + ] + }, + "id": "way/573217189" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573217191", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366368, + -0.0596908 + ], + [ + 109.336411, + -0.0595142 + ], + [ + 109.3360685, + -0.0592449 + ], + [ + 109.3360576, + -0.0592282 + ], + [ + 109.3360549, + -0.059207 + ], + [ + 109.3360609, + -0.0591836 + ], + [ + 109.3361199, + -0.0590891 + ] + ] + }, + "id": "way/573217191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573217193", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342463, + -0.0609478 + ], + [ + 109.3421837, + -0.0611275 + ] + ] + }, + "id": "way/573217193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218413", + "highway": "residential", + "name": "Gang Karya Baru 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355292, + -0.0536648 + ], + [ + 109.335796, + -0.0543181 + ], + [ + 109.3359711, + -0.0547171 + ], + [ + 109.3362808, + -0.0554064 + ], + [ + 109.3364713, + -0.0558167 + ] + ] + }, + "id": "way/573218413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218806", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377527, + -0.063587 + ], + [ + 109.3380155, + -0.0633075 + ], + [ + 109.3381866, + -0.0631017 + ], + [ + 109.3383086, + -0.0629743 + ], + [ + 109.3384078, + -0.0630775 + ], + [ + 109.3388061, + -0.0634396 + ], + [ + 109.3391877, + -0.0638225 + ], + [ + 109.3396282, + -0.0642349 + ], + [ + 109.3399454, + -0.0645071 + ], + [ + 109.3402979, + -0.0648172 + ] + ] + }, + "id": "way/573218806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218807", + "destination": "yes", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405616, + -0.0645265 + ], + [ + 109.3403139, + -0.0643161 + ], + [ + 109.3400912, + -0.0641271 + ], + [ + 109.3399139, + -0.0639765 + ] + ] + }, + "id": "way/573218807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218808", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409439, + -0.0648651 + ], + [ + 109.3410686, + -0.0646895 + ], + [ + 109.3411624, + -0.0645755 + ], + [ + 109.3412, + -0.0645286 + ], + [ + 109.341332, + -0.0643482 + ], + [ + 109.3413207, + -0.0643174 + ], + [ + 109.3413026, + -0.0642429 + ], + [ + 109.3413012, + -0.0641913 + ], + [ + 109.3412925, + -0.064137 + ], + [ + 109.3412818, + -0.0641195 + ], + [ + 109.3412355, + -0.0640726 + ], + [ + 109.3410525, + -0.0639143 + ], + [ + 109.3407963, + -0.0637427 + ] + ] + }, + "id": "way/573218808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218809", + "destination": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3380863, + -0.0645775 + ], + [ + 109.338601, + -0.0650221 + ], + [ + 109.3390019, + -0.0653775 + ], + [ + 109.3393285, + -0.0656678 + ], + [ + 109.3393888, + -0.0657168 + ], + [ + 109.3394157, + -0.0657342 + ], + [ + 109.3394539, + -0.065745 + ], + [ + 109.3394894, + -0.0657336 + ], + [ + 109.339584, + -0.0656323 + ], + [ + 109.3397427, + -0.0654384 + ], + [ + 109.3400037, + -0.0651374 + ], + [ + 109.3402979, + -0.0648172 + ], + [ + 109.3403605, + -0.0647472 + ], + [ + 109.340449, + -0.0646452 + ], + [ + 109.3405616, + -0.0645265 + ], + [ + 109.3406951, + -0.0646351 + ], + [ + 109.3409439, + -0.0648651 + ], + [ + 109.3412188, + -0.0651562 + ], + [ + 109.3416104, + -0.0655317 + ], + [ + 109.3419242, + -0.0657865 + ] + ] + }, + "id": "way/573218809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218810", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383993, + -0.0642126 + ], + [ + 109.3380863, + -0.0645775 + ], + [ + 109.3379881, + -0.0647043 + ], + [ + 109.3378285, + -0.0649094 + ], + [ + 109.3375914, + -0.0651881 + ], + [ + 109.3375686, + -0.0652249 + ], + [ + 109.3375669, + -0.0652316 + ], + [ + 109.3375743, + -0.065244 + ] + ] + }, + "id": "way/573218810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218811", + "destination": "yes", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33828, + -0.0614163 + ], + [ + 109.3385687, + -0.0617303 + ], + [ + 109.3388631, + -0.0620227 + ], + [ + 109.3390174, + -0.0621816 + ], + [ + 109.3395196, + -0.0626806 + ], + [ + 109.339832, + -0.0630091 + ], + [ + 109.3400373, + -0.0632196 + ] + ] + }, + "id": "way/573218811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218812", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Melati", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387698, + -0.0607953 + ], + [ + 109.3387154, + -0.0607438 + ] + ] + }, + "id": "way/573218812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218813", + "highway": "residential", + "name": "Jalan Perdana Bali Agung 2", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391109, + -0.0595615 + ], + [ + 109.3383944, + -0.0590005 + ], + [ + 109.3380627, + -0.0587351 + ], + [ + 109.3377534, + -0.0585043 + ], + [ + 109.337233, + -0.0580779 + ], + [ + 109.3370023, + -0.0578955 + ] + ] + }, + "id": "way/573218813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218814", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397005, + -0.0595618 + ], + [ + 109.3392048, + -0.0601184 + ], + [ + 109.3388671, + -0.0598735 + ], + [ + 109.338389, + -0.0595128 + ], + [ + 109.337807, + -0.0590515 + ], + [ + 109.3371512, + -0.0585151 + ], + [ + 109.3367001, + -0.0581132 + ] + ] + }, + "id": "way/573218814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218815", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387109, + -0.0579196 + ], + [ + 109.3385022, + -0.0581926 + ], + [ + 109.3383569, + -0.0583715 + ], + [ + 109.3382817, + -0.0584641 + ], + [ + 109.3380627, + -0.0587351 + ], + [ + 109.337807, + -0.0590515 + ] + ] + }, + "id": "way/573218815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218817", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395467, + -0.0590148 + ], + [ + 109.3389711, + -0.0585794 + ], + [ + 109.3385022, + -0.0581926 + ], + [ + 109.3384802, + -0.0581744 + ], + [ + 109.3378794, + -0.0576997 + ], + [ + 109.3373214, + -0.0572346 + ], + [ + 109.3373111, + -0.0572259 + ] + ] + }, + "id": "way/573218817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218818", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397617, + -0.05875 + ], + [ + 109.3395467, + -0.0590148 + ], + [ + 109.3393254, + -0.0592872 + ], + [ + 109.3391109, + -0.0595615 + ], + [ + 109.3389932, + -0.0597186 + ], + [ + 109.3388671, + -0.0598735 + ], + [ + 109.3387249, + -0.060056 + ] + ] + }, + "id": "way/573218818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218821", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalan Perdana Komp Bali Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402623, + -0.0591121 + ], + [ + 109.3401731, + -0.0590439 + ] + ] + }, + "id": "way/573218821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218822", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398283, + -0.0596623 + ], + [ + 109.339812, + -0.0596476 + ] + ] + }, + "id": "way/573218822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218823", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390447, + -0.0563838 + ], + [ + 109.3389691, + -0.0564703 + ] + ] + }, + "id": "way/573218823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218824", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340815, + -0.0584634 + ], + [ + 109.3406732, + -0.0583417 + ] + ] + }, + "id": "way/573218824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573218825", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421965, + -0.056844 + ], + [ + 109.3420507, + -0.0567263 + ] + ] + }, + "id": "way/573218825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573222139", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640591, + 0.0202185 + ], + [ + 109.3648186, + 0.019993 + ] + ] + }, + "id": "way/573222139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573222140", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639967, + 0.0159663 + ], + [ + 109.3639089, + 0.015978 + ], + [ + 109.3637768, + 0.0160034 + ], + [ + 109.3614453, + 0.0165358 + ], + [ + 109.3611885, + 0.0166143 + ], + [ + 109.3611241, + 0.0166277 + ], + [ + 109.361098, + 0.0166203 + ], + [ + 109.3610483, + 0.0165975 + ], + [ + 109.3610162, + 0.0165895 + ], + [ + 109.3608459, + 0.0166243 + ], + [ + 109.3607768, + 0.0166491 + ], + [ + 109.3607265, + 0.0166619 + ], + [ + 109.3605118, + 0.0166954 + ], + [ + 109.360308, + 0.0167269 + ], + [ + 109.3600251, + 0.0168054 + ], + [ + 109.3598118, + 0.016855 + ], + [ + 109.3590186, + 0.0170627 + ] + ] + }, + "id": "way/573222140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573222141", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587943, + 0.0156613 + ], + [ + 109.3592566, + 0.0155501 + ], + [ + 109.3598695, + 0.0153858 + ], + [ + 109.3607061, + 0.0151783 + ] + ] + }, + "id": "way/573222141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573222142", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586788, + 0.0151957 + ], + [ + 109.3593183, + 0.0150459 + ], + [ + 109.3600238, + 0.0148595 + ] + ] + }, + "id": "way/573222142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573222143", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585807, + 0.0147653 + ], + [ + 109.3597957, + 0.0144893 + ] + ] + }, + "id": "way/573222143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573222144", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578995, + 0.0156654 + ], + [ + 109.3584821, + 0.0149795 + ], + [ + 109.3584939, + 0.0149687 + ], + [ + 109.3585106, + 0.014959 + ] + ] + }, + "id": "way/573222144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225501", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307225, + -0.0357829 + ], + [ + 109.3069616, + -0.0360542 + ], + [ + 109.3065619, + -0.0364298 + ], + [ + 109.3061784, + -0.0368267 + ], + [ + 109.3059611, + -0.037052 + ], + [ + 109.3059544, + -0.0371164 + ], + [ + 109.3058337, + -0.0371754 + ] + ] + }, + "id": "way/573225501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225502", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075427, + -0.0348643 + ], + [ + 109.307541, + -0.0348017 + ], + [ + 109.3074471, + -0.0345656 + ], + [ + 109.3072915, + -0.0342116 + ], + [ + 109.3072271, + -0.034048 + ] + ] + }, + "id": "way/573225502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225503", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081675, + -0.0344566 + ], + [ + 109.3081357, + -0.0343792 + ], + [ + 109.3080633, + -0.0342196 + ], + [ + 109.3079507, + -0.0339816 + ], + [ + 109.3079044, + -0.0338629 + ] + ] + }, + "id": "way/573225503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225504", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306186, + -0.0342638 + ], + [ + 109.3063608, + -0.034174 + ], + [ + 109.3066853, + -0.0340104 + ], + [ + 109.3069549, + -0.0338736 + ], + [ + 109.3074015, + -0.033647 + ] + ] + }, + "id": "way/573225504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225507", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120736, + -0.0423626 + ], + [ + 109.3122277, + -0.0425018 + ], + [ + 109.312414, + -0.0426683 + ] + ] + }, + "id": "way/573225507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225508", + "highway": "residential", + "name": "Jalan Komplek Alamanda Cluster Pasadena" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052932, + -0.0421978 + ], + [ + 109.3049593, + -0.0425855 + ], + [ + 109.3045516, + -0.0430454 + ], + [ + 109.3044269, + -0.0431863 + ], + [ + 109.3043676, + -0.0432478 + ] + ] + }, + "id": "way/573225508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225509", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305877, + -0.0427319 + ], + [ + 109.3057734, + -0.0428389 + ], + [ + 109.3056983, + -0.04291 + ], + [ + 109.3050492, + -0.0435537 + ], + [ + 109.3044436, + -0.0441304 + ] + ] + }, + "id": "way/573225509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225510", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066947, + -0.037742 + ], + [ + 109.3068355, + -0.0378688 + ], + [ + 109.3070032, + -0.0380216 + ], + [ + 109.3070157, + -0.0380348 + ], + [ + 109.3070836, + -0.0381062 + ], + [ + 109.3071078, + -0.0381249 + ], + [ + 109.3071373, + -0.0381316 + ], + [ + 109.3071574, + -0.0381236 + ], + [ + 109.3072424, + -0.0380339 + ] + ] + }, + "id": "way/573225510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225511", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068905, + -0.037111 + ], + [ + 109.3070447, + -0.0369528 + ], + [ + 109.307262, + -0.0367141 + ], + [ + 109.3074203, + -0.036529 + ], + [ + 109.3076737, + -0.0362661 + ], + [ + 109.3077617, + -0.0361774 + ] + ] + }, + "id": "way/573225511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225512", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051181, + -0.0380953 + ], + [ + 109.3051712, + -0.0380619 + ], + [ + 109.3052973, + -0.0380699 + ], + [ + 109.3054649, + -0.0379895 + ], + [ + 109.3056969, + -0.0378473 + ], + [ + 109.3059209, + -0.0377212 + ], + [ + 109.3061408, + -0.0376059 + ], + [ + 109.3063997, + -0.0374718 + ] + ] + }, + "id": "way/573225512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573225513", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049183, + -0.0389696 + ], + [ + 109.3054967, + -0.0384173 + ], + [ + 109.3057573, + -0.0382617 + ], + [ + 109.3062133, + -0.0380015 + ], + [ + 109.306578, + -0.0378138 + ], + [ + 109.3066947, + -0.037742 + ] + ] + }, + "id": "way/573225513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573228372", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2927494, + -0.0216547 + ], + [ + 109.2927584, + -0.0214309 + ], + [ + 109.292769, + -0.0211884 + ], + [ + 109.292781, + -0.0209473 + ], + [ + 109.2927878, + -0.0207861 + ], + [ + 109.292793, + -0.0206726 + ] + ] + }, + "id": "way/573228372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573228374", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2942438, + -0.0186806 + ], + [ + 109.2942212, + -0.0186723 + ], + [ + 109.2941874, + -0.01867 + ], + [ + 109.2941542, + -0.018673 + ], + [ + 109.2940751, + -0.0186873 + ], + [ + 109.2940079, + -0.0187015 + ], + [ + 109.2939681, + -0.0187099 + ], + [ + 109.293932, + -0.0187371 + ], + [ + 109.2939139, + -0.0187582 + ], + [ + 109.2939056, + -0.0187815 + ], + [ + 109.2938966, + -0.0188169 + ], + [ + 109.2938875, + -0.0188719 + ], + [ + 109.2938574, + -0.018997 + ], + [ + 109.2938258, + -0.0191348 + ], + [ + 109.2937904, + -0.0192802 + ], + [ + 109.2937776, + -0.0193367 + ], + [ + 109.2937718, + -0.0193736 + ], + [ + 109.2937525, + -0.0193888 + ], + [ + 109.2937376, + -0.0193939 + ], + [ + 109.2937052, + -0.0194052 + ], + [ + 109.2936774, + -0.0194113 + ], + [ + 109.2935938, + -0.0194188 + ], + [ + 109.2934808, + -0.0194263 + ], + [ + 109.293389, + -0.0194406 + ], + [ + 109.2932081, + -0.0194534 + ], + [ + 109.2930604, + -0.01947 + ], + [ + 109.2929783, + -0.0194851 + ], + [ + 109.2929339, + -0.0194971 + ], + [ + 109.2928977, + -0.0195107 + ], + [ + 109.2928766, + -0.019528 + ], + [ + 109.2928646, + -0.0195454 + ], + [ + 109.2928563, + -0.0195657 + ], + [ + 109.292854, + -0.019589 + ], + [ + 109.292848, + -0.0196365 + ], + [ + 109.292845, + -0.0197359 + ], + [ + 109.2928435, + -0.0198233 + ], + [ + 109.2928344, + -0.0200049 + ], + [ + 109.2928216, + -0.0201759 + ], + [ + 109.2928126, + -0.0203303 + ], + [ + 109.2928035, + -0.0204817 + ], + [ + 109.2927983, + -0.020579 + ], + [ + 109.2927953, + -0.020634 + ], + [ + 109.292793, + -0.0206726 + ] + ] + }, + "id": "way/573228374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573228633", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511186, + 0.0238121 + ], + [ + 109.351269, + 0.0243571 + ] + ] + }, + "id": "way/573228633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573228634", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507567, + 0.0239307 + ], + [ + 109.3509043, + 0.0238823 + ], + [ + 109.3511186, + 0.0238121 + ], + [ + 109.3517142, + 0.0236169 + ] + ] + }, + "id": "way/573228634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573228635", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502734, + 0.0214501 + ], + [ + 109.3504562, + 0.0221631 + ], + [ + 109.3509043, + 0.0238823 + ] + ] + }, + "id": "way/573228635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573230934", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420308, + -0.0448738 + ], + [ + 109.3422836, + -0.0445689 + ], + [ + 109.3425331, + -0.0442859 + ], + [ + 109.3427208, + -0.0440727 + ], + [ + 109.3428442, + -0.0439148 + ], + [ + 109.3429789, + -0.0437629 + ], + [ + 109.3431552, + -0.0435459 + ] + ] + }, + "id": "way/573230934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573230936", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418277, + -0.0446655 + ], + [ + 109.3419819, + -0.0445139 + ], + [ + 109.3420999, + -0.0443717 + ], + [ + 109.3421295, + -0.0443378 + ], + [ + 109.3421924, + -0.0442658 + ], + [ + 109.3423426, + -0.0440714 + ], + [ + 109.3429328, + -0.0433616 + ] + ] + }, + "id": "way/573230936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573230938", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427146, + -0.0455075 + ], + [ + 109.3425163, + -0.0453843 + ], + [ + 109.3423722, + -0.0452724 + ], + [ + 109.3422454, + -0.0451604 + ], + [ + 109.3421602, + -0.0450631 + ], + [ + 109.3420862, + -0.0449628 + ], + [ + 109.3420308, + -0.0448738 + ], + [ + 109.3419239, + -0.0447684 + ], + [ + 109.3418277, + -0.0446655 + ], + [ + 109.3417366, + -0.0445847 + ] + ] + }, + "id": "way/573230938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573230940", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403546, + -0.0443919 + ], + [ + 109.3404301, + -0.0443278 + ], + [ + 109.3406377, + -0.0441514 + ], + [ + 109.3407494, + -0.0440553 + ], + [ + 109.3408609, + -0.0439622 + ], + [ + 109.3408776, + -0.043955 + ], + [ + 109.3408932, + -0.0439547 + ], + [ + 109.3409106, + -0.0439611 + ], + [ + 109.3409666, + -0.0439909 + ] + ] + }, + "id": "way/573230940" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573231165", + "highway": "living_street", + "name": "Gang Karya Baru 3B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401957, + -0.0538655 + ], + [ + 109.3399917, + -0.0532975 + ], + [ + 109.3399011, + -0.0530447 + ], + [ + 109.3397885, + -0.0527074 + ], + [ + 109.3396389, + -0.0523037 + ], + [ + 109.3394961, + -0.0518806 + ], + [ + 109.3394077, + -0.0516403 + ] + ] + }, + "id": "way/573231165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573231360", + "highway": "living_street", + "lanes": "1", + "motorcar": "destination", + "name": "Gang Sejahtera", + "vehicle": "destination", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404168, + -0.0542611 + ], + [ + 109.3407293, + -0.0544891 + ], + [ + 109.3409063, + -0.0546339 + ], + [ + 109.3412523, + -0.0549128 + ], + [ + 109.3412751, + -0.054933 + ], + [ + 109.3412898, + -0.0549504 + ], + [ + 109.3413871, + -0.0550771 + ], + [ + 109.3413991, + -0.0550909 + ], + [ + 109.3414142, + -0.0551053 + ], + [ + 109.3416214, + -0.0552567 + ], + [ + 109.3427936, + -0.0560727 + ] + ] + }, + "id": "way/573231360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573231363", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3382864, + -0.0508641 + ], + [ + 109.3383997, + -0.0511645 + ], + [ + 109.3387295, + -0.0521351 + ], + [ + 109.3388222, + -0.0524292 + ], + [ + 109.3389704, + -0.0528838 + ], + [ + 109.3391099, + -0.0532968 + ], + [ + 109.3391951, + -0.0535482 + ], + [ + 109.3393345, + -0.0539861 + ], + [ + 109.3395243, + -0.054524 + ] + ] + }, + "id": "way/573231363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573231714", + "colour": "#606060", + "highway": "residential", + "name": "Gang Karya Baru 1", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366717, + -0.053128 + ], + [ + 109.3366885, + -0.0531748 + ], + [ + 109.3368377, + -0.0535904 + ], + [ + 109.3369467, + -0.0538942 + ], + [ + 109.3378017, + -0.0562761 + ], + [ + 109.3378224, + -0.0563264 + ], + [ + 109.3378466, + -0.0563693 + ], + [ + 109.3378721, + -0.0563982 + ], + [ + 109.3379351, + -0.0564471 + ] + ] + }, + "id": "way/573231714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573231746", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Jalan Perdana Komp Bali Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361554, + -0.0535677 + ], + [ + 109.3362688, + -0.0538722 + ], + [ + 109.3363854, + -0.0541658 + ], + [ + 109.3365007, + -0.0544421 + ], + [ + 109.3365933, + -0.0546661 + ], + [ + 109.3366268, + -0.0547573 + ], + [ + 109.3366564, + -0.0548539 + ] + ] + }, + "id": "way/573231746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573234903", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612831, + 0.0242175 + ], + [ + 109.3616974, + 0.0271922 + ] + ] + }, + "id": "way/573234903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573234905", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648967, + 0.0228929 + ], + [ + 109.3650207, + 0.026688 + ] + ] + }, + "id": "way/573234905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573235724", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634468, + 0.023385 + ], + [ + 109.3635232, + 0.0233578 + ], + [ + 109.3646269, + 0.0229878 + ], + [ + 109.3648967, + 0.0228929 + ], + [ + 109.3654843, + 0.0227224 + ], + [ + 109.3660282, + 0.0225685 + ], + [ + 109.3664315, + 0.0224608 + ], + [ + 109.3665603, + 0.0224226 + ], + [ + 109.3668473, + 0.0223455 + ], + [ + 109.366976, + 0.0223079 + ], + [ + 109.3680274, + 0.0219753 + ] + ] + }, + "id": "way/573235724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573235725", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610773, + 0.0242842 + ], + [ + 109.3611107, + 0.024272 + ], + [ + 109.3611516, + 0.0242619 + ], + [ + 109.3612831, + 0.0242175 + ], + [ + 109.3622875, + 0.0238636 + ], + [ + 109.3627691, + 0.0236468 + ], + [ + 109.3634468, + 0.023385 + ] + ] + }, + "id": "way/573235725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573235726", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634468, + 0.023385 + ], + [ + 109.3638915, + 0.0277662 + ], + [ + 109.3639022, + 0.027954 + ], + [ + 109.3639062, + 0.0280894 + ], + [ + 109.3638928, + 0.0282034 + ], + [ + 109.3638043, + 0.0285897 + ], + [ + 109.3637775, + 0.0288431 + ], + [ + 109.3637802, + 0.0292602 + ], + [ + 109.363752, + 0.0298557 + ], + [ + 109.3637386, + 0.0307703 + ], + [ + 109.3637359, + 0.0330019 + ], + [ + 109.3637373, + 0.034626 + ] + ] + }, + "id": "way/573235726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573241850", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574334, + -0.031459 + ], + [ + 109.3574562, + -0.0315294 + ], + [ + 109.3575139, + -0.0316702 + ], + [ + 109.3577982, + -0.0323092 + ], + [ + 109.3579444, + -0.0326425 + ] + ] + }, + "id": "way/573241850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573241885", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.35719, + -0.032387 + ], + [ + 109.3568932, + -0.0325795 + ] + ] + }, + "id": "way/573241885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242159", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525892, + -0.0322251 + ], + [ + 109.3524606, + -0.03198 + ], + [ + 109.3523345, + -0.0318197 + ] + ] + }, + "id": "way/573242159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242161", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520897, + -0.0321281 + ], + [ + 109.3522252, + -0.0320511 + ] + ] + }, + "id": "way/573242161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242163", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519758, + -0.0319384 + ], + [ + 109.3520897, + -0.0321281 + ], + [ + 109.3521387, + -0.0322096 + ], + [ + 109.3522556, + -0.0324 + ] + ] + }, + "id": "way/573242163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242467", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514069, + -0.0317224 + ], + [ + 109.3512368, + -0.0318325 + ], + [ + 109.3507956, + -0.0320859 + ] + ] + }, + "id": "way/573242467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242468", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500999, + -0.0312197 + ], + [ + 109.3498766, + -0.0313525 + ], + [ + 109.3498626, + -0.0313609 + ], + [ + 109.3498454, + -0.0313711 + ] + ] + }, + "id": "way/573242468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242469", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502866, + -0.0315743 + ], + [ + 109.3500908, + -0.031697 + ] + ] + }, + "id": "way/573242469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242470", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350341, + -0.0316796 + ], + [ + 109.3503335, + -0.0316651 + ], + [ + 109.3502866, + -0.0315743 + ], + [ + 109.350181, + -0.0313699 + ], + [ + 109.3501304, + -0.0312719 + ], + [ + 109.3500999, + -0.0312197 + ], + [ + 109.3500254, + -0.0310945 + ], + [ + 109.3500224, + -0.0310875 + ] + ] + }, + "id": "way/573242470" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242471", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505608, + -0.0305835 + ], + [ + 109.3503973, + -0.0307174 + ], + [ + 109.3503068, + -0.0308045 + ], + [ + 109.350234, + -0.030877 + ], + [ + 109.3501461, + -0.0309574 + ], + [ + 109.3500254, + -0.0310945 + ] + ] + }, + "id": "way/573242471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242472", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511613, + -0.0313873 + ], + [ + 109.3509203, + -0.0315475 + ], + [ + 109.3506619, + -0.0316957 + ], + [ + 109.3506011, + -0.0317305 + ] + ] + }, + "id": "way/573242472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242473", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508273, + -0.0309247 + ], + [ + 109.3504878, + -0.0311351 + ] + ] + }, + "id": "way/573242473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242641", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510295, + -0.031205 + ], + [ + 109.3512361, + -0.0310694 + ] + ] + }, + "id": "way/573242641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242642", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508814, + -0.031003 + ], + [ + 109.3510169, + -0.0308937 + ], + [ + 109.3510343, + -0.0308427 + ], + [ + 109.3510517, + -0.0308253 + ], + [ + 109.3510732, + -0.0308072 + ], + [ + 109.3512871, + -0.0305913 + ] + ] + }, + "id": "way/573242642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242643", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521704, + -0.0297572 + ], + [ + 109.351965, + -0.0299415 + ], + [ + 109.3518685, + -0.0300065 + ], + [ + 109.3518202, + -0.0300273 + ], + [ + 109.3517625, + -0.030081 + ], + [ + 109.3515915, + -0.0302077 + ], + [ + 109.3515245, + -0.0302667 + ], + [ + 109.3514065, + -0.0303465 + ], + [ + 109.3513723, + -0.0303646 + ] + ] + }, + "id": "way/573242643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242644", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.35239, + -0.0300459 + ], + [ + 109.3522467, + -0.0301795 + ], + [ + 109.3519261, + -0.0303961 + ], + [ + 109.3515453, + -0.0306576 + ] + ] + }, + "id": "way/573242644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242807", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3517085, + -0.02915 + ], + [ + 109.3515453, + -0.0292756 + ], + [ + 109.351379, + -0.0294151 + ], + [ + 109.351216, + -0.0295486 + ] + ] + }, + "id": "way/573242807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242808", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515613, + -0.0289566 + ], + [ + 109.3514715, + -0.0290282 + ], + [ + 109.3513592, + -0.0291221 + ], + [ + 109.3512834, + -0.0291757 + ], + [ + 109.3512308, + -0.0292233 + ] + ] + }, + "id": "way/573242808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242809", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514682, + -0.0288342 + ], + [ + 109.3513267, + -0.0289491 + ], + [ + 109.3511637, + -0.0290523 + ], + [ + 109.3510806, + -0.0290906 + ], + [ + 109.3509807, + -0.029169 + ], + [ + 109.3508888, + -0.0292421 + ], + [ + 109.3508231, + -0.0293078 + ], + [ + 109.3507252, + -0.0293776 + ] + ] + }, + "id": "way/573242809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242810", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513093, + -0.0286253 + ], + [ + 109.3512053, + -0.0287251 + ], + [ + 109.3510035, + -0.028872 + ], + [ + 109.3509572, + -0.0288928 + ], + [ + 109.3507688, + -0.029045 + ], + [ + 109.3506789, + -0.0291134 + ], + [ + 109.3506675, + -0.0291489 + ], + [ + 109.3505126, + -0.0292783 + ] + ] + }, + "id": "way/573242810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242812", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507837, + -0.0278963 + ], + [ + 109.3507084, + -0.0279647 + ], + [ + 109.3505079, + -0.0281015 + ] + ] + }, + "id": "way/573242812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242813", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508308, + -0.0279628 + ], + [ + 109.3506159, + -0.0281545 + ] + ] + }, + "id": "way/573242813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242814", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508769, + -0.0280278 + ], + [ + 109.3507648, + -0.028129 + ], + [ + 109.3506742, + -0.0282416 + ], + [ + 109.3505307, + -0.0283885 + ] + ] + }, + "id": "way/573242814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242815", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510886, + -0.0283263 + ], + [ + 109.3508922, + -0.0284516 + ], + [ + 109.3508097, + -0.0284931 + ], + [ + 109.3506923, + -0.0285984 + ] + ] + }, + "id": "way/573242815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242993", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495631, + -0.0308816 + ], + [ + 109.3496577, + -0.0309701 + ], + [ + 109.3497723, + -0.0311223 + ], + [ + 109.3498005, + -0.0311344 + ], + [ + 109.3498186, + -0.0311331 + ], + [ + 109.3499453, + -0.0310332 + ], + [ + 109.3499665, + -0.0310208 + ], + [ + 109.3499842, + -0.0310201 + ], + [ + 109.3499963, + -0.0310244 + ] + ] + }, + "id": "way/573242993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242995", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349089, + -0.0303767 + ], + [ + 109.3492215, + -0.0303053 + ], + [ + 109.349313, + -0.0302459 + ], + [ + 109.3494122, + -0.030195 + ], + [ + 109.34942, + -0.0301948 + ], + [ + 109.3494285, + -0.0301958 + ], + [ + 109.3494335, + -0.0301983 + ], + [ + 109.3494392, + -0.0301976 + ], + [ + 109.3495242, + -0.030149 + ], + [ + 109.349543, + -0.0301453 + ], + [ + 109.3495578, + -0.0301467 + ], + [ + 109.349571, + -0.0301505 + ], + [ + 109.3495775, + -0.0301494 + ], + [ + 109.3496614, + -0.0301162 + ], + [ + 109.3496754, + -0.0301165 + ], + [ + 109.3496892, + -0.0301296 + ], + [ + 109.3496976, + -0.0301356 + ], + [ + 109.3497076, + -0.030139 + ], + [ + 109.3498211, + -0.0300694 + ], + [ + 109.3498258, + -0.0300627 + ], + [ + 109.3498282, + -0.0300597 + ], + [ + 109.3498158, + -0.0300325 + ], + [ + 109.3498158, + -0.0300262 + ], + [ + 109.3498164, + -0.0300189 + ], + [ + 109.3498379, + -0.0300013 + ], + [ + 109.3499773, + -0.0298913 + ] + ] + }, + "id": "way/573242995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242996", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34941, + -0.0306692 + ], + [ + 109.3492164, + -0.0307757 + ] + ] + }, + "id": "way/573242996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242997", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498679, + -0.0301594 + ], + [ + 109.3497723, + -0.0302251 + ], + [ + 109.3495785, + -0.0303217 + ] + ] + }, + "id": "way/573242997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242998", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.35014, + -0.0301108 + ], + [ + 109.3500721, + -0.0301832 + ], + [ + 109.3498771, + -0.0303334 + ], + [ + 109.3498672, + -0.0303338 + ], + [ + 109.3498607, + -0.0303319 + ], + [ + 109.3497723, + -0.0302251 + ] + ] + }, + "id": "way/573242998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573242999", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503347, + -0.0303323 + ], + [ + 109.350174, + -0.030494 + ], + [ + 109.3500332, + -0.0305834 + ], + [ + 109.3499083, + -0.0306522 + ], + [ + 109.3495631, + -0.0308816 + ], + [ + 109.3495239, + -0.0309044 + ], + [ + 109.3495132, + -0.0309011 + ], + [ + 109.3494977, + -0.0308866 + ], + [ + 109.34941, + -0.0306692 + ], + [ + 109.3493807, + -0.0306161 + ], + [ + 109.3493791, + -0.0306067 + ], + [ + 109.3493777, + -0.0305973 + ], + [ + 109.3493928, + -0.0305782 + ], + [ + 109.3493938, + -0.0305705 + ], + [ + 109.3493938, + -0.0305604 + ], + [ + 109.3493222, + -0.0304114 + ], + [ + 109.349318, + -0.03041 + ], + [ + 109.3493135, + -0.0304092 + ], + [ + 109.3492872, + -0.0304216 + ], + [ + 109.3492817, + -0.0304211 + ], + [ + 109.3492765, + -0.0304168 + ], + [ + 109.3492215, + -0.0303053 + ] + ] + }, + "id": "way/573242999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249412", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643975, + 0.0044296 + ], + [ + 109.3662223, + 0.004262 + ] + ] + }, + "id": "way/573249412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249413", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3655992, + 0.0049695 + ], + [ + 109.3656182, + 0.0052977 + ] + ] + }, + "id": "way/573249413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249414", + "highway": "residential", + "name": "KOMPLEK VILLA SINAR ANUGRAH 28" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3644769, + 0.0054111 + ], + [ + 109.3656182, + 0.0052977 + ], + [ + 109.3664181, + 0.0052182 + ], + [ + 109.3664275, + 0.0052082 + ], + [ + 109.3664349, + 0.0051907 + ], + [ + 109.3664221, + 0.0049333 + ], + [ + 109.3664141, + 0.0049071 + ], + [ + 109.3663973, + 0.0048997 + ] + ] + }, + "id": "way/573249414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249415", + "highway": "residential", + "name": "KOMPLEK VILLA SINAR ANUGRAH 28" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3644502, + 0.0050714 + ], + [ + 109.3655992, + 0.0049695 + ], + [ + 109.3663973, + 0.0048997 + ] + ] + }, + "id": "way/573249415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249417", + "highway": "residential", + "name": "KOMPLEK DAMAI SEJAHTERA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3675943, + 0.008103 + ], + [ + 109.3677966, + 0.0089026 + ], + [ + 109.3679577, + 0.0095983 + ] + ] + }, + "id": "way/573249417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249418", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3673207, + 0.0090632 + ], + [ + 109.3677966, + 0.0089026 + ], + [ + 109.3680462, + 0.008854 + ], + [ + 109.3681119, + 0.0088553 + ], + [ + 109.3682393, + 0.0088848 + ], + [ + 109.3688895, + 0.0090867 + ] + ] + }, + "id": "way/573249418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249438", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3662856, + 0.0010627 + ], + [ + 109.3668982, + 0.0010997 + ], + [ + 109.3676814, + 0.0011587 + ], + [ + 109.3679854, + 0.0011848 + ], + [ + 109.3684351, + 0.001215 + ] + ] + }, + "id": "way/573249438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249440", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3667224, + 0.0026605 + ], + [ + 109.3672257, + 0.0026523 + ], + [ + 109.3680811, + 0.0026983 + ] + ] + }, + "id": "way/573249440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249443", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670014, + 0.0038749 + ], + [ + 109.368912, + 0.0039887 + ] + ] + }, + "id": "way/573249443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249444", + "highway": "residential", + "name": "KOMPLEK PERMATA HIDAYAH" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670945, + 0.0042665 + ], + [ + 109.3688927, + 0.0043732 + ] + ] + }, + "id": "way/573249444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249446", + "highway": "residential", + "name": "KOMPLEK GRIYA HIDAYAH" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3671888, + 0.0046634 + ], + [ + 109.3692641, + 0.0048284 + ] + ] + }, + "id": "way/573249446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573249447", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3672847, + 0.0050671 + ], + [ + 109.3690279, + 0.0052276 + ] + ] + }, + "id": "way/573249447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573254196", + "highway": "residential", + "name": "Gang Purwosari Agung" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228322, + -0.05119 + ], + [ + 109.3232647, + -0.0504832 + ], + [ + 109.3235779, + -0.0499991 + ] + ] + }, + "id": "way/573254196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573254198", + "highway": "residential", + "name": "Gang Purwosari 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233544, + -0.0530095 + ], + [ + 109.3240303, + -0.0519267 + ], + [ + 109.3242478, + -0.051544 + ], + [ + 109.3245566, + -0.0510216 + ], + [ + 109.3245998, + -0.0509435 + ], + [ + 109.324612, + -0.0509211 + ], + [ + 109.3246186, + -0.0509144 + ], + [ + 109.3246266, + -0.050909 + ], + [ + 109.3246365, + -0.0509065 + ], + [ + 109.3246446, + -0.0509061 + ], + [ + 109.324651, + -0.0509073 + ], + [ + 109.3246598, + -0.05091 + ], + [ + 109.3247131, + -0.0509412 + ], + [ + 109.3247242, + -0.0509445 + ], + [ + 109.3247363, + -0.0509455 + ], + [ + 109.3247524, + -0.0509439 + ], + [ + 109.3247691, + -0.0509375 + ], + [ + 109.3247832, + -0.0509299 + ], + [ + 109.3247944, + -0.0509216 + ], + [ + 109.324815, + -0.0508959 + ] + ] + }, + "id": "way/573254198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573254464", + "highway": "residential", + "name": "Gang Atlas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138639, + -0.0532975 + ], + [ + 109.3155011, + -0.0543073 + ], + [ + 109.3162695, + -0.0547633 + ], + [ + 109.3171115, + -0.055283 + ] + ] + }, + "id": "way/573254464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573254465", + "highway": "residential", + "name": "Gang Keluarga Bersama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135025, + -0.0536475 + ], + [ + 109.3141432, + -0.0540311 + ], + [ + 109.3152261, + -0.0546319 + ], + [ + 109.3168635, + -0.0555618 + ] + ] + }, + "id": "way/573254465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573254466", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3162454, + -0.0450041 + ], + [ + 109.3157456, + -0.0444836 + ] + ] + }, + "id": "way/573254466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256833", + "highway": "living_street", + "surface": "gravel" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057125, + -0.0684054 + ], + [ + 109.3052262, + -0.0677754 + ], + [ + 109.3049446, + -0.067428 + ], + [ + 109.304903, + -0.0673965 + ], + [ + 109.3048534, + -0.0673898 + ], + [ + 109.3048085, + -0.0673905 + ], + [ + 109.3046179, + -0.0672583 + ], + [ + 109.3044836, + -0.067161 + ], + [ + 109.3043346, + -0.0670531 + ], + [ + 109.3041407, + -0.0669068 + ] + ] + }, + "id": "way/573256833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256834", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048802, + -0.0669237 + ], + [ + 109.3062273, + -0.0679641 + ] + ] + }, + "id": "way/573256834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108847, + -0.0709816 + ], + [ + 109.3108914, + -0.0709799 + ], + [ + 109.3109051, + -0.0709799 + ], + [ + 109.3109259, + -0.0709924 + ], + [ + 109.3114053, + -0.0713864 + ], + [ + 109.3114198, + -0.0713964 + ], + [ + 109.3114425, + -0.0714041 + ], + [ + 109.311464, + -0.0714061 + ], + [ + 109.3114848, + -0.0714122 + ], + [ + 109.3115062, + -0.071422 + ], + [ + 109.3140292, + -0.07312 + ] + ] + }, + "id": "way/573256836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256837", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098644, + -0.0710189 + ], + [ + 109.3106811, + -0.0699661 + ], + [ + 109.3106899, + -0.0699386 + ], + [ + 109.3106885, + -0.0699111 + ], + [ + 109.3106825, + -0.069889 + ] + ] + }, + "id": "way/573256837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256838", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098993, + -0.070288 + ], + [ + 109.3100227, + -0.0701284 + ], + [ + 109.3103673, + -0.0696575 + ] + ] + }, + "id": "way/573256838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112911, + -0.06766 + ], + [ + 109.3123183, + -0.0684536 + ] + ] + }, + "id": "way/573256839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256840", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118761, + -0.0691346 + ], + [ + 109.3123267, + -0.0684781 + ], + [ + 109.312327, + -0.0684704 + ], + [ + 109.312325, + -0.068462 + ], + [ + 109.3123183, + -0.0684536 + ] + ] + }, + "id": "way/573256840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256843", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140319, + -0.0665133 + ], + [ + 109.3135337, + -0.0662412 + ], + [ + 109.3133245, + -0.0661144 + ], + [ + 109.3131383, + -0.066002 + ], + [ + 109.31273, + -0.0657737 + ], + [ + 109.3123321, + -0.0655652 + ] + ] + }, + "id": "way/573256843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256844", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118103, + -0.066997 + ], + [ + 109.311575, + -0.0673167 + ], + [ + 109.3112911, + -0.06766 + ], + [ + 109.3109856, + -0.0680349 + ] + ] + }, + "id": "way/573256844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256846", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116341, + -0.0668799 + ], + [ + 109.3116574, + -0.0668263 + ], + [ + 109.3120942, + -0.0660149 + ], + [ + 109.3123321, + -0.0655652 + ] + ] + }, + "id": "way/573256846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256847", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102102, + -0.0660452 + ], + [ + 109.3107719, + -0.0663667 + ], + [ + 109.3111941, + -0.066618 + ], + [ + 109.3116341, + -0.0668799 + ], + [ + 109.3118103, + -0.066997 + ], + [ + 109.3120142, + -0.0670975 + ] + ] + }, + "id": "way/573256847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256849", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110285, + -0.0670861 + ], + [ + 109.3104216, + -0.066736 + ], + [ + 109.3101085, + -0.0665402 + ], + [ + 109.3099757, + -0.0664531 + ], + [ + 109.3098773, + -0.0663998 + ] + ] + }, + "id": "way/573256849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095608, + -0.0667739 + ], + [ + 109.3098773, + -0.0663998 + ] + ] + }, + "id": "way/573256851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081547, + -0.065902 + ], + [ + 109.3095608, + -0.0667739 + ], + [ + 109.31035, + -0.0672281 + ], + [ + 109.3104477, + -0.0672843 + ] + ] + }, + "id": "way/573256852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256853", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077667, + -0.0663231 + ], + [ + 109.3103687, + -0.0683112 + ], + [ + 109.310134, + -0.0685889 + ], + [ + 109.3100756, + -0.0686458 + ] + ] + }, + "id": "way/573256853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256854", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3065994, + -0.0675799 + ], + [ + 109.3075457, + -0.0682495 + ] + ] + }, + "id": "way/573256854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256855", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.308951, + -0.0697642 + ], + [ + 109.3063119, + -0.0678823 + ] + ] + }, + "id": "way/573256855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256856", + "highway": "track", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085909, + -0.0701841 + ], + [ + 109.308349, + -0.0700037 + ] + ] + }, + "id": "way/573256856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256857", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095315, + -0.0690715 + ], + [ + 109.308951, + -0.0697642 + ], + [ + 109.3085909, + -0.0701841 + ], + [ + 109.3079134, + -0.0709665 + ] + ] + }, + "id": "way/573256857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256858", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079134, + -0.0709665 + ], + [ + 109.3079104, + -0.0709742 + ], + [ + 109.3079155, + -0.070985 + ], + [ + 109.3079215, + -0.0709924 + ], + [ + 109.3080124, + -0.0710791 + ], + [ + 109.3081625, + -0.0711644 + ] + ] + }, + "id": "way/573256858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256859", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073771, + -0.0717114 + ], + [ + 109.3074189, + -0.0717342 + ], + [ + 109.3074236, + -0.0717345 + ], + [ + 109.3074288, + -0.0717308 + ], + [ + 109.3080124, + -0.0710791 + ] + ] + }, + "id": "way/573256859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256860", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097964, + -0.0692542 + ], + [ + 109.3081625, + -0.0711644 + ] + ] + }, + "id": "way/573256860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256863", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068907, + -0.0672543 + ], + [ + 109.3075651, + -0.0677123 + ], + [ + 109.3082082, + -0.0681509 + ], + [ + 109.3088653, + -0.0686129 + ], + [ + 109.3095315, + -0.0690715 + ], + [ + 109.3095902, + -0.0691118 + ], + [ + 109.3097964, + -0.0692542 + ], + [ + 109.3099079, + -0.0693329 + ], + [ + 109.3100653, + -0.069444 + ], + [ + 109.3102384, + -0.0695587 + ], + [ + 109.3103673, + -0.0696575 + ], + [ + 109.3106342, + -0.0698561 + ], + [ + 109.3106825, + -0.069889 + ] + ] + }, + "id": "way/573256863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074849, + -0.0666311 + ], + [ + 109.3089136, + -0.0676808 + ], + [ + 109.3095252, + -0.0681315 + ], + [ + 109.310134, + -0.0685889 + ] + ] + }, + "id": "way/573256864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256865", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072208, + -0.0669221 + ], + [ + 109.309922, + -0.0688758 + ] + ] + }, + "id": "way/573256865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573256867", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Jalan Bina Jaya", + "tracktype": "grade2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052006, + -0.0691093 + ], + [ + 109.3053275, + -0.0689697 + ], + [ + 109.305427, + -0.0688666 + ], + [ + 109.3055833, + -0.0687045 + ], + [ + 109.3056419, + -0.0686437 + ], + [ + 109.3057776, + -0.0684897 + ], + [ + 109.305876, + -0.0683514 + ], + [ + 109.3060579, + -0.0681447 + ], + [ + 109.3062273, + -0.0679641 + ], + [ + 109.3063119, + -0.0678823 + ], + [ + 109.3065994, + -0.0675799 + ], + [ + 109.3068907, + -0.0672543 + ], + [ + 109.307053, + -0.067075 + ] + ] + }, + "id": "way/573256867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261316", + "highway": "residential", + "name": "Gang Nyiur 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303156, + -0.0174907 + ], + [ + 109.3305208, + -0.0171956 + ], + [ + 109.3305758, + -0.0171299 + ], + [ + 109.3307005, + -0.016973 + ], + [ + 109.3312155, + -0.0163501 + ] + ] + }, + "id": "way/573261316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261318", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301392, + -0.0174287 + ], + [ + 109.3310693, + -0.0162354 + ] + ] + }, + "id": "way/573261318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261320", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333424, + -0.0208133 + ], + [ + 109.3339587, + -0.0201514 + ], + [ + 109.3339637, + -0.020144 + ], + [ + 109.3339662, + -0.0201351 + ], + [ + 109.333967, + -0.0201225 + ], + [ + 109.3339653, + -0.0201112 + ], + [ + 109.3339621, + -0.020101 + ], + [ + 109.3336779, + -0.0197933 + ] + ] + }, + "id": "way/573261320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261322", + "highway": "residential", + "name": "Gang Merak I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332091, + -0.0219992 + ], + [ + 109.3326929, + -0.0212874 + ], + [ + 109.3331854, + -0.020664 + ] + ] + }, + "id": "way/573261322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261323", + "access": "destination", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278775, + -0.0161925 + ], + [ + 109.3282734, + -0.0155469 + ] + ] + }, + "id": "way/573261323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261325", + "highway": "living_street", + "motorcar": "destination", + "name": "Gang Rambutan Luar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297138, + -0.0153467 + ], + [ + 109.3290186, + -0.0162488 + ], + [ + 109.3288511, + -0.0164661 + ] + ] + }, + "id": "way/573261325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261327", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285736, + -0.0161158 + ], + [ + 109.328724, + -0.0159089 + ], + [ + 109.3289146, + -0.0156734 + ], + [ + 109.3293792, + -0.0151018 + ] + ] + }, + "id": "way/573261327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261329", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288135, + -0.0153034 + ], + [ + 109.3291264, + -0.0148645 + ] + ] + }, + "id": "way/573261329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261331", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285668, + -0.0152591 + ], + [ + 109.3289444, + -0.0147366 + ] + ] + }, + "id": "way/573261331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261333", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282048, + -0.0154863 + ], + [ + 109.3288106, + -0.014643 + ] + ] + }, + "id": "way/573261333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261334", + "access": "destination", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.327533, + -0.0149777 + ], + [ + 109.3276709, + -0.0147749 + ], + [ + 109.3280581, + -0.0141104 + ] + ] + }, + "id": "way/573261334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261336", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308306, + -0.0160235 + ], + [ + 109.3313482, + -0.0153919 + ] + ] + }, + "id": "way/573261336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261338", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3306435, + -0.0152631 + ], + [ + 109.3306465, + -0.0152559 + ], + [ + 109.3306484, + -0.0152463 + ], + [ + 109.3306487, + -0.0152354 + ], + [ + 109.3306475, + -0.0152281 + ], + [ + 109.330645, + -0.0152187 + ], + [ + 109.3306368, + -0.0152073 + ], + [ + 109.3303746, + -0.0149976 + ] + ] + }, + "id": "way/573261338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261339", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302938, + -0.0156477 + ], + [ + 109.3306435, + -0.0152631 + ] + ] + }, + "id": "way/573261339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261341", + "highway": "residential", + "name": "Gang Saga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294881, + -0.0168362 + ], + [ + 109.3296095, + -0.0166793 + ], + [ + 109.3302915, + -0.0157505 + ], + [ + 109.3303459, + -0.0156838 + ] + ] + }, + "id": "way/573261341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261343", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3298261, + -0.01715 + ], + [ + 109.3307291, + -0.0160507 + ] + ] + }, + "id": "way/573261343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573261520", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253023, + -0.0187644 + ], + [ + 109.3251555, + -0.0175566 + ] + ] + }, + "id": "way/573261520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263234", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2926375, + -0.0268967 + ], + [ + 109.2913042, + -0.0251095 + ], + [ + 109.2908643, + -0.0245355 + ], + [ + 109.2906912, + -0.0242717 + ], + [ + 109.2905759, + -0.0241054 + ], + [ + 109.2904955, + -0.0239904 + ], + [ + 109.2904345, + -0.0239132 + ], + [ + 109.2903048, + -0.0237315 + ], + [ + 109.2902092, + -0.0235961 + ], + [ + 109.2898638, + -0.0231488 + ], + [ + 109.2894857, + -0.0226178 + ], + [ + 109.2888856, + -0.0217421 + ], + [ + 109.28905, + -0.0216201 + ] + ] + }, + "id": "way/573263234" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263235", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2892837, + -0.0253528 + ], + [ + 109.288229, + -0.0238234 + ], + [ + 109.2875719, + -0.0228162 + ], + [ + 109.2875545, + -0.0228095 + ], + [ + 109.2874953, + -0.0228343 + ] + ] + }, + "id": "way/573263235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263236", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2853811, + -0.0335485 + ], + [ + 109.2842018, + -0.0319251 + ] + ] + }, + "id": "way/573263236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263237", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2856645, + -0.0332968 + ], + [ + 109.2849991, + -0.0324242 + ] + ] + }, + "id": "way/573263237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263238", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2818767, + -0.0296038 + ], + [ + 109.2811292, + -0.0283912 + ] + ] + }, + "id": "way/573263238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263239", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2913013, + -0.0278697 + ], + [ + 109.291226, + -0.027781 + ], + [ + 109.2906511, + -0.0269803 + ] + ] + }, + "id": "way/573263239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891258, + -0.0298982 + ], + [ + 109.2887139, + -0.0302747 + ] + ] + }, + "id": "way/573263257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263262", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.286031, + -0.0327375 + ], + [ + 109.2850826, + -0.0314725 + ], + [ + 109.2844426, + -0.0306019 + ], + [ + 109.2842336, + -0.0302865 + ], + [ + 109.2842222, + -0.0302573 + ], + [ + 109.2842161, + -0.0302151 + ], + [ + 109.2842058, + -0.0301865 + ], + [ + 109.2840884, + -0.0300417 + ], + [ + 109.2832729, + -0.0289429 + ] + ] + }, + "id": "way/573263262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263263", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2895046, + -0.0247138 + ], + [ + 109.2896539, + -0.0245806 + ], + [ + 109.2897023, + -0.0245325 + ], + [ + 109.2897069, + -0.0245197 + ], + [ + 109.2897012, + -0.0245063 + ], + [ + 109.2896838, + -0.0244778 + ], + [ + 109.2881237, + -0.0222912 + ] + ] + }, + "id": "way/573263263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263264", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2896987, + -0.0249902 + ], + [ + 109.2895046, + -0.0247138 + ], + [ + 109.2878616, + -0.0224568 + ], + [ + 109.287588, + -0.0220799 + ] + ] + }, + "id": "way/573263264" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263266", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2904321, + -0.0245107 + ], + [ + 109.2902407, + -0.0246844 + ], + [ + 109.2900598, + -0.0248162 + ], + [ + 109.2899271, + -0.0249003 + ], + [ + 109.2898665, + -0.0249171 + ], + [ + 109.2898149, + -0.0249334 + ], + [ + 109.2896987, + -0.0249902 + ], + [ + 109.2892837, + -0.0253528 + ], + [ + 109.2890409, + -0.0255795 + ] + ] + }, + "id": "way/573263266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263269", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.291681, + -0.0236356 + ], + [ + 109.2917605, + -0.0237348 + ], + [ + 109.2925013, + -0.0247188 + ], + [ + 109.2935957, + -0.0261724 + ] + ] + }, + "id": "way/573263269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263329", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.28839, + -0.0261663 + ], + [ + 109.2888526, + -0.0267979 + ], + [ + 109.2897123, + -0.0279647 + ] + ] + }, + "id": "way/573263329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573263354", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2807116, + -0.0312981 + ], + [ + 109.2809696, + -0.0309634 + ], + [ + 109.281211, + -0.0305866 + ], + [ + 109.2812545, + -0.0305304 + ], + [ + 109.2814517, + -0.0302359 + ], + [ + 109.2817073, + -0.0298637 + ], + [ + 109.2817569, + -0.0297877 + ], + [ + 109.2818767, + -0.0296038 + ], + [ + 109.2819478, + -0.0295009 + ], + [ + 109.2820855, + -0.0293017 + ], + [ + 109.2820908, + -0.0292863 + ], + [ + 109.2820902, + -0.0292615 + ], + [ + 109.2820875, + -0.0292501 + ], + [ + 109.2812741, + -0.0279486 + ], + [ + 109.2809307, + -0.027443 + ], + [ + 109.2806612, + -0.0270367 + ] + ] + }, + "id": "way/573263354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573276251", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545547, + -0.0365907 + ], + [ + 109.355126, + -0.0362125 + ] + ] + }, + "id": "way/573276251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573276278", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547827, + -0.0369903 + ], + [ + 109.3545232, + -0.0371405 + ], + [ + 109.3543616, + -0.0372384 + ], + [ + 109.3543032, + -0.0372773 + ], + [ + 109.3542811, + -0.0372921 + ], + [ + 109.3542043, + -0.0373474 + ], + [ + 109.3540746, + -0.037445 + ], + [ + 109.3539251, + -0.0375482 + ] + ] + }, + "id": "way/573276278" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573283261", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2880312, + -0.0370133 + ], + [ + 109.2879126, + -0.0368361 + ], + [ + 109.2877436, + -0.0366068 + ], + [ + 109.28758, + -0.0363868 + ], + [ + 109.2873948, + -0.0361374 + ], + [ + 109.2872527, + -0.0359309 + ], + [ + 109.2871106, + -0.0357297 + ], + [ + 109.2869509, + -0.0355071 + ], + [ + 109.2867484, + -0.0352201 + ], + [ + 109.2863942, + -0.0346916 + ] + ] + }, + "id": "way/573283261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573283262", + "highway": "residential", + "name": "Jalan Berdikari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2858491, + -0.0386787 + ], + [ + 109.2857981, + -0.0385982 + ], + [ + 109.2856514, + -0.0384065 + ], + [ + 109.2854617, + -0.0381343 + ], + [ + 109.2852947, + -0.0378889 + ], + [ + 109.2851418, + -0.0376743 + ], + [ + 109.2850882, + -0.0375858 + ], + [ + 109.2849943, + -0.037457 + ], + [ + 109.2848763, + -0.0372881 + ], + [ + 109.2846885, + -0.036985 + ], + [ + 109.2845437, + -0.0367704 + ], + [ + 109.2843345, + -0.0364646 + ], + [ + 109.284254, + -0.036352 + ], + [ + 109.2841561, + -0.0362024 + ], + [ + 109.284026, + -0.0359979 + ], + [ + 109.2838758, + -0.035778 + ], + [ + 109.2837524, + -0.0355929 + ], + [ + 109.2836559, + -0.0354615 + ], + [ + 109.2835714, + -0.0353207 + ], + [ + 109.2834252, + -0.0351235 + ], + [ + 109.2832375, + -0.034858 + ], + [ + 109.2830685, + -0.0346085 + ], + [ + 109.2827171, + -0.0341231 + ], + [ + 109.2825052, + -0.0338173 + ], + [ + 109.2821833, + -0.033364 + ], + [ + 109.2819393, + -0.0330394 + ], + [ + 109.281895, + -0.0329711 + ] + ] + }, + "id": "way/573283262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573283263", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2878542, + -0.0430343 + ], + [ + 109.2879125, + -0.0430977 + ], + [ + 109.2883361, + -0.0435643 + ], + [ + 109.2897392, + -0.0450904 + ] + ] + }, + "id": "way/573283263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573331919", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555773, + -0.0222684 + ], + [ + 109.355581, + -0.0223773 + ], + [ + 109.3555854, + -0.0224689 + ], + [ + 109.35559, + -0.0225909 + ], + [ + 109.3555958, + -0.0227163 + ], + [ + 109.3556021, + -0.0229862 + ], + [ + 109.3556092, + -0.0231418 + ], + [ + 109.3556075, + -0.0232467 + ], + [ + 109.3556073, + -0.0232734 + ], + [ + 109.3556082, + -0.0233027 + ], + [ + 109.3556125, + -0.0233456 + ], + [ + 109.3556189, + -0.0235357 + ], + [ + 109.3556246, + -0.0237191 + ], + [ + 109.3556254, + -0.0238934 + ], + [ + 109.3556149, + -0.0242948 + ], + [ + 109.3556128, + -0.0244007 + ] + ] + }, + "id": "way/573331919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573331920", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563369, + -0.0239187 + ], + [ + 109.3563243, + -0.0239059 + ], + [ + 109.3561976, + -0.0238958 + ], + [ + 109.3561795, + -0.0238857 + ], + [ + 109.3561754, + -0.023869 + ], + [ + 109.3562197, + -0.0234478 + ], + [ + 109.3562191, + -0.0233239 + ], + [ + 109.3562224, + -0.0231931 + ], + [ + 109.355926, + -0.023175 + ], + [ + 109.3556092, + -0.0231418 + ] + ] + }, + "id": "way/573331920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332122", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548484, + -0.0232977 + ], + [ + 109.3548289, + -0.02379 + ], + [ + 109.3548303, + -0.0238401 + ], + [ + 109.3548252, + -0.0238588 + ], + [ + 109.3548176, + -0.02433 + ], + [ + 109.3548229, + -0.0244617 + ], + [ + 109.3548182, + -0.0245509 + ], + [ + 109.3547976, + -0.0247782 + ], + [ + 109.3547398, + -0.0251269 + ], + [ + 109.3547344, + -0.0251946 + ], + [ + 109.3547083, + -0.0256225 + ] + ] + }, + "id": "way/573332122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332124", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.35352, + -0.0244926 + ], + [ + 109.3535794, + -0.0245037 + ], + [ + 109.3537065, + -0.0245161 + ], + [ + 109.3537232, + -0.0245124 + ], + [ + 109.3537363, + -0.0245013 + ], + [ + 109.35374, + -0.0244685 + ], + [ + 109.3537517, + -0.0243404 + ], + [ + 109.3537564, + -0.024328 + ], + [ + 109.3537651, + -0.0243236 + ], + [ + 109.3537853, + -0.0243186 + ] + ] + }, + "id": "way/573332124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332125", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535267, + -0.0241238 + ], + [ + 109.35352, + -0.0244926 + ], + [ + 109.3534574, + -0.0245094 + ], + [ + 109.3534275, + -0.0245268 + ], + [ + 109.3534175, + -0.0245469 + ], + [ + 109.3534161, + -0.0245684 + ] + ] + }, + "id": "way/573332125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332126", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534121, + -0.0249562 + ], + [ + 109.3534161, + -0.0245684 + ] + ] + }, + "id": "way/573332126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332127", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537963, + -0.0249372 + ], + [ + 109.353726, + -0.0249584 + ], + [ + 109.3534121, + -0.0249562 + ], + [ + 109.3529427, + -0.0249351 + ], + [ + 109.3526852, + -0.0249392 + ], + [ + 109.3525783, + -0.0249528 + ], + [ + 109.3525424, + -0.0249611 + ], + [ + 109.352493, + -0.024979 + ] + ] + }, + "id": "way/573332127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332128", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3541964, + -0.0248886 + ], + [ + 109.3539009, + -0.0249184 + ], + [ + 109.3537963, + -0.0249372 + ] + ] + }, + "id": "way/573332128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332129", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548176, + -0.02433 + ], + [ + 109.3542688, + -0.0243334 + ] + ] + }, + "id": "way/573332129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332130", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542688, + -0.0243334 + ], + [ + 109.3540773, + -0.0243295 + ], + [ + 109.3539042, + -0.0243246 + ], + [ + 109.3537853, + -0.0243186 + ] + ] + }, + "id": "way/573332130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332131", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544594, + -0.0233893 + ], + [ + 109.3544595, + -0.0237174 + ], + [ + 109.3544501, + -0.023763 + ], + [ + 109.354426, + -0.0237872 + ], + [ + 109.3543884, + -0.0237939 + ], + [ + 109.3543495, + -0.0238019 + ], + [ + 109.3543254, + -0.023818 + ], + [ + 109.3543113, + -0.0238515 + ], + [ + 109.3542872, + -0.0241043 + ], + [ + 109.3542771, + -0.0242291 + ], + [ + 109.3542688, + -0.0243334 + ] + ] + }, + "id": "way/573332131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332223", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522353, + -0.0236711 + ], + [ + 109.3522225, + -0.0236624 + ], + [ + 109.3522111, + -0.0236584 + ], + [ + 109.3521548, + -0.0236517 + ], + [ + 109.3520603, + -0.023647 + ], + [ + 109.3518712, + -0.0236356 + ], + [ + 109.3518557, + -0.0236383 + ], + [ + 109.3518507, + -0.0236437 + ], + [ + 109.3518467, + -0.0236527 + ], + [ + 109.3518474, + -0.0236664 + ] + ] + }, + "id": "way/573332223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332224", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530406, + -0.023292 + ], + [ + 109.3530356, + -0.0233128 + ], + [ + 109.3530222, + -0.0233519 + ], + [ + 109.3530101, + -0.0233977 + ], + [ + 109.3530009, + -0.0234403 + ], + [ + 109.3529709, + -0.0235977 + ], + [ + 109.3529598, + -0.0236567 + ], + [ + 109.3529484, + -0.0237131 + ] + ] + }, + "id": "way/573332224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332289", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537326, + -0.0226781 + ], + [ + 109.3530614, + -0.0225748 + ], + [ + 109.353052, + -0.022674 + ], + [ + 109.352991, + -0.0229724 + ], + [ + 109.352986, + -0.0229879 + ], + [ + 109.3529863, + -0.0230033 + ], + [ + 109.352995, + -0.0230164 + ], + [ + 109.3531854, + -0.0230626 + ], + [ + 109.3532629, + -0.0230727 + ], + [ + 109.3532773, + -0.0230673 + ], + [ + 109.3532921, + -0.0230288 + ], + [ + 109.3533125, + -0.0229456 + ] + ] + }, + "id": "way/573332289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332290", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539271, + -0.0226995 + ], + [ + 109.3537326, + -0.0226781 + ], + [ + 109.3534121, + -0.0226767 + ] + ] + }, + "id": "way/573332290" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332692", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513967, + -0.0266164 + ], + [ + 109.3512215, + -0.0266457 + ], + [ + 109.3511194, + -0.0266548 + ], + [ + 109.3510444, + -0.0266585 + ], + [ + 109.3509176, + -0.0266645 + ], + [ + 109.3506907, + -0.026715 + ] + ] + }, + "id": "way/573332692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332693", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507842, + -0.0269596 + ], + [ + 109.3505958, + -0.0270018 + ], + [ + 109.350389, + -0.0270602 + ] + ] + }, + "id": "way/573332693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332694", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505111, + -0.0260925 + ], + [ + 109.3506556, + -0.0265934 + ], + [ + 109.3506907, + -0.026715 + ], + [ + 109.3507228, + -0.026848 + ] + ] + }, + "id": "way/573332694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332695", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503511, + -0.0269725 + ], + [ + 109.3505415, + -0.026914 + ], + [ + 109.3507121, + -0.0268714 + ], + [ + 109.3507181, + -0.0268668 + ], + [ + 109.3507218, + -0.0268618 + ], + [ + 109.3507228, + -0.026848 + ] + ] + }, + "id": "way/573332695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332708", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500719, + -0.0263897 + ], + [ + 109.3503777, + -0.0261979 + ] + ] + }, + "id": "way/573332708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332835", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535046, + -0.028359 + ], + [ + 109.3535717, + -0.0284918 + ], + [ + 109.3537755, + -0.0288016 + ], + [ + 109.3538332, + -0.028897 + ], + [ + 109.3539133, + -0.0290294 + ], + [ + 109.3539458, + -0.0290832 + ], + [ + 109.3540344, + -0.0292133 + ], + [ + 109.3540611, + -0.0292434 + ], + [ + 109.3540805, + -0.0292679 + ] + ] + }, + "id": "way/573332835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530253, + -0.0291476 + ], + [ + 109.3531093, + -0.0292465 + ], + [ + 109.3531244, + -0.0292599 + ], + [ + 109.3531363, + -0.0292668 + ], + [ + 109.3531464, + -0.0292674 + ], + [ + 109.3531559, + -0.0292651 + ], + [ + 109.3531657, + -0.0292589 + ], + [ + 109.3536723, + -0.0288726 + ], + [ + 109.3537755, + -0.0288016 + ] + ] + }, + "id": "way/573332836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332837", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528904, + -0.0283684 + ], + [ + 109.3525999, + -0.0285996 + ] + ] + }, + "id": "way/573332837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332838", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529579, + -0.0290627 + ], + [ + 109.3534818, + -0.0287117 + ] + ] + }, + "id": "way/573332838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523835, + -0.0283119 + ], + [ + 109.3525999, + -0.0285996 + ], + [ + 109.3527912, + -0.0288539 + ], + [ + 109.3529579, + -0.0290627 + ], + [ + 109.3529914, + -0.0291084 + ], + [ + 109.3530086, + -0.0291266 + ], + [ + 109.3530253, + -0.0291476 + ] + ] + }, + "id": "way/573332839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332840", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515926, + -0.0289978 + ], + [ + 109.3521005, + -0.0285602 + ], + [ + 109.3523835, + -0.0283119 + ], + [ + 109.3524612, + -0.0282437 + ] + ] + }, + "id": "way/573332840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332945", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545283, + -0.0299064 + ], + [ + 109.354324, + -0.0296049 + ], + [ + 109.3540805, + -0.0292679 + ] + ] + }, + "id": "way/573332945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573332946", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529022, + -0.0306252 + ], + [ + 109.3533075, + -0.0303371 + ], + [ + 109.3537407, + -0.0300193 + ], + [ + 109.354324, + -0.0296049 + ] + ] + }, + "id": "way/573332946" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573358970", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456873, + -0.0034574 + ], + [ + 109.3474927, + -0.004434 + ], + [ + 109.3475293, + -0.0044539 + ] + ] + }, + "id": "way/573358970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573359745", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485368, + -0.0030193 + ], + [ + 109.3487096, + -0.0031096 + ], + [ + 109.3507836, + -0.004228 + ] + ] + }, + "id": "way/573359745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573359746", + "highway": "residential", + "name": "KOMPLEK GARDEN MAS 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489592, + -0.002352 + ], + [ + 109.351938, + -0.0039931 + ], + [ + 109.3522294, + -0.0041537 + ] + ] + }, + "id": "way/573359746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573359747", + "highway": "residential", + "name": "KOMPLEK GARDEN MAS 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522294, + -0.0041537 + ], + [ + 109.3528417, + -0.0030919 + ] + ] + }, + "id": "way/573359747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573359749", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522294, + -0.0041537 + ], + [ + 109.3517729, + -0.0049783 + ] + ] + }, + "id": "way/573359749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573359751", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528417, + -0.0030919 + ], + [ + 109.3525449, + -0.0029356 + ], + [ + 109.3511818, + -0.0022177 + ] + ] + }, + "id": "way/573359751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573359753", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493045, + -0.0015938 + ], + [ + 109.3493845, + -0.00164 + ] + ] + }, + "id": "way/573359753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573359755", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528417, + -0.0030919 + ], + [ + 109.3530081, + -0.003191 + ] + ] + }, + "id": "way/573359755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573359757", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351938, + -0.0039931 + ], + [ + 109.3515039, + -0.0048119 + ], + [ + 109.3513952, + -0.0049959 + ], + [ + 109.3511885, + -0.0053456 + ] + ] + }, + "id": "way/573359757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573359758", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351938, + -0.0039931 + ], + [ + 109.3525449, + -0.0029356 + ] + ] + }, + "id": "way/573359758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573361409", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.35708, + -0.035658 + ], + [ + 109.3576071, + -0.0353073 + ], + [ + 109.3578833, + -0.0351275 + ] + ] + }, + "id": "way/573361409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573361410", + "highway": "residential", + "name": "Gang Bersatu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565121, + -0.0350947 + ], + [ + 109.3582512, + -0.0341079 + ], + [ + 109.3585888, + -0.0339192 + ] + ] + }, + "id": "way/573361410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573361411", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561905, + -0.0347782 + ], + [ + 109.3588218, + -0.0331662 + ], + [ + 109.3588563, + -0.03314 + ], + [ + 109.3588754, + -0.0331236 + ], + [ + 109.3588821, + -0.0331092 + ], + [ + 109.3588831, + -0.0330951 + ], + [ + 109.3588794, + -0.0330804 + ], + [ + 109.3588729, + -0.0330685 + ] + ] + }, + "id": "way/573361411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573361412", + "highway": "residential", + "name": "Gang Berkat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563417, + -0.0349311 + ], + [ + 109.3567335, + -0.0347016 + ], + [ + 109.3573903, + -0.0342757 + ], + [ + 109.3582714, + -0.0337524 + ] + ] + }, + "id": "way/573361412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362251", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3743491, + -0.039269 + ], + [ + 109.3743693, + -0.0392546 + ], + [ + 109.3755351, + -0.0384222 + ], + [ + 109.3757603, + -0.0382765 + ], + [ + 109.3760338, + -0.0380853 + ], + [ + 109.3763477, + -0.0378486 + ], + [ + 109.3767209, + -0.0375755 + ] + ] + }, + "id": "way/573362251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362254", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3769391, + -0.0377923 + ], + [ + 109.3768987, + -0.0378238 + ], + [ + 109.375739, + -0.0386673 + ], + [ + 109.3757122, + -0.0386869 + ] + ] + }, + "id": "way/573362254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362256", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3757122, + -0.0386869 + ], + [ + 109.3755351, + -0.0384222 + ] + ] + }, + "id": "way/573362256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362258", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.375739, + -0.0386673 + ], + [ + 109.3759437, + -0.0389358 + ] + ] + }, + "id": "way/573362258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362261", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3759437, + -0.0389358 + ], + [ + 109.3753059, + -0.0393968 + ], + [ + 109.3746601, + -0.0398755 + ] + ] + }, + "id": "way/573362261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362341", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no", + "name": "G. Mutiara" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627321, + -0.0345247 + ], + [ + 109.3626718, + -0.0345659 + ] + ] + }, + "id": "way/573362341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362343", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no", + "name": "G. Mutiara" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627592, + -0.0345027 + ], + [ + 109.3627321, + -0.0345247 + ] + ] + }, + "id": "way/573362343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362344", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3669049, + -0.0348553 + ], + [ + 109.3670163, + -0.0350444 + ] + ] + }, + "id": "way/573362344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362346", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3666314, + -0.0350208 + ], + [ + 109.366748, + -0.0352295 + ] + ] + }, + "id": "way/573362346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362347", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3663508, + -0.0351906 + ], + [ + 109.3664744, + -0.0353958 + ] + ] + }, + "id": "way/573362347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362349", + "bridge": "yes", + "bridge:name": "PT Panglima Kamayo Kabel", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Panglima Aim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3617283, + -0.0336235 + ], + [ + 109.3618376, + -0.0335598 + ] + ] + }, + "id": "way/573362349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362351", + "highway": "tertiary", + "name": "Jalan Panglima Aim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576688, + -0.036236 + ], + [ + 109.35903, + -0.0353938 + ], + [ + 109.3591916, + -0.0352905 + ], + [ + 109.3593317, + -0.0351993 + ], + [ + 109.359721, + -0.0349436 + ], + [ + 109.360186, + -0.034632 + ], + [ + 109.3608727, + -0.0341848 + ], + [ + 109.3613663, + -0.033861 + ], + [ + 109.3617283, + -0.0336235 + ] + ] + }, + "id": "way/573362351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362353", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363177, + -0.0421022 + ], + [ + 109.3626697, + -0.0425559 + ] + ] + }, + "id": "way/573362353" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362355", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3687946, + -0.0410177 + ], + [ + 109.3687611, + -0.0410458 + ] + ] + }, + "id": "way/573362355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362356", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688074, + -0.0410135 + ], + [ + 109.3687946, + -0.0410177 + ] + ] + }, + "id": "way/573362356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362357", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3685706, + -0.0407843 + ], + [ + 109.3685424, + -0.0408091 + ] + ] + }, + "id": "way/573362357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362358", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3685819, + -0.0407776 + ], + [ + 109.3685706, + -0.0407843 + ] + ] + }, + "id": "way/573362358" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362359", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3684285, + -0.0406844 + ], + [ + 109.3674492, + -0.0413384 + ] + ] + }, + "id": "way/573362359" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362360", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.368458, + -0.0406616 + ], + [ + 109.3684285, + -0.0406844 + ] + ] + }, + "id": "way/573362360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362361", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3684832, + -0.0406508 + ], + [ + 109.368458, + -0.0406616 + ] + ] + }, + "id": "way/573362361" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362362", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680649, + -0.0402235 + ], + [ + 109.3680975, + -0.0402003 + ] + ] + }, + "id": "way/573362362" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362363", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680308, + -0.0402477 + ], + [ + 109.3680649, + -0.0402235 + ] + ] + }, + "id": "way/573362363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362364", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3678055, + -0.039948 + ], + [ + 109.3677713, + -0.0399686 + ] + ] + }, + "id": "way/573362364" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362365", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3678277, + -0.0399339 + ], + [ + 109.3678055, + -0.039948 + ] + ] + }, + "id": "way/573362365" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362366", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3676801, + -0.0398017 + ], + [ + 109.3676994, + -0.0397995 + ] + ] + }, + "id": "way/573362366" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362367", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3676104, + -0.039814 + ], + [ + 109.3676801, + -0.0398017 + ] + ] + }, + "id": "way/573362367" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362368", + "highway": "tertiary", + "name": "Jalan Tani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3669446, + -0.0391413 + ], + [ + 109.3657261, + -0.0398804 + ], + [ + 109.3648772, + -0.040382 + ], + [ + 109.3640766, + -0.0408755 + ], + [ + 109.3636528, + -0.0411411 + ], + [ + 109.3634077, + -0.0412997 + ], + [ + 109.3632479, + -0.0414031 + ], + [ + 109.3628213, + -0.0416882 + ] + ] + }, + "id": "way/573362368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362369", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Tani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670003, + -0.0390953 + ], + [ + 109.3669446, + -0.0391413 + ] + ] + }, + "id": "way/573362369" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362370", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3661975, + -0.0382356 + ], + [ + 109.3662212, + -0.0382132 + ] + ] + }, + "id": "way/573362370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362371", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3661661, + -0.038258 + ], + [ + 109.3661975, + -0.0382356 + ] + ] + }, + "id": "way/573362371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362372", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3658736, + -0.0379096 + ], + [ + 109.3658347, + -0.0379365 + ] + ] + }, + "id": "way/573362372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362373", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3658879, + -0.0378993 + ], + [ + 109.3658736, + -0.0379096 + ] + ] + }, + "id": "way/573362373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362374", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3656832, + -0.0377192 + ], + [ + 109.365647, + -0.0377427 + ] + ] + }, + "id": "way/573362374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362375", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3657007, + -0.0377038 + ], + [ + 109.3656832, + -0.0377192 + ] + ] + }, + "id": "way/573362375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362376", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3655296, + -0.0375589 + ], + [ + 109.3654974, + -0.0375844 + ] + ] + }, + "id": "way/573362376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362377", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3655472, + -0.0375454 + ], + [ + 109.3655296, + -0.0375589 + ] + ] + }, + "id": "way/573362377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362378", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639942, + -0.0359953 + ], + [ + 109.3640285, + -0.0359781 + ] + ] + }, + "id": "way/573362378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362379", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634291, + -0.0363677 + ], + [ + 109.3637352, + -0.0361415 + ], + [ + 109.3638446, + -0.0360703 + ], + [ + 109.3638888, + -0.0360489 + ], + [ + 109.3639942, + -0.0359953 + ] + ] + }, + "id": "way/573362379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362380", + "highway": "residential", + "motorcar": "no", + "name": "G. Mutiara" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626718, + -0.0345659 + ], + [ + 109.3621708, + -0.034913 + ], + [ + 109.3619791, + -0.035039 + ] + ] + }, + "id": "way/573362380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362381", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3677676, + -0.03385 + ], + [ + 109.3680503, + -0.0341647 + ] + ] + }, + "id": "way/573362381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362382", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3674873, + -0.0340895 + ], + [ + 109.3677914, + -0.0344301 + ] + ] + }, + "id": "way/573362382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362383", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3672593, + -0.0342945 + ], + [ + 109.3675554, + -0.0346367 + ] + ] + }, + "id": "way/573362383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362384", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670039, + -0.0344955 + ], + [ + 109.3672858, + -0.0348607 + ] + ] + }, + "id": "way/573362384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362385", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682511, + -0.0371853 + ], + [ + 109.366799, + -0.0383154 + ], + [ + 109.3665205, + -0.0385334 + ] + ] + }, + "id": "way/573362385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362386", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682853, + -0.0371018 + ], + [ + 109.3683258, + -0.037041 + ], + [ + 109.3683393, + -0.0370172 + ], + [ + 109.3683654, + -0.0369903 + ], + [ + 109.3703471, + -0.0354644 + ] + ] + }, + "id": "way/573362386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362387", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682853, + -0.0371018 + ], + [ + 109.3683, + -0.0371078 + ], + [ + 109.3683117, + -0.0371185 + ], + [ + 109.3683192, + -0.0371326 + ], + [ + 109.3683213, + -0.0371484 + ], + [ + 109.3683179, + -0.0371639 + ], + [ + 109.3683095, + -0.0371774 + ], + [ + 109.3682969, + -0.0371871 + ], + [ + 109.3682817, + -0.0371919 + ], + [ + 109.3682658, + -0.0371913 + ], + [ + 109.3682511, + -0.0371853 + ], + [ + 109.3682394, + -0.0371746 + ], + [ + 109.368232, + -0.0371606 + ], + [ + 109.3682298, + -0.0371448 + ], + [ + 109.3682332, + -0.0371292 + ], + [ + 109.3682416, + -0.0371158 + ], + [ + 109.3682542, + -0.0371061 + ] + ] + }, + "id": "way/573362387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362388", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680139, + -0.0368815 + ], + [ + 109.3680906, + -0.0369764 + ] + ] + }, + "id": "way/573362388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362389", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680263, + -0.0368653 + ], + [ + 109.3680139, + -0.0368815 + ], + [ + 109.3679999, + -0.0368884 + ], + [ + 109.3679843, + -0.0368894 + ], + [ + 109.3679695, + -0.0368844 + ], + [ + 109.3679578, + -0.0368741 + ], + [ + 109.3679509, + -0.0368601 + ], + [ + 109.3679499, + -0.0368445 + ], + [ + 109.3679549, + -0.0368297 + ], + [ + 109.3679652, + -0.0368179 + ], + [ + 109.3679792, + -0.036811 + ], + [ + 109.3679948, + -0.03681 + ] + ] + }, + "id": "way/573362389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362390", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3662288, + -0.03822 + ], + [ + 109.366261, + -0.0381904 + ], + [ + 109.3666125, + -0.0379009 + ], + [ + 109.3668661, + -0.0377145 + ], + [ + 109.3673904, + -0.0372814 + ], + [ + 109.3678048, + -0.0369608 + ], + [ + 109.3679578, + -0.0368741 + ] + ] + }, + "id": "way/573362390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362391", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682425, + -0.0403608 + ], + [ + 109.3684714, + -0.0401768 + ], + [ + 109.3691526, + -0.0396417 + ], + [ + 109.3698768, + -0.0391013 + ] + ] + }, + "id": "way/573362391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3674198, + -0.0395022 + ], + [ + 109.3675781, + -0.0393883 + ], + [ + 109.3680677, + -0.0390302 + ], + [ + 109.3683747, + -0.0388277 + ] + ] + }, + "id": "way/573362392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362393", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3658347, + -0.0379365 + ], + [ + 109.3649161, + -0.0385138 + ], + [ + 109.3641825, + -0.038994 + ], + [ + 109.3638553, + -0.0392072 + ], + [ + 109.3639342, + -0.0393236 + ] + ] + }, + "id": "way/573362393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615935, + -0.0404484 + ], + [ + 109.3616847, + -0.04039 + ], + [ + 109.3617859, + -0.0403223 + ], + [ + 109.3619013, + -0.0402506 + ], + [ + 109.3620012, + -0.0401849 + ] + ] + }, + "id": "way/573362394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362395", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3622003, + -0.0400266 + ], + [ + 109.3632276, + -0.0393587 + ], + [ + 109.3640055, + -0.0388719 + ], + [ + 109.364318, + -0.0386868 + ] + ] + }, + "id": "way/573362395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362396", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630729, + -0.0391057 + ], + [ + 109.3632276, + -0.0393587 + ] + ] + }, + "id": "way/573362396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362397", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365647, + -0.0377427 + ], + [ + 109.3654404, + -0.0378781 + ], + [ + 109.3651245, + -0.0380719 + ], + [ + 109.3648477, + -0.0382396 + ], + [ + 109.3645701, + -0.0384173 + ], + [ + 109.3643153, + -0.0385809 + ] + ] + }, + "id": "way/573362397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362398", + "highway": "residential", + "name": "Gang Sukahayu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611033, + -0.0399884 + ], + [ + 109.3613782, + -0.0397932 + ], + [ + 109.3617041, + -0.039572 + ], + [ + 109.3619724, + -0.0393976 + ], + [ + 109.3621199, + -0.0393037 + ], + [ + 109.3624552, + -0.0391133 + ], + [ + 109.3625383, + -0.0390627 + ] + ] + }, + "id": "way/573362398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362399", + "highway": "residential", + "name": "Gang Haji Harun" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654974, + -0.0375844 + ], + [ + 109.3651279, + -0.0378339 + ], + [ + 109.3643421, + -0.0383275 + ], + [ + 109.363976, + -0.0385554 + ], + [ + 109.3631552, + -0.0390543 + ], + [ + 109.3630729, + -0.0391057 + ], + [ + 109.3626872, + -0.0393467 + ], + [ + 109.3622272, + -0.0396404 + ], + [ + 109.3620595, + -0.039745 + ], + [ + 109.3618409, + -0.0398898 + ], + [ + 109.3616331, + -0.0400239 + ], + [ + 109.3613461, + -0.0402224 + ] + ] + }, + "id": "way/573362399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362400", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3671933, + -0.0358745 + ], + [ + 109.3664597, + -0.0364096 + ], + [ + 109.3660815, + -0.0366779 + ], + [ + 109.3657409, + -0.0369125 + ], + [ + 109.365308, + -0.0371898 + ], + [ + 109.3652533, + -0.0372237 + ] + ] + }, + "id": "way/573362400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362401", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652533, + -0.0372237 + ], + [ + 109.3653442, + -0.0373232 + ], + [ + 109.3655472, + -0.0375454 + ], + [ + 109.3656257, + -0.0376175 + ], + [ + 109.3657007, + -0.0377038 + ], + [ + 109.3658879, + -0.0378993 + ], + [ + 109.3659108, + -0.0379196 + ], + [ + 109.3660318, + -0.038027 + ], + [ + 109.3662212, + -0.0382132 + ], + [ + 109.3662288, + -0.03822 + ], + [ + 109.3663604, + -0.0383596 + ], + [ + 109.3665205, + -0.0385334 + ], + [ + 109.3665723, + -0.0385862 + ], + [ + 109.3667218, + -0.0387498 + ], + [ + 109.3668003, + -0.0388357 + ], + [ + 109.3670289, + -0.0390727 + ] + ] + }, + "id": "way/573362401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362402", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3672319, + -0.0423685 + ], + [ + 109.3675567, + -0.0421791 + ], + [ + 109.3679028, + -0.0419551 + ], + [ + 109.3682059, + -0.041766 + ], + [ + 109.3686538, + -0.0414723 + ], + [ + 109.3689975, + -0.0412383 + ] + ] + }, + "id": "way/573362402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362403", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670365, + -0.0421036 + ], + [ + 109.3672319, + -0.0423685 + ], + [ + 109.3673985, + -0.0426062 + ], + [ + 109.3674131, + -0.0426306 + ], + [ + 109.3674071, + -0.0426557 + ], + [ + 109.367381, + -0.0426807 + ], + [ + 109.3673099, + -0.0427156 + ], + [ + 109.3669016, + -0.0429489 + ], + [ + 109.3668728, + -0.0429837 + ], + [ + 109.3668694, + -0.0430159 + ], + [ + 109.3669331, + -0.0431574 + ], + [ + 109.3669304, + -0.0431916 + ], + [ + 109.3669197, + -0.0432238 + ], + [ + 109.3665925, + -0.0434343 + ], + [ + 109.3662116, + -0.0436704 + ], + [ + 109.3658073, + -0.0439487 + ], + [ + 109.3655337, + -0.0441244 + ], + [ + 109.365307, + -0.0442712 + ] + ] + }, + "id": "way/573362403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362404", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649059, + -0.0438478 + ], + [ + 109.3650284, + -0.0437522 + ], + [ + 109.3651605, + -0.0436553 + ], + [ + 109.3652902, + -0.043563 + ], + [ + 109.3654103, + -0.0434843 + ], + [ + 109.3654874, + -0.043432 + ], + [ + 109.3655408, + -0.0433951 + ] + ] + }, + "id": "way/573362404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362405", + "highway": "residential", + "name": "Gang Berkah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670485, + -0.0416634 + ], + [ + 109.3666689, + -0.0419028 + ], + [ + 109.3663189, + -0.0421187 + ], + [ + 109.366103, + -0.0422475 + ], + [ + 109.3658589, + -0.0423963 + ], + [ + 109.3653948, + -0.0427115 + ], + [ + 109.3653553, + -0.0427303 + ], + [ + 109.3653224, + -0.0427336 + ], + [ + 109.3652876, + -0.0427128 + ], + [ + 109.3652534, + -0.0426652 + ], + [ + 109.3651903, + -0.0426002 + ], + [ + 109.3650595, + -0.0424531 + ] + ] + }, + "id": "way/573362405" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362406", + "highway": "residential", + "name": "Gang Berkah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3685424, + -0.0408091 + ], + [ + 109.3676204, + -0.0414086 + ], + [ + 109.367202, + -0.0416822 + ], + [ + 109.3671228, + -0.0417372 + ], + [ + 109.3670967, + -0.0417405 + ], + [ + 109.3670799, + -0.0417251 + ], + [ + 109.3670645, + -0.0416916 + ], + [ + 109.3670485, + -0.0416634 + ], + [ + 109.367037, + -0.0416399 + ], + [ + 109.3670317, + -0.0416165 + ], + [ + 109.367037, + -0.0415977 + ], + [ + 109.3670444, + -0.041587 + ], + [ + 109.3674492, + -0.0413384 + ] + ] + }, + "id": "way/573362406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362407", + "highway": "residential", + "name": "Gang Tirta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670365, + -0.0421036 + ], + [ + 109.3668419, + -0.0422206 + ], + [ + 109.3661901, + -0.042631 + ], + [ + 109.3655652, + -0.043036 + ], + [ + 109.365529, + -0.0430481 + ], + [ + 109.3654753, + -0.0430615 + ] + ] + }, + "id": "way/573362407" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362409", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633575, + -0.0338196 + ], + [ + 109.363819, + -0.0346125 + ] + ] + }, + "id": "way/573362409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362410", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363687, + -0.0336114 + ], + [ + 109.3641342, + -0.0344127 + ] + ] + }, + "id": "way/573362410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362411", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640005, + -0.0334155 + ], + [ + 109.364436, + -0.0341955 + ] + ] + }, + "id": "way/573362411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362412", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643245, + -0.033219 + ], + [ + 109.3647632, + -0.0340037 + ] + ] + }, + "id": "way/573362412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362413", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650931, + -0.0338012 + ], + [ + 109.364675, + -0.0330768 + ] + ] + }, + "id": "way/573362413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362414", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3653962, + -0.0336027 + ], + [ + 109.3649859, + -0.0328852 + ] + ] + }, + "id": "way/573362414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362415", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363229, + -0.0338977 + ], + [ + 109.3633575, + -0.0338196 + ], + [ + 109.363687, + -0.0336114 + ], + [ + 109.3640005, + -0.0334155 + ], + [ + 109.3643245, + -0.033219 + ], + [ + 109.3644413, + -0.0331387 + ], + [ + 109.3645191, + -0.0331065 + ], + [ + 109.364675, + -0.0330768 + ], + [ + 109.3649859, + -0.0328852 + ] + ] + }, + "id": "way/573362415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362416", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650415, + -0.0344369 + ], + [ + 109.3646519, + -0.0346689 + ], + [ + 109.3644165, + -0.0348103 + ] + ] + }, + "id": "way/573362416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362417", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651337, + -0.0354377 + ], + [ + 109.3645111, + -0.0358021 + ] + ] + }, + "id": "way/573362417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362418", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611527, + -0.0329386 + ], + [ + 109.3613166, + -0.0331695 + ], + [ + 109.3609893, + -0.033419 + ] + ] + }, + "id": "way/573362418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362419", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611813, + -0.0329239 + ], + [ + 109.3611527, + -0.0329386 + ], + [ + 109.3605454, + -0.0333171 + ] + ] + }, + "id": "way/573362419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362420", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599848, + -0.0343692 + ], + [ + 109.3601042, + -0.0342927 + ], + [ + 109.3601679, + -0.0342498 + ], + [ + 109.3601954, + -0.0342257 + ], + [ + 109.3602073, + -0.0342138 + ], + [ + 109.3602169, + -0.0341962 + ], + [ + 109.3602227, + -0.0341797 + ], + [ + 109.3602244, + -0.0341709 + ], + [ + 109.3602257, + -0.0341593 + ], + [ + 109.3602241, + -0.0341481 + ], + [ + 109.3602224, + -0.034142 + ], + [ + 109.3602184, + -0.0341335 + ], + [ + 109.3602099, + -0.0341197 + ], + [ + 109.3601853, + -0.0340889 + ], + [ + 109.3599379, + -0.0338227 + ] + ] + }, + "id": "way/573362420" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362421", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360186, + -0.034632 + ], + [ + 109.3599848, + -0.0343692 + ], + [ + 109.3596616, + -0.0339776 + ] + ] + }, + "id": "way/573362421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362422", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587135, + -0.0350685 + ], + [ + 109.3585742, + -0.0351713 + ], + [ + 109.3583408, + -0.0353215 + ], + [ + 109.3573797, + -0.0359423 + ] + ] + }, + "id": "way/573362422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.35903, + -0.0353938 + ], + [ + 109.3588851, + -0.0352462 + ], + [ + 109.3587135, + -0.0350685 + ], + [ + 109.3585981, + -0.0349519 + ], + [ + 109.3584171, + -0.0347829 + ], + [ + 109.3582012, + -0.0349157 + ], + [ + 109.3578833, + -0.0351275 + ] + ] + }, + "id": "way/573362423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362424", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588711, + -0.0377098 + ], + [ + 109.3585485, + -0.0380123 + ], + [ + 109.3582267, + -0.038306 + ], + [ + 109.3578847, + -0.0386238 + ], + [ + 109.35754, + -0.038951 + ], + [ + 109.3573134, + -0.0391656 + ], + [ + 109.3570693, + -0.0393842 + ], + [ + 109.3567815, + -0.0396277 + ] + ] + }, + "id": "way/573362424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362425", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583058, + -0.0410955 + ], + [ + 109.358515, + -0.0409265 + ], + [ + 109.3586652, + -0.0407991 + ], + [ + 109.3588033, + -0.040673 + ], + [ + 109.358866, + -0.040605 + ], + [ + 109.3589267, + -0.0405362 + ], + [ + 109.3590058, + -0.0404316 + ], + [ + 109.3590937, + -0.0403116 + ], + [ + 109.3591762, + -0.0401843 + ] + ] + }, + "id": "way/573362425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362426", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584289, + -0.0412138 + ], + [ + 109.3587255, + -0.0409238 + ] + ] + }, + "id": "way/573362426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362427", + "highway": "residential", + "name": "Gang Mohammad Ali" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584289, + -0.0412138 + ], + [ + 109.3582468, + -0.0414053 + ], + [ + 109.3581529, + -0.0414958 + ], + [ + 109.3580255, + -0.0416326 + ], + [ + 109.3578967, + -0.0417774 + ], + [ + 109.3577881, + -0.0419082 + ], + [ + 109.3574273, + -0.0423816 + ] + ] + }, + "id": "way/573362427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362428", + "highway": "residential", + "name": "Gang Haji Habiba" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3579088, + -0.0422609 + ], + [ + 109.3582025, + -0.0418867 + ], + [ + 109.3584144, + -0.0415957 + ], + [ + 109.3585938, + -0.0413747 + ] + ] + }, + "id": "way/573362428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362429", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587356, + -0.0415132 + ], + [ + 109.3584734, + -0.0418559 + ], + [ + 109.3579558, + -0.042568 + ] + ] + }, + "id": "way/573362429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362430", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600503, + -0.0401585 + ], + [ + 109.359844, + -0.040496 + ], + [ + 109.3596053, + -0.040842 + ], + [ + 109.3592767, + -0.0413074 + ], + [ + 109.3589495, + -0.0417218 + ], + [ + 109.3588627, + -0.0418575 + ], + [ + 109.3587323, + -0.042053 + ], + [ + 109.3584587, + -0.0424071 + ], + [ + 109.358234, + -0.0426894 + ], + [ + 109.3582207, + -0.0427036 + ], + [ + 109.3581693, + -0.0427584 + ], + [ + 109.358118, + -0.0428158 + ], + [ + 109.3579987, + -0.0429549 + ], + [ + 109.3579105, + -0.0430528 + ] + ] + }, + "id": "way/573362430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611965, + -0.0400816 + ], + [ + 109.3608908, + -0.0401051 + ], + [ + 109.3601993, + -0.0401539 + ], + [ + 109.3600503, + -0.0401585 + ], + [ + 109.3597126, + -0.0401742 + ], + [ + 109.3591762, + -0.0401843 + ], + [ + 109.3590655, + -0.0401842 + ], + [ + 109.3587658, + -0.0401875 + ] + ] + }, + "id": "way/573362431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362432", + "highway": "residential", + "name": "Gang Sakinah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591119, + -0.0418733 + ], + [ + 109.3592955, + -0.0416359 + ], + [ + 109.3595517, + -0.0412913 + ], + [ + 109.3597448, + -0.041015 + ], + [ + 109.3599875, + -0.0406569 + ] + ] + }, + "id": "way/573362432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362433", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616763, + -0.040725 + ], + [ + 109.3615928, + -0.0408232 + ], + [ + 109.3614674, + -0.0409781 + ], + [ + 109.3612978, + -0.0411907 + ], + [ + 109.3610269, + -0.0415555 + ], + [ + 109.3606567, + -0.0420678 + ] + ] + }, + "id": "way/573362433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362434", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614091, + -0.0402821 + ], + [ + 109.3610255, + -0.0407642 + ], + [ + 109.3603054, + -0.0416225 + ] + ] + }, + "id": "way/573362434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362435", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601149, + -0.0428255 + ], + [ + 109.3607238, + -0.0421737 + ] + ] + }, + "id": "way/573362435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362436", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360241, + -0.0421945 + ], + [ + 109.360306, + -0.0422629 + ], + [ + 109.3605608, + -0.0420088 + ], + [ + 109.3606567, + -0.0420678 + ] + ] + }, + "id": "way/573362436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362437", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608131, + -0.0436096 + ], + [ + 109.3611167, + -0.0433257 + ], + [ + 109.361625, + -0.0428671 + ] + ] + }, + "id": "way/573362437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362438", + "highway": "living_street", + "motorcycle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610229, + -0.0438454 + ], + [ + 109.3615526, + -0.0433794 + ], + [ + 109.3618369, + -0.0431219 + ], + [ + 109.3619341, + -0.0430434 + ], + [ + 109.3620032, + -0.0429925 + ], + [ + 109.3620904, + -0.0429214 + ] + ] + }, + "id": "way/573362438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362439", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638459, + -0.0416601 + ], + [ + 109.3634797, + -0.0419142 + ], + [ + 109.363177, + -0.0421022 + ] + ] + }, + "id": "way/573362439" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362440", + "highway": "residential", + "name": "Gang Hijrah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3641041, + -0.0430468 + ], + [ + 109.3640667, + -0.0430839 + ], + [ + 109.3640326, + -0.0431221 + ], + [ + 109.3639767, + -0.0431809 + ], + [ + 109.3637903, + -0.0433794 + ], + [ + 109.3636588, + -0.0435336 + ], + [ + 109.3635111, + -0.043706 + ], + [ + 109.3633517, + -0.0438856 + ], + [ + 109.3632243, + -0.0440305 + ] + ] + }, + "id": "way/573362440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573362441", + "highway": "residential", + "name": "Gang 93" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648352, + -0.0423303 + ], + [ + 109.3648841, + -0.0422984 + ], + [ + 109.3651025, + -0.0421643 + ], + [ + 109.3654834, + -0.0419296 + ], + [ + 109.3658964, + -0.0416654 + ], + [ + 109.3661815, + -0.0414813 + ], + [ + 109.3663765, + -0.041357 + ], + [ + 109.3666407, + -0.0411907 + ], + [ + 109.3668862, + -0.0410324 + ], + [ + 109.3672416, + -0.0407977 + ], + [ + 109.3674857, + -0.0406341 + ], + [ + 109.3678438, + -0.0403806 + ], + [ + 109.3680308, + -0.0402477 + ] + ] + }, + "id": "way/573362441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573369958", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196404, + -0.0505013 + ], + [ + 109.3197839, + -0.0503263 + ], + [ + 109.3200548, + -0.0499877 + ] + ] + }, + "id": "way/573369958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573369959", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198919, + -0.049818 + ], + [ + 109.3204853, + -0.0492447 + ] + ] + }, + "id": "way/573369959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573369960", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210023, + -0.0502935 + ], + [ + 109.3212336, + -0.0500125 + ] + ] + }, + "id": "way/573369960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573369961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200548, + -0.0499877 + ], + [ + 109.3206697, + -0.0494653 + ] + ] + }, + "id": "way/573369961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573369962", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203847, + -0.0503169 + ], + [ + 109.3209198, + -0.0497603 + ] + ] + }, + "id": "way/573369962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573369963", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210506, + -0.0498877 + ], + [ + 109.3208608, + -0.0501211 + ], + [ + 109.3205316, + -0.0504604 + ] + ] + }, + "id": "way/573369963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573370926", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575653, + -0.0403839 + ], + [ + 109.3581435, + -0.0398737 + ] + ] + }, + "id": "way/573370926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573370927", + "highway": "track", + "motorcycle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583554, + -0.0391267 + ], + [ + 109.3584627, + -0.03923 + ], + [ + 109.3586732, + -0.0390194 + ] + ] + }, + "id": "way/573370927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573370928", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556504, + -0.0383288 + ], + [ + 109.3550623, + -0.0386982 + ], + [ + 109.3550427, + -0.0387138 + ], + [ + 109.3550261, + -0.0387313 + ], + [ + 109.3550144, + -0.0387485 + ], + [ + 109.3550057, + -0.038767 + ], + [ + 109.3549981, + -0.0387861 + ], + [ + 109.3549894, + -0.0388134 + ], + [ + 109.3549853, + -0.0388292 + ], + [ + 109.3549772, + -0.0388466 + ], + [ + 109.3549639, + -0.0388681 + ], + [ + 109.3549468, + -0.0388898 + ], + [ + 109.3549249, + -0.0389158 + ], + [ + 109.3547693, + -0.0390543 + ], + [ + 109.3547562, + -0.0390691 + ], + [ + 109.354749, + -0.0390791 + ], + [ + 109.3547457, + -0.0390856 + ], + [ + 109.3547418, + -0.0390969 + ], + [ + 109.3547403, + -0.0391084 + ], + [ + 109.3547408, + -0.0391217 + ], + [ + 109.3547441, + -0.0391361 + ], + [ + 109.3547502, + -0.0391495 + ], + [ + 109.3547594, + -0.0391656 + ], + [ + 109.3547686, + -0.039179 + ], + [ + 109.3548109, + -0.0392333 + ] + ] + }, + "id": "way/573370928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573370929", + "highway": "residential", + "name": "Gang Akbar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563974, + -0.0392513 + ], + [ + 109.3561345, + -0.0394714 + ], + [ + 109.355987, + -0.0395907 + ], + [ + 109.3556464, + -0.0398415 + ] + ] + }, + "id": "way/573370929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573370930", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3566872, + -0.0395343 + ], + [ + 109.3564966, + -0.0397061 + ], + [ + 109.3562673, + -0.0398952 + ], + [ + 109.3560741, + -0.040043 + ], + [ + 109.3560447, + -0.0400655 + ], + [ + 109.3557858, + -0.0402546 + ] + ] + }, + "id": "way/573370930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573371834", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169977, + -0.0489698 + ], + [ + 109.3170767, + -0.0490415 + ], + [ + 109.3175122, + -0.0493909 + ] + ] + }, + "id": "way/573371834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573371835", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3166916, + -0.0494986 + ], + [ + 109.3170767, + -0.0490415 + ] + ] + }, + "id": "way/573371835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573377277", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554602, + -0.0404699 + ], + [ + 109.3555793, + -0.0403739 + ], + [ + 109.3557858, + -0.0402546 + ] + ] + }, + "id": "way/573377277" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573377991", + "highway": "residential", + "name": "Gang Yaris 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2851855, + -0.0337161 + ], + [ + 109.2852222, + -0.0337692 + ], + [ + 109.286153, + -0.0351162 + ] + ] + }, + "id": "way/573377991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573377995", + "highway": "residential", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2842687, + -0.0346393 + ], + [ + 109.285225, + -0.0359885 + ], + [ + 109.2864964, + -0.0378095 + ], + [ + 109.2866064, + -0.0379691 + ] + ] + }, + "id": "way/573377995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573377998", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2849035, + -0.0340707 + ], + [ + 109.285742, + -0.0352409 + ], + [ + 109.2858292, + -0.0353442 + ], + [ + 109.2858472, + -0.0353508 + ], + [ + 109.2858915, + -0.0353508 + ], + [ + 109.2867739, + -0.036592 + ], + [ + 109.2868061, + -0.0366101 + ], + [ + 109.2868336, + -0.0366088 + ], + [ + 109.2869159, + -0.0365822 + ], + [ + 109.286953, + -0.0365377 + ], + [ + 109.2869999, + -0.0364626 + ], + [ + 109.2870381, + -0.036413 + ], + [ + 109.2870442, + -0.0363788 + ], + [ + 109.2870369, + -0.0363438 + ], + [ + 109.2866455, + -0.035784 + ] + ] + }, + "id": "way/573377998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378021", + "highway": "residential", + "name": "Gang Haji Hamida" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2870622, + -0.0316135 + ], + [ + 109.2895771, + -0.0350049 + ] + ] + }, + "id": "way/573378021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378022", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.287032, + -0.0323178 + ], + [ + 109.2892732, + -0.0353251 + ] + ] + }, + "id": "way/573378022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378099", + "highway": "residential", + "name": "Jalan Ampera Harmoni Residence" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2873904, + -0.0434718 + ], + [ + 109.2851813, + -0.0408347 + ] + ] + }, + "id": "way/573378099" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378123", + "highway": "residential", + "name": "Jalan Perumahan Griya Ampera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2916735, + -0.0441282 + ], + [ + 109.2914624, + -0.0439037 + ], + [ + 109.2913793, + -0.0439815 + ], + [ + 109.2903976, + -0.042914 + ], + [ + 109.2892083, + -0.0416311 + ] + ] + }, + "id": "way/573378123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378169", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2907396, + -0.0406167 + ], + [ + 109.2904667, + -0.0403549 + ] + ] + }, + "id": "way/573378169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378170", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.294061, + -0.0416909 + ], + [ + 109.2917172, + -0.0390759 + ] + ] + }, + "id": "way/573378170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378173", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2901468, + -0.0377266 + ], + [ + 109.2915221, + -0.0392816 + ] + ] + }, + "id": "way/573378173" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378174", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2897293, + -0.0367946 + ], + [ + 109.2917047, + -0.039086 + ] + ] + }, + "id": "way/573378174" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378176", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.290179, + -0.0366121 + ], + [ + 109.2911956, + -0.0377776 + ], + [ + 109.292026, + -0.0387596 + ] + ] + }, + "id": "way/573378176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378216", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2866238, + -0.0394755 + ], + [ + 109.2868162, + -0.0396504 + ], + [ + 109.2868524, + -0.0397067 + ], + [ + 109.2868504, + -0.0397409 + ], + [ + 109.2868383, + -0.0397906 + ], + [ + 109.286843, + -0.0398254 + ], + [ + 109.2868605, + -0.0398623 + ], + [ + 109.2872514, + -0.040323 + ], + [ + 109.2887621, + -0.0420973 + ] + ] + }, + "id": "way/573378216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378708", + "highway": "residential", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2816415, + -0.0404772 + ], + [ + 109.2824275, + -0.04175 + ] + ] + }, + "id": "way/573378708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573378710", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2898115, + -0.0433794 + ], + [ + 109.2886867, + -0.0421741 + ] + ] + }, + "id": "way/573378710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573380769", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575789, + -0.0328899 + ], + [ + 109.3573314, + -0.0325699 + ], + [ + 109.35719, + -0.032387 + ], + [ + 109.3569979, + -0.0321401 + ], + [ + 109.3568908, + -0.0319861 + ], + [ + 109.3567547, + -0.0318027 + ] + ] + }, + "id": "way/573380769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573380814", + "highway": "residential", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585752, + -0.0295822 + ], + [ + 109.3580496, + -0.02992 + ], + [ + 109.3576274, + -0.03019 + ], + [ + 109.3569608, + -0.0306482 + ] + ] + }, + "id": "way/573380814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573380875", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354886, + -0.0284717 + ], + [ + 109.35505, + -0.0286987 + ], + [ + 109.3551951, + -0.0289022 + ], + [ + 109.3552756, + -0.0290363 + ], + [ + 109.355342, + -0.029106 + ], + [ + 109.3554189, + -0.029216 + ], + [ + 109.35547, + -0.029293 + ], + [ + 109.3555686, + -0.0294359 + ], + [ + 109.3556732, + -0.029562 + ], + [ + 109.3557617, + -0.0297095 + ] + ] + }, + "id": "way/573380875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573380876", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540805, + -0.0292679 + ], + [ + 109.3541583, + -0.0292251 + ], + [ + 109.3546986, + -0.0289151 + ], + [ + 109.3548655, + -0.0288184 + ], + [ + 109.35505, + -0.0286987 + ] + ] + }, + "id": "way/573380876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573380877", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553741, + -0.0299898 + ], + [ + 109.3552183, + -0.0297385 + ], + [ + 109.3550739, + -0.0295443 + ], + [ + 109.3549859, + -0.0294183 + ], + [ + 109.3549186, + -0.0293214 + ], + [ + 109.3547181, + -0.0289445 + ], + [ + 109.3546986, + -0.0289151 + ], + [ + 109.3544633, + -0.0285932 + ] + ] + }, + "id": "way/573380877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573381875", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534173, + -0.0269704 + ], + [ + 109.3534329, + -0.0272479 + ], + [ + 109.353447, + -0.0275879 + ], + [ + 109.3534839, + -0.0277468 + ], + [ + 109.3535006, + -0.0278212 + ], + [ + 109.3535047, + -0.028068 + ], + [ + 109.3534906, + -0.0282611 + ], + [ + 109.353766, + -0.0282967 + ], + [ + 109.3540774, + -0.028337 + ] + ] + }, + "id": "way/573381875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573382051", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520383, + -0.0262736 + ], + [ + 109.3522044, + -0.026236 + ], + [ + 109.3524122, + -0.0261977 + ] + ] + }, + "id": "way/573382051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573382104", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529293, + -0.0264906 + ], + [ + 109.3529973, + -0.0267585 + ], + [ + 109.3530808, + -0.0269669 + ], + [ + 109.3531143, + -0.027144 + ], + [ + 109.3531398, + -0.0273545 + ] + ] + }, + "id": "way/573382104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573382216", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525088, + -0.0265524 + ], + [ + 109.3524895, + -0.02635 + ], + [ + 109.3524827, + -0.0263205 + ], + [ + 109.3524122, + -0.0261977 + ], + [ + 109.3523995, + -0.02612 + ], + [ + 109.3523647, + -0.0259222 + ], + [ + 109.3523365, + -0.0257774 + ], + [ + 109.3522654, + -0.0255386 + ], + [ + 109.3521958, + -0.0253562 + ], + [ + 109.352099, + -0.0249756 + ], + [ + 109.352096, + -0.0249699 + ], + [ + 109.3520906, + -0.0249628 + ], + [ + 109.3520824, + -0.0249591 + ], + [ + 109.3520713, + -0.0249576 + ], + [ + 109.3520643, + -0.0249556 + ], + [ + 109.3520586, + -0.0249523 + ], + [ + 109.3520546, + -0.024945 + ], + [ + 109.3520544, + -0.024936 + ] + ] + }, + "id": "way/573382216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573382217", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351121, + -0.0259651 + ], + [ + 109.351678, + -0.0258444 + ], + [ + 109.3523365, + -0.0257774 + ] + ] + }, + "id": "way/573382217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573382316", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353691, + -0.0414294 + ], + [ + 109.3538137, + -0.0415649 + ], + [ + 109.3538443, + -0.0415986 + ], + [ + 109.3539499, + -0.0417151 + ], + [ + 109.3539912, + -0.0417656 + ], + [ + 109.354257, + -0.0420906 + ] + ] + }, + "id": "way/573382316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573382897", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552923, + -0.0434316 + ], + [ + 109.3547103, + -0.0439265 + ], + [ + 109.354556, + -0.0440481 + ] + ] + }, + "id": "way/573382897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383059", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.35501, + -0.0256319 + ], + [ + 109.3550053, + -0.0252034 + ], + [ + 109.3547344, + -0.0251946 + ] + ] + }, + "id": "way/573383059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383060", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553115, + -0.0244561 + ], + [ + 109.355248, + -0.0256424 + ] + ] + }, + "id": "way/573383060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383061", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553115, + -0.0244561 + ], + [ + 109.3553116, + -0.0243345 + ], + [ + 109.3553081, + -0.0243241 + ], + [ + 109.3553042, + -0.0243186 + ], + [ + 109.3552982, + -0.0243161 + ], + [ + 109.3552891, + -0.0243137 + ], + [ + 109.3551535, + -0.0243219 + ], + [ + 109.3548176, + -0.02433 + ] + ] + }, + "id": "way/573383061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383062", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551517, + -0.0238715 + ], + [ + 109.3551535, + -0.0243219 + ] + ] + }, + "id": "way/573383062" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383064", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556254, + -0.0238934 + ], + [ + 109.3551517, + -0.0238715 + ], + [ + 109.3548252, + -0.0238588 + ] + ] + }, + "id": "way/573383064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383065", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546767, + -0.0228105 + ], + [ + 109.3548799, + -0.0228504 + ] + ] + }, + "id": "way/573383065" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383066", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551931, + -0.0222727 + ], + [ + 109.3551756, + -0.022493 + ], + [ + 109.3551636, + -0.0226901 + ], + [ + 109.3551287, + -0.0229248 + ] + ] + }, + "id": "way/573383066" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383067", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556021, + -0.0229862 + ], + [ + 109.3552507, + -0.0229409 + ] + ] + }, + "id": "way/573383067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383068", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558234, + -0.0224796 + ], + [ + 109.3558241, + -0.0224347 + ], + [ + 109.3558192, + -0.0222631 + ] + ] + }, + "id": "way/573383068" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573383069", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561513, + -0.0228122 + ], + [ + 109.3561399, + -0.0226532 + ], + [ + 109.3561278, + -0.0224957 + ], + [ + 109.3561129, + -0.0222598 + ] + ] + }, + "id": "way/573383069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573386504", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478465, + -0.0412886 + ], + [ + 109.3481643, + -0.0409466 + ], + [ + 109.3482657, + -0.0408307 + ], + [ + 109.3483213, + -0.040779 + ], + [ + 109.3486508, + -0.0405358 + ], + [ + 109.3486956, + -0.0405027 + ] + ] + }, + "id": "way/573386504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573386506", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476252, + -0.0414586 + ], + [ + 109.3473865, + -0.0412939 + ], + [ + 109.3473563, + -0.0412591 + ], + [ + 109.3473597, + -0.0412369 + ], + [ + 109.3473845, + -0.0412102 + ], + [ + 109.347522, + -0.0410821 + ], + [ + 109.3473302, + -0.0409587 + ], + [ + 109.3470991, + -0.0407028 + ] + ] + }, + "id": "way/573386506" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573392879", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491521, + -0.041216 + ], + [ + 109.3485332, + -0.0417271 + ], + [ + 109.3480825, + -0.0421134 + ] + ] + }, + "id": "way/573392879" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573411406", + "access": "permissive", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2967613, + -0.0078868 + ], + [ + 109.296796, + -0.0078334 + ], + [ + 109.2968148, + -0.0077838 + ], + [ + 109.2968311, + -0.0077058 + ], + [ + 109.296847, + -0.0075048 + ], + [ + 109.2968792, + -0.0070113 + ], + [ + 109.2968792, + -0.0067323 + ], + [ + 109.296898, + -0.0064118 + ], + [ + 109.29691, + -0.0061584 + ], + [ + 109.2969006, + -0.0058365 + ], + [ + 109.2968913, + -0.0056272 + ], + [ + 109.2968953, + -0.005402 + ], + [ + 109.2968899, + -0.0052732 + ], + [ + 109.2968738, + -0.005064 + ], + [ + 109.2968684, + -0.0049741 + ], + [ + 109.2968524, + -0.0047005 + ], + [ + 109.2968389, + -0.0045276 + ], + [ + 109.2968229, + -0.0043747 + ], + [ + 109.296796, + -0.0041547 + ], + [ + 109.2967665, + -0.0040448 + ], + [ + 109.2967357, + -0.0040086 + ], + [ + 109.2966995, + -0.0039938 + ], + [ + 109.2964098, + -0.0039938 + ], + [ + 109.2962408, + -0.0040072 + ], + [ + 109.2958948, + -0.0040367 + ], + [ + 109.2954951, + -0.0040233 + ], + [ + 109.295235, + -0.0040153 + ], + [ + 109.2949399, + -0.0039858 + ], + [ + 109.2947978, + -0.0039348 + ], + [ + 109.2947656, + -0.0038899 + ], + [ + 109.2947549, + -0.00379 + ], + [ + 109.2947334, + -0.0034198 + ], + [ + 109.2946959, + -0.0031435 + ], + [ + 109.294669, + -0.0027144 + ], + [ + 109.2946449, + -0.0024891 + ], + [ + 109.2946127, + -0.0022584 + ], + [ + 109.2945725, + -0.0017863 + ], + [ + 109.2945671, + -0.0016335 + ], + [ + 109.294559, + -0.001435 + ], + [ + 109.2945577, + -0.0013076 + ], + [ + 109.2945671, + -0.0011909 + ], + [ + 109.2945805, + -0.0011158 + ] + ] + }, + "id": "way/573411406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573411585", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2935401, + -0.0091405 + ], + [ + 109.2934081, + -0.0091421 + ], + [ + 109.2931079, + -0.0091469 + ], + [ + 109.2930179, + -0.0091549 + ], + [ + 109.292987, + -0.0091718 + ], + [ + 109.2929576, + -0.0092716 + ], + [ + 109.2929293, + -0.0094289 + ], + [ + 109.2929079, + -0.0095524 + ], + [ + 109.2928544, + -0.0098686 + ], + [ + 109.2928371, + -0.0099792 + ] + ] + }, + "id": "way/573411585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573411638", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2931716, + -0.0072336 + ], + [ + 109.2931107, + -0.0075853 + ], + [ + 109.2930731, + -0.0078588 + ], + [ + 109.2930302, + -0.0081083 + ], + [ + 109.2929953, + -0.0083336 + ] + ] + }, + "id": "way/573411638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573411832", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2922692, + -0.0015828 + ], + [ + 109.2922658, + -0.0014658 + ], + [ + 109.2922658, + -0.0013525 + ], + [ + 109.2922791, + -0.0012556 + ], + [ + 109.292291, + -0.0012156 + ], + [ + 109.292293, + -0.0011317 + ], + [ + 109.2922993, + -0.0010816 + ], + [ + 109.2923386, + -0.0008905 + ] + ] + }, + "id": "way/573411832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437139", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131463, + -0.0611901 + ], + [ + 109.3134341, + -0.0613902 + ] + ] + }, + "id": "way/573437139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437145", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129548, + -0.0614348 + ], + [ + 109.3131463, + -0.0611901 + ], + [ + 109.3132025, + -0.0611121 + ], + [ + 109.313299, + -0.0610075 + ], + [ + 109.3133848, + -0.060915 + ], + [ + 109.3134505, + -0.0608479 + ], + [ + 109.3135256, + -0.0607554 + ], + [ + 109.3135846, + -0.0606742 + ] + ] + }, + "id": "way/573437145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437148", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311894, + -0.0653278 + ], + [ + 109.311577, + -0.0658637 + ] + ] + }, + "id": "way/573437148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437200", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105074, + -0.0576525 + ], + [ + 109.3101836, + -0.0582207 + ] + ] + }, + "id": "way/573437200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437202", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093485, + -0.064586 + ], + [ + 109.3090819, + -0.0644307 + ], + [ + 109.3088311, + -0.0642926 + ], + [ + 109.3085855, + -0.0641693 + ], + [ + 109.3081842, + -0.0639584 + ] + ] + }, + "id": "way/573437202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437205", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309433, + -0.0645018 + ], + [ + 109.3099299, + -0.0647802 + ], + [ + 109.3103248, + -0.0650014 + ], + [ + 109.3108683, + -0.0653103 + ] + ] + }, + "id": "way/573437205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437208", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088139, + -0.0651999 + ], + [ + 109.3093441, + -0.0655753 + ] + ] + }, + "id": "way/573437208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437211", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3078606, + -0.0654435 + ], + [ + 109.3083191, + -0.065726 + ] + ] + }, + "id": "way/573437211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437213", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085855, + -0.0641693 + ], + [ + 109.3084322, + -0.0644357 + ], + [ + 109.3082457, + -0.0647599 + ], + [ + 109.3078606, + -0.0654435 + ], + [ + 109.3077495, + -0.0656317 + ] + ] + }, + "id": "way/573437213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437215", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306773, + -0.0642296 + ], + [ + 109.3067054, + -0.0643522 + ], + [ + 109.3066733, + -0.0644173 + ], + [ + 109.3066364, + -0.0644877 + ], + [ + 109.3065995, + -0.0645299 + ], + [ + 109.3065465, + -0.0645842 + ], + [ + 109.3065324, + -0.064601 + ], + [ + 109.3064996, + -0.0646728 + ], + [ + 109.3064755, + -0.0647304 + ] + ] + }, + "id": "way/573437215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437217", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061847, + -0.063879 + ], + [ + 109.306773, + -0.0642296 + ], + [ + 109.307206, + -0.0644843 + ], + [ + 109.3072134, + -0.0644944 + ], + [ + 109.3072176, + -0.0645198 + ], + [ + 109.3072191, + -0.0645427 + ], + [ + 109.3072124, + -0.0645641 + ], + [ + 109.3070266, + -0.0649101 + ] + ] + }, + "id": "way/573437217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437220", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064151, + -0.063448 + ], + [ + 109.3061847, + -0.063879 + ], + [ + 109.3060443, + -0.0641329 + ], + [ + 109.3058967, + -0.0643341 + ] + ] + }, + "id": "way/573437220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437226", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061751, + -0.0654472 + ], + [ + 109.306002, + -0.0656558 + ], + [ + 109.3058896, + -0.0657721 + ] + ] + }, + "id": "way/573437226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437230", + "highway": "residential", + "name": "Gang Suka Basuki" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3036496, + -0.0635442 + ], + [ + 109.3039716, + -0.0638024 + ], + [ + 109.3046877, + -0.0643381 + ], + [ + 109.3056238, + -0.0650523 + ], + [ + 109.3061751, + -0.0654472 + ], + [ + 109.3061998, + -0.0654298 + ], + [ + 109.3062193, + -0.0654261 + ], + [ + 109.3062451, + -0.0654395 + ], + [ + 109.3068737, + -0.0659187 + ] + ] + }, + "id": "way/573437230" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437232", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3055454, + -0.0629166 + ], + [ + 109.3052253, + -0.0634522 + ], + [ + 109.3050217, + -0.0638064 + ], + [ + 109.3049081, + -0.0640223 + ] + ] + }, + "id": "way/573437232" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437237", + "highway": "residential", + "name": "Gang Hidayah 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067476, + -0.0569904 + ], + [ + 109.3072908, + -0.0564626 + ], + [ + 109.3075745, + -0.0561641 + ], + [ + 109.3078172, + -0.0559147 + ] + ] + }, + "id": "way/573437237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437239", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059345, + -0.0585755 + ], + [ + 109.3068899, + -0.0577728 + ] + ] + }, + "id": "way/573437239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437242", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098094, + -0.055454 + ], + [ + 109.3092841, + -0.0552072 + ], + [ + 109.3092344, + -0.0551824 + ], + [ + 109.3088256, + -0.0549643 + ] + ] + }, + "id": "way/573437242" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437244", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099035, + -0.0551867 + ], + [ + 109.3093736, + -0.054927 + ] + ] + }, + "id": "way/573437244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437250", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131984, + -0.0556801 + ], + [ + 109.3133674, + -0.0554017 + ], + [ + 109.3135317, + -0.0551505 + ] + ] + }, + "id": "way/573437250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437252", + "highway": "residential", + "name": "Gang Usaha Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135631, + -0.0566052 + ], + [ + 109.3128846, + -0.0562412 + ], + [ + 109.3116576, + -0.0554741 + ] + ] + }, + "id": "way/573437252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437256", + "highway": "residential", + "name": "Gang Sejahtera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143301, + -0.0587326 + ], + [ + 109.311013, + -0.0568214 + ], + [ + 109.3105977, + -0.0565321 + ] + ] + }, + "id": "way/573437256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437258", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133909, + -0.0599105 + ], + [ + 109.3123743, + -0.0593191 + ], + [ + 109.3123609, + -0.0593003 + ], + [ + 109.3123649, + -0.0592802 + ], + [ + 109.3123723, + -0.0592621 + ], + [ + 109.3125698, + -0.0588732 + ] + ] + }, + "id": "way/573437258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437261", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138348, + -0.0619837 + ], + [ + 109.3134351, + -0.0617069 + ], + [ + 109.3129548, + -0.0614348 + ], + [ + 109.3123909, + -0.0610641 + ] + ] + }, + "id": "way/573437261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437263", + "highway": "residential", + "name": "Jalur 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128661, + -0.0644375 + ], + [ + 109.3132239, + -0.064595 + ], + [ + 109.3133228, + -0.064652 + ], + [ + 109.3133282, + -0.0646707 + ], + [ + 109.3133298, + -0.0646969 + ], + [ + 109.3133178, + -0.0647224 + ], + [ + 109.3129168, + -0.0654211 + ], + [ + 109.3128195, + -0.0656102 + ], + [ + 109.31273, + -0.0657737 + ] + ] + }, + "id": "way/573437263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437265", + "highway": "residential", + "name": "Gang Mekar Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131383, + -0.066002 + ], + [ + 109.3136973, + -0.0650013 + ], + [ + 109.3137477, + -0.0649152 + ], + [ + 109.3140033, + -0.064479 + ] + ] + }, + "id": "way/573437265" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437269", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123321, + -0.0655652 + ], + [ + 109.311894, + -0.0653278 + ], + [ + 109.3116173, + -0.0651904 + ], + [ + 109.3114699, + -0.0651143 + ], + [ + 109.3111853, + -0.0649616 + ] + ] + }, + "id": "way/573437269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437271", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312783, + -0.0636531 + ], + [ + 109.3123535, + -0.0644327 + ], + [ + 109.3121121, + -0.0648645 + ] + ] + }, + "id": "way/573437271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437274", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3078675, + -0.0619992 + ], + [ + 109.3077669, + -0.0621461 + ], + [ + 109.3076992, + -0.0622581 + ], + [ + 109.3076369, + -0.0623419 + ], + [ + 109.3076174, + -0.0623553 + ], + [ + 109.3075873, + -0.062366 + ], + [ + 109.307549, + -0.0623627 + ], + [ + 109.3075041, + -0.0623466 + ], + [ + 109.3073981, + -0.0622816 + ], + [ + 109.3072586, + -0.0621964 + ], + [ + 109.3072245, + -0.0621689 + ], + [ + 109.307211, + -0.0621508 + ], + [ + 109.3072131, + -0.0621307 + ] + ] + }, + "id": "way/573437274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437279", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307089, + -0.0612303 + ], + [ + 109.3070769, + -0.0612676 + ], + [ + 109.3070521, + -0.0613154 + ], + [ + 109.30726, + -0.0614474 + ], + [ + 109.3074726, + -0.0615728 + ], + [ + 109.3074893, + -0.0615989 + ], + [ + 109.30749, + -0.0616304 + ], + [ + 109.3074531, + -0.0617022 + ], + [ + 109.3073606, + -0.0618832 + ], + [ + 109.3072131, + -0.0621307 + ] + ] + }, + "id": "way/573437279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437282", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3076785, + -0.0602022 + ], + [ + 109.3074558, + -0.0606199 + ], + [ + 109.3073131, + -0.0608493 + ], + [ + 109.307089, + -0.0612303 + ] + ] + }, + "id": "way/573437282" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437284", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3078695, + -0.0609344 + ], + [ + 109.3083121, + -0.0612107 + ], + [ + 109.3081264, + -0.0615574 + ], + [ + 109.3080056, + -0.0617666 + ], + [ + 109.3078675, + -0.0619992 + ], + [ + 109.3081179, + -0.0621438 + ], + [ + 109.3083892, + -0.0623004 + ], + [ + 109.3084204, + -0.0623117 + ], + [ + 109.3084697, + -0.0623036 + ], + [ + 109.3084915, + -0.0622645 + ], + [ + 109.308518, + -0.0622279 + ], + [ + 109.3085542, + -0.0621736 + ], + [ + 109.3086939, + -0.0619489 + ] + ] + }, + "id": "way/573437284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437287", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098291, + -0.0614873 + ], + [ + 109.3095399, + -0.0619383 + ] + ] + }, + "id": "way/573437287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437289", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108245, + -0.0607688 + ], + [ + 109.3102749, + -0.0617512 + ], + [ + 109.3101353, + -0.0619986 + ], + [ + 109.3099784, + -0.0622434 + ], + [ + 109.3099181, + -0.0623352 + ] + ] + }, + "id": "way/573437289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437292", + "highway": "residential", + "name": "Gang Harapan Jaya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109081, + -0.0641751 + ], + [ + 109.3110902, + -0.0638158 + ], + [ + 109.3111164, + -0.0637649 + ], + [ + 109.3112913, + -0.0634242 + ], + [ + 109.3114871, + -0.0630943 + ], + [ + 109.3116184, + -0.0628483 + ] + ] + }, + "id": "way/573437292" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437294", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119796, + -0.0631093 + ], + [ + 109.3118573, + -0.0633491 + ], + [ + 109.3117178, + -0.0636187 + ], + [ + 109.3113259, + -0.0643579 + ], + [ + 109.3113121, + -0.0643747 + ], + [ + 109.3112903, + -0.06438 + ], + [ + 109.3112092, + -0.0643539 + ], + [ + 109.3111284, + -0.0643127 + ], + [ + 109.3110476, + -0.064262 + ], + [ + 109.3109081, + -0.0641751 + ], + [ + 109.3106985, + -0.0640598 + ], + [ + 109.3101386, + -0.0637147 + ] + ] + }, + "id": "way/573437294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437297", + "highway": "residential", + "name": "Gang Harapan Jaya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116184, + -0.0628483 + ], + [ + 109.3118486, + -0.0625571 + ], + [ + 109.3119036, + -0.0625048 + ], + [ + 109.3119297, + -0.0624975 + ], + [ + 109.3119646, + -0.0625028 + ], + [ + 109.3128651, + -0.063111 + ] + ] + }, + "id": "way/573437297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437300", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117428, + -0.0612849 + ], + [ + 109.3113357, + -0.0610409 + ], + [ + 109.3112102, + -0.0612565 + ], + [ + 109.3111616, + -0.0613372 + ], + [ + 109.3110681, + -0.0615111 + ], + [ + 109.3109259, + -0.0617833 + ] + ] + }, + "id": "way/573437300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437303", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116373, + -0.0595274 + ], + [ + 109.3114201, + -0.0598783 + ] + ] + }, + "id": "way/573437303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437305", + "highway": "residential", + "name": "Gang Sederhana 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080541, + -0.0591355 + ], + [ + 109.3086306, + -0.0594786 + ], + [ + 109.3087392, + -0.0595319 + ], + [ + 109.3087604, + -0.0595343 + ], + [ + 109.3087785, + -0.0595306 + ], + [ + 109.3087955, + -0.0595172 + ], + [ + 109.3088144, + -0.059484 + ], + [ + 109.308923, + -0.0592614 + ], + [ + 109.309261, + -0.0586901 + ], + [ + 109.309273, + -0.0586676 + ], + [ + 109.3092898, + -0.0586539 + ], + [ + 109.3093146, + -0.0586499 + ], + [ + 109.3094111, + -0.0586927 + ], + [ + 109.3098013, + -0.0589261 + ], + [ + 109.3103123, + -0.0592318 + ], + [ + 109.310787, + -0.0595479 + ], + [ + 109.3108196, + -0.0595805 + ], + [ + 109.310824, + -0.0596034 + ], + [ + 109.3108142, + -0.0596315 + ], + [ + 109.3100659, + -0.0608886 + ] + ] + }, + "id": "way/573437305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573437308", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309007, + -0.0602732 + ], + [ + 109.3094937, + -0.0594478 + ], + [ + 109.3098013, + -0.0589261 + ] + ] + }, + "id": "way/573437308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573458707", + "highway": "residential", + "name": "Gang Apel 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220846, + -0.01472 + ], + [ + 109.3220007, + -0.0148272 + ], + [ + 109.3218452, + -0.0150177 + ], + [ + 109.3217539, + -0.0151284 + ], + [ + 109.3216749, + -0.0152242 + ], + [ + 109.3214884, + -0.0154629 + ], + [ + 109.3213865, + -0.0155957 + ], + [ + 109.3211934, + -0.0158411 + ], + [ + 109.3210995, + -0.0159819 + ], + [ + 109.3209788, + -0.0161308 + ], + [ + 109.3209292, + -0.0161831 + ] + ] + }, + "id": "way/573458707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573458708", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142547, + -0.0166013 + ], + [ + 109.3145335, + -0.0174531 + ], + [ + 109.3146756, + -0.0178689 + ], + [ + 109.3149009, + -0.0185636 + ], + [ + 109.3151195, + -0.0192127 + ], + [ + 109.3151893, + -0.019438 + ], + [ + 109.315326, + -0.0198403 + ], + [ + 109.3154387, + -0.0201447 + ], + [ + 109.3155473, + -0.0204908 + ], + [ + 109.3155876, + -0.0206637 + ], + [ + 109.3157455, + -0.0212669 + ] + ] + }, + "id": "way/573458708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573469533", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2858907, + -0.0118132 + ], + [ + 109.2859673, + -0.0118209 + ], + [ + 109.2861366, + -0.0118246 + ], + [ + 109.2865211, + -0.0118209 + ], + [ + 109.2868896, + -0.0118069 + ], + [ + 109.2873908, + -0.0118004 + ], + [ + 109.2877472, + -0.0117907 + ], + [ + 109.2878439, + -0.0117888 + ] + ] + }, + "id": "way/573469533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573469540", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2860876, + -0.0113284 + ], + [ + 109.2862484, + -0.0113362 + ], + [ + 109.2864159, + -0.0113483 + ], + [ + 109.2866929, + -0.0113564 + ], + [ + 109.2869354, + -0.0113642 + ], + [ + 109.2873201, + -0.0113823 + ], + [ + 109.2876156, + -0.0113943 + ], + [ + 109.2878279, + -0.0114047 + ], + [ + 109.288076, + -0.0114134 + ], + [ + 109.2884705, + -0.0114413 + ], + [ + 109.2886895, + -0.0114535 + ], + [ + 109.2889228, + -0.0114641 + ], + [ + 109.2891185, + -0.0114743 + ], + [ + 109.2892104, + -0.0114773 + ] + ] + }, + "id": "way/573469540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573477336", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103792, + 0.0163543 + ], + [ + 109.3105021, + 0.0162917 + ] + ] + }, + "id": "way/573477336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573477337", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075698, + 0.017016 + ], + [ + 109.3076193, + 0.0170099 + ], + [ + 109.3078931, + 0.0169603 + ], + [ + 109.3081182, + 0.0168619 + ], + [ + 109.3081498, + 0.016855 + ], + [ + 109.3081858, + 0.0168458 + ], + [ + 109.30859, + 0.0167811 + ], + [ + 109.3086691, + 0.0167634 + ], + [ + 109.3093346, + 0.0166024 + ], + [ + 109.3097029, + 0.0165146 + ], + [ + 109.3101015, + 0.0164177 + ], + [ + 109.3103792, + 0.0163543 + ] + ] + }, + "id": "way/573477337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573477350", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030458, + 0.0157542 + ], + [ + 109.3034244, + 0.0155809 + ], + [ + 109.3040138, + 0.015345 + ], + [ + 109.3049419, + 0.0149802 + ], + [ + 109.3059356, + 0.0145651 + ], + [ + 109.3061677, + 0.0144464 + ], + [ + 109.306456, + 0.0142922 + ], + [ + 109.3067953, + 0.0141084 + ], + [ + 109.3073747, + 0.013808 + ], + [ + 109.3073006, + 0.0135136 + ], + [ + 109.3072999, + 0.0135066 + ], + [ + 109.3073039, + 0.0134992 + ], + [ + 109.3077126, + 0.0133306 + ], + [ + 109.3081896, + 0.0130896 + ], + [ + 109.3085228, + 0.0129256 + ], + [ + 109.308579, + 0.0129021 + ], + [ + 109.3086783, + 0.0128695 + ] + ] + }, + "id": "way/573477350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573518936", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2908965, + -0.0114651 + ], + [ + 109.2901281, + -0.0114102 + ], + [ + 109.2898145, + -0.0113888 + ], + [ + 109.2894702, + -0.0113628 + ], + [ + 109.2893848, + -0.0113563 + ], + [ + 109.2893607, + -0.0113559 + ], + [ + 109.2893422, + -0.0113606 + ], + [ + 109.2893331, + -0.0113662 + ], + [ + 109.2893228, + -0.0113744 + ], + [ + 109.2893155, + -0.0113848 + ], + [ + 109.2893094, + -0.0113964 + ], + [ + 109.2893034, + -0.0114141 + ], + [ + 109.289303, + -0.0114378 + ], + [ + 109.28929, + -0.0114598 + ] + ] + }, + "id": "way/573518936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573518937", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2899647, + -0.0116492 + ], + [ + 109.2897284, + -0.0116324 + ], + [ + 109.2895824, + -0.011622 + ], + [ + 109.2892732, + -0.0116084 + ] + ] + }, + "id": "way/573518937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573518938", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2908687, + -0.0117355 + ], + [ + 109.2904134, + -0.0116964 + ], + [ + 109.2901221, + -0.0116658 + ], + [ + 109.2899647, + -0.0116492 + ] + ] + }, + "id": "way/573518938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573518939", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2899647, + -0.0116492 + ], + [ + 109.29, + -0.0118173 + ], + [ + 109.2900577, + -0.0120508 + ], + [ + 109.2901327, + -0.0123439 + ] + ] + }, + "id": "way/573518939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573518940", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891309, + -0.012886 + ], + [ + 109.2892015, + -0.0128378 + ], + [ + 109.2894446, + -0.0126872 + ], + [ + 109.2897901, + -0.0125119 + ], + [ + 109.2901327, + -0.0123439 + ] + ] + }, + "id": "way/573518940" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573518941", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2909355, + -0.0110823 + ], + [ + 109.2905977, + -0.0110552 + ], + [ + 109.2899615, + -0.0110254 + ] + ] + }, + "id": "way/573518941" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532559", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588124, + -0.0493918 + ], + [ + 109.3591341, + -0.0489491 + ], + [ + 109.3595198, + -0.0484862 + ] + ] + }, + "id": "way/573532559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532561", + "highway": "residential", + "name": "Gang Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580846, + -0.0503803 + ], + [ + 109.3588124, + -0.0493918 + ] + ] + }, + "id": "way/573532561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532563", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3598471, + -0.0475665 + ], + [ + 109.3597146, + -0.0477208 + ], + [ + 109.3593632, + -0.0481682 + ], + [ + 109.3591823, + -0.0483906 + ] + ] + }, + "id": "way/573532563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532565", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586344, + -0.0537648 + ], + [ + 109.359059, + -0.0533054 + ] + ] + }, + "id": "way/573532565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532567", + "highway": "residential", + "name": "Gang Amalia Sagita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568393, + -0.0519691 + ], + [ + 109.3584862, + -0.0533934 + ], + [ + 109.3584929, + -0.0534055 + ], + [ + 109.3584949, + -0.0534242 + ], + [ + 109.3584386, + -0.0535208 + ], + [ + 109.3584386, + -0.0535422 + ], + [ + 109.3584506, + -0.0535771 + ], + [ + 109.3586344, + -0.0537648 + ], + [ + 109.3589943, + -0.0541623 + ] + ] + }, + "id": "way/573532567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532570", + "highway": "residential", + "name": "Gang Nusa Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619898, + -0.0541513 + ], + [ + 109.3621635, + -0.0540572 + ], + [ + 109.3624337, + -0.0539157 + ], + [ + 109.3626342, + -0.0537991 + ], + [ + 109.3627623, + -0.0537139 + ], + [ + 109.3628521, + -0.0536469 + ], + [ + 109.3630888, + -0.0534953 + ], + [ + 109.3634, + -0.0533183 + ], + [ + 109.3636608, + -0.0531761 + ], + [ + 109.363807, + -0.0530963 + ] + ] + }, + "id": "way/573532570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532571", + "highway": "living_street", + "name": "Gang Teratai Tengah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3607932, + -0.0526792 + ], + [ + 109.3622915, + -0.0514085 + ], + [ + 109.3623021, + -0.0513924 + ], + [ + 109.3623506, + -0.0513187 + ], + [ + 109.3623358, + -0.0512409 + ], + [ + 109.3627113, + -0.0509807 + ] + ] + }, + "id": "way/573532571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532573", + "highway": "living_street", + "name": "Gang Haka Raya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601745, + -0.0521327 + ], + [ + 109.3611292, + -0.0512156 + ], + [ + 109.3616277, + -0.0507098 + ] + ] + }, + "id": "way/573532573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532575", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612238, + -0.0515437 + ], + [ + 109.3612404, + -0.051528 + ], + [ + 109.3618058, + -0.0509958 + ] + ] + }, + "id": "way/573532575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532577", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588732, + -0.0510634 + ], + [ + 109.3590942, + -0.0507864 + ], + [ + 109.3591024, + -0.0507843 + ], + [ + 109.3591114, + -0.0507844 + ], + [ + 109.3591187, + -0.050788 + ], + [ + 109.3591565, + -0.0508121 + ], + [ + 109.3591671, + -0.0508143 + ], + [ + 109.359179, + -0.0508121 + ], + [ + 109.3591872, + -0.0508071 + ], + [ + 109.3591993, + -0.0507977 + ], + [ + 109.3599806, + -0.0499992 + ], + [ + 109.3604153, + -0.0495297 + ], + [ + 109.3606487, + -0.0492293 + ], + [ + 109.3607935, + -0.0490677 + ], + [ + 109.3609133, + -0.0489539 + ], + [ + 109.3610497, + -0.0488283 + ], + [ + 109.361047, + -0.0488254 + ] + ] + }, + "id": "way/573532577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573532579", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593698, + -0.0514833 + ], + [ + 109.3602465, + -0.0503571 + ], + [ + 109.3609571, + -0.0495699 + ], + [ + 109.3611945, + -0.0493191 + ] + ] + }, + "id": "way/573532579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573538801", + "highway": "residential", + "name": "Gang Haji Masyur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575502, + -0.049917 + ], + [ + 109.3580772, + -0.0492548 + ], + [ + 109.3586907, + -0.0484839 + ], + [ + 109.3589911, + -0.0480846 + ] + ] + }, + "id": "way/573538801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573543451", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2878514, + -0.0134234 + ], + [ + 109.2878327, + -0.0132841 + ], + [ + 109.2878122, + -0.0131029 + ], + [ + 109.2878146, + -0.0130858 + ], + [ + 109.2878281, + -0.0130711 + ], + [ + 109.2890082, + -0.0129671 + ] + ] + }, + "id": "way/573543451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573543452", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2859877, + -0.0134364 + ], + [ + 109.2860114, + -0.0135227 + ], + [ + 109.2860305, + -0.0135986 + ], + [ + 109.2861603, + -0.0135813 + ], + [ + 109.2878514, + -0.0134234 + ], + [ + 109.2887389, + -0.013335 + ] + ] + }, + "id": "way/573543452" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573543477", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2896966, + -0.0173539 + ], + [ + 109.2897269, + -0.0174904 + ], + [ + 109.2897478, + -0.0175803 + ], + [ + 109.289784, + -0.0177769 + ], + [ + 109.2898232, + -0.0179631 + ], + [ + 109.289861, + -0.0181323 + ], + [ + 109.2898967, + -0.0182674 + ], + [ + 109.2899419, + -0.0184833 + ], + [ + 109.2899876, + -0.0187063 + ], + [ + 109.2900218, + -0.0188954 + ], + [ + 109.2900491, + -0.0190369 + ], + [ + 109.2900764, + -0.0192062 + ], + [ + 109.2901132, + -0.0194083 + ], + [ + 109.2901406, + -0.019565 + ], + [ + 109.2901504, + -0.0196212 + ], + [ + 109.2901742, + -0.0197434 + ], + [ + 109.2902039, + -0.0198591 + ], + [ + 109.2902625, + -0.0200906 + ], + [ + 109.290285, + -0.0201749 + ] + ] + }, + "id": "way/573543477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544104", + "highway": "residential", + "name": "Jalan Tanjung Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364264, + -0.0475495 + ], + [ + 109.364256, + -0.0475409 + ], + [ + 109.3640551, + -0.0473243 + ], + [ + 109.3638311, + -0.0470801 + ], + [ + 109.3636226, + -0.0468649 + ], + [ + 109.3634046, + -0.0466161 + ], + [ + 109.3632715, + -0.0464447 + ], + [ + 109.3632507, + -0.0464179 + ], + [ + 109.3630955, + -0.046218 + ], + [ + 109.3628854, + -0.0459341 + ], + [ + 109.3627942, + -0.0458412 + ], + [ + 109.362632, + -0.0456559 + ], + [ + 109.3624841, + -0.0454976 + ], + [ + 109.3624774, + -0.0454901 + ], + [ + 109.3623915, + -0.045381 + ], + [ + 109.3623075, + -0.0452789 + ], + [ + 109.3621136, + -0.0450678 + ], + [ + 109.3619889, + -0.0449183 + ], + [ + 109.3619643, + -0.0448888 + ], + [ + 109.3618231, + -0.0447285 + ], + [ + 109.3616566, + -0.044533 + ], + [ + 109.361543, + -0.0444159 + ], + [ + 109.3613601, + -0.0441984 + ], + [ + 109.3612301, + -0.044047 + ], + [ + 109.3611751, + -0.0439878 + ], + [ + 109.3610229, + -0.0438454 + ], + [ + 109.3610063, + -0.0438268 + ], + [ + 109.3608131, + -0.0436096 + ], + [ + 109.3604375, + -0.0431477 + ], + [ + 109.3604312, + -0.0431393 + ] + ] + }, + "id": "way/573544104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544105", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalan Tanjung Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643686, + -0.0476561 + ], + [ + 109.364264, + -0.0475495 + ] + ] + }, + "id": "way/573544105" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544112", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3676339, + -0.0475113 + ], + [ + 109.3679171, + -0.0473195 + ] + ] + }, + "id": "way/573544112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544113", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3673837, + -0.0480075 + ], + [ + 109.368083, + -0.0475502 + ] + ] + }, + "id": "way/573544113" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544114", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3672952, + -0.0465135 + ], + [ + 109.3674186, + -0.046419 + ], + [ + 109.3675138, + -0.0463586 + ], + [ + 109.3676218, + -0.0462882 + ], + [ + 109.3679021, + -0.046136 + ], + [ + 109.3682072, + -0.0459838 + ], + [ + 109.3688267, + -0.045678 + ] + ] + }, + "id": "way/573544114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544115", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3672442, + -0.0453562 + ], + [ + 109.3669036, + -0.0455258 + ], + [ + 109.366584, + -0.0456973 + ] + ] + }, + "id": "way/573544115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544116", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3679171, + -0.0473195 + ], + [ + 109.3679943, + -0.0472672 + ], + [ + 109.368119, + -0.0471904 + ], + [ + 109.3683996, + -0.0470228 + ], + [ + 109.3687946, + -0.0467858 + ], + [ + 109.3693846, + -0.0464264 + ] + ] + }, + "id": "way/573544116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544118", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3658254, + -0.0462185 + ], + [ + 109.3661901, + -0.0459677 + ], + [ + 109.3663947, + -0.0458349 + ], + [ + 109.3665907, + -0.045705 + ] + ] + }, + "id": "way/573544118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544119", + "alt_name": "Gang Jaya Mandiri", + "highway": "residential", + "name": "Gang Al Falah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3668513, + -0.0477339 + ], + [ + 109.3677803, + -0.0471391 + ] + ] + }, + "id": "way/573544119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544120", + "highway": "residential", + "name": "Gang Mitra Bersama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.366416, + -0.0497744 + ], + [ + 109.3671048, + -0.0492346 + ] + ] + }, + "id": "way/573544120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544121", + "alt_name": "Gang Jaya Mandiri", + "highway": "residential", + "name": "Gang Al Falah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3668513, + -0.0477339 + ], + [ + 109.3664047, + -0.0480679 + ], + [ + 109.3660641, + -0.0483347 + ], + [ + 109.365742, + -0.0486248 + ], + [ + 109.3654992, + -0.0488436 + ] + ] + }, + "id": "way/573544121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544122", + "highway": "residential", + "name": "Gang Ismail" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3655236, + -0.0481698 + ], + [ + 109.3651375, + -0.0484873 + ] + ] + }, + "id": "way/573544122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544123", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363988, + -0.0490455 + ], + [ + 109.3641825, + -0.0489074 + ], + [ + 109.3642952, + -0.0488363 + ], + [ + 109.3643005, + -0.0487974 + ], + [ + 109.3646787, + -0.0485675 + ], + [ + 109.3649952, + -0.0483328 + ] + ] + }, + "id": "way/573544123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544124", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3659179, + -0.0475207 + ], + [ + 109.3655679, + -0.0477379 + ], + [ + 109.3654036, + -0.0478298 + ], + [ + 109.3652668, + -0.0479093 + ], + [ + 109.3651551, + -0.0479837 + ], + [ + 109.3650596, + -0.0480484 + ], + [ + 109.364875, + -0.0481938 + ] + ] + }, + "id": "way/573544124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544125", + "highway": "residential", + "name": "Gang Baitussalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636596, + -0.0486347 + ], + [ + 109.3645772, + -0.0478681 + ] + ] + }, + "id": "way/573544125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544126", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643622, + -0.0491656 + ], + [ + 109.3644531, + -0.0490817 + ], + [ + 109.3644812, + -0.0490549 + ], + [ + 109.3644963, + -0.0490385 + ], + [ + 109.3645107, + -0.0490177 + ], + [ + 109.3645627, + -0.0489698 + ], + [ + 109.3646931, + -0.0488603 + ], + [ + 109.3648634, + -0.0487049 + ], + [ + 109.3650234, + -0.0485547 + ], + [ + 109.3651188, + -0.0484673 + ] + ] + }, + "id": "way/573544126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544127", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646682, + -0.0499153 + ], + [ + 109.364491, + -0.0496832 + ], + [ + 109.3644842, + -0.0496598 + ], + [ + 109.3644943, + -0.0496443 + ], + [ + 109.364995, + -0.049232 + ], + [ + 109.3654839, + -0.0488294 + ] + ] + }, + "id": "way/573544127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544128", + "highway": "residential", + "name": "Gang Bunga Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632486, + -0.0444911 + ], + [ + 109.3631834, + -0.044412 + ], + [ + 109.3631773, + -0.0443912 + ], + [ + 109.36318, + -0.0443771 + ], + [ + 109.3635361, + -0.0439627 + ] + ] + }, + "id": "way/573544128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544129", + "highway": "residential", + "name": "Gang Amal" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361543, + -0.0444159 + ], + [ + 109.3619499, + -0.0440027 + ], + [ + 109.3620387, + -0.0439212 + ], + [ + 109.3621091, + -0.0438508 + ] + ] + }, + "id": "way/573544129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544130", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600586, + -0.0445582 + ], + [ + 109.360104, + -0.044513 + ], + [ + 109.360131, + -0.0444898 + ], + [ + 109.3601477, + -0.0444781 + ], + [ + 109.3601607, + -0.0444744 + ], + [ + 109.360171, + -0.0444742 + ], + [ + 109.3601818, + -0.0444755 + ], + [ + 109.3601993, + -0.0444803 + ], + [ + 109.3602222, + -0.0444896 + ], + [ + 109.3603034, + -0.0445235 + ], + [ + 109.3603287, + -0.0445316 + ], + [ + 109.3603352, + -0.0445324 + ], + [ + 109.3603397, + -0.0445312 + ], + [ + 109.3603438, + -0.0445281 + ], + [ + 109.3603471, + -0.0445223 + ], + [ + 109.3603635, + -0.0444819 + ], + [ + 109.3603773, + -0.0444576 + ], + [ + 109.3603932, + -0.0444392 + ], + [ + 109.3610063, + -0.0438268 + ] + ] + }, + "id": "way/573544130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544131", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601484, + -0.0450802 + ], + [ + 109.3612301, + -0.044047 + ] + ] + }, + "id": "way/573544131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544132", + "highway": "residential", + "name": "Gang Nur Ilahi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623921, + -0.0441371 + ], + [ + 109.3620927, + -0.0444415 + ], + [ + 109.3618231, + -0.0447285 + ] + ] + }, + "id": "way/573544132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544133", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3613199, + -0.0452894 + ], + [ + 109.3618231, + -0.0447285 + ] + ] + }, + "id": "way/573544133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544134", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3617155, + -0.0465631 + ], + [ + 109.3617725, + -0.0464988 + ], + [ + 109.3618838, + -0.0463734 + ], + [ + 109.3619549, + -0.0463013 + ], + [ + 109.3620324, + -0.0462242 + ], + [ + 109.3621256, + -0.0461236 + ], + [ + 109.3621886, + -0.0460579 + ], + [ + 109.3624525, + -0.0458215 + ], + [ + 109.362632, + -0.0456559 + ] + ] + }, + "id": "way/573544134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544135", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630955, + -0.046218 + ], + [ + 109.3634462, + -0.0459127 + ] + ] + }, + "id": "way/573544135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544136", + "highway": "residential", + "name": "Gang Busrah Saleh" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638808, + -0.0461796 + ], + [ + 109.3634046, + -0.0466161 + ] + ] + }, + "id": "way/573544136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573544137", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642724, + -0.0459583 + ], + [ + 109.3649422, + -0.0452951 + ], + [ + 109.3650425, + -0.0451976 + ], + [ + 109.3651823, + -0.045048 + ], + [ + 109.3653184, + -0.0449015 + ], + [ + 109.3654975, + -0.0447171 + ], + [ + 109.3655414, + -0.0446755 + ], + [ + 109.3656235, + -0.0446088 + ] + ] + }, + "id": "way/573544137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573567547", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472075, + -0.0138838 + ], + [ + 109.3472376, + -0.01381 + ], + [ + 109.3472564, + -0.0137718 + ], + [ + 109.347284, + -0.0137175 + ], + [ + 109.3473315, + -0.0136229 + ], + [ + 109.3473724, + -0.0135553 + ], + [ + 109.3474529, + -0.0134406 + ], + [ + 109.3474717, + -0.0134131 + ], + [ + 109.3475132, + -0.0133768 + ], + [ + 109.3475696, + -0.0133393 + ], + [ + 109.3476299, + -0.0132944 + ], + [ + 109.3477137, + -0.0132032 + ], + [ + 109.3477325, + -0.0131985 + ], + [ + 109.3477473, + -0.0132045 + ], + [ + 109.3478016, + -0.0132535 + ], + [ + 109.347923, + -0.0133775 + ], + [ + 109.3480564, + -0.0135398 + ], + [ + 109.3481731, + -0.0136793 + ], + [ + 109.3483608, + -0.0139039 + ], + [ + 109.3484131, + -0.0139716 + ], + [ + 109.348454, + -0.0140159 + ], + [ + 109.3485264, + -0.0140695 + ], + [ + 109.3485741, + -0.0140977 + ], + [ + 109.3486411, + -0.0141326 + ], + [ + 109.3487658, + -0.0141889 + ], + [ + 109.3489328, + -0.0142512 + ], + [ + 109.3490723, + -0.0143015 + ], + [ + 109.3490964, + -0.0143128 + ] + ] + }, + "id": "way/573567547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573567548", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475588, + -0.0140803 + ], + [ + 109.3477821, + -0.0137477 + ] + ] + }, + "id": "way/573567548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573567549", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483171, + -0.0163899 + ], + [ + 109.3487444, + -0.0165828 + ] + ] + }, + "id": "way/573567549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573567551", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348941, + -0.0146474 + ], + [ + 109.3484524, + -0.0144042 + ], + [ + 109.3483427, + -0.0143203 + ], + [ + 109.3482475, + -0.0142331 + ], + [ + 109.3480517, + -0.0140145 + ] + ] + }, + "id": "way/573567551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573567553", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486605, + -0.0155952 + ], + [ + 109.348745, + -0.0156292 + ], + [ + 109.3488389, + -0.0156534 + ], + [ + 109.3489469, + -0.0156876 + ], + [ + 109.3491387, + -0.0157607 + ], + [ + 109.3492366, + -0.0158063 + ], + [ + 109.3493527, + -0.0158657 + ] + ] + }, + "id": "way/573567553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573567554", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484668, + -0.0148286 + ], + [ + 109.3484459, + -0.0148729 + ], + [ + 109.3483474, + -0.0150827 + ], + [ + 109.3483152, + -0.0151712 + ], + [ + 109.3482602, + -0.0153067 + ], + [ + 109.3481965, + -0.0154569 + ], + [ + 109.3481382, + -0.0156205 + ], + [ + 109.3480846, + -0.0157379 + ], + [ + 109.3480061, + -0.0159075 + ], + [ + 109.3478505, + -0.0162582 + ], + [ + 109.3476923, + -0.0166243 + ], + [ + 109.3473874, + -0.0172922 + ] + ] + }, + "id": "way/573567554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573567555", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478546, + -0.014323 + ], + [ + 109.3477795, + -0.0144859 + ], + [ + 109.3477077, + -0.0146482 + ], + [ + 109.3476514, + -0.0147689 + ], + [ + 109.347585, + -0.0149225 + ], + [ + 109.3475213, + -0.0150754 + ], + [ + 109.3474589, + -0.0152316 + ], + [ + 109.3474093, + -0.015363 + ], + [ + 109.3473736, + -0.015464 + ], + [ + 109.3473309, + -0.0155877 + ], + [ + 109.3473, + -0.0156882 + ], + [ + 109.3472556, + -0.0157866 + ], + [ + 109.3471076, + -0.0161067 + ], + [ + 109.3469659, + -0.0164085 + ], + [ + 109.3467893, + -0.0168283 + ] + ] + }, + "id": "way/573567555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573567556", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477059, + -0.0141832 + ], + [ + 109.3473959, + -0.0149292 + ], + [ + 109.3473295, + -0.0150787 + ], + [ + 109.3472832, + -0.0151692 + ], + [ + 109.3472034, + -0.0153409 + ], + [ + 109.3470463, + -0.0157118 + ] + ] + }, + "id": "way/573567556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573567557", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347526, + -0.0140588 + ], + [ + 109.3474938, + -0.0141272 + ], + [ + 109.3474328, + -0.0142586 + ], + [ + 109.3473651, + -0.0144095 + ], + [ + 109.3472772, + -0.0145986 + ], + [ + 109.3471994, + -0.014783 + ], + [ + 109.3471116, + -0.0149895 + ], + [ + 109.3470465, + -0.0151411 + ], + [ + 109.3469574, + -0.0153516 + ], + [ + 109.3468028, + -0.0157042 + ] + ] + }, + "id": "way/573567557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573624152", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621373, + -0.0511205 + ], + [ + 109.3621648, + -0.0511542 + ], + [ + 109.3621681, + -0.0511553 + ], + [ + 109.362174, + -0.0511538 + ], + [ + 109.3622835, + -0.0510793 + ], + [ + 109.3624924, + -0.0509237 + ] + ] + }, + "id": "way/573624152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573624153", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361387, + -0.0516808 + ], + [ + 109.3614339, + -0.0517217 + ], + [ + 109.3614634, + -0.0517264 + ], + [ + 109.3615016, + -0.0517157 + ], + [ + 109.3615358, + -0.0516962 + ], + [ + 109.3621373, + -0.0511205 + ], + [ + 109.362089, + -0.0510568 + ], + [ + 109.3620877, + -0.0510451 + ], + [ + 109.3620927, + -0.051034 + ], + [ + 109.3624552, + -0.0507393 + ] + ] + }, + "id": "way/573624153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573624206", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619868, + -0.0519537 + ], + [ + 109.3621762, + -0.0521924 + ], + [ + 109.3621883, + -0.0522005 + ], + [ + 109.3622064, + -0.0521951 + ], + [ + 109.3626644, + -0.0519007 + ], + [ + 109.3631271, + -0.0515842 + ] + ] + }, + "id": "way/573624206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573624331", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36102, + -0.0510839 + ], + [ + 109.3611169, + -0.0509752 + ], + [ + 109.3611233, + -0.0509707 + ], + [ + 109.3611308, + -0.0509688 + ], + [ + 109.3611382, + -0.0509714 + ], + [ + 109.3611788, + -0.0510017 + ], + [ + 109.3611858, + -0.051003 + ], + [ + 109.3611932, + -0.0510005 + ], + [ + 109.3619301, + -0.0502237 + ] + ] + }, + "id": "way/573624331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573646657", + "highway": "residential", + "name": "Gang Annajah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3674196, + -0.0508157 + ], + [ + 109.3673287, + -0.0508855 + ], + [ + 109.367137, + -0.0510277 + ], + [ + 109.3669103, + -0.051196 + ], + [ + 109.3667806, + -0.0512962 + ] + ] + }, + "id": "way/573646657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573646658", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.367902, + -0.0514222 + ], + [ + 109.3677223, + -0.0515554 + ], + [ + 109.3675145, + -0.0517023 + ], + [ + 109.3671866, + -0.0519356 + ], + [ + 109.3669123, + -0.0521247 + ], + [ + 109.3666528, + -0.0523098 + ] + ] + }, + "id": "way/573646658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573646659", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681282, + -0.0517684 + ], + [ + 109.3680217, + -0.0518394 + ], + [ + 109.3679104, + -0.0519175 + ], + [ + 109.3677237, + -0.0520516 + ], + [ + 109.3677057, + -0.0520646 + ], + [ + 109.3673566, + -0.0523168 + ] + ] + }, + "id": "way/573646659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573646660", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688034, + -0.0528797 + ], + [ + 109.3685941, + -0.0530185 + ], + [ + 109.3684043, + -0.0531432 + ], + [ + 109.3682762, + -0.0532278 + ], + [ + 109.3681596, + -0.0533089 + ], + [ + 109.3680167, + -0.0533853 + ] + ] + }, + "id": "way/573646660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573646661", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3684816, + -0.0546046 + ], + [ + 109.3686424, + -0.0545088 + ], + [ + 109.368751, + -0.0544395 + ], + [ + 109.368863, + -0.0543663 + ], + [ + 109.3689451, + -0.0543157 + ], + [ + 109.369042, + -0.0542483 + ], + [ + 109.3691929, + -0.0541351 + ], + [ + 109.3693216, + -0.0540452 + ], + [ + 109.3694249, + -0.0539741 + ], + [ + 109.3695174, + -0.0539064 + ], + [ + 109.3706815, + -0.0530494 + ], + [ + 109.3709879, + -0.0528207 + ], + [ + 109.3712803, + -0.0525995 + ], + [ + 109.3716142, + -0.052348 + ], + [ + 109.3717591, + -0.052242 + ], + [ + 109.3718996, + -0.0521322 + ] + ] + }, + "id": "way/573646661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573646662", + "highway": "residential", + "name": "Gang Dusun Maya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683634, + -0.0544294 + ], + [ + 109.3684847, + -0.0543522 + ], + [ + 109.3686162, + -0.054259 + ], + [ + 109.3687651, + -0.0541598 + ], + [ + 109.3690011, + -0.0539801 + ], + [ + 109.3691935, + -0.0538306 + ], + [ + 109.3693015, + -0.0537474 + ], + [ + 109.3693659, + -0.0537012 + ] + ] + }, + "id": "way/573646662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654317", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364672, + -0.0025561 + ], + [ + 109.3638061, + -0.0025397 + ] + ] + }, + "id": "way/573654317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646961, + -0.005689 + ], + [ + 109.3646627, + -0.0056835 + ] + ] + }, + "id": "way/573654319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642009, + -0.0060167 + ], + [ + 109.3641396, + -0.0060122 + ], + [ + 109.3640814, + -0.0060099 + ] + ] + }, + "id": "way/573654321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654322", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646099, + -0.0063687 + ], + [ + 109.3642717, + -0.0063589 + ] + ] + }, + "id": "way/573654322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654323", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364537, + -0.0073279 + ], + [ + 109.3640209, + -0.0073044 + ] + ] + }, + "id": "way/573654323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654324", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3644524, + -0.0080884 + ], + [ + 109.3642697, + -0.0081083 + ], + [ + 109.3641141, + -0.0081237 + ], + [ + 109.363811, + -0.0081304 + ], + [ + 109.3634449, + -0.0081264 + ] + ] + }, + "id": "way/573654324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654325", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364289, + -0.009618 + ], + [ + 109.3640645, + -0.0096372 + ], + [ + 109.3638747, + -0.0096258 + ] + ] + }, + "id": "way/573654325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654326", + "highway": "residential", + "motorcar": "no", + "name": "Gang Nasional II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643341, + -0.0092597 + ], + [ + 109.3641624, + -0.0092402 + ], + [ + 109.3638352, + -0.0092375 + ], + [ + 109.3633908, + -0.0092313 + ] + ] + }, + "id": "way/573654326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654327", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639224, + -0.0085349 + ], + [ + 109.3644231, + -0.0085097 + ] + ] + }, + "id": "way/573654327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654328", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648127, + -0.004681 + ], + [ + 109.3648303, + -0.0047783 + ], + [ + 109.3648349, + -0.0048347 + ], + [ + 109.3648356, + -0.0048709 + ], + [ + 109.3647954, + -0.0050506 + ], + [ + 109.364735, + -0.0052907 + ], + [ + 109.3647169, + -0.0054074 + ], + [ + 109.3646713, + -0.0056307 + ], + [ + 109.3646627, + -0.0056835 + ], + [ + 109.3646304, + -0.005866 + ], + [ + 109.3646286, + -0.0059386 + ], + [ + 109.3646331, + -0.0060095 + ], + [ + 109.3646338, + -0.0060282 + ], + [ + 109.3646347, + -0.0060522 + ], + [ + 109.3646412, + -0.0061201 + ], + [ + 109.3646398, + -0.0061946 + ], + [ + 109.3646304, + -0.0062784 + ], + [ + 109.3646099, + -0.0063687 + ], + [ + 109.3645996, + -0.006511 + ], + [ + 109.3645902, + -0.0067618 + ], + [ + 109.3645795, + -0.0068986 + ], + [ + 109.364562, + -0.007081 + ], + [ + 109.364537, + -0.0073279 + ], + [ + 109.364499, + -0.0076685 + ], + [ + 109.3644524, + -0.0080884 + ], + [ + 109.36444, + -0.0082545 + ], + [ + 109.3644231, + -0.0085097 + ], + [ + 109.3644064, + -0.0087078 + ], + [ + 109.3643861, + -0.0088362 + ], + [ + 109.3643436, + -0.0091876 + ], + [ + 109.3643341, + -0.0092597 + ], + [ + 109.364289, + -0.009618 + ], + [ + 109.3642549, + -0.0098243 + ], + [ + 109.3642402, + -0.0099429 + ], + [ + 109.3642308, + -0.0099684 + ] + ] + }, + "id": "way/573654328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654513", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3598165, + -0.0089318 + ], + [ + 109.3605253, + -0.0089551 + ] + ] + }, + "id": "way/573654513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654569", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587711, + -0.0090658 + ], + [ + 109.3583964, + -0.0090373 + ] + ] + }, + "id": "way/573654569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654591", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580218, + -0.0094892 + ], + [ + 109.3580107, + -0.0096861 + ], + [ + 109.3580624, + -0.0097431 + ], + [ + 109.3580402, + -0.0099892 + ] + ] + }, + "id": "way/573654591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599814, + -0.0095497 + ], + [ + 109.3599567, + -0.0099403 + ] + ] + }, + "id": "way/573654612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654613", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597787, + -0.0095442 + ], + [ + 109.3597394, + -0.0100965 + ] + ] + }, + "id": "way/573654613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3603542, + -0.0101721 + ], + [ + 109.3600056, + -0.0101441 + ], + [ + 109.3597937, + -0.0101273 + ], + [ + 109.3597609, + -0.01012 + ], + [ + 109.3597455, + -0.0101099 + ], + [ + 109.3597394, + -0.0100965 + ] + ] + }, + "id": "way/573654614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654615", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585889, + -0.0095217 + ], + [ + 109.3585431, + -0.0099074 + ] + ] + }, + "id": "way/573654615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654616", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3581275, + -0.0094927 + ], + [ + 109.3581127, + -0.0097163 + ], + [ + 109.3581422, + -0.0097525 + ], + [ + 109.3582427, + -0.0097767 + ], + [ + 109.358236, + -0.0099148 + ] + ] + }, + "id": "way/573654616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654617", + "highway": "residential", + "name": "KOMPLEK VILLA MANDIRI PERMAI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584178, + -0.0103694 + ], + [ + 109.3584251, + -0.0105303 + ], + [ + 109.3583983, + -0.0114973 + ] + ] + }, + "id": "way/573654617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360324, + -0.0105404 + ], + [ + 109.3598239, + -0.0105384 + ], + [ + 109.359372, + -0.0105324 + ], + [ + 109.3585082, + -0.010529 + ], + [ + 109.3584251, + -0.0105303 + ] + ] + }, + "id": "way/573654618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654619", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358972, + -0.0095227 + ], + [ + 109.3588914, + -0.0102756 + ] + ] + }, + "id": "way/573654619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654621", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583964, + -0.0090373 + ], + [ + 109.3580269, + -0.0089961 + ] + ] + }, + "id": "way/573654621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654623", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584204, + -0.0088374 + ], + [ + 109.3580335, + -0.008807 + ] + ] + }, + "id": "way/573654623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654625", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583508, + -0.0094991 + ], + [ + 109.3583964, + -0.0090373 + ], + [ + 109.3584204, + -0.0088374 + ], + [ + 109.3584426, + -0.0086407 + ] + ] + }, + "id": "way/573654625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654750", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359992, + -0.0086477 + ], + [ + 109.3600105, + -0.008479 + ], + [ + 109.3601037, + -0.0083924 + ], + [ + 109.3601359, + -0.0080384 + ], + [ + 109.3602351, + -0.0080411 + ], + [ + 109.3602501, + -0.0077829 + ] + ] + }, + "id": "way/573654750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654751", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597379, + -0.0086332 + ], + [ + 109.3597528, + -0.0084537 + ], + [ + 109.3597723, + -0.0083175 + ], + [ + 109.3597823, + -0.0082424 + ], + [ + 109.3597857, + -0.0082156 + ], + [ + 109.3598092, + -0.0080118 + ], + [ + 109.3598212, + -0.0079246 + ], + [ + 109.3598299, + -0.0078575 + ], + [ + 109.3598396, + -0.0077743 + ] + ] + }, + "id": "way/573654751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654752", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591233, + -0.0086219 + ], + [ + 109.3591607, + -0.0082216 + ], + [ + 109.3591748, + -0.008119 + ], + [ + 109.3591949, + -0.0079662 + ], + [ + 109.3592107, + -0.0077744 + ], + [ + 109.359214, + -0.0077647 + ], + [ + 109.359207, + -0.0077606 + ], + [ + 109.3592305, + -0.0077563 + ] + ] + }, + "id": "way/573654752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654753", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592305, + -0.0077563 + ], + [ + 109.3592849, + -0.0077622 + ], + [ + 109.3595841, + -0.0077672 + ], + [ + 109.3596455, + -0.0077689 + ], + [ + 109.3598396, + -0.0077743 + ], + [ + 109.3602501, + -0.0077829 + ], + [ + 109.3604269, + -0.0077866 + ], + [ + 109.3604321, + -0.0077777 + ], + [ + 109.3604368, + -0.0077653 + ], + [ + 109.360464, + -0.0074974 + ] + ] + }, + "id": "way/573654753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654755", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3607884, + -0.0072184 + ], + [ + 109.3606185, + -0.0072044 + ], + [ + 109.3605588, + -0.007193 + ], + [ + 109.3605273, + -0.0071964 + ], + [ + 109.3605052, + -0.0072151 + ], + [ + 109.3604992, + -0.0072446 + ] + ] + }, + "id": "way/573654755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654756", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557068, + -0.0072328 + ], + [ + 109.3578131, + -0.0073275 + ], + [ + 109.3582389, + -0.0073558 + ], + [ + 109.3584401, + -0.0073617 + ], + [ + 109.358851, + -0.007367 + ], + [ + 109.3595451, + -0.0073799 + ], + [ + 109.3596685, + -0.0073829 + ] + ] + }, + "id": "way/573654756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654758", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3581113, + -0.0077198 + ], + [ + 109.3581085, + -0.0078218 + ], + [ + 109.3581019, + -0.0078726 + ], + [ + 109.3580956, + -0.0079169 + ], + [ + 109.3580825, + -0.0080325 + ], + [ + 109.3580543, + -0.0082344 + ], + [ + 109.3580034, + -0.0085929 + ] + ] + }, + "id": "way/573654758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654793", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578091, + -0.0063218 + ], + [ + 109.3586822, + -0.0063123 + ], + [ + 109.3599688, + -0.0063233 + ] + ] + }, + "id": "way/573654793" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654813", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606931, + -0.0058484 + ], + [ + 109.3606878, + -0.0059322 + ], + [ + 109.3602874, + -0.0059315 + ], + [ + 109.3600762, + -0.0059201 + ], + [ + 109.3598241, + -0.0059134 + ], + [ + 109.3596142, + -0.00591 + ], + [ + 109.3593862, + -0.00591 + ], + [ + 109.3592428, + -0.0059054 + ], + [ + 109.3590979, + -0.0059007 + ] + ] + }, + "id": "way/573654813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654814", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602874, + -0.0059315 + ], + [ + 109.3602848, + -0.006016 + ], + [ + 109.360255, + -0.0062484 + ] + ] + }, + "id": "way/573654814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654815", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608566, + -0.0064991 + ], + [ + 109.3602059, + -0.0064635 + ] + ] + }, + "id": "way/573654815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654816", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608804, + -0.0062746 + ], + [ + 109.3603277, + -0.006252 + ], + [ + 109.360255, + -0.0062484 + ], + [ + 109.3601936, + -0.0062453 + ], + [ + 109.3599495, + -0.0062426 + ] + ] + }, + "id": "way/573654816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654817", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609105, + -0.0060506 + ], + [ + 109.3604303, + -0.0060261 + ], + [ + 109.3602848, + -0.006016 + ] + ] + }, + "id": "way/573654817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654953", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583294, + -0.0051577 + ], + [ + 109.358312, + -0.0053106 + ] + ] + }, + "id": "way/573654953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573654954", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610029, + -0.0053635 + ], + [ + 109.3600474, + -0.0053454 + ], + [ + 109.3590469, + -0.0053401 + ], + [ + 109.358312, + -0.0053106 + ], + [ + 109.3578908, + -0.0052891 + ], + [ + 109.3578413, + -0.0052865 + ] + ] + }, + "id": "way/573654954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573655250", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3598945, + -0.0033016 + ], + [ + 109.3594661, + -0.0032895 + ] + ] + }, + "id": "way/573655250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573655518", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3625396, + -0.0031857 + ], + [ + 109.3635616, + -0.0032106 + ] + ] + }, + "id": "way/573655518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573655520", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3625418, + -0.0030977 + ], + [ + 109.3625396, + -0.0031857 + ], + [ + 109.3625452, + -0.003329 + ], + [ + 109.3625376, + -0.0033595 + ], + [ + 109.3625163, + -0.0033734 + ], + [ + 109.3613751, + -0.0033633 + ] + ] + }, + "id": "way/573655520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573655522", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3625559, + -0.0028847 + ], + [ + 109.3625418, + -0.0030977 + ], + [ + 109.3614319, + -0.0030738 + ] + ] + }, + "id": "way/573655522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573655524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614229, + -0.0024972 + ], + [ + 109.3615815, + -0.0014209 + ], + [ + 109.3615901, + -0.0013626 + ] + ] + }, + "id": "way/573655524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573655526", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3620816, + -0.0017589 + ], + [ + 109.3620843, + -0.0021088 + ], + [ + 109.3620867, + -0.0021179 + ], + [ + 109.3620957, + -0.0021249 + ] + ] + }, + "id": "way/573655526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573655528", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638316, + -0.0021831 + ], + [ + 109.3620957, + -0.0021249 + ] + ] + }, + "id": "way/573655528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573655530", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361879, + -0.0017542 + ], + [ + 109.3620816, + -0.0017589 + ], + [ + 109.363843, + -0.0017949 + ] + ] + }, + "id": "way/573655530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573655531", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618824, + -0.0025109 + ], + [ + 109.361879, + -0.0017542 + ], + [ + 109.3618771, + -0.0013411 + ] + ] + }, + "id": "way/573655531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573657220", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3232349, + -0.0108813 + ], + [ + 109.3233526, + -0.0107852 + ], + [ + 109.3239105, + -0.0102782 + ] + ] + }, + "id": "way/573657220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573657221", + "highway": "residential", + "name": "Gang Perintis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229833, + -0.010669 + ], + [ + 109.3231541, + -0.0105277 + ], + [ + 109.3238393, + -0.0098679 + ] + ] + }, + "id": "way/573657221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573657222", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226706, + -0.0104017 + ], + [ + 109.3227732, + -0.0102782 + ], + [ + 109.3236074, + -0.0094682 + ] + ] + }, + "id": "way/573657222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573657223", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223828, + -0.010191 + ], + [ + 109.3224621, + -0.0100771 + ], + [ + 109.3227315, + -0.0097769 + ], + [ + 109.3231192, + -0.0093448 + ] + ] + }, + "id": "way/573657223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573657224", + "highway": "residential", + "name": "Gang Meninjau II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212301, + -0.0093457 + ], + [ + 109.3211478, + -0.0094803 + ], + [ + 109.3210405, + -0.0096278 + ], + [ + 109.3209788, + -0.0097109 + ], + [ + 109.3208568, + -0.0098625 + ], + [ + 109.3207334, + -0.0100248 + ], + [ + 109.3206815, + -0.0100932 + ] + ] + }, + "id": "way/573657224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573657225", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322383, + -0.0087802 + ], + [ + 109.3217241, + -0.0096994 + ] + ] + }, + "id": "way/573657225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573657226", + "highway": "residential", + "name": "Gang Cermai 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213734, + -0.0094479 + ], + [ + 109.3214777, + -0.009318 + ], + [ + 109.3220571, + -0.008567 + ] + ] + }, + "id": "way/573657226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573658409", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968041, + -0.0264063 + ], + [ + 109.2970059, + -0.026297 + ], + [ + 109.2970274, + -0.0262796 + ], + [ + 109.2970481, + -0.02624 + ], + [ + 109.2970448, + -0.0261991 + ], + [ + 109.2970267, + -0.0261542 + ], + [ + 109.2969006, + -0.0259557 + ], + [ + 109.2966753, + -0.0256205 + ], + [ + 109.2963722, + -0.0251296 + ], + [ + 109.2961094, + -0.0247353 + ], + [ + 109.2959169, + -0.0244503 + ] + ] + }, + "id": "way/573658409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573658497", + "highway": "living_street", + "name": "Gang Mandiri Tengah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2948206, + -0.029884 + ], + [ + 109.2946905, + -0.0297484 + ], + [ + 109.2945671, + -0.0295821 + ], + [ + 109.2943941, + -0.029338 + ], + [ + 109.2941903, + -0.0290228 + ], + [ + 109.294024, + -0.0288002 + ], + [ + 109.2938228, + -0.0285213 + ], + [ + 109.2935948, + -0.02819 + ], + [ + 109.2933695, + -0.0278749 + ], + [ + 109.2926375, + -0.0268967 + ] + ] + }, + "id": "way/573658497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573658498", + "highway": "residential", + "name": "Gang Asri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2929913, + -0.0266397 + ], + [ + 109.2933759, + -0.0272297 + ], + [ + 109.2935385, + -0.0274873 + ], + [ + 109.2937383, + -0.0277783 + ], + [ + 109.2938831, + -0.0279781 + ] + ] + }, + "id": "way/573658498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573665843", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648598, + -0.0067203 + ], + [ + 109.3653278, + -0.0067592 + ] + ] + }, + "id": "way/573665843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666081", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651571, + -0.0107973 + ], + [ + 109.365136, + -0.0112975 + ] + ] + }, + "id": "way/573666081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666101", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3625316, + -0.0106698 + ], + [ + 109.3625101, + -0.0110366 + ], + [ + 109.3625162, + -0.0110608 + ], + [ + 109.3625403, + -0.0110735 + ], + [ + 109.3626349, + -0.0110755 + ] + ] + }, + "id": "way/573666101" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666102", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619201, + -0.010352 + ], + [ + 109.3619053, + -0.0107127 + ], + [ + 109.3618678, + -0.0111218 + ] + ] + }, + "id": "way/573666102" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666128", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628521, + -0.0100383 + ], + [ + 109.3628441, + -0.0101931 + ], + [ + 109.362834, + -0.0102293 + ], + [ + 109.3628199, + -0.0102487 + ], + [ + 109.3627851, + -0.0102628 + ], + [ + 109.3627696, + -0.0102769 + ], + [ + 109.3627603, + -0.0102977 + ], + [ + 109.3627542, + -0.0103875 + ], + [ + 109.3627321, + -0.0105706 + ], + [ + 109.362708, + -0.0107919 + ], + [ + 109.3626738, + -0.0110769 + ], + [ + 109.3626349, + -0.0110755 + ] + ] + }, + "id": "way/573666128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666182", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614762, + -0.0104593 + ], + [ + 109.3614138, + -0.0111326 + ] + ] + }, + "id": "way/573666182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666183", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361322, + -0.010356 + ], + [ + 109.3612491, + -0.0111338 + ] + ] + }, + "id": "way/573666183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666205", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628335, + -0.0100387 + ], + [ + 109.3628394, + -0.0099375 + ] + ] + }, + "id": "way/573666205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666206", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623259, + -0.0097054 + ], + [ + 109.3624699, + -0.0097095 + ], + [ + 109.3626228, + -0.0097203 + ], + [ + 109.3627542, + -0.0097257 + ], + [ + 109.3627589, + -0.009728 + ], + [ + 109.3627609, + -0.0097327 + ], + [ + 109.3627626, + -0.0097378 + ], + [ + 109.3627676, + -0.0097525 + ], + [ + 109.362761, + -0.0100419 + ] + ] + }, + "id": "way/573666206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666207", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623184, + -0.0100519 + ], + [ + 109.3623259, + -0.0097054 + ], + [ + 109.3623304, + -0.0094937 + ] + ] + }, + "id": "way/573666207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666285", + "highway": "residential", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619395, + -0.0089599 + ], + [ + 109.3619348, + -0.0090595 + ], + [ + 109.3619291, + -0.0091259 + ], + [ + 109.36192, + -0.0092561 + ], + [ + 109.3619107, + -0.0096144 + ], + [ + 109.3618986, + -0.0096358 + ], + [ + 109.3618845, + -0.0096402 + ], + [ + 109.3618354, + -0.0096554 + ] + ] + }, + "id": "way/573666285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666286", + "highway": "residential", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633933, + -0.0092114 + ], + [ + 109.3632806, + -0.0092275 + ], + [ + 109.3632397, + -0.0092308 + ], + [ + 109.3629286, + -0.0092369 + ], + [ + 109.3626355, + -0.0092506 + ], + [ + 109.3623921, + -0.0092513 + ], + [ + 109.3621916, + -0.0092489 + ], + [ + 109.3620086, + -0.0092496 + ], + [ + 109.36192, + -0.0092561 + ], + [ + 109.3612441, + -0.0092804 + ] + ] + }, + "id": "way/573666286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666452", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3625245, + -0.0065273 + ], + [ + 109.3625336, + -0.0068986 + ] + ] + }, + "id": "way/573666452" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666453", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628956, + -0.0064971 + ], + [ + 109.3629098, + -0.0068376 + ] + ] + }, + "id": "way/573666453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666454", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618975, + -0.0065375 + ], + [ + 109.3619169, + -0.0069226 + ], + [ + 109.3609405, + -0.0069521 + ] + ] + }, + "id": "way/573666454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666456", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616393, + -0.0057404 + ], + [ + 109.3615857, + -0.005731 + ], + [ + 109.3609559, + -0.0057131 + ] + ] + }, + "id": "way/573666456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666507", + "highway": "residential", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624396, + -0.0055375 + ], + [ + 109.3623787, + -0.0061557 + ] + ] + }, + "id": "way/573666507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573666508", + "highway": "residential", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635993, + -0.005506 + ], + [ + 109.3635464, + -0.0055074 + ], + [ + 109.3624396, + -0.0055375 + ], + [ + 109.3621019, + -0.0055466 + ] + ] + }, + "id": "way/573666508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573668172", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439192, + -0.0005295 + ], + [ + 109.3440083, + -0.0005539 + ] + ] + }, + "id": "way/573668172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573668175", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437147, + -0.0012629 + ], + [ + 109.3438608, + -0.0013263 + ] + ] + }, + "id": "way/573668175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669453", + "highway": "residential", + "name": "Gang Gito" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144791, + -0.0723453 + ], + [ + 109.313405, + -0.0716559 + ], + [ + 109.3131957, + -0.0715164 + ] + ] + }, + "id": "way/573669453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669454", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146032, + -0.0721253 + ], + [ + 109.3144579, + -0.0720368 + ], + [ + 109.3138904, + -0.071672 + ] + ] + }, + "id": "way/573669454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669455", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146826, + -0.0723822 + ], + [ + 109.3151332, + -0.0727599 + ], + [ + 109.3152396, + -0.0729085 + ], + [ + 109.3159356, + -0.073453 + ], + [ + 109.3170528, + -0.0743703 + ] + ] + }, + "id": "way/573669455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669457", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154401, + -0.0705951 + ], + [ + 109.3154432, + -0.070599 + ] + ] + }, + "id": "way/573669457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669458", + "highway": "living_street", + "name": "Gang Kulang Kulit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239099, + -0.066949 + ], + [ + 109.3246333, + -0.0680061 + ], + [ + 109.3254092, + -0.0690944 + ] + ] + }, + "id": "way/573669458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669459", + "highway": "residential", + "name": "Gang Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324076, + -0.0667149 + ], + [ + 109.3246273, + -0.0675468 + ], + [ + 109.3248332, + -0.0678384 + ] + ] + }, + "id": "way/573669459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669478", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2944838, + -0.0255005 + ], + [ + 109.2959803, + -0.0276304 + ], + [ + 109.2965476, + -0.0284668 + ] + ] + }, + "id": "way/573669478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968347, + -0.0282685 + ], + [ + 109.2947938, + -0.0252586 + ] + ] + }, + "id": "way/573669480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669481", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950891, + -0.0250265 + ], + [ + 109.2960827, + -0.0265487 + ] + ] + }, + "id": "way/573669481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669483", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2960827, + -0.0265487 + ], + [ + 109.2960881, + -0.0265544 + ], + [ + 109.2960963, + -0.026556 + ], + [ + 109.2961114, + -0.0265478 + ], + [ + 109.2963767, + -0.0263663 + ] + ] + }, + "id": "way/573669483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669485", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2965341, + -0.0265932 + ], + [ + 109.2968041, + -0.0264063 + ] + ] + }, + "id": "way/573669485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669487", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957644, + -0.0245474 + ], + [ + 109.2958071, + -0.0243556 + ], + [ + 109.2958948, + -0.0239612 + ], + [ + 109.2959508, + -0.0237095 + ] + ] + }, + "id": "way/573669487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669489", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959508, + -0.0237095 + ], + [ + 109.295976, + -0.0236011 + ], + [ + 109.2960363, + -0.0233345 + ], + [ + 109.2961499, + -0.0228608 + ], + [ + 109.2961697, + -0.0227747 + ], + [ + 109.2962383, + -0.0224759 + ] + ] + }, + "id": "way/573669489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669491", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2962383, + -0.0224759 + ], + [ + 109.2963511, + -0.0220411 + ], + [ + 109.2963966, + -0.0218657 + ] + ] + }, + "id": "way/573669491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669493", + "highway": "residential", + "name": "Gang Hikmah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968009, + -0.0205555 + ], + [ + 109.2952638, + -0.0208548 + ], + [ + 109.2942888, + -0.0210097 + ], + [ + 109.2933423, + -0.0211483 + ] + ] + }, + "id": "way/573669493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669495", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038613, + -0.0269662 + ], + [ + 109.3042794, + -0.0267713 + ] + ] + }, + "id": "way/573669495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669497", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042794, + -0.0267713 + ], + [ + 109.3039133, + -0.0259371 + ] + ] + }, + "id": "way/573669497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669499", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035365, + -0.0261038 + ], + [ + 109.3039133, + -0.0259371 + ] + ] + }, + "id": "way/573669499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669500", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042794, + -0.0267713 + ], + [ + 109.3045391, + -0.0266184 + ] + ] + }, + "id": "way/573669500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669502", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3045391, + -0.0266184 + ], + [ + 109.3048329, + -0.0272831 + ], + [ + 109.3054404, + -0.0286577 + ], + [ + 109.3054391, + -0.0286721 + ], + [ + 109.3054333, + -0.0286823 + ] + ] + }, + "id": "way/573669502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669504", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3054333, + -0.0286823 + ], + [ + 109.3052255, + -0.0288126 + ] + ] + }, + "id": "way/573669504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669505", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052255, + -0.0288126 + ], + [ + 109.3053162, + -0.0292458 + ] + ] + }, + "id": "way/573669505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669507", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052255, + -0.0288126 + ], + [ + 109.3047353, + -0.0277345 + ] + ] + }, + "id": "way/573669507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669509", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3047353, + -0.0277345 + ], + [ + 109.3042794, + -0.0267713 + ] + ] + }, + "id": "way/573669509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669511", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046129, + -0.0256108 + ], + [ + 109.3049007, + -0.0254803 + ] + ] + }, + "id": "way/573669511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669512", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049007, + -0.0254803 + ], + [ + 109.3051481, + -0.0253778 + ], + [ + 109.3053863, + -0.0252702 + ] + ] + }, + "id": "way/573669512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669514", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053863, + -0.0252702 + ], + [ + 109.3056562, + -0.0251531 + ] + ] + }, + "id": "way/573669514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669516", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056562, + -0.0251531 + ], + [ + 109.3058957, + -0.0250349 + ] + ] + }, + "id": "way/573669516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669517", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061244, + -0.0249193 + ], + [ + 109.3066196, + -0.0246871 + ] + ] + }, + "id": "way/573669517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669519", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066196, + -0.0246871 + ], + [ + 109.3066456, + -0.0246765 + ], + [ + 109.307444, + -0.0243504 + ], + [ + 109.3074722, + -0.0243389 + ] + ] + }, + "id": "way/573669519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058957, + -0.0250349 + ], + [ + 109.3061244, + -0.0249193 + ] + ] + }, + "id": "way/573669524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669527", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074722, + -0.0243389 + ], + [ + 109.3075861, + -0.0242898 + ], + [ + 109.3077954, + -0.0241995 + ], + [ + 109.3078136, + -0.0241917 + ], + [ + 109.3081113, + -0.0240932 + ], + [ + 109.3083398, + -0.024843 + ] + ] + }, + "id": "way/573669527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669529", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083602, + -0.0262364 + ], + [ + 109.3081336, + -0.0254961 + ], + [ + 109.3079576, + -0.024969 + ] + ] + }, + "id": "way/573669529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669531", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083398, + -0.024843 + ], + [ + 109.3083458, + -0.0248511 + ], + [ + 109.308355, + -0.0248567 + ], + [ + 109.3084475, + -0.024848 + ] + ] + }, + "id": "way/573669531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669533", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092093, + -0.0271949 + ], + [ + 109.3084824, + -0.0248554 + ], + [ + 109.3084683, + -0.024848 + ], + [ + 109.3084475, + -0.024848 + ] + ] + }, + "id": "way/573669533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669534", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094654, + -0.0271077 + ], + [ + 109.308995, + -0.0255402 + ] + ] + }, + "id": "way/573669534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669536", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124627, + -0.0246342 + ], + [ + 109.3129597, + -0.0244356 + ], + [ + 109.3129811, + -0.0244202 + ], + [ + 109.3129892, + -0.024396 + ] + ] + }, + "id": "way/573669536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669538", + "highway": "residential", + "name": "Jalan Dr. Wahidin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060402, + -0.0339488 + ], + [ + 109.3072865, + -0.0333724 + ] + ] + }, + "id": "way/573669538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669539", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072865, + -0.0333724 + ], + [ + 109.3074015, + -0.033647 + ] + ] + }, + "id": "way/573669539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669541", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072865, + -0.0333724 + ], + [ + 109.3071681, + -0.0330382 + ], + [ + 109.3074706, + -0.0329052 + ], + [ + 109.3079044, + -0.0338629 + ] + ] + }, + "id": "way/573669541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669543", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070267, + -0.0317322 + ], + [ + 109.3074706, + -0.0329052 + ] + ] + }, + "id": "way/573669543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669545", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073014, + -0.0316295 + ], + [ + 109.3081498, + -0.0336885 + ], + [ + 109.3084395, + -0.034284 + ] + ] + }, + "id": "way/573669545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669547", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085918, + -0.031504 + ], + [ + 109.3090262, + -0.031307 + ] + ] + }, + "id": "way/573669547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669548", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.308699, + -0.0317458 + ], + [ + 109.3091367, + -0.0315571 + ] + ] + }, + "id": "way/573669548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669550", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101843, + -0.0304779 + ], + [ + 109.3102111, + -0.0310305 + ], + [ + 109.3102113, + -0.0315079 + ] + ] + }, + "id": "way/573669550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669552", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103814, + -0.0342186 + ], + [ + 109.3103854, + -0.0341988 + ], + [ + 109.3103962, + -0.0341874 + ], + [ + 109.3104096, + -0.0341834 + ], + [ + 109.310535, + -0.0341881 + ], + [ + 109.3105455, + -0.0341869 + ], + [ + 109.3105544, + -0.0341827 + ], + [ + 109.3105583, + -0.0341769 + ], + [ + 109.3105618, + -0.0341666 + ], + [ + 109.3105626, + -0.033984 + ] + ] + }, + "id": "way/573669552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669554", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091271, + -0.0339669 + ], + [ + 109.3091355, + -0.0339776 + ], + [ + 109.3091461, + -0.0339821 + ], + [ + 109.309156, + -0.0339831 + ], + [ + 109.3091677, + -0.0339836 + ], + [ + 109.3096156, + -0.0338642 + ], + [ + 109.309627, + -0.0338535 + ], + [ + 109.3096297, + -0.0338384 + ], + [ + 109.3096283, + -0.0338215 + ] + ] + }, + "id": "way/573669554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669556", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094453, + -0.0334447 + ], + [ + 109.3096283, + -0.0338215 + ] + ] + }, + "id": "way/573669556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669557", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116708, + -0.0393911 + ], + [ + 109.310821, + -0.0405456 + ] + ] + }, + "id": "way/573669557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669559", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999287, + -0.0322258 + ], + [ + 109.3016103, + -0.034714 + ] + ] + }, + "id": "way/573669559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669561", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983109, + -0.0335491 + ], + [ + 109.2996998, + -0.0355335 + ] + ] + }, + "id": "way/573669561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669565", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996998, + -0.0355335 + ], + [ + 109.3000918, + -0.0360422 + ] + ] + }, + "id": "way/573669565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669567", + "highway": "residential", + "name": "Gang Gaharu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004636, + -0.0357263 + ], + [ + 109.2995037, + -0.0344081 + ], + [ + 109.2990652, + -0.0337851 + ] + ] + }, + "id": "way/573669567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669569", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005702, + -0.0339598 + ], + [ + 109.2999473, + -0.0343614 + ] + ] + }, + "id": "way/573669569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669571", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2952136, + -0.0312054 + ], + [ + 109.2952377, + -0.0312343 + ] + ] + }, + "id": "way/573669571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669573", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.295363, + -0.0314039 + ], + [ + 109.2953984, + -0.0313778 + ], + [ + 109.2957158, + -0.0311505 + ] + ] + }, + "id": "way/573669573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669575", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.295363, + -0.0314039 + ], + [ + 109.2950859, + -0.0316054 + ] + ] + }, + "id": "way/573669575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669578", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950859, + -0.0316054 + ], + [ + 109.2959446, + -0.0329553 + ], + [ + 109.2968323, + -0.0342336 + ] + ] + }, + "id": "way/573669578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669580", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968323, + -0.0342336 + ], + [ + 109.2968423, + -0.0342357 + ], + [ + 109.296853, + -0.034234 + ], + [ + 109.2971042, + -0.0340488 + ], + [ + 109.2971804, + -0.0339931 + ] + ] + }, + "id": "way/573669580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669582", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971804, + -0.0339931 + ], + [ + 109.2974776, + -0.0337714 + ] + ] + }, + "id": "way/573669582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971804, + -0.0339931 + ], + [ + 109.2963157, + -0.0327115 + ] + ] + }, + "id": "way/573669584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669586", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959446, + -0.0329553 + ], + [ + 109.2963157, + -0.0327115 + ] + ] + }, + "id": "way/573669586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669588", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2963157, + -0.0327115 + ], + [ + 109.2966286, + -0.032492 + ] + ] + }, + "id": "way/573669588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669590", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2953984, + -0.0313778 + ], + [ + 109.2963157, + -0.0327115 + ] + ] + }, + "id": "way/573669590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957158, + -0.0311505 + ], + [ + 109.2957325, + -0.0311525 + ], + [ + 109.295752, + -0.031172 + ], + [ + 109.2958171, + -0.03127 + ], + [ + 109.2966286, + -0.032492 + ] + ] + }, + "id": "way/573669592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669594", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966286, + -0.032492 + ], + [ + 109.2974771, + -0.0337588 + ], + [ + 109.2974788, + -0.033766 + ], + [ + 109.2974776, + -0.0337714 + ] + ] + }, + "id": "way/573669594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669595", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971042, + -0.0340488 + ], + [ + 109.2971219, + -0.0340749 + ], + [ + 109.297282, + -0.0343113 + ] + ] + }, + "id": "way/573669595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669597", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2930313, + -0.0332644 + ], + [ + 109.2935647, + -0.0340476 + ] + ] + }, + "id": "way/573669597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669599", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3001681, + -0.0320487 + ], + [ + 109.2992952, + -0.0306312 + ], + [ + 109.2991412, + -0.0303836 + ] + ] + }, + "id": "way/573669599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669601", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991412, + -0.0303836 + ], + [ + 109.2988703, + -0.029926 + ] + ] + }, + "id": "way/573669601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669603", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980813, + -0.0294024 + ], + [ + 109.2981651, + -0.0293562 + ], + [ + 109.2983823, + -0.0292161 + ], + [ + 109.2983943, + -0.0292146 + ], + [ + 109.2984154, + -0.0292207 + ], + [ + 109.2984453, + -0.0292558 + ], + [ + 109.2988703, + -0.029926 + ] + ] + }, + "id": "way/573669603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669605", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2992952, + -0.0306312 + ], + [ + 109.2995895, + -0.0304467 + ] + ] + }, + "id": "way/573669605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669607", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994237, + -0.0301758 + ], + [ + 109.2995895, + -0.0304467 + ] + ] + }, + "id": "way/573669607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669608", + "highway": "residential", + "name": "Gang Haji Cuna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995895, + -0.0304467 + ], + [ + 109.3004681, + -0.0318583 + ] + ] + }, + "id": "way/573669608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669610", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009177, + -0.0316228 + ], + [ + 109.300225, + -0.030529 + ], + [ + 109.2995965, + -0.0294117 + ] + ] + }, + "id": "way/573669610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3002136, + -0.0298759 + ], + [ + 109.2996027, + -0.0287886 + ] + ] + }, + "id": "way/573669612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996517, + -0.028308 + ], + [ + 109.299539, + -0.0283813 + ], + [ + 109.2994582, + -0.0284346 + ], + [ + 109.2994181, + -0.0284692 + ], + [ + 109.299481, + -0.0285695 + ], + [ + 109.2996027, + -0.0287886 + ] + ] + }, + "id": "way/573669614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669616", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029755, + -0.0302851 + ], + [ + 109.302239, + -0.0287331 + ] + ] + }, + "id": "way/573669616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028771, + -0.0285155 + ], + [ + 109.3035906, + -0.0299286 + ] + ] + }, + "id": "way/573669618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025377, + -0.028701 + ], + [ + 109.3025017, + -0.0286216 + ], + [ + 109.3023422, + -0.0282701 + ] + ] + }, + "id": "way/573669620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669622", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023422, + -0.0282701 + ], + [ + 109.301934, + -0.0274669 + ] + ] + }, + "id": "way/573669622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669624", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051481, + -0.0253778 + ], + [ + 109.3057882, + -0.0268895 + ] + ] + }, + "id": "way/573669624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669625", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057882, + -0.0268895 + ], + [ + 109.3055202, + -0.0269854 + ] + ] + }, + "id": "way/573669625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669627", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3055202, + -0.0269854 + ], + [ + 109.3052592, + -0.0270837 + ] + ] + }, + "id": "way/573669627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669629", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057882, + -0.0268895 + ], + [ + 109.3065896, + -0.0286151 + ] + ] + }, + "id": "way/573669629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669631", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066961, + -0.027485 + ], + [ + 109.3068748, + -0.0279101 + ], + [ + 109.3069699, + -0.0281174 + ], + [ + 109.3070627, + -0.0283927 + ] + ] + }, + "id": "way/573669631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669633", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072804, + -0.028293 + ], + [ + 109.3072741, + -0.0281256 + ], + [ + 109.3072665, + -0.0280043 + ], + [ + 109.3072546, + -0.0279423 + ], + [ + 109.3067346, + -0.0264937 + ], + [ + 109.3061244, + -0.0249193 + ] + ] + }, + "id": "way/573669633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669635", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077093, + -0.028097 + ], + [ + 109.3076764, + -0.0279271 + ], + [ + 109.3076563, + -0.0277984 + ], + [ + 109.3076158, + -0.0276119 + ], + [ + 109.307361, + -0.026944 + ], + [ + 109.3070391, + -0.0259408 + ] + ] + }, + "id": "way/573669635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669636", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070391, + -0.0259408 + ], + [ + 109.3074268, + -0.0258227 + ] + ] + }, + "id": "way/573669636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669638", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074268, + -0.0258227 + ], + [ + 109.3077742, + -0.0257088 + ] + ] + }, + "id": "way/573669638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669640", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070391, + -0.0259408 + ], + [ + 109.3069307, + -0.0255145 + ], + [ + 109.3068407, + -0.0252327 + ], + [ + 109.3066196, + -0.0246871 + ] + ] + }, + "id": "way/573669640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669642", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072846, + -0.0253802 + ], + [ + 109.3074268, + -0.0258227 + ], + [ + 109.3077352, + -0.0268232 + ], + [ + 109.307982, + -0.0276118 + ], + [ + 109.3080589, + -0.027952 + ] + ] + }, + "id": "way/573669642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669644", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307982, + -0.0276118 + ], + [ + 109.3080956, + -0.0275776 + ] + ] + }, + "id": "way/573669644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669645", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096555, + -0.028301 + ], + [ + 109.3092313, + -0.0284882 + ], + [ + 109.3087949, + -0.0286815 + ], + [ + 109.3087754, + -0.0286902 + ], + [ + 109.3087573, + -0.028705 + ], + [ + 109.3087479, + -0.0287218 + ], + [ + 109.3087399, + -0.0287338 + ], + [ + 109.3087801, + -0.0288907 + ], + [ + 109.3087909, + -0.0289001 + ], + [ + 109.3088029, + -0.0289028 + ], + [ + 109.308817, + -0.0289028 + ], + [ + 109.3090826, + -0.0287573 + ] + ] + }, + "id": "way/573669645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669647", + "highway": "residential", + "name": "Gang Margodadirejo 2B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095405, + -0.0276728 + ], + [ + 109.3090961, + -0.0278487 + ], + [ + 109.3086252, + -0.0280357 + ], + [ + 109.3085736, + -0.0278467 + ], + [ + 109.3083867, + -0.0278887 + ] + ] + }, + "id": "way/573669647" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669649", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3104371, + -0.0266918 + ], + [ + 109.3099616, + -0.0251162 + ], + [ + 109.3094196, + -0.023589 + ] + ] + }, + "id": "way/573669649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669651", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094196, + -0.023589 + ], + [ + 109.30976, + -0.0234601 + ] + ] + }, + "id": "way/573669651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669653", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099304, + -0.0233964 + ], + [ + 109.3101445, + -0.0233207 + ] + ] + }, + "id": "way/573669653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669654", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101445, + -0.0233207 + ], + [ + 109.3103251, + -0.0232559 + ] + ] + }, + "id": "way/573669654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669656", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101445, + -0.0233207 + ], + [ + 109.3102816, + -0.0237033 + ], + [ + 109.3104972, + -0.0243447 + ], + [ + 109.3106794, + -0.0248745 + ] + ] + }, + "id": "way/573669656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669658", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142284, + -0.0251799 + ], + [ + 109.3139887, + -0.0243861 + ] + ] + }, + "id": "way/573669658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669660", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135887, + -0.0220875 + ], + [ + 109.3139854, + -0.0219771 + ], + [ + 109.3141855, + -0.0219221 + ] + ] + }, + "id": "way/573669660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669663", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3126748, + -0.022381 + ], + [ + 109.3128847, + -0.0223145 + ], + [ + 109.3132369, + -0.0222012 + ], + [ + 109.3133795, + -0.0221576 + ], + [ + 109.3134385, + -0.0221385 + ] + ] + }, + "id": "way/573669663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669669", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132369, + -0.0222012 + ], + [ + 109.3133627, + -0.0225674 + ], + [ + 109.3133634, + -0.0225738 + ], + [ + 109.3133603, + -0.0225825 + ], + [ + 109.3133183, + -0.022634 + ], + [ + 109.3133097, + -0.0226521 + ], + [ + 109.3133047, + -0.0226687 + ], + [ + 109.313307, + -0.0226922 + ], + [ + 109.3136913, + -0.023873 + ], + [ + 109.3137, + -0.0238931 + ], + [ + 109.3137114, + -0.0239012 + ], + [ + 109.3137281, + -0.0239052 + ], + [ + 109.3137429, + -0.0239025 + ], + [ + 109.3138658, + -0.0238558 + ] + ] + }, + "id": "way/573669669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669671", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3174416, + -0.0245528 + ], + [ + 109.3171398, + -0.0233392 + ] + ] + }, + "id": "way/573669671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669677", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3167254, + -0.0212635 + ], + [ + 109.3167288, + -0.0212769 + ], + [ + 109.3168666, + -0.0217518 + ], + [ + 109.3169309, + -0.0220093 + ] + ] + }, + "id": "way/573669677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669679", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161115, + -0.021421 + ], + [ + 109.3163737, + -0.021355 + ], + [ + 109.3167254, + -0.0212635 + ] + ] + }, + "id": "way/573669679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669681", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3167254, + -0.0212635 + ], + [ + 109.316906, + -0.0212181 + ] + ] + }, + "id": "way/573669681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669683", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316906, + -0.0212181 + ], + [ + 109.3170386, + -0.0211918 + ] + ] + }, + "id": "way/573669683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669685", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316962, + -0.0209266 + ], + [ + 109.316621, + -0.0197717 + ] + ] + }, + "id": "way/573669685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142504, + -0.0727275 + ], + [ + 109.3142542, + -0.0727306 + ] + ] + }, + "id": "way/573669852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669855", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315092, + -0.0716089 + ], + [ + 109.3152838, + -0.0717363 + ], + [ + 109.3154676, + -0.0718604 + ], + [ + 109.3157431, + -0.0720669 + ] + ] + }, + "id": "way/573669855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669896", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31554, + -0.0704314 + ], + [ + 109.3146253, + -0.0697379 + ], + [ + 109.3142767, + -0.0694618 + ], + [ + 109.3140842, + -0.06932 + ], + [ + 109.3140332, + -0.0692754 + ], + [ + 109.3139461, + -0.069209 + ] + ] + }, + "id": "way/573669896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669897", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318762, + -0.0657718 + ], + [ + 109.3189786, + -0.0660849 + ], + [ + 109.3193997, + -0.0666482 + ], + [ + 109.3202124, + -0.0676701 + ], + [ + 109.320722, + -0.0683219 + ], + [ + 109.3207971, + -0.0684185 + ] + ] + }, + "id": "way/573669897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669898", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192011, + -0.0651212 + ], + [ + 109.3194024, + -0.0653031 + ], + [ + 109.3196773, + -0.065633 + ], + [ + 109.3199147, + -0.0659213 + ], + [ + 109.3203129, + -0.0664467 + ], + [ + 109.3203599, + -0.0665087 + ], + [ + 109.3211183, + -0.0674951 + ], + [ + 109.321133, + -0.0675306 + ], + [ + 109.321131, + -0.0675615 + ], + [ + 109.3210251, + -0.0676614 + ], + [ + 109.3208937, + -0.0677626 + ], + [ + 109.3208521, + -0.0677794 + ], + [ + 109.3208145, + -0.0677693 + ], + [ + 109.3207826, + -0.0677318 + ], + [ + 109.3200307, + -0.0667669 + ] + ] + }, + "id": "way/573669898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669899", + "highway": "residential", + "lanes": "1", + "name": "Gang Usu Kamang", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203324, + -0.0635539 + ], + [ + 109.3213792, + -0.0649236 + ], + [ + 109.32209, + -0.0658972 + ], + [ + 109.322405, + -0.0662959 + ], + [ + 109.3225076, + -0.0661453 + ], + [ + 109.3225681, + -0.0660657 + ], + [ + 109.3225803, + -0.0660534 + ], + [ + 109.3226458, + -0.0661178 + ], + [ + 109.3229972, + -0.0665362 + ], + [ + 109.3236315, + -0.0672805 + ] + ] + }, + "id": "way/573669899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669900", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220113, + -0.0669125 + ], + [ + 109.3225406, + -0.067528 + ] + ] + }, + "id": "way/573669900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669901", + "highway": "residential", + "name": "Gang Anduang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3232714, + -0.0677426 + ], + [ + 109.3222291, + -0.0665644 + ] + ] + }, + "id": "way/573669901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669902", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322405, + -0.0662959 + ], + [ + 109.3222291, + -0.0665644 + ], + [ + 109.3220444, + -0.0668601 + ], + [ + 109.3220113, + -0.0669125 + ], + [ + 109.32198, + -0.066962 + ], + [ + 109.3218673, + -0.0671283 + ], + [ + 109.3217945, + -0.0672199 + ], + [ + 109.3216179, + -0.0674475 + ] + ] + }, + "id": "way/573669902" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669903", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195968, + -0.0739532 + ], + [ + 109.3194828, + -0.0741859 + ], + [ + 109.3191261, + -0.0748584 + ], + [ + 109.3187104, + -0.0756604 + ] + ] + }, + "id": "way/573669903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573669904", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3197618, + -0.0736736 + ], + [ + 109.3195968, + -0.0739532 + ], + [ + 109.3185575, + -0.07271 + ] + ] + }, + "id": "way/573669904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673299", + "highway": "residential", + "lanes": "1", + "name": "Gang Purnama Sutera", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224811, + -0.0599041 + ], + [ + 109.3219967, + -0.059599 + ], + [ + 109.3195123, + -0.0581182 + ] + ] + }, + "id": "way/573673299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673300", + "highway": "residential", + "name": "Jalur C" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199533, + -0.0574872 + ], + [ + 109.3203552, + -0.0577024 + ], + [ + 109.3205731, + -0.0578291 + ], + [ + 109.3207429, + -0.0579469 + ], + [ + 109.321051, + -0.0581227 + ], + [ + 109.321406, + -0.0583253 + ] + ] + }, + "id": "way/573673300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673302", + "highway": "residential", + "name": "Gang Musdalifah 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238711, + -0.0642085 + ], + [ + 109.3241557, + -0.0645584 + ], + [ + 109.325024, + -0.0655954 + ] + ] + }, + "id": "way/573673302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673303", + "highway": "residential", + "name": "Gang Musdalifah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324177, + -0.0637277 + ], + [ + 109.3253785, + -0.0651767 + ] + ] + }, + "id": "way/573673303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673304", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244424, + -0.0632649 + ], + [ + 109.3242062, + -0.0636817 + ], + [ + 109.324177, + -0.0637277 + ], + [ + 109.3239979, + -0.0640092 + ], + [ + 109.3239067, + -0.0641525 + ], + [ + 109.3238711, + -0.0642085 + ], + [ + 109.3236231, + -0.0645805 + ], + [ + 109.3235853, + -0.0646372 + ], + [ + 109.3234887, + -0.064774 + ], + [ + 109.3233144, + -0.065012 + ], + [ + 109.3232406, + -0.0651194 + ], + [ + 109.3231615, + -0.0651971 + ], + [ + 109.3231286, + -0.0651951 + ], + [ + 109.3231058, + -0.0651884 + ], + [ + 109.3230897, + -0.0651663 + ] + ] + }, + "id": "way/573673304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673306", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176688, + -0.061315 + ], + [ + 109.3179042, + -0.0609957 + ] + ] + }, + "id": "way/573673306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673307", + "highway": "residential", + "name": "Gang Purnama Indah 6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316974, + -0.0608868 + ], + [ + 109.3176688, + -0.061315 + ], + [ + 109.3179795, + -0.0615064 + ], + [ + 109.3197913, + -0.062641 + ], + [ + 109.3204915, + -0.0630879 + ] + ] + }, + "id": "way/573673307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673308", + "highway": "residential", + "name": "Gang Tata Kota 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163081, + -0.0617448 + ], + [ + 109.3170454, + -0.0621776 + ], + [ + 109.3169934, + -0.0622616 + ], + [ + 109.3168101, + -0.0625495 + ] + ] + }, + "id": "way/573673308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673311", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149094, + -0.0651048 + ], + [ + 109.3152979, + -0.0646043 + ], + [ + 109.315322, + -0.0645943 + ], + [ + 109.3153576, + -0.0646017 + ], + [ + 109.3158826, + -0.0649819 + ] + ] + }, + "id": "way/573673311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673312", + "highway": "residential", + "name": "Jalan Harapan Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149094, + -0.0651048 + ], + [ + 109.3146569, + -0.0654673 + ], + [ + 109.3144134, + -0.0658811 + ], + [ + 109.3142022, + -0.0662371 + ], + [ + 109.3140319, + -0.0665133 + ], + [ + 109.313995, + -0.0665731 + ], + [ + 109.313856, + -0.0668165 + ] + ] + }, + "id": "way/573673312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573673313", + "highway": "residential", + "name": "Gang Jaya Makmur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143969, + -0.0647308 + ], + [ + 109.3143195, + -0.0648645 + ], + [ + 109.3135337, + -0.0662412 + ], + [ + 109.3134045, + -0.0665154 + ], + [ + 109.3133193, + -0.0666599 + ], + [ + 109.3132414, + -0.0667823 + ] + ] + }, + "id": "way/573673313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573693247", + "highway": "residential", + "name": "Jalur C" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151166, + -0.0595278 + ], + [ + 109.3153148, + -0.0592995 + ], + [ + 109.315523, + -0.0590595 + ], + [ + 109.3155809, + -0.059016 + ], + [ + 109.3156446, + -0.058961 + ], + [ + 109.3158177, + -0.0587515 + ], + [ + 109.3160705, + -0.0584319 + ] + ] + }, + "id": "way/573693247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573693248", + "highway": "residential", + "name": "Jalur B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146989, + -0.0592639 + ], + [ + 109.3152959, + -0.0584299 + ], + [ + 109.3148142, + -0.058088 + ] + ] + }, + "id": "way/573693248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573693249", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153161, + -0.0601638 + ], + [ + 109.3150815, + -0.0604628 + ], + [ + 109.3150672, + -0.0604826 + ] + ] + }, + "id": "way/573693249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573693250", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163839, + -0.06084 + ], + [ + 109.3158592, + -0.0605113 + ], + [ + 109.3153161, + -0.0601638 + ], + [ + 109.3148144, + -0.0598528 + ], + [ + 109.3143732, + -0.0605088 + ] + ] + }, + "id": "way/573693250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766907", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3728078, + -0.0071085 + ], + [ + 109.3722325, + -0.0071655 + ], + [ + 109.371917, + -0.00719 + ] + ] + }, + "id": "way/573766907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766909", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3719294, + -0.0075296 + ], + [ + 109.371917, + -0.00719 + ], + [ + 109.3718885, + -0.0068638 + ] + ] + }, + "id": "way/573766909" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766910", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3727847, + -0.0067739 + ], + [ + 109.3722325, + -0.0068229 + ], + [ + 109.3718885, + -0.0068638 + ] + ] + }, + "id": "way/573766910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766911", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3739494, + -0.0069992 + ], + [ + 109.3737486, + -0.0070173 + ], + [ + 109.3735058, + -0.0070381 + ], + [ + 109.3732275, + -0.0070676 + ], + [ + 109.3729774, + -0.0070931 + ], + [ + 109.3728078, + -0.0071085 + ] + ] + }, + "id": "way/573766911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766912", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3739706, + -0.0073097 + ], + [ + 109.3739655, + -0.0072594 + ], + [ + 109.3739636, + -0.0072369 + ], + [ + 109.3739605, + -0.007191 + ], + [ + 109.3739581, + -0.0071411 + ], + [ + 109.3739494, + -0.0069992 + ], + [ + 109.37393, + -0.0068175 + ], + [ + 109.3739166, + -0.0066652 + ], + [ + 109.3735354, + -0.0066989 + ], + [ + 109.3733034, + -0.0067243 + ], + [ + 109.3731548, + -0.0067431 + ], + [ + 109.3729902, + -0.0067538 + ], + [ + 109.3727847, + -0.0067739 + ] + ] + }, + "id": "way/573766912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766913", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3727847, + -0.0067739 + ], + [ + 109.3728078, + -0.0071085 + ], + [ + 109.3728286, + -0.0074412 + ] + ] + }, + "id": "way/573766913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766914", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3728286, + -0.0074412 + ], + [ + 109.37285, + -0.0077804 + ] + ] + }, + "id": "way/573766914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766915", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.37285, + -0.0077804 + ], + [ + 109.3728628, + -0.0080158 + ], + [ + 109.3728682, + -0.0081076 + ] + ] + }, + "id": "way/573766915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766916", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3728682, + -0.0081076 + ], + [ + 109.3725979, + -0.0081311 + ], + [ + 109.3723324, + -0.0081586 + ], + [ + 109.3720789, + -0.0081801 + ], + [ + 109.3719931, + -0.0081848 + ], + [ + 109.3719663, + -0.0081593 + ], + [ + 109.3719596, + -0.008109 + ], + [ + 109.3719562, + -0.0080413 + ], + [ + 109.3719448, + -0.007867 + ], + [ + 109.3719294, + -0.0075296 + ] + ] + }, + "id": "way/573766916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766917", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3739706, + -0.0073097 + ], + [ + 109.3739323, + -0.0073379 + ], + [ + 109.3738955, + -0.0073533 + ], + [ + 109.373819, + -0.007358 + ], + [ + 109.3733637, + -0.0073988 + ], + [ + 109.3728286, + -0.0074412 + ], + [ + 109.3723659, + -0.0074813 + ], + [ + 109.3719294, + -0.0075296 + ] + ] + }, + "id": "way/573766917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766918", + "highway": "residential", + "name": "KOMPLEK PERMATA GOLF RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3752224, + -0.0074022 + ], + [ + 109.3747806, + -0.0074848 + ], + [ + 109.3744989, + -0.007535 + ], + [ + 109.3741094, + -0.0076061 + ], + [ + 109.3740182, + -0.0076379 + ], + [ + 109.3739957, + -0.0076561 + ], + [ + 109.3739182, + -0.0076852 + ], + [ + 109.3737962, + -0.0077006 + ], + [ + 109.3735092, + -0.0077261 + ], + [ + 109.3732028, + -0.0077502 + ], + [ + 109.3729541, + -0.0077682 + ], + [ + 109.37285, + -0.0077804 + ], + [ + 109.3726201, + -0.0078019 + ], + [ + 109.3721782, + -0.0078388 + ], + [ + 109.3719448, + -0.007867 + ] + ] + }, + "id": "way/573766918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766919", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740424, + -0.0080091 + ], + [ + 109.3740748, + -0.0082977 + ] + ] + }, + "id": "way/573766919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766920", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3752855, + -0.0077496 + ], + [ + 109.374971, + -0.0077865 + ], + [ + 109.3746961, + -0.0078394 + ], + [ + 109.374448, + -0.0078843 + ], + [ + 109.3742398, + -0.0079172 + ], + [ + 109.3741583, + -0.0079346 + ], + [ + 109.3741114, + -0.007943 + ], + [ + 109.3740748, + -0.0079564 + ], + [ + 109.3740591, + -0.0079735 + ], + [ + 109.3740488, + -0.0079955 + ], + [ + 109.3740424, + -0.0080091 + ], + [ + 109.3739531, + -0.0080238 + ], + [ + 109.3738432, + -0.0080353 + ], + [ + 109.3736279, + -0.0080519 + ], + [ + 109.3733563, + -0.0080735 + ], + [ + 109.3730145, + -0.0080978 + ], + [ + 109.3728682, + -0.0081076 + ] + ] + }, + "id": "way/573766920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766921", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740748, + -0.0082977 + ], + [ + 109.3737057, + -0.0083504 + ], + [ + 109.3734053, + -0.0083913 + ], + [ + 109.3730773, + -0.0084375 + ], + [ + 109.3728936, + -0.0084604 + ], + [ + 109.3728916, + -0.0084221 + ], + [ + 109.3728856, + -0.0083718 + ], + [ + 109.3728782, + -0.0082967 + ], + [ + 109.3728742, + -0.0082485 + ], + [ + 109.3728722, + -0.0081814 + ], + [ + 109.3728682, + -0.0081076 + ] + ] + }, + "id": "way/573766921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573766922", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3753439, + -0.008062 + ], + [ + 109.3747303, + -0.0081633 + ], + [ + 109.3740748, + -0.0082977 + ] + ] + }, + "id": "way/573766922" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573778146", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3739166, + -0.0066652 + ], + [ + 109.3745486, + -0.0066116 + ] + ] + }, + "id": "way/573778146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573778147", + "highway": "residential", + "name": "KOMPLEK MARISSA 12" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.371297, + -0.0046992 + ], + [ + 109.3716766, + -0.0046965 + ], + [ + 109.3722144, + -0.0047032 + ], + [ + 109.3725952, + -0.0047099 + ], + [ + 109.3730941, + -0.004718 + ], + [ + 109.3737674, + -0.0047301 + ], + [ + 109.3744165, + -0.0047394 + ] + ] + }, + "id": "way/573778147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573794473", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572385, + -0.0179834 + ], + [ + 109.3572662, + -0.0181583 + ], + [ + 109.357285, + -0.0183286 + ], + [ + 109.3573032, + -0.0185264 + ] + ] + }, + "id": "way/573794473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573794474", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565476, + -0.0192999 + ], + [ + 109.3557, + -0.0194755 + ], + [ + 109.3551636, + -0.0195721 + ], + [ + 109.3548578, + -0.019623 + ], + [ + 109.3546955, + -0.0196391 + ], + [ + 109.354662, + -0.019619 + ], + [ + 109.3546566, + -0.0195841 + ], + [ + 109.3546553, + -0.0195158 + ], + [ + 109.3546781, + -0.0191644 + ], + [ + 109.3547291, + -0.0182471 + ], + [ + 109.3547666, + -0.0173646 + ], + [ + 109.3547747, + -0.0172707 + ], + [ + 109.3548015, + -0.0172091 + ], + [ + 109.3548793, + -0.0171152 + ], + [ + 109.3549141, + -0.0170481 + ], + [ + 109.3549167, + -0.0168037 + ] + ] + }, + "id": "way/573794474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883172", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191079, + 0.001197 + ], + [ + 109.3192247, + 0.0014243 + ], + [ + 109.3194044, + 0.0018105 + ], + [ + 109.319576, + 0.0021029 + ], + [ + 109.3196585, + 0.0022725 + ], + [ + 109.319802, + 0.0025883 + ], + [ + 109.3199113, + 0.0028244 + ], + [ + 109.3200481, + 0.0030725 + ] + ] + }, + "id": "way/573883172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883173", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203967, + 0.0036425 + ], + [ + 109.3202922, + 0.0034869 + ], + [ + 109.3201447, + 0.0032415 + ], + [ + 109.3200481, + 0.0030725 + ] + ] + }, + "id": "way/573883173" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883174", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214776, + 0.0024241 + ], + [ + 109.3212578, + 0.0026098 + ], + [ + 109.3210298, + 0.0028056 + ], + [ + 109.3208152, + 0.003 + ], + [ + 109.320665, + 0.0031462 + ], + [ + 109.3203995, + 0.0033957 + ], + [ + 109.3202922, + 0.0034869 + ] + ] + }, + "id": "way/573883174" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883175", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248046, + 0.0088743 + ], + [ + 109.3247473, + 0.0087896 + ], + [ + 109.3243262, + 0.0082719 + ], + [ + 109.3240607, + 0.0079098 + ], + [ + 109.323953, + 0.0077661 + ] + ] + }, + "id": "way/573883175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883176", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237573, + 0.0088853 + ], + [ + 109.3242907, + 0.0088758 + ], + [ + 109.3248046, + 0.0088743 + ], + [ + 109.3249797, + 0.0088727 + ], + [ + 109.3252653, + 0.0088562 + ], + [ + 109.3254544, + 0.0088452 + ] + ] + }, + "id": "way/573883176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883177", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324329, + 0.0096963 + ], + [ + 109.3249056, + 0.0096506 + ] + ] + }, + "id": "way/573883177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883179", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32322, + 0.0081963 + ], + [ + 109.3226941, + 0.0084986 + ], + [ + 109.3224185, + 0.0086548 + ], + [ + 109.322393, + 0.0086622 + ], + [ + 109.3223682, + 0.0086635 + ], + [ + 109.322041, + 0.0086582 + ], + [ + 109.3218398, + 0.0086448 + ], + [ + 109.3216789, + 0.008634 + ], + [ + 109.3214026, + 0.0086126 + ], + [ + 109.3210982, + 0.0086036 + ], + [ + 109.3208098, + 0.0085965 + ] + ] + }, + "id": "way/573883179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883180", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242179, + 0.0033557 + ], + [ + 109.3239453, + 0.0029102 + ], + [ + 109.3237938, + 0.0026996 + ], + [ + 109.3236878, + 0.0025642 + ] + ] + }, + "id": "way/573883180" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883181", + "highway": "residential", + "name": "Sinar Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3234826, + 0.0036001 + ], + [ + 109.3232828, + 0.0032991 + ], + [ + 109.3231112, + 0.0030524 + ], + [ + 109.3230093, + 0.0029417 + ], + [ + 109.3229818, + 0.0029276 + ], + [ + 109.3229234, + 0.0029182 + ], + [ + 109.3228906, + 0.0029042 + ], + [ + 109.3228537, + 0.0028673 + ], + [ + 109.3227464, + 0.0027385 + ], + [ + 109.3226899, + 0.002672 + ], + [ + 109.3222904, + 0.0022021 + ], + [ + 109.322057, + 0.0019071 + ], + [ + 109.3219638, + 0.0018179 + ], + [ + 109.3219404, + 0.0016616 + ], + [ + 109.321815, + 0.0013726 + ] + ] + }, + "id": "way/573883181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883182", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237728, + 0.004566 + ], + [ + 109.3236154, + 0.0047059 + ] + ] + }, + "id": "way/573883182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883183", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323354, + 0.004329 + ], + [ + 109.3232708, + 0.0044538 + ], + [ + 109.3231916, + 0.004549 + ], + [ + 109.3231259, + 0.0046107 + ], + [ + 109.3230227, + 0.004718 + ], + [ + 109.3229181, + 0.0048092 + ], + [ + 109.3228349, + 0.0048615 + ], + [ + 109.322733, + 0.0049285 + ] + ] + }, + "id": "way/573883183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883184", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212802, + 0.0056406 + ], + [ + 109.3214107, + 0.0054395 + ], + [ + 109.321585, + 0.0051659 + ], + [ + 109.3216996, + 0.0050023 + ], + [ + 109.3218505, + 0.0047743 + ], + [ + 109.3220302, + 0.0045007 + ], + [ + 109.3221359, + 0.0043452 + ], + [ + 109.3221459, + 0.0043409 + ], + [ + 109.3221593, + 0.0043418 + ], + [ + 109.3224786, + 0.0045523 + ] + ] + }, + "id": "way/573883184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883185", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321483, + 0.005915 + ], + [ + 109.3213208, + 0.0061329 + ], + [ + 109.3211495, + 0.00637 + ], + [ + 109.3210298, + 0.0065459 + ], + [ + 109.3208125, + 0.0068718 + ], + [ + 109.3206757, + 0.0070502 + ], + [ + 109.3206663, + 0.0070676 + ], + [ + 109.320606, + 0.0071548 + ] + ] + }, + "id": "way/573883185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883186", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213012, + 0.0056691 + ], + [ + 109.3211291, + 0.0057868 + ], + [ + 109.3210398, + 0.0058714 + ], + [ + 109.321004, + 0.0059096 + ], + [ + 109.3209426, + 0.0059746 + ], + [ + 109.320826, + 0.006145 + ], + [ + 109.3207495, + 0.0062496 + ], + [ + 109.3206583, + 0.0063783 + ], + [ + 109.3205443, + 0.0065325 + ], + [ + 109.3204397, + 0.0066894 + ], + [ + 109.3203593, + 0.0067914 + ], + [ + 109.3202828, + 0.0068825 + ], + [ + 109.3201288, + 0.0070704 + ], + [ + 109.3200567, + 0.0071521 + ], + [ + 109.3200192, + 0.0071928 + ] + ] + }, + "id": "way/573883186" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883187", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217191, + 0.0039053 + ], + [ + 109.3215596, + 0.0037143 + ], + [ + 109.3214643, + 0.0035834 + ] + ] + }, + "id": "way/573883187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883188", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199683, + 0.0048609 + ], + [ + 109.3201433, + 0.0050077 + ], + [ + 109.3202224, + 0.0050734 + ], + [ + 109.3203418, + 0.0051821 + ] + ] + }, + "id": "way/573883188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883189", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206764, + 0.0048227 + ], + [ + 109.3205671, + 0.0049339 + ], + [ + 109.3204772, + 0.0050224 + ], + [ + 109.3204448, + 0.0050578 + ], + [ + 109.3204089, + 0.0050989 + ], + [ + 109.3203418, + 0.0051821 + ], + [ + 109.3202425, + 0.0052893 + ], + [ + 109.3201286, + 0.0054073 + ], + [ + 109.3200132, + 0.0055589 + ], + [ + 109.3199716, + 0.0056179 + ], + [ + 109.3199388, + 0.0056562 + ] + ] + }, + "id": "way/573883189" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573883193", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140088, + 0.003223 + ], + [ + 109.3141378, + 0.003401 + ], + [ + 109.3141915, + 0.0035606 + ], + [ + 109.3142532, + 0.0037524 + ], + [ + 109.3143001, + 0.0038825 + ], + [ + 109.3143605, + 0.0040595 + ], + [ + 109.314402, + 0.004191 + ], + [ + 109.3144409, + 0.0043063 + ], + [ + 109.3144973, + 0.0044444 + ], + [ + 109.3145616, + 0.0045946 + ], + [ + 109.3145858, + 0.0046925 + ], + [ + 109.3146126, + 0.0047542 + ], + [ + 109.3147011, + 0.0049554 + ], + [ + 109.3147695, + 0.0051244 + ], + [ + 109.3148205, + 0.0052571 + ], + [ + 109.3148915, + 0.0054154 + ], + [ + 109.3149854, + 0.0055817 + ], + [ + 109.3151465, + 0.0059132 + ] + ] + }, + "id": "way/573883193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573899869", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3283234, + 0.0318016 + ], + [ + 109.3279754, + 0.0317761 + ], + [ + 109.3274858, + 0.031752 + ] + ] + }, + "id": "way/573899869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573899876", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343512, + 0.0254703 + ], + [ + 109.334355, + 0.0259557 + ], + [ + 109.3343577, + 0.0268033 + ], + [ + 109.3343496, + 0.0275329 + ], + [ + 109.3343738, + 0.0277287 + ], + [ + 109.3343469, + 0.0278011 + ] + ] + }, + "id": "way/573899876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573950668", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170581, + -0.0460086 + ], + [ + 109.3173049, + -0.0462419 + ] + ] + }, + "id": "way/573950668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573950671", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3173806, + -0.0439587 + ], + [ + 109.3172191, + -0.0441061 + ], + [ + 109.316768, + -0.0445177 + ] + ] + }, + "id": "way/573950671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573950674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178857, + -0.0445365 + ], + [ + 109.3173062, + -0.0451583 + ] + ] + }, + "id": "way/573950674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573995370", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3164774, + -0.0690119 + ], + [ + 109.3162038, + -0.0688195 + ], + [ + 109.3159276, + -0.0686102 + ], + [ + 109.3154562, + -0.0682414 + ], + [ + 109.3151424, + -0.0680061 + ], + [ + 109.3138887, + -0.0670872 + ] + ] + }, + "id": "way/573995370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573995371", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161566, + -0.063522 + ], + [ + 109.3163741, + -0.0632015 + ], + [ + 109.3163849, + -0.0631935 + ], + [ + 109.3164103, + -0.0631942 + ], + [ + 109.3166116, + -0.0633464 + ], + [ + 109.3176314, + -0.0640592 + ], + [ + 109.3181893, + -0.0644427 + ], + [ + 109.3187047, + -0.0647877 + ] + ] + }, + "id": "way/573995371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573995374", + "highway": "residential", + "lanes": "1", + "name": "Gang Purnama Indah 7", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3209244, + -0.0626442 + ], + [ + 109.3212048, + -0.0629709 + ], + [ + 109.3213523, + -0.0631452 + ], + [ + 109.3216608, + -0.0634913 + ], + [ + 109.3218861, + -0.0637447 + ], + [ + 109.3220792, + -0.0639647 + ], + [ + 109.3221879, + -0.0640894 + ], + [ + 109.3222322, + -0.064137 + ], + [ + 109.3223314, + -0.0642423 + ], + [ + 109.3224453, + -0.0643831 + ], + [ + 109.3226272, + -0.0646008 + ], + [ + 109.3230897, + -0.0651663 + ] + ] + }, + "id": "way/573995374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573995376", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151457, + -0.06408 + ], + [ + 109.314907, + -0.0639258 + ], + [ + 109.3146911, + -0.0637823 + ], + [ + 109.3144497, + -0.0636173 + ], + [ + 109.3142807, + -0.0634966 + ] + ] + }, + "id": "way/573995376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573995377", + "highway": "residential", + "name": "Gang Eklasia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184938, + -0.0661661 + ], + [ + 109.3184086, + -0.0661212 + ], + [ + 109.3182115, + -0.0659911 + ], + [ + 109.3173773, + -0.0654251 + ], + [ + 109.3168275, + -0.0650657 + ], + [ + 109.316122, + -0.0646071 + ] + ] + }, + "id": "way/573995377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573995677", + "highway": "residential", + "name": "Gang Perintis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242866, + -0.0535884 + ], + [ + 109.3241278, + -0.053813 + ], + [ + 109.3239426, + -0.054088 + ], + [ + 109.3237909, + -0.0543229 + ], + [ + 109.3237775, + -0.0543427 + ], + [ + 109.3237727, + -0.0543516 + ], + [ + 109.3237687, + -0.0543603 + ], + [ + 109.3237678, + -0.0543638 + ], + [ + 109.3237678, + -0.0543677 + ], + [ + 109.3237695, + -0.0543723 + ], + [ + 109.3237717, + -0.0543757 + ], + [ + 109.3237785, + -0.0543838 + ], + [ + 109.3237948, + -0.0543953 + ] + ] + }, + "id": "way/573995677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/573995678", + "highway": "residential", + "name": "Gang Madyosari 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3218113, + -0.0562618 + ], + [ + 109.3219695, + -0.0560324 + ], + [ + 109.3226377, + -0.055064 + ], + [ + 109.3233946, + -0.053811 + ], + [ + 109.3237307, + -0.0532349 + ] + ] + }, + "id": "way/573995678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574032644", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646338, + -0.0289545 + ], + [ + 109.3645842, + -0.0289084 + ] + ] + }, + "id": "way/574032644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574032646", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645842, + -0.0289084 + ], + [ + 109.3644266, + -0.0287358 + ], + [ + 109.3643941, + -0.0287003 + ], + [ + 109.3644145, + -0.0286829 + ], + [ + 109.3651079, + -0.0280579 + ], + [ + 109.3653975, + -0.0278018 + ], + [ + 109.3656631, + -0.027561 + ], + [ + 109.3663424, + -0.0269408 + ], + [ + 109.3664389, + -0.0268489 + ] + ] + }, + "id": "way/574032646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574032648", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3657551, + -0.0324616 + ], + [ + 109.3665247, + -0.0319381 + ], + [ + 109.3665498, + -0.0319334 + ], + [ + 109.3665726, + -0.031948 + ], + [ + 109.3666442, + -0.0320368 + ], + [ + 109.3667152, + -0.032144 + ], + [ + 109.3667164, + -0.0321699 + ], + [ + 109.3667028, + -0.0322 + ], + [ + 109.3659437, + -0.0327441 + ] + ] + }, + "id": "way/574032648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574032651", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3655944, + -0.0324887 + ], + [ + 109.3658853, + -0.0329275 + ], + [ + 109.3660372, + -0.0331521 + ] + ] + }, + "id": "way/574032651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574032654", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649859, + -0.0328852 + ], + [ + 109.3652862, + -0.0326953 + ], + [ + 109.3653412, + -0.032652 + ], + [ + 109.3655944, + -0.0324887 + ], + [ + 109.3656772, + -0.0324373 + ], + [ + 109.3657178, + -0.0324378 + ], + [ + 109.3657364, + -0.0324444 + ], + [ + 109.3657551, + -0.0324616 + ], + [ + 109.3659437, + -0.0327441 + ], + [ + 109.366008, + -0.0328435 + ], + [ + 109.3661579, + -0.033069 + ] + ] + }, + "id": "way/574032654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574032657", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652621, + -0.0321972 + ], + [ + 109.3639559, + -0.0330555 + ] + ] + }, + "id": "way/574032657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574032660", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3668198, + -0.0316925 + ], + [ + 109.367668, + -0.0309768 + ] + ] + }, + "id": "way/574032660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574032663", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583065, + -0.0324572 + ], + [ + 109.3579444, + -0.0326425 + ], + [ + 109.3575789, + -0.0328899 + ], + [ + 109.3555994, + -0.0341445 + ] + ] + }, + "id": "way/574032663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574042147", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3658622, + -0.0318251 + ], + [ + 109.366543, + -0.0313592 + ] + ] + }, + "id": "way/574042147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574042148", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3658853, + -0.0329275 + ], + [ + 109.366008, + -0.0328435 + ] + ] + }, + "id": "way/574042148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574042186", + "highway": "residential", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586265, + -0.0285747 + ], + [ + 109.3587041, + -0.0286393 + ], + [ + 109.3588006, + -0.028717 + ], + [ + 109.359144, + -0.0290131 + ], + [ + 109.3591638, + -0.0290326 + ], + [ + 109.3591763, + -0.0290446 + ], + [ + 109.3591832, + -0.0290523 + ], + [ + 109.3591886, + -0.0290559 + ], + [ + 109.3591964, + -0.0290575 + ], + [ + 109.359206, + -0.0290569 + ], + [ + 109.359269, + -0.0290369 + ], + [ + 109.3596502, + -0.0289234 + ], + [ + 109.3596771, + -0.0289172 + ], + [ + 109.3597307, + -0.0289028 + ], + [ + 109.3597465, + -0.0289011 + ], + [ + 109.3597662, + -0.0289011 + ], + [ + 109.3597961, + -0.0289001 + ], + [ + 109.3598192, + -0.0288961 + ], + [ + 109.359838, + -0.0288901 + ], + [ + 109.3598608, + -0.0288787 + ], + [ + 109.3599818, + -0.0288162 + ], + [ + 109.3600962, + -0.0287754 + ], + [ + 109.3604086, + -0.0286453 + ], + [ + 109.360467, + -0.0286282 + ], + [ + 109.3605082, + -0.0286178 + ], + [ + 109.3605575, + -0.0286141 + ], + [ + 109.3611423, + -0.0285875 + ] + ] + }, + "id": "way/574042186" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574104821", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639988, + -0.0286889 + ], + [ + 109.3643143, + -0.0291053 + ] + ] + }, + "id": "way/574104821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574104979", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3590866, + -0.0321829 + ], + [ + 109.3586504, + -0.031119 + ] + ] + }, + "id": "way/574104979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574104992", + "highway": "residential", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362089, + -0.030547 + ], + [ + 109.3622299, + -0.0304706 + ], + [ + 109.3623982, + -0.030374 + ], + [ + 109.3626188, + -0.0302298 + ], + [ + 109.3628266, + -0.0301038 + ], + [ + 109.363233, + -0.029849 + ], + [ + 109.3634878, + -0.0296834 + ], + [ + 109.3635437, + -0.0296471 + ], + [ + 109.3637775, + -0.0295016 + ], + [ + 109.363805, + -0.0294922 + ], + [ + 109.3638284, + -0.0294989 + ], + [ + 109.3638412, + -0.0295103 + ] + ] + }, + "id": "way/574104992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574105104", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616191, + -0.0317872 + ], + [ + 109.3613876, + -0.0313007 + ], + [ + 109.3613658, + -0.0312682 + ], + [ + 109.3613487, + -0.031245 + ], + [ + 109.3613112, + -0.0312135 + ], + [ + 109.3611716, + -0.0311382 + ] + ] + }, + "id": "way/574105104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574105206", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3620922, + -0.0318991 + ], + [ + 109.3613118, + -0.0324323 + ] + ] + }, + "id": "way/574105206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233596", + "highway": "residential", + "name": "Jalan Perintis", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241278, + -0.053813 + ], + [ + 109.3245951, + -0.0541974 + ], + [ + 109.3250095, + -0.0545695 + ], + [ + 109.3251088, + -0.0546433 + ], + [ + 109.3251906, + -0.054703 + ], + [ + 109.3253041, + -0.054793 + ] + ] + }, + "id": "way/574233596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217649, + -0.0543785 + ], + [ + 109.3219612, + -0.0545313 + ], + [ + 109.3221502, + -0.0546907 + ] + ] + }, + "id": "way/574233618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233628", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219672, + -0.0549472 + ], + [ + 109.321819, + -0.0548304 + ], + [ + 109.3215801, + -0.0546427 + ] + ] + }, + "id": "way/574233628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233629", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206814, + -0.0541619 + ], + [ + 109.3211278, + -0.0545627 + ] + ] + }, + "id": "way/574233629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233630", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216344, + -0.0545663 + ], + [ + 109.3213646, + -0.0543488 + ] + ] + }, + "id": "way/574233630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233631", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206686, + -0.0552526 + ], + [ + 109.3211278, + -0.0545627 + ], + [ + 109.3212638, + -0.0543808 + ], + [ + 109.3212876, + -0.0543479 + ], + [ + 109.321303, + -0.0543343 + ], + [ + 109.3213143, + -0.054331 + ], + [ + 109.3213206, + -0.0543298 + ], + [ + 109.3213273, + -0.0543303 + ], + [ + 109.3213391, + -0.0543328 + ], + [ + 109.3213495, + -0.0543377 + ], + [ + 109.3213646, + -0.0543488 + ] + ] + }, + "id": "way/574233631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233724", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194359, + -0.0547298 + ], + [ + 109.3197137, + -0.0543327 + ] + ] + }, + "id": "way/574233724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233752", + "highway": "residential", + "name": "Gang Remaja 1", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3197295, + -0.0543501 + ], + [ + 109.3209842, + -0.0525116 + ], + [ + 109.3210035, + -0.0524769 + ], + [ + 109.3210061, + -0.0524663 + ], + [ + 109.3210063, + -0.0524516 + ], + [ + 109.321002, + -0.0524281 + ], + [ + 109.3209872, + -0.0524016 + ], + [ + 109.3209523, + -0.0523634 + ], + [ + 109.3209413, + -0.0523515 + ], + [ + 109.3209312, + -0.0523398 + ], + [ + 109.3209295, + -0.0523358 + ], + [ + 109.3209284, + -0.0523296 + ], + [ + 109.3209295, + -0.0523242 + ], + [ + 109.3209359, + -0.0523061 + ], + [ + 109.3209435, + -0.052291 + ], + [ + 109.320952, + -0.0522779 + ], + [ + 109.3210177, + -0.052177 + ], + [ + 109.321133, + -0.052012 + ] + ] + }, + "id": "way/574233752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233753", + "highway": "residential", + "name": "Jalan Perintis", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194682, + -0.05409 + ], + [ + 109.3190174, + -0.0547446 + ] + ] + }, + "id": "way/574233753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233754", + "highway": "residential", + "name": "Gang Adenium", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31889, + -0.0544589 + ], + [ + 109.3182706, + -0.0539357 + ] + ] + }, + "id": "way/574233754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233782", + "highway": "residential", + "name": "Jalan Perintis", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318696, + -0.054814 + ], + [ + 109.3186164, + -0.0547526 + ], + [ + 109.3179897, + -0.0542716 + ] + ] + }, + "id": "way/574233782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233789", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188619, + -0.0551657 + ], + [ + 109.3186597, + -0.0551129 + ], + [ + 109.318536, + -0.0550729 + ], + [ + 109.317759, + -0.0545375 + ] + ] + }, + "id": "way/574233789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574233978", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175042, + -0.0519722 + ], + [ + 109.3177319, + -0.0517372 + ], + [ + 109.3179286, + -0.0515272 + ], + [ + 109.3181688, + -0.0512526 + ] + ] + }, + "id": "way/574233978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241366", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408298, + 0.011396 + ], + [ + 109.3408828, + 0.0114101 + ] + ] + }, + "id": "way/574241366" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241367", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408828, + 0.0114101 + ], + [ + 109.3418913, + 0.0116938 + ] + ] + }, + "id": "way/574241367" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241368", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409952, + 0.0110289 + ], + [ + 109.3432733, + 0.0116234 + ] + ] + }, + "id": "way/574241368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241369", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408843, + 0.010993 + ], + [ + 109.340924, + 0.0110088 + ] + ] + }, + "id": "way/574241369" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241370", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439942, + 0.0007322 + ], + [ + 109.3440689, + 0.0007029 + ] + ] + }, + "id": "way/574241370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241371", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439781, + 0.0019647 + ], + [ + 109.3440565, + 0.0019492 + ] + ] + }, + "id": "way/574241371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241372", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441042, + 0.0015429 + ], + [ + 109.3440197, + 0.0015493 + ] + ] + }, + "id": "way/574241372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241373", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440197, + 0.0015493 + ], + [ + 109.3439206, + 0.0015624 + ] + ] + }, + "id": "way/574241373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241374", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428576, + 0.0060591 + ], + [ + 109.3429582, + 0.0060712 + ] + ] + }, + "id": "way/574241374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574241854", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546684, + -0.0328793 + ], + [ + 109.3547914, + -0.0328068 + ], + [ + 109.3560362, + -0.0321702 + ], + [ + 109.3565363, + -0.0319145 + ], + [ + 109.3567547, + -0.0318027 + ], + [ + 109.3568196, + -0.0317697 + ], + [ + 109.3568853, + -0.0317296 + ], + [ + 109.3571293, + -0.0316081 + ], + [ + 109.3574334, + -0.031459 + ] + ] + }, + "id": "way/574241854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574245461", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224467, + -0.0499743 + ], + [ + 109.3230292, + -0.049131 + ] + ] + }, + "id": "way/574245461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574245462", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323802, + -0.0488347 + ], + [ + 109.3236694, + -0.0489154 + ], + [ + 109.3236295, + -0.048948 + ], + [ + 109.323601, + -0.0489781 + ], + [ + 109.3233713, + -0.0492816 + ] + ] + }, + "id": "way/574245462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574245463", + "highway": "residential", + "name": "Gang Wonoyoso 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241157, + -0.0491312 + ], + [ + 109.323802, + -0.0488347 + ], + [ + 109.3236369, + -0.0486762 + ], + [ + 109.3233379, + -0.0483845 + ] + ] + }, + "id": "way/574245463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574245464", + "highway": "residential", + "name": "Gang Satu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238072, + -0.0494747 + ], + [ + 109.3241157, + -0.0491312 + ], + [ + 109.3241552, + -0.0490884 + ], + [ + 109.3243799, + -0.0488222 + ], + [ + 109.3249418, + -0.0481564 + ] + ] + }, + "id": "way/574245464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574245474", + "highway": "footway", + "name": "Gang Purwosari 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244398, + -0.0498317 + ], + [ + 109.3244453, + -0.0498247 + ] + ] + }, + "id": "way/574245474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574247200", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476252, + -0.0110323 + ], + [ + 109.3477245, + -0.0111338 + ], + [ + 109.3478364, + -0.0112418 + ], + [ + 109.3478901, + -0.0112968 + ], + [ + 109.3480034, + -0.0114155 + ], + [ + 109.3481107, + -0.0115295 + ], + [ + 109.3482093, + -0.0116542 + ], + [ + 109.348344, + -0.0118017 + ], + [ + 109.3484265, + -0.0118916 + ], + [ + 109.3484842, + -0.0119606 + ], + [ + 109.3485218, + -0.0120062 + ], + [ + 109.3488005, + -0.0124204 + ], + [ + 109.348838, + -0.0124709 + ], + [ + 109.3489082, + -0.0125344 + ] + ] + }, + "id": "way/574247200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255111", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081625, + -0.0711644 + ], + [ + 109.3082759, + -0.0712586 + ], + [ + 109.3083678, + -0.0713119 + ], + [ + 109.3084281, + -0.0713494 + ], + [ + 109.308462, + -0.0713689 + ], + [ + 109.3084859, + -0.0713798 + ] + ] + }, + "id": "way/574255111" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255112", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084859, + -0.0713798 + ], + [ + 109.3085072, + -0.0713793 + ], + [ + 109.3085334, + -0.0713681 + ], + [ + 109.309279, + -0.0704294 + ], + [ + 109.3100653, + -0.069444 + ] + ] + }, + "id": "way/574255112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255113", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079277, + -0.0661527 + ], + [ + 109.3087219, + -0.0667507 + ] + ] + }, + "id": "way/574255113" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255114", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068737, + -0.0659187 + ], + [ + 109.3075996, + -0.0664945 + ] + ] + }, + "id": "way/574255114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255115", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095608, + -0.0667739 + ], + [ + 109.3093635, + -0.0669814 + ], + [ + 109.3093514, + -0.0670056 + ], + [ + 109.3093581, + -0.0670324 + ], + [ + 109.3094614, + -0.0671169 + ], + [ + 109.3098061, + -0.067359 + ] + ] + }, + "id": "way/574255115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255116", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120942, + -0.0660149 + ], + [ + 109.3133193, + -0.0666599 + ] + ] + }, + "id": "way/574255116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255255", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149453, + -0.0614975 + ], + [ + 109.3148164, + -0.0616794 + ], + [ + 109.3146867, + -0.0618506 + ] + ] + }, + "id": "way/574255255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255256", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146867, + -0.0618506 + ], + [ + 109.3146308, + -0.0619388 + ], + [ + 109.3143757, + -0.0622959 + ] + ] + }, + "id": "way/574255256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3152428, + -0.0622738 + ], + [ + 109.3151946, + -0.062238 + ], + [ + 109.3150528, + -0.062131 + ], + [ + 109.3148486, + -0.0619832 + ], + [ + 109.3146867, + -0.0618506 + ], + [ + 109.3144212, + -0.061648 + ] + ] + }, + "id": "way/574255257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255259", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170454, + -0.0621776 + ], + [ + 109.3170836, + -0.0621072 + ], + [ + 109.3171064, + -0.0620636 + ], + [ + 109.3171358, + -0.0620084 + ] + ] + }, + "id": "way/574255259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255260", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171358, + -0.0620084 + ], + [ + 109.3164423, + -0.0615719 + ] + ] + }, + "id": "way/574255260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255261", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171358, + -0.0620084 + ], + [ + 109.317162, + -0.0619569 + ], + [ + 109.3173327, + -0.0616219 + ] + ] + }, + "id": "way/574255261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255262", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3183154, + -0.0635281 + ], + [ + 109.3184873, + -0.0632556 + ] + ] + }, + "id": "way/574255262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255263", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224937, + -0.0568825 + ], + [ + 109.3221335, + -0.0572885 + ], + [ + 109.3220711, + -0.0573673 + ], + [ + 109.3220516, + -0.057389 + ], + [ + 109.3220285, + -0.0574165 + ] + ] + }, + "id": "way/574255263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255264", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230897, + -0.0574252 + ], + [ + 109.3226714, + -0.0579115 + ] + ] + }, + "id": "way/574255264" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255265", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208176, + -0.0563361 + ], + [ + 109.3208839, + -0.0563948 + ], + [ + 109.321115, + -0.0566074 + ], + [ + 109.3214603, + -0.056925 + ], + [ + 109.3220285, + -0.0574165 + ], + [ + 109.3223172, + -0.0576809 + ] + ] + }, + "id": "way/574255265" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255266", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207429, + -0.0579469 + ], + [ + 109.321058, + -0.0575333 + ] + ] + }, + "id": "way/574255266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255267", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207429, + -0.0579469 + ], + [ + 109.3205109, + -0.0582535 + ] + ] + }, + "id": "way/574255267" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255268", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228202, + -0.0595014 + ], + [ + 109.3227738, + -0.0594659 + ] + ] + }, + "id": "way/574255268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574255269", + "highway": "living_street", + "name": "Gang Purnama Lestari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322378, + -0.0600694 + ], + [ + 109.3205632, + -0.0590018 + ] + ] + }, + "id": "way/574255269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574258863", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062488, + -0.0457297 + ], + [ + 109.3068157, + -0.0451628 + ] + ] + }, + "id": "way/574258863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574258871", + "highway": "residential", + "name": "Gang Umar Jambul" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042349, + -0.0454259 + ], + [ + 109.3045987, + -0.0451901 + ] + ] + }, + "id": "way/574258871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574258895", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029256, + -0.0446139 + ], + [ + 109.3031489, + -0.0444737 + ], + [ + 109.3031783, + -0.0444489 + ], + [ + 109.3032125, + -0.044408 + ], + [ + 109.3032494, + -0.0443704 + ], + [ + 109.3032951, + -0.0443409 + ], + [ + 109.3038154, + -0.0440311 + ], + [ + 109.3044075, + -0.0436482 + ] + ] + }, + "id": "way/574258895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574258952", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127828, + -0.0448167 + ], + [ + 109.3134345, + -0.0454266 + ] + ] + }, + "id": "way/574258952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574258993", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025197, + -0.0470232 + ], + [ + 109.3045211, + -0.0456674 + ] + ] + }, + "id": "way/574258993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259057", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051236, + -0.0481303 + ], + [ + 109.3049119, + -0.0484592 + ] + ] + }, + "id": "way/574259057" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259058", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3047468, + -0.0479774 + ], + [ + 109.3045891, + -0.0482434 + ] + ] + }, + "id": "way/574259058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259119", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085207, + -0.0529167 + ], + [ + 109.3092007, + -0.0533209 + ] + ] + }, + "id": "way/574259119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259158", + "highway": "residential", + "name": "Gang Jambu Mente 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309879, + -0.0540342 + ], + [ + 109.3104452, + -0.0534647 + ] + ] + }, + "id": "way/574259158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259177", + "highway": "residential", + "name": "Gang Wonorejo Jalur 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101565, + -0.054416 + ], + [ + 109.3090694, + -0.0538609 + ] + ] + }, + "id": "way/574259177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259178", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310539, + -0.0548921 + ], + [ + 109.3107777, + -0.0545059 + ], + [ + 109.3113218, + -0.0539412 + ] + ] + }, + "id": "way/574259178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259194", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310649, + -0.0544241 + ], + [ + 109.311173, + -0.0538641 + ] + ] + }, + "id": "way/574259194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259200", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128296, + -0.0511732 + ], + [ + 109.3124983, + -0.0515329 + ] + ] + }, + "id": "way/574259200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259237", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121021, + -0.0492083 + ], + [ + 109.3122502, + -0.0489919 + ], + [ + 109.3123339, + -0.048861 + ] + ] + }, + "id": "way/574259237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259324", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042696, + -0.0465525 + ], + [ + 109.3046254, + -0.0462587 + ], + [ + 109.3049556, + -0.0459905 + ] + ] + }, + "id": "way/574259324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259328", + "highway": "residential", + "name": "Gang Bersama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029353, + -0.0478872 + ], + [ + 109.3042734, + -0.0469353 + ] + ] + }, + "id": "way/574259328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259956", + "highway": "residential", + "name": "KOMPLEK TIARA PESONA - MALAYA PERMAI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714567, + -0.0016952 + ], + [ + 109.3722385, + -0.0016844 + ], + [ + 109.3734924, + -0.001663 + ] + ] + }, + "id": "way/574259956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259957", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718027, + -0.0013585 + ], + [ + 109.3718194, + -0.0010246 + ] + ] + }, + "id": "way/574259957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259958", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714674, + -0.0013612 + ], + [ + 109.3718027, + -0.0013585 + ], + [ + 109.3721031, + -0.0013599 + ], + [ + 109.3724329, + -0.0013553 + ], + [ + 109.3733443, + -0.0013467 + ] + ] + }, + "id": "way/574259958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259959", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3742436, + -0.0034242 + ], + [ + 109.372732, + -0.003279 + ] + ] + }, + "id": "way/574259959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259960", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3713488, + -0.0039639 + ], + [ + 109.3718643, + -0.0039687 + ], + [ + 109.3727328, + -0.0039898 + ], + [ + 109.3736225, + -0.0040287 + ], + [ + 109.3744195, + -0.004048 + ], + [ + 109.374517, + -0.0040504 + ] + ] + }, + "id": "way/574259960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574259961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751578, + -0.007075 + ], + [ + 109.3749992, + -0.0071055 + ], + [ + 109.3748111, + -0.0071387 + ], + [ + 109.3746599, + -0.0071672 + ], + [ + 109.3744319, + -0.0072091 + ], + [ + 109.3742418, + -0.0072369 + ], + [ + 109.3740735, + -0.0072587 + ], + [ + 109.3740376, + -0.0072695 + ], + [ + 109.3740101, + -0.0072815 + ], + [ + 109.3739706, + -0.0073097 + ] + ] + }, + "id": "way/574259961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260628", + "highway": "residential", + "name": "Gang parit Demang I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280552, + -0.0669915 + ], + [ + 109.3276796, + -0.0664685 + ], + [ + 109.3273551, + -0.0660112 + ], + [ + 109.326462, + -0.0647304 + ], + [ + 109.3261394, + -0.0643088 + ] + ] + }, + "id": "way/574260628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260635", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359853, + -0.0611652 + ], + [ + 109.3357564, + -0.0614257 + ], + [ + 109.3355142, + -0.0617009 + ], + [ + 109.3352954, + -0.0619716 + ] + ] + }, + "id": "way/574260635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260636", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326364, + -0.0635583 + ], + [ + 109.3327893, + -0.0637353 + ], + [ + 109.3347801, + -0.0653158 + ] + ] + }, + "id": "way/574260636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260637", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329663, + -0.0633039 + ], + [ + 109.3350604, + -0.0649624 + ] + ] + }, + "id": "way/574260637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260639", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358846, + -0.0657899 + ], + [ + 109.3350842, + -0.0650787 + ] + ] + }, + "id": "way/574260639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260640", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322481, + -0.0619764 + ], + [ + 109.3318056, + -0.0613703 + ], + [ + 109.3310055, + -0.0601557 + ] + ] + }, + "id": "way/574260640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260643", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333819, + -0.0578377 + ], + [ + 109.3341559, + -0.0575421 + ] + ] + }, + "id": "way/574260643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260644", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336661, + -0.0546002 + ], + [ + 109.3345272, + -0.0568146 + ], + [ + 109.3351623, + -0.0584668 + ], + [ + 109.335161, + -0.0584809 + ], + [ + 109.3351576, + -0.0584889 + ] + ] + }, + "id": "way/574260644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260645", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341612, + -0.0569574 + ], + [ + 109.3345272, + -0.0568146 + ], + [ + 109.3345944, + -0.0567884 + ] + ] + }, + "id": "way/574260645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260646", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347915, + -0.0586365 + ], + [ + 109.3341612, + -0.0569574 + ], + [ + 109.3333103, + -0.054767 + ] + ] + }, + "id": "way/574260646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260647", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340646, + -0.0591219 + ], + [ + 109.3343854, + -0.0588772 + ], + [ + 109.3347915, + -0.0586365 + ], + [ + 109.334915, + -0.0585908 + ], + [ + 109.3351476, + -0.058499 + ], + [ + 109.3351576, + -0.0584889 + ] + ] + }, + "id": "way/574260647" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260648", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340177, + -0.0608666 + ], + [ + 109.334791, + -0.0599328 + ], + [ + 109.3347917, + -0.0599215 + ], + [ + 109.3347865, + -0.059907 + ], + [ + 109.3347419, + -0.0598662 + ] + ] + }, + "id": "way/574260648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260649", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352954, + -0.0619716 + ], + [ + 109.3346722, + -0.0614554 + ], + [ + 109.3344232, + -0.0612236 + ], + [ + 109.3342266, + -0.0610405 + ] + ] + }, + "id": "way/574260649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260650", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329221, + -0.0617867 + ], + [ + 109.3331921, + -0.0615047 + ], + [ + 109.3332875, + -0.0614051 + ], + [ + 109.3335494, + -0.0611146 + ], + [ + 109.333594, + -0.0610652 + ], + [ + 109.333773, + -0.0608432 + ], + [ + 109.3338025, + -0.0608057 + ], + [ + 109.3338427, + -0.0607788 + ], + [ + 109.3338883, + -0.0607855 + ] + ] + }, + "id": "way/574260650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260651", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323212, + -0.0588698 + ], + [ + 109.3330173, + -0.0601881 + ] + ] + }, + "id": "way/574260651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260652", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333773, + -0.0608432 + ], + [ + 109.3333397, + -0.0599094 + ], + [ + 109.332684, + -0.0587042 + ] + ] + }, + "id": "way/574260652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260653", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304564, + -0.0625618 + ], + [ + 109.329922, + -0.0617961 + ], + [ + 109.3293881, + -0.0610234 + ], + [ + 109.3285647, + -0.0598193 + ] + ] + }, + "id": "way/574260653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260654", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301608, + -0.0628807 + ], + [ + 109.3295974, + -0.0620911 + ], + [ + 109.3290786, + -0.0613254 + ] + ] + }, + "id": "way/574260654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260655", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297984, + -0.0631557 + ], + [ + 109.330014, + -0.0629921 + ], + [ + 109.3301608, + -0.0628807 + ], + [ + 109.3303364, + -0.0627496 + ], + [ + 109.3304531, + -0.0626564 + ], + [ + 109.3304685, + -0.0626255 + ], + [ + 109.3304651, + -0.0626021 + ], + [ + 109.3304564, + -0.0625618 + ] + ] + }, + "id": "way/574260655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260656", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296859, + -0.0636653 + ], + [ + 109.3284769, + -0.0619145 + ] + ] + }, + "id": "way/574260656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260657", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3283203, + -0.062056 + ], + [ + 109.3270907, + -0.0602535 + ] + ] + }, + "id": "way/574260657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260658", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326812, + -0.0619999 + ], + [ + 109.3263949, + -0.0613079 + ], + [ + 109.3260788, + -0.0607418 + ], + [ + 109.3260562, + -0.0607018 + ] + ] + }, + "id": "way/574260658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260659", + "highway": "residential", + "name": "Gang Purnama Indah 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258303, + -0.0610524 + ], + [ + 109.325432, + -0.060341 + ], + [ + 109.3251899, + -0.0598877 + ], + [ + 109.3248687, + -0.0592131 + ], + [ + 109.3243016, + -0.0579895 + ] + ] + }, + "id": "way/574260659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260660", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287876, + -0.061622 + ], + [ + 109.3279539, + -0.060406 + ], + [ + 109.3279532, + -0.0603933 + ], + [ + 109.3279539, + -0.0603785 + ], + [ + 109.327964, + -0.0603644 + ], + [ + 109.3282401, + -0.0601128 + ], + [ + 109.3285647, + -0.0598193 + ], + [ + 109.3287083, + -0.0596718 + ], + [ + 109.3288189, + -0.059543 + ] + ] + }, + "id": "way/574260660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260661", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318732, + -0.0589365 + ], + [ + 109.3317204, + -0.0585619 + ], + [ + 109.3314307, + -0.0577393 + ] + ] + }, + "id": "way/574260661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260662", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319471, + -0.0584192 + ], + [ + 109.3317204, + -0.0585619 + ], + [ + 109.3313627, + -0.0587178 + ] + ] + }, + "id": "way/574260662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260663", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321215, + -0.0588694 + ], + [ + 109.3319471, + -0.0584192 + ], + [ + 109.3309792, + -0.0558919 + ] + ] + }, + "id": "way/574260663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260664", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328141, + -0.0585768 + ], + [ + 109.3322555, + -0.0569842 + ], + [ + 109.331754, + -0.0555197 + ] + ] + }, + "id": "way/574260664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260665", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315376, + -0.0591987 + ], + [ + 109.3316004, + -0.0591642 + ], + [ + 109.3319393, + -0.0590228 + ], + [ + 109.3321537, + -0.0589365 + ], + [ + 109.3323212, + -0.0588698 + ], + [ + 109.3324991, + -0.0587886 + ], + [ + 109.332684, + -0.0587042 + ], + [ + 109.3327785, + -0.0586582 + ], + [ + 109.332799, + -0.0586492 + ], + [ + 109.3328114, + -0.0586371 + ], + [ + 109.3328221, + -0.0586237 + ], + [ + 109.3328218, + -0.0586056 + ], + [ + 109.3328141, + -0.0585768 + ], + [ + 109.333016, + -0.0584902 + ], + [ + 109.3331567, + -0.0584299 + ], + [ + 109.3335376, + -0.0582154 + ] + ] + }, + "id": "way/574260665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260666", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310419, + -0.0579472 + ], + [ + 109.3313627, + -0.0587178 + ], + [ + 109.3315379, + -0.0591085 + ] + ] + }, + "id": "way/574260666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260667", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276493, + -0.0571961 + ], + [ + 109.3278544, + -0.0570596 + ], + [ + 109.3280714, + -0.0569593 + ], + [ + 109.3281881, + -0.0569057 + ] + ] + }, + "id": "way/574260667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574260668", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276273, + -0.058096 + ], + [ + 109.3264935, + -0.0558516 + ] + ] + }, + "id": "way/574260668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574268349", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490759, + -0.0115455 + ], + [ + 109.3492748, + -0.0117728 + ], + [ + 109.3494719, + -0.0119881 + ] + ] + }, + "id": "way/574268349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574272705", + "highway": "trunk", + "name": "Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2926019, + 0.0112445 + ], + [ + 109.2929737, + 0.011104 + ], + [ + 109.2940047, + 0.0106815 + ], + [ + 109.29469, + 0.0104217 + ], + [ + 109.2952056, + 0.0101621 + ] + ] + }, + "id": "way/574272705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574275673", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2965239, + 0.0164785 + ], + [ + 109.2964735, + 0.0164993 + ] + ] + }, + "id": "way/574275673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574275676", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2963357, + 0.0161182 + ], + [ + 109.296411, + 0.0160924 + ] + ] + }, + "id": "way/574275676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574275678", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968115, + 0.0175643 + ], + [ + 109.2967871, + 0.01757 + ] + ] + }, + "id": "way/574275678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574275679", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2976492, + 0.0205843 + ], + [ + 109.2977056, + 0.0205725 + ] + ] + }, + "id": "way/574275679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574275680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2977056, + 0.0205725 + ], + [ + 109.298467, + 0.0203097 + ] + ] + }, + "id": "way/574275680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574275682", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "surface": "grass" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2978206, + 0.0211588 + ], + [ + 109.2978974, + 0.0211453 + ] + ] + }, + "id": "way/574275682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574275684", + "highway": "residential", + "surface": "grass" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2977873, + 0.0211699 + ], + [ + 109.2978206, + 0.0211588 + ] + ] + }, + "id": "way/574275684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574282989", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013244, + 0.0116964 + ], + [ + 109.3012473, + 0.0117379 + ] + ] + }, + "id": "way/574282989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293307", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550879, + -0.0118207 + ], + [ + 109.3550085, + -0.0117998 + ] + ] + }, + "id": "way/574293307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293308", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550723, + -0.0113177 + ], + [ + 109.3551367, + -0.0113392 + ] + ] + }, + "id": "way/574293308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293309", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555238, + -0.0078526 + ], + [ + 109.3555911, + -0.0078701 + ] + ] + }, + "id": "way/574293309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293310", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556719, + -0.0072778 + ], + [ + 109.3556083, + -0.0072655 + ] + ] + }, + "id": "way/574293310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293311", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557968, + -0.005753 + ], + [ + 109.3555412, + -0.0057014 + ] + ] + }, + "id": "way/574293311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293312", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560989, + -0.0041014 + ], + [ + 109.3559973, + -0.0040331 + ] + ] + }, + "id": "way/574293312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293313", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356063, + -0.0034307 + ], + [ + 109.3561623, + -0.0034326 + ] + ] + }, + "id": "way/574293313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293314", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562885, + -0.0023168 + ], + [ + 109.3562128, + -0.0022917 + ] + ] + }, + "id": "way/574293314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293315", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563649, + -0.0020633 + ], + [ + 109.3562572, + -0.0020331 + ] + ] + }, + "id": "way/574293315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574293316", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563395, + -0.0019388 + ], + [ + 109.3562558, + -0.0018803 + ] + ] + }, + "id": "way/574293316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574294623", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362191, + 0.025363 + ], + [ + 109.3362272, + 0.0254944 + ], + [ + 109.3362339, + 0.0257693 + ], + [ + 109.336254, + 0.0260617 + ], + [ + 109.3362862, + 0.0267631 + ] + ] + }, + "id": "way/574294623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300820", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274245, + -0.0549412 + ], + [ + 109.3273518, + -0.0548439 + ] + ] + }, + "id": "way/574300820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300822", + "highway": "residential", + "name": "Gang Karya Tani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282374, + -0.0563213 + ], + [ + 109.3274245, + -0.0549412 + ] + ] + }, + "id": "way/574300822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300824", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3316299, + -0.05936 + ], + [ + 109.331654, + -0.0593794 + ], + [ + 109.331701, + -0.0594203 + ], + [ + 109.3317305, + -0.0594592 + ], + [ + 109.3318384, + -0.0596342 + ], + [ + 109.3318485, + -0.0596503 + ] + ] + }, + "id": "way/574300824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300874", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292407, + -0.0559784 + ], + [ + 109.3296114, + -0.0565545 + ], + [ + 109.3296654, + -0.0566385 + ] + ] + }, + "id": "way/574300874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300893", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254147, + -0.0644248 + ], + [ + 109.3258745, + -0.0639634 + ] + ] + }, + "id": "way/574300893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300896", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262058, + -0.0632539 + ], + [ + 109.3265667, + -0.0638356 + ] + ] + }, + "id": "way/574300896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300897", + "highway": "residential", + "name": "Gang H. Tajib" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279586, + -0.0651187 + ], + [ + 109.3276421, + -0.0646841 + ], + [ + 109.3272934, + -0.0642187 + ], + [ + 109.3268078, + -0.0635725 + ] + ] + }, + "id": "way/574300897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300898", + "highway": "residential", + "name": "Gang parit Demang 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274933, + -0.0651274 + ], + [ + 109.326551, + -0.0638536 + ] + ] + }, + "id": "way/574300898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300965", + "highway": "residential", + "name": "Gang Perintis 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239426, + -0.054088 + ], + [ + 109.3239846, + -0.0541254 + ], + [ + 109.3249391, + -0.0549766 + ], + [ + 109.3261072, + -0.0560149 + ] + ] + }, + "id": "way/574300965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300966", + "highway": "residential", + "name": "Gang Perintis Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253041, + -0.054793 + ], + [ + 109.3263818, + -0.0557503 + ] + ] + }, + "id": "way/574300966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300968", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264935, + -0.0558516 + ], + [ + 109.3264415, + -0.0557811 + ] + ] + }, + "id": "way/574300968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574300969", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288464, + -0.0556993 + ], + [ + 109.3289812, + -0.0556129 + ], + [ + 109.3289919, + -0.0555928 + ], + [ + 109.3289852, + -0.0555619 + ], + [ + 109.3289436, + -0.0554949 + ], + [ + 109.3281846, + -0.0542504 + ] + ] + }, + "id": "way/574300969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574302724", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313325, + 0.0083178 + ], + [ + 109.3141181, + 0.0079327 + ], + [ + 109.314225, + 0.0078817 + ], + [ + 109.3146595, + 0.0076684 + ], + [ + 109.3148897, + 0.0075703 + ] + ] + }, + "id": "way/574302724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574302725", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122359, + 0.0075575 + ], + [ + 109.3128647, + 0.0072739 + ] + ] + }, + "id": "way/574302725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574302726", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130298, + 0.0065486 + ], + [ + 109.3132849, + 0.0073278 + ] + ] + }, + "id": "way/574302726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574302732", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120183, + 0.0064611 + ], + [ + 109.3121265, + 0.0064312 + ], + [ + 109.3124425, + 0.0063297 + ] + ] + }, + "id": "way/574302732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574302733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119102, + 0.0071843 + ], + [ + 109.3119709, + 0.0071758 + ], + [ + 109.3120585, + 0.0071577 + ], + [ + 109.3127004, + 0.0068932 + ] + ] + }, + "id": "way/574302733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574302734", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124843, + 0.0080976 + ], + [ + 109.3122359, + 0.0075575 + ], + [ + 109.3120585, + 0.0071577 + ] + ] + }, + "id": "way/574302734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574302735", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094145, + 0.0093904 + ], + [ + 109.3101512, + 0.0091724 + ] + ] + }, + "id": "way/574302735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574311984", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646961, + -0.005689 + ], + [ + 109.3648197, + -0.005698 + ] + ] + }, + "id": "way/574311984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574314822", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576728, + 0.008516 + ], + [ + 109.3577277, + 0.0084977 + ] + ] + }, + "id": "way/574314822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574314824", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575983, + 0.0085381 + ], + [ + 109.3576728, + 0.008516 + ] + ] + }, + "id": "way/574314824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574314827", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576962, + 0.0088278 + ], + [ + 109.3577776, + 0.0087952 + ] + ] + }, + "id": "way/574314827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574314828", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575648, + 0.0088539 + ], + [ + 109.3576158, + 0.0088419 + ] + ] + }, + "id": "way/574314828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574314829", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3577298, + 0.0091081 + ], + [ + 109.3578262, + 0.0090843 + ] + ] + }, + "id": "way/574314829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574314830", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574944, + 0.0092563 + ], + [ + 109.3576661, + 0.0091436 + ] + ] + }, + "id": "way/574314830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317574", + "highway": "residential", + "name": "Jalan Tebu 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048719, + -0.008767 + ], + [ + 109.3048618, + -0.0082467 + ], + [ + 109.3048583, + -0.0081546 + ], + [ + 109.3048585, + -0.0080603 + ], + [ + 109.3048699, + -0.0078106 + ], + [ + 109.3048842, + -0.0075719 + ], + [ + 109.3048815, + -0.0075548 + ], + [ + 109.3048734, + -0.0075414 + ] + ] + }, + "id": "way/574317574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317577", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035351, + -0.0101244 + ], + [ + 109.3035563, + -0.0097372 + ], + [ + 109.3035565, + -0.0094062 + ], + [ + 109.3035765, + -0.0090689 + ], + [ + 109.3035871, + -0.0088886 + ], + [ + 109.3035958, + -0.0087418 + ] + ] + }, + "id": "way/574317577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317580", + "highway": "residential", + "name": "Jalan Tebu 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014155, + -0.0141138 + ], + [ + 109.3017347, + -0.0141567 + ], + [ + 109.3019058, + -0.0141615 + ], + [ + 109.3024148, + -0.0141823 + ], + [ + 109.3028055, + -0.0141662 + ], + [ + 109.3033993, + -0.0141426 + ], + [ + 109.305086, + -0.0140757 + ], + [ + 109.3050799, + -0.0136472 + ], + [ + 109.3050897, + -0.0132106 + ], + [ + 109.3050939, + -0.0127241 + ], + [ + 109.3050952, + -0.0125613 + ], + [ + 109.3051005, + -0.0122654 + ], + [ + 109.3051023, + -0.0122331 + ], + [ + 109.3051067, + -0.0118716 + ], + [ + 109.3051027, + -0.0117211 + ], + [ + 109.3050938, + -0.0115057 + ] + ] + }, + "id": "way/574317580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317586", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309297, + -0.0123706 + ], + [ + 109.3124634, + -0.0135054 + ], + [ + 109.3124685, + -0.0135072 + ] + ] + }, + "id": "way/574317586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317589", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092269, + -0.0123548 + ], + [ + 109.309297, + -0.0123706 + ] + ] + }, + "id": "way/574317589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317593", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093393, + -0.0120038 + ], + [ + 109.3124998, + -0.0131764 + ] + ] + }, + "id": "way/574317593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317595", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309482, + -0.0114811 + ], + [ + 109.3126068, + -0.0126013 + ] + ] + }, + "id": "way/574317595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317597", + "highway": "residential", + "motorcar": "destination", + "name": "Jalur 2B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094324, + -0.0116669 + ], + [ + 109.3125471, + -0.0128672 + ] + ] + }, + "id": "way/574317597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317599", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096437, + -0.0109953 + ], + [ + 109.3104394, + -0.0113051 + ], + [ + 109.3115229, + -0.0117007 + ], + [ + 109.312747, + -0.0121476 + ] + ] + }, + "id": "way/574317599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317619", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102213, + -0.0092811 + ], + [ + 109.3103609, + -0.0093256 + ], + [ + 109.3106453, + -0.009455 + ], + [ + 109.310973, + -0.0096156 + ] + ] + }, + "id": "way/574317619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317622", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105839, + -0.0104231 + ], + [ + 109.3107129, + -0.0101503 + ], + [ + 109.3108366, + -0.0098843 + ], + [ + 109.310973, + -0.0096156 + ] + ] + }, + "id": "way/574317622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317624", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052756, + -0.0050572 + ], + [ + 109.3051596, + -0.005031 + ] + ] + }, + "id": "way/574317624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574317627", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051596, + -0.005031 + ], + [ + 109.3051423, + -0.0050268 + ], + [ + 109.3049419, + -0.0050063 + ], + [ + 109.3047794, + -0.004989 + ], + [ + 109.3045341, + -0.0049753 + ], + [ + 109.3038716, + -0.0049509 + ], + [ + 109.3037611, + -0.0049468 + ], + [ + 109.3036407, + -0.0049394 + ], + [ + 109.3035714, + -0.0049334 + ], + [ + 109.3033876, + -0.0049372 + ], + [ + 109.3031475, + -0.0049422 + ], + [ + 109.3024789, + -0.0049561 + ], + [ + 109.3022533, + -0.0049667 + ], + [ + 109.3020846, + -0.0050083 + ], + [ + 109.3019338, + -0.0050613 + ], + [ + 109.3018007, + -0.0051285 + ], + [ + 109.3013636, + -0.0053972 + ], + [ + 109.301351, + -0.0054075 + ], + [ + 109.3008706, + -0.0056493 + ], + [ + 109.3005308, + -0.0058567 + ], + [ + 109.300404, + -0.0059296 + ], + [ + 109.2994165, + -0.006566 + ], + [ + 109.2984987, + -0.0071148 + ], + [ + 109.2979996, + -0.0074227 + ], + [ + 109.2978351, + -0.0075264 + ], + [ + 109.2974654, + -0.0077218 + ], + [ + 109.2973338, + -0.0077824 + ], + [ + 109.2972024, + -0.0078253 + ], + [ + 109.2969386, + -0.00789 + ] + ] + }, + "id": "way/574317627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574328341", + "highway": "service", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703159, + -0.0045088 + ], + [ + 109.3703225, + -0.0044708 + ] + ] + }, + "id": "way/574328341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574328343", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3702774, + -0.0047693 + ], + [ + 109.3703159, + -0.0045088 + ] + ] + }, + "id": "way/574328343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574328345", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703225, + -0.0044708 + ], + [ + 109.3703717, + -0.0041936 + ], + [ + 109.3704401, + -0.0038322 + ], + [ + 109.3704743, + -0.0036545 + ], + [ + 109.3704766, + -0.0036387 + ], + [ + 109.3705038, + -0.0034554 + ], + [ + 109.3705065, + -0.0034272 + ], + [ + 109.3704964, + -0.0034104 + ], + [ + 109.3699117, + -0.0033259 + ] + ] + }, + "id": "way/574328345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574328347", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3698214, + -0.0044218 + ], + [ + 109.3698252, + -0.0043902 + ] + ] + }, + "id": "way/574328347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574328349", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3697824, + -0.0046993 + ], + [ + 109.3698214, + -0.0044218 + ] + ] + }, + "id": "way/574328349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574328351", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3698252, + -0.0043902 + ], + [ + 109.3698581, + -0.004201 + ], + [ + 109.3698956, + -0.0040136 + ], + [ + 109.3698916, + -0.0039972 + ], + [ + 109.3698815, + -0.0039895 + ], + [ + 109.3697789, + -0.0039777 + ] + ] + }, + "id": "way/574328351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574328353", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3692566, + -0.0034428 + ], + [ + 109.3684781, + -0.0033592 + ] + ] + }, + "id": "way/574328353" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574328360", + "highway": "service", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3691516, + -0.0042435 + ], + [ + 109.3691579, + -0.0041945 + ] + ] + }, + "id": "way/574328360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574328362", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3691111, + -0.0046049 + ], + [ + 109.3691516, + -0.0042435 + ] + ] + }, + "id": "way/574328362" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574329499", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518603, + -0.0268547 + ], + [ + 109.3514722, + -0.0268523 + ], + [ + 109.3514608, + -0.0268476 + ], + [ + 109.3514478, + -0.0268314 + ], + [ + 109.3513967, + -0.0266164 + ], + [ + 109.3513015, + -0.0263661 + ], + [ + 109.3512736, + -0.0263195 + ], + [ + 109.351121, + -0.0259651 + ], + [ + 109.3510394, + -0.025758 + ] + ] + }, + "id": "way/574329499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574329501", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601455, + -0.0183708 + ], + [ + 109.3601592, + -0.0183506 + ], + [ + 109.3601807, + -0.0183137 + ], + [ + 109.3602061, + -0.0182632 + ], + [ + 109.3602202, + -0.0182296 + ], + [ + 109.3602303, + -0.0181998 + ], + [ + 109.3602303, + -0.0181428 + ], + [ + 109.3602149, + -0.018072 + ], + [ + 109.3602095, + -0.0180553 + ], + [ + 109.3601988, + -0.0180405 + ], + [ + 109.3601766, + -0.0180285 + ], + [ + 109.3600841, + -0.0180392 + ], + [ + 109.3600626, + -0.0180379 + ], + [ + 109.3600559, + -0.0180311 + ], + [ + 109.3600559, + -0.0180151 + ], + [ + 109.3600654, + -0.0179087 + ], + [ + 109.3600827, + -0.0178011 + ], + [ + 109.3600962, + -0.0177388 + ] + ] + }, + "id": "way/574329501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574329504", + "highway": "residential", + "name": "Gang Sadaraya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600962, + -0.0177388 + ], + [ + 109.3601142, + -0.0175479 + ], + [ + 109.3601163, + -0.0174382 + ], + [ + 109.3601407, + -0.0171028 + ], + [ + 109.3601529, + -0.0168365 + ], + [ + 109.3601549, + -0.0166698 + ], + [ + 109.3601772, + -0.0164889 + ], + [ + 109.3601793, + -0.0164137 + ], + [ + 109.3601766, + -0.0163326 + ], + [ + 109.3601713, + -0.0163233 + ], + [ + 109.3601659, + -0.0163105 + ], + [ + 109.3601552, + -0.0163038 + ] + ] + }, + "id": "way/574329504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574329507", + "highway": "residential", + "name": "Gang Sadaraya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597558, + -0.016268 + ], + [ + 109.3601552, + -0.0163038 + ] + ] + }, + "id": "way/574329507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574329509", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546899, + -0.0155962 + ], + [ + 109.3547566, + -0.015604 + ] + ] + }, + "id": "way/574329509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574329511", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547566, + -0.015604 + ], + [ + 109.3548732, + -0.0156005 + ] + ] + }, + "id": "way/574329511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574339397", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436086, + 0.0036196 + ], + [ + 109.3436944, + 0.003629 + ] + ] + }, + "id": "way/574339397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574342491", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575139, + 0.0073392 + ], + [ + 109.3575557, + 0.0073335 + ] + ] + }, + "id": "way/574342491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574342492", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574461, + 0.0073545 + ], + [ + 109.3575139, + 0.0073392 + ] + ] + }, + "id": "way/574342492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574342494", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576044, + 0.0080225 + ], + [ + 109.3576546, + 0.0080176 + ] + ] + }, + "id": "way/574342494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574342496", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574998, + 0.0080453 + ], + [ + 109.3576044, + 0.0080225 + ] + ] + }, + "id": "way/574342496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574343067", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3748635, + -0.0127343 + ], + [ + 109.3751648, + -0.0128193 + ], + [ + 109.375604, + -0.0129457 + ], + [ + 109.37595, + -0.0130396 + ], + [ + 109.3763302, + -0.013138 + ] + ] + }, + "id": "way/574343067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574343069", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3747611, + -0.0130231 + ], + [ + 109.3750022, + -0.0130962 + ], + [ + 109.3751135, + -0.0131281 + ], + [ + 109.3752346, + -0.0131637 + ], + [ + 109.3753552, + -0.0131955 + ], + [ + 109.3754813, + -0.013229 + ], + [ + 109.3755638, + -0.0132548 + ], + [ + 109.3757049, + -0.0132974 + ], + [ + 109.3757908, + -0.0133235 + ], + [ + 109.3759554, + -0.0133722 + ], + [ + 109.3764099, + -0.0135191 + ] + ] + }, + "id": "way/574343069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574343071", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3736432, + -0.0151057 + ], + [ + 109.3736949, + -0.0151064 + ] + ] + }, + "id": "way/574343071" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574343076", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3738128, + -0.014752 + ], + [ + 109.3738602, + -0.0147682 + ] + ] + }, + "id": "way/574343076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574343079", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740234, + -0.0143458 + ], + [ + 109.3740785, + -0.0143722 + ] + ] + }, + "id": "way/574343079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574343083", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3742439, + -0.0139054 + ], + [ + 109.3742902, + -0.0139212 + ] + ] + }, + "id": "way/574343083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374581", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3752486, + -0.0599789 + ], + [ + 109.375252, + -0.0600949 + ], + [ + 109.3752547, + -0.0601391 + ], + [ + 109.3752781, + -0.0601914 + ], + [ + 109.3754002, + -0.0603638 + ], + [ + 109.3754956, + -0.0604737 + ] + ] + }, + "id": "way/574374581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374583", + "highway": "residential", + "name": "Gang Haji Rais" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3754956, + -0.0604737 + ], + [ + 109.3756865, + -0.0603376 + ], + [ + 109.3760794, + -0.0600399 + ], + [ + 109.3765864, + -0.0596523 + ], + [ + 109.3768962, + -0.0594176 + ], + [ + 109.3770611, + -0.0592875 + ] + ] + }, + "id": "way/574374583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374585", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3738787, + -0.0616535 + ], + [ + 109.3742741, + -0.0613166 + ], + [ + 109.3747539, + -0.0609076 + ], + [ + 109.3754002, + -0.0603638 + ] + ] + }, + "id": "way/574374585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3746136, + -0.06017 + ], + [ + 109.3749087, + -0.0599936 + ], + [ + 109.3750823, + -0.0598904 + ], + [ + 109.3751782, + -0.0598334 + ], + [ + 109.3752273, + -0.0598054 + ] + ] + }, + "id": "way/574374587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374589", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3750778, + -0.0596076 + ], + [ + 109.3751923, + -0.0595383 + ], + [ + 109.3753465, + -0.0594384 + ], + [ + 109.3755946, + -0.0592815 + ] + ] + }, + "id": "way/574374589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374590", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.37432, + -0.0593371 + ], + [ + 109.3746925, + -0.0591201 + ] + ] + }, + "id": "way/574374590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.374718, + -0.0591507 + ], + [ + 109.3754263, + -0.0587089 + ], + [ + 109.3758287, + -0.058448 + ], + [ + 109.3762211, + -0.0581974 + ] + ] + }, + "id": "way/574374592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374594", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.37442, + -0.0587701 + ], + [ + 109.3745861, + -0.0586679 + ], + [ + 109.3748242, + -0.0585218 + ], + [ + 109.3752124, + -0.0582696 + ], + [ + 109.375494, + -0.0580765 + ], + [ + 109.3757287, + -0.0579277 + ], + [ + 109.375944, + -0.0578063 + ] + ] + }, + "id": "way/574374594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374595", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3738438, + -0.0592124 + ], + [ + 109.3744595, + -0.0588256 + ] + ] + }, + "id": "way/574374595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374597", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3742368, + -0.0585352 + ], + [ + 109.37442, + -0.0587701 + ], + [ + 109.3744595, + -0.0588256 + ], + [ + 109.3746925, + -0.0591201 + ], + [ + 109.374718, + -0.0591507 + ], + [ + 109.3749436, + -0.0594483 + ], + [ + 109.3750778, + -0.0596076 + ], + [ + 109.3751754, + -0.0597367 + ], + [ + 109.3752273, + -0.0598054 + ], + [ + 109.3752426, + -0.0598562 + ], + [ + 109.3752473, + -0.0598991 + ], + [ + 109.3752466, + -0.0599373 + ], + [ + 109.3752486, + -0.0599789 + ], + [ + 109.3755108, + -0.05983 + ] + ] + }, + "id": "way/574374597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374599", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3739593, + -0.0580015 + ], + [ + 109.3737878, + -0.0581257 + ], + [ + 109.3735421, + -0.0582938 + ], + [ + 109.373251, + -0.0584909 + ], + [ + 109.3728594, + -0.0587243 + ], + [ + 109.3723069, + -0.0590837 + ], + [ + 109.3720856, + -0.0592305 + ], + [ + 109.3720783, + -0.059246 + ], + [ + 109.3720836, + -0.0592654 + ], + [ + 109.3721681, + -0.059372 + ], + [ + 109.3721735, + -0.0593861 + ], + [ + 109.3721694, + -0.0594049 + ], + [ + 109.372142, + -0.0594297 + ], + [ + 109.3718499, + -0.0596489 + ] + ] + }, + "id": "way/574374599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374601", + "highway": "residential", + "name": "Jalan Tanjung Raya 2 Parit Mayor" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740698, + -0.0581664 + ], + [ + 109.3741301, + -0.0581174 + ], + [ + 109.3741922, + -0.0580742 + ], + [ + 109.3742465, + -0.058038 + ], + [ + 109.3743528, + -0.0579665 + ], + [ + 109.3745774, + -0.0578298 + ], + [ + 109.3748067, + -0.0576849 + ], + [ + 109.3749744, + -0.057583 + ], + [ + 109.3751561, + -0.0574683 + ], + [ + 109.3753767, + -0.0573349 + ], + [ + 109.3755329, + -0.0572437 + ] + ] + }, + "id": "way/574374601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374604", + "highway": "residential", + "name": "Jalan Tanjung Raya 2 Parit Mayor" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3741858, + -0.0570921 + ], + [ + 109.3743501, + -0.0569869 + ], + [ + 109.3745841, + -0.0568373 + ], + [ + 109.3750399, + -0.0565441 + ] + ] + }, + "id": "way/574374604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374606", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3732765, + -0.0565959 + ], + [ + 109.3733717, + -0.0565302 + ], + [ + 109.3735099, + -0.0564484 + ], + [ + 109.3736413, + -0.0563747 + ], + [ + 109.3738291, + -0.0562828 + ], + [ + 109.3740577, + -0.0561621 + ], + [ + 109.374218, + -0.0560696 + ], + [ + 109.3743829, + -0.0559683 + ], + [ + 109.374568, + -0.0558583 + ] + ] + }, + "id": "way/574374606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374608", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718657, + -0.0572705 + ], + [ + 109.3744726, + -0.055732 + ] + ] + }, + "id": "way/574374608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3713829, + -0.0570425 + ], + [ + 109.3733811, + -0.0558865 + ], + [ + 109.3742546, + -0.055403 + ] + ] + }, + "id": "way/574374611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703898, + -0.0566597 + ], + [ + 109.3702074, + -0.0567468 + ], + [ + 109.3699361, + -0.0568759 + ] + ] + }, + "id": "way/574374612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574374615", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709571, + -0.0555465 + ], + [ + 109.370715, + -0.0556686 + ], + [ + 109.3704716, + -0.0557946 + ], + [ + 109.3702845, + -0.0559002 + ], + [ + 109.3701444, + -0.0559834 + ], + [ + 109.3700052, + -0.0560642 + ], + [ + 109.3696206, + -0.0562826 + ] + ] + }, + "id": "way/574374615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574375778", + "highway": "residential", + "name": "Gang Sudimoro" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271504, + -0.0480108 + ], + [ + 109.3271666, + -0.048001 + ], + [ + 109.3281888, + -0.04737 + ], + [ + 109.3284693, + -0.0472099 + ], + [ + 109.3286115, + -0.0471078 + ], + [ + 109.3287471, + -0.0470441 + ] + ] + }, + "id": "way/574375778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574375780", + "highway": "residential", + "name": "Gang Sudimoro" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329199, + -0.0468122 + ], + [ + 109.3324367, + -0.0458713 + ] + ] + }, + "id": "way/574375780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574375856", + "highway": "residential", + "name": "Kompl. Sumatra Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329528, + -0.047527 + ], + [ + 109.3311202, + -0.0470433 + ], + [ + 109.3328018, + -0.0465657 + ] + ] + }, + "id": "way/574375856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574429630", + "highway": "residential", + "name": "Jalan Tanjung Raya 2, Parit Mayor, Pontianak Timur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3756877, + -0.0574755 + ], + [ + 109.3763477, + -0.057064 + ], + [ + 109.3767701, + -0.0568011 + ], + [ + 109.3771898, + -0.0565409 + ], + [ + 109.3775319, + -0.0562955 + ], + [ + 109.3778832, + -0.0560407 + ], + [ + 109.3782373, + -0.0557671 + ], + [ + 109.3787187, + -0.0554171 + ], + [ + 109.3794362, + -0.0548565 + ] + ] + }, + "id": "way/574429630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574429631", + "highway": "residential", + "name": "Jalan Haji Kadir" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751581, + -0.0567212 + ], + [ + 109.3760017, + -0.0562459 + ], + [ + 109.376467, + -0.0559683 + ], + [ + 109.3768626, + -0.0557175 + ], + [ + 109.3771456, + -0.0555284 + ], + [ + 109.3774059, + -0.0553455 + ], + [ + 109.3774796, + -0.0552937 + ], + [ + 109.3778054, + -0.055047 + ] + ] + }, + "id": "way/574429631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574429632", + "highway": "residential", + "name": "Jalan Tanjung Raya 2 Parit Mayor" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3754448, + -0.0571179 + ], + [ + 109.3757792, + -0.0569135 + ] + ] + }, + "id": "way/574429632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574429633", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793143, + -0.054598 + ], + [ + 109.3793157, + -0.0545915 + ], + [ + 109.3793167, + -0.0545831 + ], + [ + 109.379315, + -0.0545737 + ], + [ + 109.3792163, + -0.0544458 + ], + [ + 109.3791901, + -0.0544203 + ], + [ + 109.379169, + -0.054421 + ], + [ + 109.3791499, + -0.0544301 + ], + [ + 109.3789534, + -0.0545762 + ], + [ + 109.3786879, + -0.0547781 + ], + [ + 109.3782721, + -0.0550872 + ], + [ + 109.3779697, + -0.0553132 + ], + [ + 109.3775285, + -0.0556364 + ], + [ + 109.3771791, + -0.0558818 + ], + [ + 109.3770343, + -0.0559784 + ], + [ + 109.3766568, + -0.0562218 + ], + [ + 109.3763148, + -0.056433 + ], + [ + 109.3760198, + -0.056608 + ], + [ + 109.3757663, + -0.0567441 + ], + [ + 109.3757214, + -0.0567696 + ], + [ + 109.3757153, + -0.0567857 + ], + [ + 109.3757187, + -0.0567931 + ] + ] + }, + "id": "way/574429633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574429634", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3757187, + -0.0567931 + ], + [ + 109.3757792, + -0.0569135 + ], + [ + 109.375828, + -0.0569909 + ] + ] + }, + "id": "way/574429634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574429635", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.375828, + -0.0569909 + ], + [ + 109.3758364, + -0.0569996 + ], + [ + 109.3758454, + -0.057003 + ], + [ + 109.3758615, + -0.0569976 + ], + [ + 109.3762625, + -0.0567596 + ], + [ + 109.3768566, + -0.0563834 + ], + [ + 109.3771423, + -0.0562043 + ], + [ + 109.3774051, + -0.0560293 + ], + [ + 109.3777639, + -0.0557712 + ], + [ + 109.3779986, + -0.0555982 + ], + [ + 109.3781162, + -0.055508 + ], + [ + 109.3784586, + -0.0552481 + ], + [ + 109.3788978, + -0.0549216 + ], + [ + 109.3790607, + -0.0548002 + ] + ] + }, + "id": "way/574429635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574429717", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693213, + -0.0550161 + ], + [ + 109.369388, + -0.0549719 + ], + [ + 109.369443, + -0.0549377 + ], + [ + 109.3695149, + -0.0548914 + ], + [ + 109.3695793, + -0.0548517 + ], + [ + 109.3696034, + -0.0548379 + ], + [ + 109.3696477, + -0.0548124 + ], + [ + 109.3697355, + -0.0547642 + ], + [ + 109.369819, + -0.0547206 + ], + [ + 109.3698882, + -0.0546855 + ], + [ + 109.3699717, + -0.0546513 + ], + [ + 109.3700636, + -0.0546078 + ], + [ + 109.3701843, + -0.0545397 + ], + [ + 109.3702946, + -0.0544736 + ], + [ + 109.3704324, + -0.0543865 + ], + [ + 109.3705465, + -0.0543149 + ] + ] + }, + "id": "way/574429717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574438110", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259718, + -0.0490214 + ], + [ + 109.3265619, + -0.0482672 + ] + ] + }, + "id": "way/574438110" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574447148", + "highway": "residential", + "import": "yes", + "name": "Al Mustaqim", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296505, + -0.0134751 + ], + [ + 109.2964701, + -0.0134935 + ], + [ + 109.2964473, + -0.0134868 + ], + [ + 109.2964178, + -0.0134862 + ], + [ + 109.296383, + -0.0134989 + ], + [ + 109.2963548, + -0.0135009 + ], + [ + 109.2949198, + -0.0140722 + ], + [ + 109.2948729, + -0.0140474 + ], + [ + 109.2947763, + -0.0137785 + ], + [ + 109.2950331, + -0.0136806 + ] + ] + }, + "id": "way/574447148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574447150", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2955479, + -0.0113449 + ], + [ + 109.2956635, + -0.0116697 + ], + [ + 109.2957714, + -0.0119727 + ], + [ + 109.2958923, + -0.0123124 + ] + ] + }, + "id": "way/574447150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574456309", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514045, + -0.0159015 + ], + [ + 109.3513924, + -0.0159028 + ], + [ + 109.351381, + -0.0159115 + ], + [ + 109.3513723, + -0.0159296 + ], + [ + 109.3513227, + -0.0160269 + ], + [ + 109.351202, + -0.0162709 + ], + [ + 109.3511352, + -0.0164087 + ], + [ + 109.3511084, + -0.0164624 + ], + [ + 109.3510826, + -0.0165006 + ], + [ + 109.3510578, + -0.0165241 + ], + [ + 109.3510397, + -0.0165368 + ], + [ + 109.3510243, + -0.0165563 + ], + [ + 109.3509977, + -0.0166031 + ], + [ + 109.3509257, + -0.0167544 + ], + [ + 109.3508747, + -0.0168684 + ], + [ + 109.3508084, + -0.0170457 + ], + [ + 109.3507603, + -0.0171744 + ], + [ + 109.3506933, + -0.0173461 + ] + ] + }, + "id": "way/574456309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574645314", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029275, + -0.0322408 + ], + [ + 109.3029118, + -0.0321848 + ], + [ + 109.3028997, + -0.0321761 + ], + [ + 109.302885, + -0.0321751 + ], + [ + 109.3027874, + -0.0322096 + ], + [ + 109.3027767, + -0.0322066 + ], + [ + 109.3027636, + -0.0321982 + ], + [ + 109.3026764, + -0.031985 + ], + [ + 109.3026727, + -0.0319719 + ], + [ + 109.3026748, + -0.0319538 + ], + [ + 109.3026919, + -0.0319203 + ], + [ + 109.3026955, + -0.0319099 + ], + [ + 109.3026976, + -0.0318962 + ], + [ + 109.3026772, + -0.0318678 + ] + ] + }, + "id": "way/574645314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574645382", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028431, + -0.0318539 + ], + [ + 109.30277, + -0.0316246 + ], + [ + 109.3027653, + -0.0316038 + ], + [ + 109.3027666, + -0.0315877 + ], + [ + 109.3028149, + -0.0315347 + ], + [ + 109.3028189, + -0.0315072 + ], + [ + 109.3028136, + -0.0314791 + ], + [ + 109.3027462, + -0.0311693 + ], + [ + 109.3027478, + -0.0311535 + ], + [ + 109.3027529, + -0.0311398 + ], + [ + 109.3027998, + -0.0310905 + ], + [ + 109.3028042, + -0.0310784 + ], + [ + 109.3028079, + -0.0310596 + ], + [ + 109.302801, + -0.0310229 + ] + ] + }, + "id": "way/574645382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574645394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022666, + -0.0307216 + ], + [ + 109.3026772, + -0.0318678 + ] + ] + }, + "id": "way/574645394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646181", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3807452, + -0.0547256 + ], + [ + 109.3818187, + -0.0538586 + ] + ] + }, + "id": "way/574646181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646182", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3829157, + -0.0530023 + ], + [ + 109.3818187, + -0.0538586 + ], + [ + 109.381635, + -0.0536031 + ] + ] + }, + "id": "way/574646182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646183", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3805138, + -0.0544976 + ], + [ + 109.381635, + -0.0536031 + ] + ] + }, + "id": "way/574646183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646184", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3838707, + -0.0518239 + ], + [ + 109.3827092, + -0.0527435 + ], + [ + 109.381635, + -0.0536031 + ], + [ + 109.3814359, + -0.0533368 + ] + ] + }, + "id": "way/574646184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646185", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.384051, + -0.0520929 + ], + [ + 109.3829157, + -0.0530023 + ], + [ + 109.3827092, + -0.0527435 + ] + ] + }, + "id": "way/574646185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646860", + "highway": "residential", + "name": "Gang Mandiri 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2932892, + -0.0264094 + ], + [ + 109.2936716, + -0.0269956 + ], + [ + 109.295247, + -0.0293259 + ], + [ + 109.2953086, + -0.029404 + ] + ] + }, + "id": "way/574646860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646865", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.294578, + -0.0302568 + ], + [ + 109.2952136, + -0.0312054 + ] + ] + }, + "id": "way/574646865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646868", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946676, + -0.0300613 + ], + [ + 109.294488, + -0.029853 + ], + [ + 109.2941876, + -0.0294386 + ], + [ + 109.2939167, + -0.0290295 + ], + [ + 109.2935961, + -0.0285655 + ] + ] + }, + "id": "way/574646868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646870", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2939667, + -0.0308849 + ], + [ + 109.2926064, + -0.0291261 + ] + ] + }, + "id": "way/574646870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646872", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2928775, + -0.0291021 + ], + [ + 109.2930791, + -0.0289468 + ] + ] + }, + "id": "way/574646872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646873", + "highway": "residential", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2925059, + -0.0286111 + ], + [ + 109.2927462, + -0.0289213 + ], + [ + 109.2928775, + -0.0291021 + ], + [ + 109.2931603, + -0.0294802 + ] + ] + }, + "id": "way/574646873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646874", + "highway": "residential", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940445, + -0.0306573 + ], + [ + 109.2938054, + -0.0303519 + ], + [ + 109.293662, + -0.0301581 + ], + [ + 109.2931603, + -0.0294802 + ] + ] + }, + "id": "way/574646874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574646875", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2932005, + -0.029106 + ], + [ + 109.2930791, + -0.0289468 + ], + [ + 109.2929377, + -0.0287613 + ], + [ + 109.2928699, + -0.0286634 + ], + [ + 109.2928639, + -0.0286433 + ], + [ + 109.2928693, + -0.0286239 + ], + [ + 109.2929001, + -0.0285756 + ], + [ + 109.2929075, + -0.0285454 + ], + [ + 109.2928908, + -0.0285042 + ] + ] + }, + "id": "way/574646875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574647484", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221822, + -0.0100379 + ], + [ + 109.3220736, + -0.0099492 + ] + ] + }, + "id": "way/574647484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574647485", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220736, + -0.0099492 + ], + [ + 109.3219527, + -0.0099361 + ], + [ + 109.3217241, + -0.0096994 + ], + [ + 109.3216715, + -0.0096598 + ], + [ + 109.3214767, + -0.0095217 + ], + [ + 109.3213734, + -0.0094479 + ], + [ + 109.3212301, + -0.0093457 + ], + [ + 109.3211235, + -0.00927 + ], + [ + 109.3210066, + -0.0091918 + ], + [ + 109.3207284, + -0.0089971 + ], + [ + 109.3206996, + -0.0089742 + ], + [ + 109.3206309, + -0.0089192 + ], + [ + 109.320299, + -0.0086785 + ], + [ + 109.3201636, + -0.0085872 + ], + [ + 109.3199971, + -0.0084692 + ], + [ + 109.3196904, + -0.0082469 + ], + [ + 109.3196455, + -0.0082111 + ], + [ + 109.3194507, + -0.0080702 + ], + [ + 109.3191038, + -0.0078193 + ], + [ + 109.318954, + -0.0077152 + ], + [ + 109.3188234, + -0.0076213 + ], + [ + 109.3185169, + -0.0074034 + ], + [ + 109.318213, + -0.0071825 + ], + [ + 109.3181596, + -0.0071509 + ], + [ + 109.3179962, + -0.007026 + ], + [ + 109.3178567, + -0.0069248 + ], + [ + 109.3176975, + -0.0068026 + ], + [ + 109.3174826, + -0.0066559 + ], + [ + 109.3172613, + -0.0064976 + ], + [ + 109.3171436, + -0.0064188 + ], + [ + 109.317036, + -0.0063381 + ], + [ + 109.3168433, + -0.0061781 + ], + [ + 109.3168022, + -0.0061493 + ], + [ + 109.3167141, + -0.0060792 + ], + [ + 109.3166514, + -0.0060342 + ], + [ + 109.316584, + -0.005988 + ], + [ + 109.3165277, + -0.0059518 + ], + [ + 109.3164784, + -0.0059314 + ], + [ + 109.3164372, + -0.0059183 + ], + [ + 109.3164023, + -0.0059136 + ], + [ + 109.3163712, + -0.0059152 + ], + [ + 109.3162239, + -0.0059491 + ], + [ + 109.3161191, + -0.0059688 + ], + [ + 109.3158755, + -0.0060085 + ], + [ + 109.3157809, + -0.0060183 + ], + [ + 109.3157364, + -0.0060229 + ], + [ + 109.3155809, + -0.0060511 + ], + [ + 109.3154375, + -0.00608 + ] + ] + }, + "id": "way/574647485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574647489", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222402, + -0.0100852 + ], + [ + 109.3218479, + -0.0105974 + ], + [ + 109.3218184, + -0.0106088 + ], + [ + 109.3217875, + -0.0106048 + ], + [ + 109.3217614, + -0.0106135 + ], + [ + 109.3217379, + -0.0106289 + ], + [ + 109.3215656, + -0.0108482 + ], + [ + 109.3215568, + -0.0108666 + ], + [ + 109.3215531, + -0.0108861 + ], + [ + 109.3215632, + -0.0109035 + ], + [ + 109.321577, + -0.0109263 + ], + [ + 109.3215773, + -0.0109397 + ], + [ + 109.3215618, + -0.0109674 + ], + [ + 109.3211436, + -0.011522 + ] + ] + }, + "id": "way/574647489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574654718", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3836849, + -0.0463263 + ], + [ + 109.3829512, + -0.0468597 + ], + [ + 109.3821251, + -0.0474434 + ] + ] + }, + "id": "way/574654718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574654756", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3833328, + -0.0458073 + ], + [ + 109.3825884, + -0.0463314 + ], + [ + 109.382032, + -0.0467152 + ], + [ + 109.3817464, + -0.0469258 + ], + [ + 109.3813427, + -0.0472168 + ], + [ + 109.380859, + -0.0475832 + ] + ] + }, + "id": "way/574654756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574654757", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3817967, + -0.0488975 + ], + [ + 109.3821198, + -0.0486459 + ], + [ + 109.3823116, + -0.0485037 + ], + [ + 109.3826999, + -0.0482213 + ] + ] + }, + "id": "way/574654757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574654758", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3840697, + -0.0468314 + ], + [ + 109.383356, + -0.0473547 + ], + [ + 109.3832725, + -0.0474166 + ], + [ + 109.3825095, + -0.0479732 + ], + [ + 109.3816096, + -0.0486294 + ] + ] + }, + "id": "way/574654758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574654904", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3842609, + -0.0471135 + ], + [ + 109.3835411, + -0.0476094 + ], + [ + 109.3835099, + -0.0476285 + ], + [ + 109.3826999, + -0.0482213 + ], + [ + 109.3825095, + -0.0479732 + ], + [ + 109.3823029, + -0.0476983 + ], + [ + 109.3821251, + -0.0474434 + ], + [ + 109.381947, + -0.0471832 + ], + [ + 109.3817464, + -0.0469258 + ], + [ + 109.3815653, + -0.046679 + ] + ] + }, + "id": "way/574654904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574654906", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3835411, + -0.0476094 + ], + [ + 109.383356, + -0.0473547 + ], + [ + 109.383154, + -0.0471062 + ], + [ + 109.3823029, + -0.0476983 + ], + [ + 109.3814355, + -0.0483836 + ] + ] + }, + "id": "way/574654906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574754323", + "highway": "residential", + "name": "Jalan Komplek Landak Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3653308, + -0.0149507 + ], + [ + 109.3654378, + -0.0140923 + ], + [ + 109.3655947, + -0.0132662 + ], + [ + 109.3656108, + -0.013116 + ], + [ + 109.3656195, + -0.013055 + ] + ] + }, + "id": "way/574754323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574754400", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3672174, + -0.0133319 + ], + [ + 109.366748, + -0.0132729 + ] + ] + }, + "id": "way/574754400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574754401", + "highway": "residential", + "name": "Gang Ambo Akak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.366689, + -0.0148252 + ], + [ + 109.3667769, + -0.0145865 + ], + [ + 109.3668842, + -0.0142915 + ], + [ + 109.3669854, + -0.0140072 + ], + [ + 109.3671105, + -0.013641 + ], + [ + 109.3671691, + -0.0134694 + ], + [ + 109.3672174, + -0.0133319 + ], + [ + 109.3674176, + -0.0127335 + ], + [ + 109.3675426, + -0.0123599 + ], + [ + 109.3676575, + -0.0120394 + ], + [ + 109.3676607, + -0.0120126 + ], + [ + 109.3676553, + -0.0119989 + ], + [ + 109.3676446, + -0.0119895 + ] + ] + }, + "id": "way/574754401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574754413", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683909, + -0.0120633 + ], + [ + 109.3682608, + -0.0126144 + ], + [ + 109.3682179, + -0.0127445 + ], + [ + 109.3681186, + -0.0130268 + ] + ] + }, + "id": "way/574754413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574754673", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640873, + -0.0169899 + ], + [ + 109.3641436, + -0.017378 + ], + [ + 109.3641624, + -0.0176074 + ], + [ + 109.364161, + -0.0179762 + ] + ] + }, + "id": "way/574754673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574754674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642206, + -0.01531 + ], + [ + 109.3642429, + -0.0154133 + ], + [ + 109.3642576, + -0.0155541 + ], + [ + 109.3642536, + -0.0156815 + ], + [ + 109.3642402, + -0.015821 + ], + [ + 109.3641865, + -0.0162354 + ], + [ + 109.3641409, + -0.0165626 + ], + [ + 109.3641128, + -0.0167907 + ], + [ + 109.3640873, + -0.0169899 + ], + [ + 109.3640672, + -0.0170521 + ], + [ + 109.3640524, + -0.0171112 + ], + [ + 109.3640048, + -0.0172473 + ], + [ + 109.3639612, + -0.0173713 + ], + [ + 109.3639089, + -0.0175188 + ] + ] + }, + "id": "way/574754674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574754941", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632672, + -0.021392 + ], + [ + 109.3632468, + -0.0216091 + ] + ] + }, + "id": "way/574754941" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574754942", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3629458, + -0.0215984 + ], + [ + 109.3631673, + -0.0216267 + ], + [ + 109.3632468, + -0.0216091 + ], + [ + 109.3633188, + -0.0215931 + ], + [ + 109.3634878, + -0.0215341 + ] + ] + }, + "id": "way/574754942" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574757135", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3641168, + -0.0127673 + ], + [ + 109.3642108, + -0.0127762 + ] + ] + }, + "id": "way/574757135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574757136", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642108, + -0.0127762 + ], + [ + 109.3642649, + -0.0127827 + ] + ] + }, + "id": "way/574757136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574757312", + "highway": "residential", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642649, + -0.0127827 + ], + [ + 109.3642952, + -0.0125232 + ], + [ + 109.364318, + -0.0123429 + ], + [ + 109.3643361, + -0.0121806 + ], + [ + 109.3643454, + -0.0120733 + ], + [ + 109.3643468, + -0.0119855 + ], + [ + 109.3643454, + -0.0118607 + ] + ] + }, + "id": "way/574757312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574777776", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351446, + -0.0123328 + ], + [ + 109.3515319, + -0.0120297 + ], + [ + 109.3515748, + -0.0119171 + ], + [ + 109.3516177, + -0.0117829 + ], + [ + 109.3516687, + -0.0116971 + ] + ] + }, + "id": "way/574777776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574787453", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612656, + -0.0111352 + ], + [ + 109.3614138, + -0.0111326 + ], + [ + 109.3615647, + -0.0111258 + ], + [ + 109.361743, + -0.0111204 + ], + [ + 109.3618678, + -0.0111218 + ] + ] + }, + "id": "way/574787453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574787454", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602316, + -0.0111607 + ], + [ + 109.3602846, + -0.011168 + ], + [ + 109.3603872, + -0.0111754 + ], + [ + 109.3604301, + -0.0111727 + ], + [ + 109.3605065, + -0.011166 + ], + [ + 109.360642, + -0.0111432 + ], + [ + 109.3607949, + -0.0111245 + ], + [ + 109.3608807, + -0.0111218 + ], + [ + 109.3609987, + -0.0111231 + ], + [ + 109.3612491, + -0.0111338 + ], + [ + 109.3612656, + -0.0111352 + ] + ] + }, + "id": "way/574787454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574787455", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612656, + -0.0111352 + ], + [ + 109.361244, + -0.0115593 + ] + ] + }, + "id": "way/574787455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574787456", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602089, + -0.0113391 + ], + [ + 109.3609625, + -0.0113095 + ] + ] + }, + "id": "way/574787456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574787457", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601519, + -0.0118479 + ], + [ + 109.3605629, + -0.0118158 + ], + [ + 109.3609927, + -0.011787 + ], + [ + 109.3610336, + -0.0117816 + ], + [ + 109.3610457, + -0.0117635 + ], + [ + 109.3610618, + -0.0117186 + ], + [ + 109.3610866, + -0.0116006 + ], + [ + 109.3610926, + -0.0115684 + ] + ] + }, + "id": "way/574787457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574787546", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619536, + -0.0128096 + ], + [ + 109.3619439, + -0.0124246 + ], + [ + 109.3619429, + -0.0123838 + ], + [ + 109.3619415, + -0.0123754 + ], + [ + 109.3619307, + -0.0123599 + ], + [ + 109.3619117, + -0.0123559 + ], + [ + 109.3618628, + -0.0123485 + ], + [ + 109.3618624, + -0.0123255 + ], + [ + 109.3618638, + -0.0122738 + ], + [ + 109.3618675, + -0.0122141 + ], + [ + 109.3618838, + -0.0120538 + ], + [ + 109.3618993, + -0.011962 + ], + [ + 109.3619167, + -0.011846 + ], + [ + 109.3619375, + -0.0116897 + ], + [ + 109.3619536, + -0.0115308 + ] + ] + }, + "id": "way/574787546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574787723", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635203, + -0.0127803 + ], + [ + 109.3635696, + -0.01277 + ], + [ + 109.3636447, + -0.0127633 + ], + [ + 109.3638647, + -0.0127619 + ], + [ + 109.3641168, + -0.0127673 + ] + ] + }, + "id": "way/574787723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574792184", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571806, + -0.0357512 + ], + [ + 109.3567152, + -0.0360824 + ], + [ + 109.3564336, + -0.0362963 + ], + [ + 109.3563236, + -0.0363815 + ], + [ + 109.3562452, + -0.0364418 + ], + [ + 109.3561723, + -0.0364987 + ], + [ + 109.3561402, + -0.0365199 + ], + [ + 109.3560921, + -0.0365501 + ], + [ + 109.3560108, + -0.036593 + ], + [ + 109.3558787, + -0.0366648 + ], + [ + 109.3555391, + -0.0368931 + ] + ] + }, + "id": "way/574792184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574795534", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398633, + -0.0409423 + ], + [ + 109.3403171, + -0.0415025 + ], + [ + 109.3407165, + -0.0420061 + ], + [ + 109.3407306, + -0.0420376 + ], + [ + 109.3407326, + -0.0420604 + ], + [ + 109.3407313, + -0.0420785 + ], + [ + 109.3407205, + -0.0421046 + ], + [ + 109.340685, + -0.0421375 + ], + [ + 109.340461, + -0.0422793 + ], + [ + 109.3404279, + -0.0422911 + ], + [ + 109.3404007, + -0.0422961 + ] + ] + }, + "id": "way/574795534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574795535", + "highway": "living_street", + "name": "Gang Gajah Mada 19", + "name:id": "Gang Gajah Mada 19" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421236, + -0.0359202 + ], + [ + 109.3424553, + -0.0357619 + ], + [ + 109.3436971, + -0.0350726 + ], + [ + 109.3437343, + -0.0350613 + ] + ] + }, + "id": "way/574795535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801870", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2943052, + -0.0461215 + ], + [ + 109.2940313, + -0.0463707 + ], + [ + 109.2937282, + -0.0466711 + ], + [ + 109.293106, + -0.0473041 + ], + [ + 109.2925615, + -0.0478781 + ], + [ + 109.292066, + -0.0484053 + ] + ] + }, + "id": "way/574801870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801871", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941529, + -0.0459614 + ], + [ + 109.2938442, + -0.0462804 + ] + ] + }, + "id": "way/574801871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801872", + "highway": "residential", + "name": "Gang Sumpulolo", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.293739, + -0.0454514 + ], + [ + 109.2928512, + -0.046368 + ], + [ + 109.2912333, + -0.0479981 + ], + [ + 109.2911478, + -0.0480129 + ], + [ + 109.2903942, + -0.0486502 + ] + ] + }, + "id": "way/574801872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801873", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2926112, + -0.0442545 + ], + [ + 109.2926945, + -0.0441854 + ] + ] + }, + "id": "way/574801873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801874", + "highway": "residential", + "lanes": "1", + "name": "Gang Delta", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2931389, + -0.0448239 + ], + [ + 109.292318, + -0.0456816 + ], + [ + 109.2916623, + -0.046303 + ] + ] + }, + "id": "way/574801874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801875", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957552, + -0.0476796 + ], + [ + 109.2958516, + -0.0476154 + ] + ] + }, + "id": "way/574801875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801876", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2960187, + -0.0480148 + ], + [ + 109.2937451, + -0.0503003 + ] + ] + }, + "id": "way/574801876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801877", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2954445, + -0.0473972 + ], + [ + 109.2955263, + -0.0473208 + ] + ] + }, + "id": "way/574801877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801878", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.295042, + -0.0468852 + ], + [ + 109.295121, + -0.0468189 + ] + ] + }, + "id": "way/574801878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801879", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022012, + -0.0547217 + ], + [ + 109.3022734, + -0.054654 + ] + ] + }, + "id": "way/574801879" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801881", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3018602, + -0.0550982 + ], + [ + 109.3021905, + -0.0547338 + ], + [ + 109.3022012, + -0.0547217 + ] + ] + }, + "id": "way/574801881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801882", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3012019, + -0.0536691 + ], + [ + 109.3012688, + -0.053595 + ] + ] + }, + "id": "way/574801882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801884", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019218, + -0.0543943 + ], + [ + 109.3019893, + -0.0543372 + ] + ] + }, + "id": "way/574801884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801898", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.291968, + -0.0449605 + ], + [ + 109.2923006, + -0.0445756 + ], + [ + 109.2926112, + -0.0442545 + ] + ] + }, + "id": "way/574801898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801899", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014242, + -0.0549417 + ], + [ + 109.3019096, + -0.0544046 + ] + ] + }, + "id": "way/574801899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801982", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004928, + -0.0484387 + ], + [ + 109.3000945, + -0.0487183 + ], + [ + 109.3000911, + -0.0487344 + ], + [ + 109.3000972, + -0.0487505 + ], + [ + 109.3001682, + -0.0488249 + ], + [ + 109.3001948, + -0.0488493 + ] + ] + }, + "id": "way/574801982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801984", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008402, + -0.0484722 + ], + [ + 109.3002648, + -0.0488564 + ], + [ + 109.30024, + -0.0488645 + ], + [ + 109.3002192, + -0.0488584 + ], + [ + 109.3001948, + -0.0488493 + ] + ] + }, + "id": "way/574801984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574801998", + "highway": "residential", + "name": "Gang Formula" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3018245, + -0.0470064 + ], + [ + 109.3008213, + -0.0476863 + ], + [ + 109.2998044, + -0.0483817 + ] + ] + }, + "id": "way/574801998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802050", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2990343, + -0.0477869 + ], + [ + 109.298406, + -0.0482965 + ], + [ + 109.2973639, + -0.0492149 + ] + ] + }, + "id": "way/574802050" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802108", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986784, + -0.0506579 + ], + [ + 109.3009359, + -0.0488134 + ] + ] + }, + "id": "way/574802108" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802110", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3001948, + -0.0488493 + ], + [ + 109.2984071, + -0.0503374 + ] + ] + }, + "id": "way/574802110" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802111", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999265, + -0.048549 + ], + [ + 109.299835, + -0.0486246 + ], + [ + 109.2981151, + -0.0500351 + ] + ] + }, + "id": "way/574802111" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802112", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.299601, + -0.0482683 + ], + [ + 109.2991725, + -0.048615 + ], + [ + 109.2987272, + -0.0489879 + ], + [ + 109.297854, + -0.0497389 + ] + ] + }, + "id": "way/574802112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802114", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986555, + -0.0473765 + ], + [ + 109.2970056, + -0.0488363 + ] + ] + }, + "id": "way/574802114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802116", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941563, + -0.0492618 + ], + [ + 109.2956581, + -0.0477688 + ], + [ + 109.2957355, + -0.0476937 + ], + [ + 109.2957552, + -0.0476796 + ] + ] + }, + "id": "way/574802116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802117", + "highway": "residential", + "name": "Jalan Komplek Pesona Ampera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2937135, + -0.0491642 + ], + [ + 109.2954445, + -0.0473972 + ] + ] + }, + "id": "way/574802117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802119", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2938007, + -0.0471982 + ], + [ + 109.2944095, + -0.0465235 + ], + [ + 109.2945611, + -0.0463707 + ] + ] + }, + "id": "way/574802119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802120", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950211, + -0.0454292 + ], + [ + 109.2947167, + -0.0457189 + ], + [ + 109.2944125, + -0.0460135 + ], + [ + 109.2943884, + -0.046037 + ] + ] + }, + "id": "way/574802120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802122", + "highway": "residential", + "name": "Jalan Komplek Gardenia Spring" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966484, + -0.0432074 + ], + [ + 109.295823, + -0.0440224 + ], + [ + 109.2949614, + -0.0448626 + ], + [ + 109.2941084, + -0.04568 + ] + ] + }, + "id": "way/574802122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802123", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2963569, + -0.0428771 + ], + [ + 109.2945664, + -0.0445951 + ], + [ + 109.2943612, + -0.044815 + ], + [ + 109.293932, + -0.0452308 + ], + [ + 109.2938785, + -0.0452857 + ], + [ + 109.2938147, + -0.0453649 + ] + ] + }, + "id": "way/574802123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802125", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2948593, + -0.0470474 + ], + [ + 109.2951353, + -0.0473401 + ] + ] + }, + "id": "way/574802125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574802126", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2929625, + -0.0487082 + ], + [ + 109.2937604, + -0.0478754 + ], + [ + 109.2943867, + -0.0472531 + ], + [ + 109.2944015, + -0.0472451 + ], + [ + 109.2944256, + -0.0472431 + ], + [ + 109.2945289, + -0.0473202 + ], + [ + 109.294553, + -0.0473289 + ], + [ + 109.2945879, + -0.0473155 + ], + [ + 109.2948593, + -0.0470474 + ], + [ + 109.295042, + -0.0468852 + ] + ] + }, + "id": "way/574802126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574810766", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2985159, + -0.0452879 + ], + [ + 109.3007895, + -0.0436741 + ] + ] + }, + "id": "way/574810766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574810814", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2973546, + -0.0443725 + ], + [ + 109.2949751, + -0.0466423 + ] + ] + }, + "id": "way/574810814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574812246", + "highway": "residential", + "name": "Gang Dharma Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447754, + -0.0040287 + ], + [ + 109.3444777, + -0.0038919 + ], + [ + 109.3443677, + -0.0038436 + ], + [ + 109.3442604, + -0.003798 + ], + [ + 109.3442014, + -0.0037759 + ], + [ + 109.3441793, + -0.0037739 + ], + [ + 109.3441679, + -0.0037839 + ], + [ + 109.3441263, + -0.0038812 + ], + [ + 109.3440826, + -0.0039898 + ], + [ + 109.3440539, + -0.0040407 + ], + [ + 109.3439412, + -0.0039925 + ], + [ + 109.3437883, + -0.0039281 + ], + [ + 109.3436121, + -0.0038543 + ], + [ + 109.3435449, + -0.0038232 + ], + [ + 109.3434417, + -0.0037755 + ], + [ + 109.3433136, + -0.0037144 + ], + [ + 109.3432217, + -0.0036703 + ], + [ + 109.3431097, + -0.0036172 + ], + [ + 109.3429891, + -0.0035578 + ], + [ + 109.342881, + -0.0035096 + ], + [ + 109.3428529, + -0.0034922 + ] + ] + }, + "id": "way/574812246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574813378", + "highway": "residential", + "name": "Gang Dharma Putra 18 B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411306, + -0.0026131 + ], + [ + 109.3428708, + -0.0025212 + ] + ] + }, + "id": "way/574813378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574821254", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387806, + -0.0045222 + ], + [ + 109.3384051, + -0.0047207 + ], + [ + 109.3381235, + -0.0048789 + ], + [ + 109.3379109, + -0.0050003 + ], + [ + 109.3378124, + -0.005064 + ], + [ + 109.3377882, + -0.0050895 + ], + [ + 109.3377775, + -0.0051237 + ], + [ + 109.3377654, + -0.0052088 + ] + ] + }, + "id": "way/574821254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574850661", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3803928, + -0.0420937 + ], + [ + 109.3809683, + -0.0429197 + ] + ] + }, + "id": "way/574850661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851185", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3802743, + -0.0409659 + ], + [ + 109.3797983, + -0.0413208 + ] + ] + }, + "id": "way/574851185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851186", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3799829, + -0.0436322 + ], + [ + 109.379704, + -0.0432458 + ], + [ + 109.3796681, + -0.043194 + ], + [ + 109.3793958, + -0.0428008 + ] + ] + }, + "id": "way/574851186" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851187", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3800964, + -0.0439282 + ], + [ + 109.3800655, + -0.0438866 + ], + [ + 109.3800303, + -0.0438357 + ], + [ + 109.3799901, + -0.043776 + ], + [ + 109.3799229, + -0.0436757 + ] + ] + }, + "id": "way/574851187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851188", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.380643, + -0.0419252 + ], + [ + 109.3812091, + -0.0427228 + ] + ] + }, + "id": "way/574851188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851189", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3796681, + -0.043194 + ], + [ + 109.3799082, + -0.0430118 + ], + [ + 109.3801563, + -0.0428322 + ], + [ + 109.3804241, + -0.0426479 + ] + ] + }, + "id": "way/574851189" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851190", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3804516, + -0.0426893 + ], + [ + 109.3802056, + -0.0428919 + ], + [ + 109.3799469, + -0.0430751 + ], + [ + 109.379704, + -0.0432458 + ] + ] + }, + "id": "way/574851190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851191", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3796426, + -0.0426243 + ], + [ + 109.3799082, + -0.0430118 + ], + [ + 109.3799469, + -0.0430751 + ], + [ + 109.380217, + -0.0434634 + ] + ] + }, + "id": "way/574851191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851192", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3798583, + -0.0424679 + ], + [ + 109.3801563, + -0.0428322 + ], + [ + 109.3802056, + -0.0428919 + ], + [ + 109.3804715, + -0.0432794 + ] + ] + }, + "id": "way/574851192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851193", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3808153, + -0.0417903 + ], + [ + 109.380643, + -0.0419252 + ], + [ + 109.3803928, + -0.0420937 + ], + [ + 109.3801465, + -0.042284 + ], + [ + 109.3798583, + -0.0424679 + ], + [ + 109.3797368, + -0.042557 + ] + ] + }, + "id": "way/574851193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851194", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3806305, + -0.0415458 + ], + [ + 109.3799784, + -0.0420354 + ] + ] + }, + "id": "way/574851194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851195", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3799822, + -0.0440079 + ], + [ + 109.3800964, + -0.0439282 + ], + [ + 109.3809077, + -0.0433376 + ], + [ + 109.381444, + -0.0429277 + ] + ] + }, + "id": "way/574851195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851196", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3799784, + -0.0420354 + ], + [ + 109.3801465, + -0.042284 + ], + [ + 109.3804241, + -0.0426479 + ], + [ + 109.3804516, + -0.0426893 + ], + [ + 109.3807316, + -0.0430839 + ], + [ + 109.3809077, + -0.0433376 + ] + ] + }, + "id": "way/574851196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851197", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3799229, + -0.0436757 + ], + [ + 109.3799829, + -0.0436322 + ], + [ + 109.380217, + -0.0434634 + ], + [ + 109.3804715, + -0.0432794 + ], + [ + 109.3807316, + -0.0430839 + ], + [ + 109.3809683, + -0.0429197 + ], + [ + 109.3812091, + -0.0427228 + ], + [ + 109.3813486, + -0.0426367 + ], + [ + 109.3813537, + -0.0426307 + ], + [ + 109.3813547, + -0.0426243 + ], + [ + 109.3813503, + -0.0426169 + ] + ] + }, + "id": "way/574851197" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851211", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3804129, + -0.0412644 + ], + [ + 109.3793489, + -0.0420248 + ], + [ + 109.3781101, + -0.0428925 + ], + [ + 109.3776234, + -0.0432246 + ], + [ + 109.3775144, + -0.0432908 + ], + [ + 109.3772261, + -0.043492 + ], + [ + 109.3767151, + -0.0438501 + ], + [ + 109.3763289, + -0.0441103 + ], + [ + 109.3760352, + -0.0443047 + ], + [ + 109.3755008, + -0.0446574 + ], + [ + 109.3748678, + -0.0450946 + ], + [ + 109.3745466, + -0.0453152 + ], + [ + 109.3743776, + -0.0454239 + ], + [ + 109.3742126, + -0.0455379 + ], + [ + 109.3738478, + -0.0458014 + ], + [ + 109.3734207, + -0.0461045 + ], + [ + 109.3734032, + -0.04613 + ], + [ + 109.373357, + -0.0461842 + ] + ] + }, + "id": "way/574851211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851212", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3795972, + -0.0399636 + ], + [ + 109.3799962, + -0.039689 + ], + [ + 109.3805158, + -0.0393306 + ] + ] + }, + "id": "way/574851212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574851214", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3801034, + -0.0407127 + ], + [ + 109.3796213, + -0.0410378 + ] + ] + }, + "id": "way/574851214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574908461", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559836, + -0.0052592 + ], + [ + 109.3575368, + -0.0052757 + ], + [ + 109.3578413, + -0.0052865 + ] + ] + }, + "id": "way/574908461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574908611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3577881, + -0.0077077 + ], + [ + 109.3577957, + -0.0077474 + ], + [ + 109.3576868, + -0.0085752 + ] + ] + }, + "id": "way/574908611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574936042", + "highway": "path", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131655, + 0.0345629 + ], + [ + 109.3130556, + 0.0351772 + ], + [ + 109.3129322, + 0.035845 + ], + [ + 109.3128195, + 0.0363815 + ], + [ + 109.312731, + 0.0370869 + ], + [ + 109.3126988, + 0.0374758 + ], + [ + 109.3126318, + 0.0379667 + ], + [ + 109.3126291, + 0.0381652 + ], + [ + 109.3126211, + 0.0385138 + ], + [ + 109.3126023, + 0.0385487 + ], + [ + 109.3125674, + 0.0391173 + ], + [ + 109.3125433, + 0.0394633 + ], + [ + 109.312546, + 0.0395197 + ], + [ + 109.3125084, + 0.0396726 + ], + [ + 109.3122804, + 0.0403833 + ], + [ + 109.3120524, + 0.0412792 + ], + [ + 109.3118459, + 0.0419846 + ], + [ + 109.3116876, + 0.0424004 + ], + [ + 109.3116984, + 0.0424862 + ], + [ + 109.311685, + 0.0425693 + ], + [ + 109.3116286, + 0.0432748 + ], + [ + 109.3116125, + 0.0433284 + ], + [ + 109.3115884, + 0.0435725 + ], + [ + 109.3115696, + 0.0437951 + ], + [ + 109.3115455, + 0.043956 + ] + ] + }, + "id": "way/574936042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574936044", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103304, + 0.0340855 + ], + [ + 109.3105906, + 0.0341606 + ], + [ + 109.3108723, + 0.0341982 + ], + [ + 109.3112872, + 0.0342751 + ], + [ + 109.3114221, + 0.0343001 + ], + [ + 109.3117331, + 0.0343468 + ], + [ + 109.3120471, + 0.034394 + ], + [ + 109.3129107, + 0.0345281 + ], + [ + 109.3130852, + 0.0345519 + ], + [ + 109.3131655, + 0.0345629 + ], + [ + 109.3140587, + 0.0346863 + ] + ] + }, + "id": "way/574936044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963628", + "highway": "residential", + "name": "KOMPLEK PARIT PANGERAN INDAH" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558363, + -0.0063398 + ], + [ + 109.3561877, + -0.0063499 + ], + [ + 109.3562378, + -0.0063126 + ], + [ + 109.3562981, + -0.0062697 + ], + [ + 109.3563692, + -0.0062442 + ], + [ + 109.3578091, + -0.0063218 + ] + ] + }, + "id": "way/574963628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963653", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518443, + -0.0104218 + ], + [ + 109.3523407, + -0.0107709 + ], + [ + 109.352537, + -0.0109151 + ] + ] + }, + "id": "way/574963653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963944", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491768, + -0.002139 + ], + [ + 109.3491715, + -0.0020733 + ], + [ + 109.3491521, + -0.002009 + ] + ] + }, + "id": "way/574963944" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963945", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481476, + -0.0071177 + ], + [ + 109.3491165, + -0.0077369 + ] + ] + }, + "id": "way/574963945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963946", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470291, + -0.0100087 + ], + [ + 109.3471471, + -0.010059 + ], + [ + 109.3473724, + -0.0101468 + ], + [ + 109.3475763, + -0.0102259 + ], + [ + 109.3477634, + -0.0102957 + ], + [ + 109.3478874, + -0.0103386 + ] + ] + }, + "id": "way/574963946" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963947", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503054, + -0.0102936 + ], + [ + 109.350178, + -0.0104392 + ], + [ + 109.349946, + -0.0106906 + ], + [ + 109.3497797, + -0.010875 + ], + [ + 109.3497502, + -0.0108884 + ], + [ + 109.3497267, + -0.0108878 + ], + [ + 109.3497073, + -0.0108925 + ], + [ + 109.3496831, + -0.0109119 + ], + [ + 109.3496422, + -0.0109515 + ], + [ + 109.3496107, + -0.0109831 + ], + [ + 109.3495629, + -0.0110182 + ] + ] + }, + "id": "way/574963947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963948", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508613, + -0.0063367 + ], + [ + 109.3519208, + -0.007588 + ], + [ + 109.3524103, + -0.0081512 + ], + [ + 109.3526973, + -0.008461 + ], + [ + 109.3528676, + -0.0086528 + ], + [ + 109.3529988, + -0.0087917 + ] + ] + }, + "id": "way/574963948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963949", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556083, + -0.0072655 + ], + [ + 109.3553078, + -0.0072142 + ], + [ + 109.3553299, + -0.0069697 + ], + [ + 109.3553332, + -0.0069503 + ], + [ + 109.3553218, + -0.0069295 + ], + [ + 109.3553085, + -0.0069126 + ], + [ + 109.3548468, + -0.0067316 + ], + [ + 109.3547896, + -0.0067045 + ] + ] + }, + "id": "way/574963949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963950", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542394, + -0.0073514 + ], + [ + 109.3542977, + -0.0073844 + ], + [ + 109.3543768, + -0.0074168 + ], + [ + 109.3555238, + -0.0078526 + ] + ] + }, + "id": "way/574963950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963951", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542394, + -0.0073514 + ], + [ + 109.3544786, + -0.0070614 + ], + [ + 109.3545386, + -0.0069887 + ], + [ + 109.3546194, + -0.0068832 + ], + [ + 109.3547896, + -0.0067045 + ] + ] + }, + "id": "way/574963951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963952", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512844, + -0.0086776 + ], + [ + 109.3510839, + -0.0088553 + ] + ] + }, + "id": "way/574963952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963953", + "highway": "residential", + "motorcar": "destination", + "name": "Jalan Komplek Zamrud Sumba 3 Blok A - B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499789, + -0.0076389 + ], + [ + 109.3499916, + -0.0076476 + ], + [ + 109.3510839, + -0.0088553 + ], + [ + 109.3520415, + -0.0099253 + ] + ] + }, + "id": "way/574963953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963954", + "highway": "residential", + "motorcar": "destination", + "name": "KOMPLEK ZAMRUD SUMBA RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501773, + -0.0074445 + ], + [ + 109.3512844, + -0.0086776 + ], + [ + 109.3516687, + -0.0090974 + ], + [ + 109.3517826, + -0.0092181 + ], + [ + 109.3518919, + -0.0093374 + ], + [ + 109.3522331, + -0.0097032 + ] + ] + }, + "id": "way/574963954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963955", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505931, + -0.009385 + ], + [ + 109.3500598, + -0.0100471 + ] + ] + }, + "id": "way/574963955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963956", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503812, + -0.009153 + ], + [ + 109.349831, + -0.0097984 + ] + ] + }, + "id": "way/574963956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963957", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494828, + -0.0094695 + ], + [ + 109.3490495, + -0.0099818 + ], + [ + 109.3489985, + -0.0099537 + ], + [ + 109.3487798, + -0.010164 + ] + ] + }, + "id": "way/574963957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963958", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511885, + -0.0053456 + ], + [ + 109.3514286, + -0.0054717 + ] + ] + }, + "id": "way/574963958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963959", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504392, + -0.0044709 + ], + [ + 109.3502419, + -0.0048244 + ] + ] + }, + "id": "way/574963959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963960", + "highway": "residential", + "name": "KOMPLEK GARDEN MAS 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490835, + -0.0041865 + ], + [ + 109.3502419, + -0.0048244 + ], + [ + 109.3511885, + -0.0053456 + ] + ] + }, + "id": "way/574963960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574963961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487087, + -0.0050936 + ], + [ + 109.3490835, + -0.0041865 + ], + [ + 109.3492185, + -0.0038624 + ], + [ + 109.3492413, + -0.003849 + ], + [ + 109.3492761, + -0.0038503 + ], + [ + 109.3504392, + -0.0044709 + ], + [ + 109.3513952, + -0.0049959 + ], + [ + 109.3517277, + -0.0051847 + ] + ] + }, + "id": "way/574963961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574964036", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3577948, + -0.0086904 + ], + [ + 109.357706, + -0.0094785 + ] + ] + }, + "id": "way/574964036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/574964391", + "highway": "residential", + "motorcar": "destination", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351902, + -0.0053778 + ], + [ + 109.3529588, + -0.0065151 + ], + [ + 109.3535636, + -0.0071548 + ], + [ + 109.3538211, + -0.0074056 + ], + [ + 109.3540258, + -0.0075966 + ] + ] + }, + "id": "way/574964391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575035406", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496163, + -0.0012922 + ], + [ + 109.3511818, + -0.0022177 + ] + ] + }, + "id": "way/575035406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575035407", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493845, + -0.00164 + ], + [ + 109.3511511, + -0.0026629 + ], + [ + 109.351894, + -0.003055 + ] + ] + }, + "id": "way/575035407" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575035408", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488867, + -0.0023206 + ], + [ + 109.3489592, + -0.002352 + ] + ] + }, + "id": "way/575035408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575035409", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484697, + -0.0029818 + ], + [ + 109.3485368, + -0.0030193 + ] + ] + }, + "id": "way/575035409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575035410", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495392, + -0.0012518 + ], + [ + 109.3496163, + -0.0012922 + ] + ] + }, + "id": "way/575035410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575060672", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017588, + -0.0455512 + ], + [ + 109.3014732, + -0.0457511 + ], + [ + 109.3012331, + -0.0459147 + ], + [ + 109.3010466, + -0.0460435 + ], + [ + 109.300883, + -0.0461495 + ], + [ + 109.3007584, + -0.046244 + ], + [ + 109.3005558, + -0.0463828 + ], + [ + 109.3003761, + -0.0464988 + ], + [ + 109.3001522, + -0.0466524 + ], + [ + 109.2999792, + -0.0467757 + ], + [ + 109.2998424, + -0.0468763 + ], + [ + 109.2994226, + -0.0471526 + ] + ] + }, + "id": "way/575060672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065312", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3827675, + -0.0465954 + ], + [ + 109.3825884, + -0.0463314 + ] + ] + }, + "id": "way/575065312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065313", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3825884, + -0.0463314 + ], + [ + 109.3824081, + -0.0460796 + ] + ] + }, + "id": "way/575065313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065314", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3825301, + -0.0459885 + ], + [ + 109.3823803, + -0.0457762 + ], + [ + 109.3822405, + -0.0455576 + ], + [ + 109.3820977, + -0.04535 + ] + ] + }, + "id": "way/575065314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065315", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.380566, + -0.0464359 + ], + [ + 109.3803817, + -0.046185 + ] + ] + }, + "id": "way/575065315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3808225, + -0.0462494 + ], + [ + 109.3805426, + -0.0458752 + ], + [ + 109.3802449, + -0.0454909 + ] + ] + }, + "id": "way/575065316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065317", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3810784, + -0.0460737 + ], + [ + 109.3809362, + -0.0458631 + ], + [ + 109.3808102, + -0.0456914 + ], + [ + 109.3806989, + -0.0455473 + ], + [ + 109.3805956, + -0.0454125 + ], + [ + 109.380497, + -0.0452878 + ] + ] + }, + "id": "way/575065317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065318", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3816031, + -0.0456999 + ], + [ + 109.381462, + -0.0455017 + ], + [ + 109.3813352, + -0.0453287 + ], + [ + 109.3811971, + -0.0451409 + ], + [ + 109.3810335, + -0.0449015 + ] + ] + }, + "id": "way/575065318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3826529, + -0.0449696 + ], + [ + 109.3824484, + -0.044648 + ], + [ + 109.3822318, + -0.0443014 + ], + [ + 109.3821211, + -0.0441317 + ] + ] + }, + "id": "way/575065319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065320", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3823934, + -0.0451456 + ], + [ + 109.3822378, + -0.0448975 + ], + [ + 109.3821439, + -0.0447641 + ], + [ + 109.3820413, + -0.0446125 + ], + [ + 109.3818562, + -0.0443276 + ] + ] + }, + "id": "way/575065320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3821372, + -0.0453206 + ], + [ + 109.3820192, + -0.0451657 + ], + [ + 109.3819213, + -0.0450316 + ], + [ + 109.3818717, + -0.0449538 + ], + [ + 109.3817805, + -0.0448211 + ], + [ + 109.3815632, + -0.044518 + ] + ] + }, + "id": "way/575065321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065322", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3818727, + -0.0455143 + ], + [ + 109.3817362, + -0.0453159 + ], + [ + 109.3815504, + -0.0450517 + ], + [ + 109.3814177, + -0.0448586 + ], + [ + 109.3813037, + -0.0446924 + ] + ] + }, + "id": "way/575065322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065323", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3827762, + -0.0448874 + ], + [ + 109.3826529, + -0.0449696 + ], + [ + 109.3825067, + -0.0450632 + ], + [ + 109.3823934, + -0.0451456 + ], + [ + 109.3821372, + -0.0453206 + ], + [ + 109.3820977, + -0.04535 + ], + [ + 109.3818727, + -0.0455143 + ], + [ + 109.3817899, + -0.0455707 + ], + [ + 109.3816031, + -0.0456999 + ], + [ + 109.3813427, + -0.0458876 + ], + [ + 109.3811244, + -0.0460424 + ], + [ + 109.3810784, + -0.0460737 + ], + [ + 109.3808225, + -0.0462494 + ], + [ + 109.380566, + -0.0464359 + ], + [ + 109.3802099, + -0.0466927 + ] + ] + }, + "id": "way/575065323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065325", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3803686, + -0.0469142 + ], + [ + 109.3809476, + -0.0464773 + ], + [ + 109.3812606, + -0.0462521 + ], + [ + 109.3814653, + -0.0461098 + ], + [ + 109.3818502, + -0.0458362 + ], + [ + 109.3822405, + -0.0455576 + ], + [ + 109.3825006, + -0.0453696 + ], + [ + 109.3827152, + -0.0452194 + ], + [ + 109.3828956, + -0.0450993 + ] + ] + }, + "id": "way/575065325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065326", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3815653, + -0.046679 + ], + [ + 109.3820554, + -0.0463137 + ], + [ + 109.3824081, + -0.0460796 + ], + [ + 109.3825301, + -0.0459885 + ], + [ + 109.3829037, + -0.0457189 + ], + [ + 109.3831545, + -0.0455472 + ] + ] + }, + "id": "way/575065326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065327", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3805109, + -0.0471044 + ], + [ + 109.3810254, + -0.0467402 + ], + [ + 109.3814067, + -0.0464572 + ], + [ + 109.3818247, + -0.0461715 + ], + [ + 109.382097, + -0.0459751 + ], + [ + 109.3823803, + -0.0457762 + ], + [ + 109.3825899, + -0.0456231 + ], + [ + 109.3827648, + -0.0454983 + ], + [ + 109.3830156, + -0.0453293 + ] + ] + }, + "id": "way/575065327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065328", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3805567, + -0.0471654 + ], + [ + 109.3805109, + -0.0471044 + ], + [ + 109.3803686, + -0.0469142 + ], + [ + 109.3802099, + -0.0466927 + ] + ] + }, + "id": "way/575065328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065346", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3829522, + -0.0504868 + ], + [ + 109.382439, + -0.0508895 + ], + [ + 109.3818435, + -0.0513737 + ], + [ + 109.381291, + -0.0518216 + ], + [ + 109.3807398, + -0.0522253 + ], + [ + 109.3790768, + -0.0535516 + ] + ] + }, + "id": "way/575065346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065347", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3850947, + -0.0480992 + ], + [ + 109.3850165, + -0.0479951 + ], + [ + 109.3849712, + -0.0479349 + ], + [ + 109.3849171, + -0.0479756 + ], + [ + 109.3840469, + -0.0486295 + ], + [ + 109.3837767, + -0.0488326 + ], + [ + 109.3826913, + -0.0496483 + ], + [ + 109.3824655, + -0.0498181 + ], + [ + 109.3823677, + -0.0498915 + ], + [ + 109.3822012, + -0.0500167 + ], + [ + 109.3821194, + -0.0500782 + ], + [ + 109.381914, + -0.0502325 + ], + [ + 109.3816953, + -0.0503969 + ], + [ + 109.3814768, + -0.0505611 + ], + [ + 109.3813185, + -0.0506801 + ], + [ + 109.3812576, + -0.0507259 + ], + [ + 109.3810467, + -0.0508844 + ], + [ + 109.3808325, + -0.0510454 + ], + [ + 109.3806214, + -0.051204 + ], + [ + 109.3803002, + -0.0514454 + ], + [ + 109.3802217, + -0.0515044 + ], + [ + 109.3800838, + -0.051608 + ], + [ + 109.3798624, + -0.0517744 + ], + [ + 109.3796437, + -0.0519388 + ], + [ + 109.3794301, + -0.0520993 + ], + [ + 109.3792121, + -0.0522632 + ], + [ + 109.3785345, + -0.0527724 + ] + ] + }, + "id": "way/575065347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575065348", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.383153, + -0.0507927 + ], + [ + 109.3799493, + -0.0533418 + ], + [ + 109.3796173, + -0.0536053 + ], + [ + 109.3793115, + -0.0538561 + ] + ] + }, + "id": "way/575065348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575200823", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417012, + -0.0425952 + ], + [ + 109.3418705, + -0.0429931 + ] + ] + }, + "id": "way/575200823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575200824", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420476, + -0.0433955 + ], + [ + 109.3418705, + -0.0429931 + ], + [ + 109.3420133, + -0.0425454 + ] + ] + }, + "id": "way/575200824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575200851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414655, + -0.0405764 + ], + [ + 109.3419081, + -0.0411317 + ], + [ + 109.3421522, + -0.0415394 + ] + ] + }, + "id": "way/575200851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575206517", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3380727, + -0.0419388 + ], + [ + 109.3380434, + -0.0419964 + ], + [ + 109.3380155, + -0.0420513 + ], + [ + 109.3379911, + -0.0420994 + ], + [ + 109.337927, + -0.0422253 + ], + [ + 109.3373805, + -0.0420141 + ], + [ + 109.3372592, + -0.0419669 + ] + ] + }, + "id": "way/575206517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575206518", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.336597, + -0.0423518 + ], + [ + 109.3369125, + -0.0424875 + ], + [ + 109.3371847, + -0.0426015 + ], + [ + 109.3372585, + -0.0426471 + ], + [ + 109.3373175, + -0.0427021 + ], + [ + 109.3373823, + -0.0427736 + ] + ] + }, + "id": "way/575206518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575206519", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3378714, + -0.0423527 + ], + [ + 109.3378437, + -0.042337 + ], + [ + 109.3378159, + -0.0423288 + ], + [ + 109.3377768, + -0.0423258 + ], + [ + 109.3377332, + -0.0423266 + ], + [ + 109.3376293, + -0.0423299 + ], + [ + 109.3375334, + -0.0423189 + ], + [ + 109.3373577, + -0.042285 + ], + [ + 109.3372464, + -0.0422548 + ], + [ + 109.3370882, + -0.0421851 + ], + [ + 109.336826, + -0.0420842 + ], + [ + 109.3368112, + -0.0420818 + ], + [ + 109.3367965, + -0.0420832 + ], + [ + 109.3367824, + -0.0420864 + ], + [ + 109.3367723, + -0.0420922 + ], + [ + 109.3366808, + -0.0422206 + ], + [ + 109.336597, + -0.0423518 + ], + [ + 109.3365222, + -0.0424352 + ], + [ + 109.3363995, + -0.0423306 + ], + [ + 109.3363814, + -0.0423212 + ], + [ + 109.336366, + -0.0423179 + ], + [ + 109.3363459, + -0.0423152 + ], + [ + 109.3363291, + -0.0423212 + ], + [ + 109.3361948, + -0.0424012 + ] + ] + }, + "id": "way/575206519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575210850", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521556, + -0.0136247 + ], + [ + 109.3521809, + -0.0135217 + ], + [ + 109.3521943, + -0.0134453 + ], + [ + 109.3522178, + -0.0133165 + ], + [ + 109.3522306, + -0.0132367 + ], + [ + 109.3522642, + -0.0131442 + ] + ] + }, + "id": "way/575210850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575210851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534601, + -0.0142365 + ], + [ + 109.3532713, + -0.0140695 + ], + [ + 109.3530688, + -0.0139005 + ], + [ + 109.3529414, + -0.0137798 + ], + [ + 109.3528207, + -0.0136833 + ], + [ + 109.3527241, + -0.0136068 + ], + [ + 109.352594, + -0.0135036 + ], + [ + 109.3524653, + -0.0134231 + ] + ] + }, + "id": "way/575210851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575210852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518571, + -0.0128189 + ], + [ + 109.3518349, + -0.0129799 + ], + [ + 109.3518263, + -0.0131274 + ], + [ + 109.3518139, + -0.0132261 + ], + [ + 109.3517927, + -0.0133627 + ], + [ + 109.3517685, + -0.0135384 + ], + [ + 109.3517579, + -0.0135928 + ] + ] + }, + "id": "way/575210852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575211852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503242, + -0.0085911 + ], + [ + 109.3503463, + -0.00863 + ], + [ + 109.3503772, + -0.0086749 + ], + [ + 109.3505455, + -0.0088774 + ], + [ + 109.35075, + -0.0091048 + ], + [ + 109.3512264, + -0.0096339 + ], + [ + 109.3507618, + -0.0101735 + ], + [ + 109.350503, + -0.0104961 + ], + [ + 109.3504211, + -0.0105981 + ], + [ + 109.3503034, + -0.0107275 + ], + [ + 109.3500962, + -0.0109588 + ], + [ + 109.3499735, + -0.011095 + ] + ] + }, + "id": "way/575211852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575216857", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466891, + -0.0184254 + ], + [ + 109.3467401, + -0.0182363 + ], + [ + 109.3468004, + -0.0179628 + ], + [ + 109.346889, + -0.0176355 + ], + [ + 109.346948, + -0.0174357 + ], + [ + 109.3470258, + -0.0171447 + ], + [ + 109.3470839, + -0.0170188 + ] + ] + }, + "id": "way/575216857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575216858", + "highway": "residential", + "name": "Gang Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467256, + -0.0167954 + ], + [ + 109.3466851, + -0.0169381 + ], + [ + 109.3466301, + -0.0171353 + ], + [ + 109.3465684, + -0.0173499 + ], + [ + 109.3465309, + -0.0175242 + ], + [ + 109.3464786, + -0.0177656 + ], + [ + 109.3464196, + -0.0180915 + ], + [ + 109.3463793, + -0.0182927 + ], + [ + 109.3463754, + -0.0184095 + ] + ] + }, + "id": "way/575216858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575216859", + "highway": "residential", + "name": "Gang Sealt Sumba III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463267, + -0.0165175 + ], + [ + 109.3462017, + -0.016802 + ], + [ + 109.3461413, + -0.0169455 + ], + [ + 109.3461334, + -0.0169702 + ], + [ + 109.3460601, + -0.0172968 + ], + [ + 109.3459851, + -0.0176489 + ], + [ + 109.3458965, + -0.018113 + ], + [ + 109.3458424, + -0.0183913 + ] + ] + }, + "id": "way/575216859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575216860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461691, + -0.0127496 + ], + [ + 109.345859, + -0.0126158 + ], + [ + 109.3454754, + -0.0124468 + ], + [ + 109.3451978, + -0.012318 + ], + [ + 109.3449041, + -0.0121839 + ], + [ + 109.344644, + -0.0120686 + ] + ] + }, + "id": "way/575216860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575216861", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448183, + -0.0115684 + ], + [ + 109.3450932, + -0.0116823 + ], + [ + 109.3456028, + -0.011903 + ], + [ + 109.346152, + -0.012137 + ], + [ + 109.3461628, + -0.0121477 + ], + [ + 109.3461695, + -0.0121685 + ], + [ + 109.3461493, + -0.0122389 + ], + [ + 109.3461098, + -0.0123134 + ], + [ + 109.3460494, + -0.0124294 + ], + [ + 109.3460435, + -0.0124425 + ], + [ + 109.3460125, + -0.0125112 + ] + ] + }, + "id": "way/575216861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575216862", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449309, + -0.0112666 + ], + [ + 109.3455666, + -0.0115362 + ], + [ + 109.3462694, + -0.0118393 + ], + [ + 109.3463096, + -0.0118554 + ] + ] + }, + "id": "way/575216862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575216863", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450624, + -0.010871 + ], + [ + 109.3453742, + -0.0110044 + ], + [ + 109.3455291, + -0.0110708 + ], + [ + 109.345697, + -0.0111444 + ], + [ + 109.3463793, + -0.0114477 + ], + [ + 109.3464793, + -0.0114963 + ], + [ + 109.3466947, + -0.0115905 + ] + ] + }, + "id": "way/575216863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575216895", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472183, + -0.0095233 + ], + [ + 109.3471216, + -0.0094826 + ], + [ + 109.3467495, + -0.0093234 + ], + [ + 109.346537, + -0.0092255 + ], + [ + 109.3460648, + -0.0090196 + ], + [ + 109.3458613, + -0.0089349 + ], + [ + 109.3457705, + -0.0089023 + ] + ] + }, + "id": "way/575216895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575220237", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520439, + -0.0184486 + ], + [ + 109.3520569, + -0.0187761 + ], + [ + 109.3520603, + -0.0189344 + ], + [ + 109.352079, + -0.0193025 + ], + [ + 109.352075, + -0.01932 + ], + [ + 109.352065, + -0.01933 + ] + ] + }, + "id": "way/575220237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575220257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516417, + -0.0171608 + ], + [ + 109.3515104, + -0.0171605 + ], + [ + 109.3513799, + -0.017159 + ] + ] + }, + "id": "way/575220257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575234259", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3000758, + -0.0522076 + ], + [ + 109.3010489, + -0.0513962 + ], + [ + 109.3014477, + -0.0510646 + ], + [ + 109.3017722, + -0.0507937 + ], + [ + 109.3020404, + -0.0505845 + ], + [ + 109.3020699, + -0.0505496 + ] + ] + }, + "id": "way/575234259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575234261", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.299802, + -0.0519153 + ], + [ + 109.3009863, + -0.050909 + ], + [ + 109.3013726, + -0.0505925 + ], + [ + 109.3019211, + -0.0501352 + ], + [ + 109.3022041, + -0.0499112 + ] + ] + }, + "id": "way/575234261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575242882", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2908942, + -0.0012508 + ], + [ + 109.2910628, + -0.0005512 + ] + ] + }, + "id": "way/575242882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575255423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993077, + -0.0408798 + ], + [ + 109.2993374, + -0.0408615 + ] + ] + }, + "id": "way/575255423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575255424", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034328, + -0.0362035 + ], + [ + 109.301455, + -0.037884 + ], + [ + 109.3012613, + -0.0380486 + ] + ] + }, + "id": "way/575255424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575255425", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3006095, + -0.037582 + ], + [ + 109.3030406, + -0.035445 + ] + ] + }, + "id": "way/575255425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575256741", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2872276, + -0.0055964 + ], + [ + 109.2872903, + -0.0053443 + ], + [ + 109.2873372, + -0.0051565 + ], + [ + 109.2873567, + -0.0050586 + ], + [ + 109.287364, + -0.0049822 + ], + [ + 109.2873721, + -0.0048481 + ], + [ + 109.2873681, + -0.0046469 + ] + ] + }, + "id": "way/575256741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575256914", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2872284, + -0.0022489 + ], + [ + 109.2872219, + -0.0026098 + ], + [ + 109.2872125, + -0.0034279 + ], + [ + 109.2872098, + -0.0040622 + ], + [ + 109.2872004, + -0.0045168 + ], + [ + 109.2871951, + -0.004824 + ] + ] + }, + "id": "way/575256914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575256978", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2874575, + -0.0001186 + ], + [ + 109.286965, + -0.0000518 + ] + ] + }, + "id": "way/575256978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575264447", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3813466, + -0.0482717 + ], + [ + 109.380319, + -0.0491395 + ] + ] + }, + "id": "way/575264447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575264448", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3799954, + -0.0487232 + ], + [ + 109.3801587, + -0.0489333 + ], + [ + 109.380319, + -0.0491395 + ] + ] + }, + "id": "way/575264448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575264449", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3810516, + -0.0478506 + ], + [ + 109.3799954, + -0.0487232 + ] + ] + }, + "id": "way/575264449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575264450", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3811166, + -0.0481292 + ], + [ + 109.3801587, + -0.0489333 + ] + ] + }, + "id": "way/575264450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575283139", + "highway": "residential", + "name": "Jalan Anggrek" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322573, + -0.0387267 + ], + [ + 109.3315977, + -0.0390744 + ], + [ + 109.3310747, + -0.0393158 + ], + [ + 109.3306643, + -0.039517 + ] + ] + }, + "id": "way/575283139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575283140", + "highway": "residential", + "name": "Jalan Sakura" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309706, + -0.0380066 + ], + [ + 109.3315977, + -0.0390744 + ] + ] + }, + "id": "way/575283140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575283141", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309706, + -0.0380066 + ], + [ + 109.3305824, + -0.0383475 + ], + [ + 109.3305436, + -0.0384065 + ], + [ + 109.3305396, + -0.0384588 + ], + [ + 109.3308882, + -0.0390011 + ], + [ + 109.330974, + -0.0391294 + ], + [ + 109.3310747, + -0.0393158 + ] + ] + }, + "id": "way/575283141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575283246", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3345495, + -0.0342599 + ], + [ + 109.3347047, + -0.034165 + ], + [ + 109.3352643, + -0.0338227 + ], + [ + 109.3354265, + -0.0336979 + ], + [ + 109.3355244, + -0.0336416 + ] + ] + }, + "id": "way/575283246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575283247", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342518, + -0.0339702 + ], + [ + 109.3345495, + -0.0342599 + ], + [ + 109.3348144, + -0.0345686 + ], + [ + 109.3348251, + -0.0345878 + ], + [ + 109.3348274, + -0.0346102 + ], + [ + 109.3348204, + -0.03463 + ], + [ + 109.3344328, + -0.0349599 + ] + ] + }, + "id": "way/575283247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575327861", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2863998, + -0.0105545 + ], + [ + 109.2864561, + -0.0105666 + ], + [ + 109.2871455, + -0.0106685 + ], + [ + 109.2878066, + -0.0107449 + ], + [ + 109.2886014, + -0.0108469 + ], + [ + 109.2894052, + -0.0109568 + ] + ] + }, + "id": "way/575327861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575328246", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2872745, + -0.0068535 + ], + [ + 109.2880413, + -0.0071266 + ] + ] + }, + "id": "way/575328246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575328247", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2881397, + -0.0081088 + ], + [ + 109.2871849, + -0.0080254 + ] + ] + }, + "id": "way/575328247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575328248", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2872235, + -0.007107 + ], + [ + 109.2872018, + -0.0074512 + ], + [ + 109.2871978, + -0.0076168 + ], + [ + 109.2872098, + -0.0076839 + ], + [ + 109.2872171, + -0.0077267 + ], + [ + 109.2871991, + -0.0079206 + ], + [ + 109.2871849, + -0.0080254 + ], + [ + 109.2871742, + -0.0082009 + ], + [ + 109.287153, + -0.0084107 + ] + ] + }, + "id": "way/575328248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575398519", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573388, + 0.0068664 + ], + [ + 109.3574381, + 0.0068343 + ] + ] + }, + "id": "way/575398519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575398520", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574381, + 0.0068343 + ], + [ + 109.3574908, + 0.006823 + ] + ] + }, + "id": "way/575398520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575398525", + "highway": "residential", + "name": "Jalan Nusa Indah 3", + "oneway": "no", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395588, + -0.0258502 + ], + [ + 109.3397958, + -0.0263892 + ] + ] + }, + "id": "way/575398525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575398527", + "highway": "residential", + "name": "Jalan Chairil Anwar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411839, + -0.0361723 + ], + [ + 109.3408942, + -0.0357968 + ], + [ + 109.3406354, + -0.0354918 + ] + ] + }, + "id": "way/575398527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575398528", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339159, + -0.0295164 + ], + [ + 109.3392187, + -0.0296238 + ] + ] + }, + "id": "way/575398528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575399274", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490299, + -0.0270798 + ], + [ + 109.3491101, + -0.0270173 + ], + [ + 109.3492028, + -0.0269536 + ], + [ + 109.3493035, + -0.0268845 + ], + [ + 109.34944, + -0.0267933 + ], + [ + 109.3495691, + -0.026716 + ], + [ + 109.3497097, + -0.0266283 + ], + [ + 109.3498051, + -0.0265618 + ], + [ + 109.3499254, + -0.0264913 + ], + [ + 109.3500719, + -0.0263897 + ] + ] + }, + "id": "way/575399274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575399595", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalan Suez Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446596, + -0.0390552 + ], + [ + 109.3447532, + -0.0391877 + ] + ] + }, + "id": "way/575399595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575399596", + "access": "destination", + "highway": "service", + "name": "Jalan Suez Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447532, + -0.0391877 + ], + [ + 109.3447653, + -0.0392092 + ], + [ + 109.3447687, + -0.0392293 + ], + [ + 109.3447653, + -0.0392467 + ], + [ + 109.3447193, + -0.0393208 + ], + [ + 109.3445581, + -0.039517 + ], + [ + 109.3442828, + -0.039844 + ] + ] + }, + "id": "way/575399596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575399597", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493251, + -0.0288888 + ], + [ + 109.3493231, + -0.0289082 + ], + [ + 109.3493141, + -0.0289256 + ], + [ + 109.3493113, + -0.028931 + ], + [ + 109.3492989, + -0.0289481 + ], + [ + 109.3492972, + -0.0289504 + ], + [ + 109.3492744, + -0.0289722 + ], + [ + 109.3492308, + -0.0289993 + ] + ] + }, + "id": "way/575399597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575403942", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033036, + 0.007659 + ], + [ + 109.3033104, + 0.0076614 + ], + [ + 109.3033148, + 0.0076668 + ], + [ + 109.3033741, + 0.0078991 + ], + [ + 109.3033835, + 0.0079072 + ], + [ + 109.303401, + 0.0079085 + ], + [ + 109.3040001, + 0.0077865 + ], + [ + 109.3041212, + 0.0077663 + ] + ] + }, + "id": "way/575403942" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575403961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029853, + 0.0073494 + ], + [ + 109.3027277, + 0.0073989 + ], + [ + 109.3026473, + 0.0074217 + ], + [ + 109.3025299, + 0.0074867 + ] + ] + }, + "id": "way/575403961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575403963", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028774, + 0.0068645 + ], + [ + 109.3029155, + 0.0070435 + ], + [ + 109.3029624, + 0.0072755 + ], + [ + 109.3029853, + 0.0073494 + ], + [ + 109.3030027, + 0.0073982 + ], + [ + 109.3030168, + 0.007431 + ], + [ + 109.3030295, + 0.0074545 + ], + [ + 109.3031006, + 0.0074364 + ], + [ + 109.3032534, + 0.0073949 + ], + [ + 109.3033299, + 0.0073841 + ], + [ + 109.3034452, + 0.0073546 + ], + [ + 109.3035351, + 0.0073318 + ] + ] + }, + "id": "way/575403963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575406447", + "highway": "residential", + "name": "Jalan Untung Suropati", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481079, + -0.0466084 + ], + [ + 109.347799, + -0.0470213 + ], + [ + 109.3476738, + -0.0471771 + ], + [ + 109.3473664, + -0.0475599 + ], + [ + 109.3471152, + -0.0478725 + ], + [ + 109.346864, + -0.0481986 + ] + ] + }, + "id": "way/575406447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575406448", + "highway": "unclassified", + "name": "Jalan Suprapto", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413422, + -0.038884 + ], + [ + 109.3414531, + -0.0388756 + ], + [ + 109.3418129, + -0.0388598 + ], + [ + 109.3419255, + -0.0388464 + ], + [ + 109.3420073, + -0.0388303 + ], + [ + 109.3420784, + -0.0388089 + ], + [ + 109.3422367, + -0.0387324 + ], + [ + 109.3424284, + -0.0386064 + ], + [ + 109.3427337, + -0.0384442 + ], + [ + 109.3432022, + -0.0381954 + ] + ] + }, + "id": "way/575406448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575408375", + "bridge": "yes", + "highway": "tertiary", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521004, + -0.024937 + ], + [ + 109.3521482, + -0.0249395 + ] + ] + }, + "id": "way/575408375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575408376", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510394, + -0.025758 + ], + [ + 109.3508793, + -0.0251859 + ], + [ + 109.351479, + -0.0250015 + ], + [ + 109.3517704, + -0.0249441 + ], + [ + 109.3520281, + -0.0249353 + ], + [ + 109.3520544, + -0.024936 + ], + [ + 109.3521004, + -0.024937 + ] + ] + }, + "id": "way/575408376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575408379", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624254, + -0.0256237 + ], + [ + 109.3621711, + -0.0263921 + ] + ] + }, + "id": "way/575408379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575408380", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502136, + -0.025405 + ], + [ + 109.3503327, + -0.0253458 + ], + [ + 109.3506187, + -0.0252576 + ] + ] + }, + "id": "way/575408380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575409886", + "highway": "residential", + "lanes": "1", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432434, + 0.0047146 + ], + [ + 109.3432443, + 0.0047941 + ], + [ + 109.3432314, + 0.005021 + ], + [ + 109.3431633, + 0.0052041 + ], + [ + 109.3431168, + 0.0053336 + ], + [ + 109.3431007, + 0.0053785 + ], + [ + 109.3430781, + 0.0054311 + ], + [ + 109.3428138, + 0.006045 + ], + [ + 109.342718, + 0.006281 + ], + [ + 109.3426434, + 0.0064445 + ], + [ + 109.342469, + 0.006857 + ], + [ + 109.3423013, + 0.0072316 + ], + [ + 109.3422127, + 0.0074554 + ], + [ + 109.3421696, + 0.0075756 + ], + [ + 109.3421117, + 0.0077243 + ], + [ + 109.3420444, + 0.0078782 + ], + [ + 109.3419621, + 0.0080888 + ], + [ + 109.3417864, + 0.0085397 + ], + [ + 109.3416345, + 0.0089334 + ], + [ + 109.3416113, + 0.0089842 + ], + [ + 109.3414726, + 0.0093475 + ], + [ + 109.3414661, + 0.0093706 + ], + [ + 109.3413062, + 0.0097784 + ], + [ + 109.3411447, + 0.0102002 + ], + [ + 109.3410776, + 0.0103675 + ], + [ + 109.3409713, + 0.0107081 + ], + [ + 109.3409131, + 0.010893 + ], + [ + 109.3408843, + 0.010993 + ], + [ + 109.3407854, + 0.0113828 + ], + [ + 109.3406907, + 0.0117876 + ], + [ + 109.340519, + 0.0124716 + ], + [ + 109.3404278, + 0.0129007 + ], + [ + 109.34035, + 0.013354 + ], + [ + 109.3402374, + 0.0143089 + ], + [ + 109.3401663, + 0.0152249 + ] + ] + }, + "id": "way/575409886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575409887", + "highway": "unclassified", + "name": "Jalan Dharma Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383326, + -0.0093501 + ], + [ + 109.338326, + -0.009269 + ] + ] + }, + "id": "way/575409887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417417", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457705, + -0.0089023 + ], + [ + 109.3457129, + -0.0088768 + ] + ] + }, + "id": "way/575417417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417418", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444958, + -0.012483 + ], + [ + 109.3444211, + -0.0124438 + ] + ] + }, + "id": "way/575417418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417419", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344644, + -0.0120686 + ], + [ + 109.3445743, + -0.0120417 + ] + ] + }, + "id": "way/575417419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417420", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455774, + -0.0131536 + ], + [ + 109.3456498, + -0.013 + ], + [ + 109.3456498, + -0.0129859 + ], + [ + 109.345635, + -0.0129745 + ], + [ + 109.3454888, + -0.0129175 + ], + [ + 109.3450932, + -0.0127405 + ], + [ + 109.3448994, + -0.012656 + ], + [ + 109.3446694, + -0.0125554 + ], + [ + 109.3444958, + -0.012483 + ] + ] + }, + "id": "way/575417420" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417421", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448714, + -0.0112398 + ], + [ + 109.3449309, + -0.0112666 + ] + ] + }, + "id": "way/575417421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417422", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447569, + -0.011545 + ], + [ + 109.3448183, + -0.0115684 + ] + ] + }, + "id": "way/575417422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417423", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449877, + -0.0108462 + ], + [ + 109.3450624, + -0.010871 + ] + ] + }, + "id": "way/575417423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417424", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453575, + -0.0102611 + ], + [ + 109.3452231, + -0.010205 + ] + ] + }, + "id": "way/575417424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417425", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458258, + -0.0085468 + ], + [ + 109.3458885, + -0.0085703 + ] + ] + }, + "id": "way/575417425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417426", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468072, + -0.0060523 + ], + [ + 109.3468702, + -0.0060832 + ] + ] + }, + "id": "way/575417426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417427", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430194, + -0.0023482 + ], + [ + 109.3431216, + -0.0023875 + ] + ] + }, + "id": "way/575417427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417428", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430024, + -0.0027359 + ], + [ + 109.3428534, + -0.0026955 + ] + ] + }, + "id": "way/575417428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417429", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Dharma Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428529, + -0.0034922 + ], + [ + 109.3426868, + -0.0034256 + ] + ] + }, + "id": "way/575417429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417430", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427315, + -0.0041494 + ], + [ + 109.3425889, + -0.0040965 + ] + ] + }, + "id": "way/575417430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366301, + -0.0071192 + ], + [ + 109.3378707, + -0.0071014 + ], + [ + 109.3378834, + -0.0070737 + ], + [ + 109.3379023, + -0.0070527 + ], + [ + 109.3379723, + -0.0070329 + ], + [ + 109.3380598, + -0.0070267 + ], + [ + 109.3386167, + -0.0070355 + ] + ] + }, + "id": "way/575417431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417432", + "highway": "residential", + "name": "Gang Dharma Putra 17 B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377654, + -0.0052088 + ], + [ + 109.3376943, + -0.0053108 + ], + [ + 109.3375643, + -0.0053872 + ], + [ + 109.3374436, + -0.0054368 + ], + [ + 109.3372381, + -0.0055494 + ] + ] + }, + "id": "way/575417432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575417433", + "highway": "residential", + "name": "Gang Dharma Putra 17 B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427896, + -0.0028806 + ], + [ + 109.3412302, + -0.0029987 + ], + [ + 109.3411906, + -0.0030235 + ], + [ + 109.3411651, + -0.0030577 + ], + [ + 109.3411551, + -0.003106 + ], + [ + 109.3411477, + -0.0031348 + ], + [ + 109.3411309, + -0.0031737 + ], + [ + 109.3410847, + -0.0032132 + ], + [ + 109.3408486, + -0.0033447 + ], + [ + 109.3403712, + -0.0035727 + ], + [ + 109.3400004, + -0.0037832 + ] + ] + }, + "id": "way/575417433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575616302", + "highway": "residential", + "motorcar": "no", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3756575, + -0.0258412 + ], + [ + 109.3756168, + -0.0260818 + ], + [ + 109.3755738, + -0.02635 + ], + [ + 109.3755215, + -0.026641 + ], + [ + 109.3754598, + -0.0269401 + ], + [ + 109.375429, + -0.0271279 + ], + [ + 109.3753901, + -0.0273022 + ] + ] + }, + "id": "way/575616302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575856537", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300499, + -0.0015973 + ], + [ + 109.3305229, + -0.0018024 + ] + ] + }, + "id": "way/575856537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575856604", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294009, + -0.0027543 + ], + [ + 109.3295941, + -0.0029732 + ], + [ + 109.3297295, + -0.0031381 + ], + [ + 109.3298302, + -0.0032468 + ], + [ + 109.3299964, + -0.0033903 + ], + [ + 109.3301667, + -0.003511 + ], + [ + 109.3303562, + -0.0036243 + ] + ] + }, + "id": "way/575856604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/575858153", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.30586, + -0.0302119 + ], + [ + 109.3060798, + -0.0313035 + ], + [ + 109.3060772, + -0.0313324 + ], + [ + 109.3060449, + -0.0313554 + ], + [ + 109.3057899, + -0.0314269 + ], + [ + 109.3057624, + -0.0314241 + ], + [ + 109.3057471, + -0.031409 + ], + [ + 109.305536, + -0.0302755 + ] + ] + }, + "id": "way/575858153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576002693", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195879, + -0.0376955 + ], + [ + 109.3198188, + -0.0379881 + ] + ] + }, + "id": "way/576002693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576010859", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154958, + -0.043058 + ], + [ + 109.3150029, + -0.0435457 + ], + [ + 109.3147653, + -0.0437721 + ], + [ + 109.3145353, + -0.0439832 + ] + ] + }, + "id": "way/576010859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576010860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138817, + -0.0422904 + ], + [ + 109.3150029, + -0.0435457 + ], + [ + 109.3157869, + -0.0444345 + ] + ] + }, + "id": "way/576010860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576010911", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3162963, + -0.041405 + ], + [ + 109.3163427, + -0.0413758 + ] + ] + }, + "id": "way/576010911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576343021", + "highway": "track", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159776, + 0.034902 + ], + [ + 109.3160033, + 0.0359389 + ], + [ + 109.3160516, + 0.0368804 + ], + [ + 109.3160704, + 0.0375885 + ], + [ + 109.3160945, + 0.0381169 + ], + [ + 109.3160757, + 0.0384119 + ], + [ + 109.3160194, + 0.0385755 + ], + [ + 109.3158102, + 0.0391361 + ], + [ + 109.3156305, + 0.0398496 + ], + [ + 109.3155795, + 0.0400025 + ], + [ + 109.3155473, + 0.0401124 + ], + [ + 109.3154803, + 0.0405309 + ], + [ + 109.3154401, + 0.0409412 + ], + [ + 109.3154186, + 0.0411451 + ], + [ + 109.3153569, + 0.0414482 + ], + [ + 109.3152845, + 0.0417352 + ], + [ + 109.3152067, + 0.0419605 + ], + [ + 109.3150753, + 0.042218 + ], + [ + 109.3148553, + 0.04269 + ], + [ + 109.3145683, + 0.0431755 + ], + [ + 109.3142626, + 0.043661 + ], + [ + 109.3140721, + 0.0439641 + ] + ] + }, + "id": "way/576343021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576343022", + "embankment": "yes", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117331, + 0.0343468 + ], + [ + 109.3121248, + 0.0329643 + ] + ] + }, + "id": "way/576343022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576343023", + "embankment": "yes", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120792, + 0.0353622 + ], + [ + 109.3110225, + 0.035145 + ], + [ + 109.3112872, + 0.0342751 + ] + ] + }, + "id": "way/576343023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576343024", + "embankment": "yes", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3150256, + 0.0348102 + ], + [ + 109.3148875, + 0.0366363 + ], + [ + 109.3136832, + 0.0364298 + ], + [ + 109.3139622, + 0.0353274 + ], + [ + 109.3141297, + 0.0346963 + ] + ] + }, + "id": "way/576343024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576343026", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213168, + 0.0356036 + ], + [ + 109.3197423, + 0.0354052 + ], + [ + 109.3191308, + 0.0353408 + ], + [ + 109.3181276, + 0.0352281 + ], + [ + 109.317854, + 0.0351638 + ], + [ + 109.3173122, + 0.0350833 + ], + [ + 109.3162876, + 0.0349385 + ], + [ + 109.3159776, + 0.034902 + ], + [ + 109.3155581, + 0.0348526 + ], + [ + 109.3150256, + 0.0348102 + ], + [ + 109.3148178, + 0.0347936 + ], + [ + 109.3141297, + 0.0346963 + ], + [ + 109.3140587, + 0.0346863 + ] + ] + }, + "id": "way/576343026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576360230", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605497, + 0.0245046 + ], + [ + 109.3604113, + 0.024557 + ], + [ + 109.3602329, + 0.0246066 + ], + [ + 109.3597823, + 0.0247514 + ], + [ + 109.3591681, + 0.0249553 + ], + [ + 109.3587363, + 0.0251129 + ], + [ + 109.3586693, + 0.0251337 + ], + [ + 109.3586068, + 0.0251531 + ], + [ + 109.3585512, + 0.0251752 + ], + [ + 109.3584586, + 0.0252047 + ], + [ + 109.3583655, + 0.0252376 + ], + [ + 109.358283, + 0.0252684 + ], + [ + 109.3582146, + 0.0252892 + ], + [ + 109.3581207, + 0.0253214 + ], + [ + 109.3579095, + 0.0254046 + ] + ] + }, + "id": "way/576360230" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454199", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198712, + 0.0057438 + ], + [ + 109.3199046, + 0.0057024 + ], + [ + 109.3199388, + 0.0056562 + ] + ] + }, + "id": "way/576454199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454201", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202278, + 0.0060779 + ], + [ + 109.3198712, + 0.0057438 + ], + [ + 109.3196744, + 0.0055779 + ], + [ + 109.319399, + 0.0053456 + ] + ] + }, + "id": "way/576454201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454203", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3201151, + 0.0065687 + ], + [ + 109.3199247, + 0.0063944 + ], + [ + 109.3198563, + 0.0063474 + ], + [ + 109.3197584, + 0.0062656 + ], + [ + 109.3192059, + 0.0057828 + ], + [ + 109.3185997, + 0.0052303 + ], + [ + 109.3182135, + 0.004887 + ] + ] + }, + "id": "way/576454203" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454205", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179053, + 0.0045895 + ], + [ + 109.3182135, + 0.004887 + ] + ] + }, + "id": "way/576454205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454207", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317525, + 0.0047596 + ], + [ + 109.3177119, + 0.0050211 + ], + [ + 109.3180573, + 0.0053899 + ] + ] + }, + "id": "way/576454207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454209", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3168047, + 0.0051111 + ], + [ + 109.3170682, + 0.0055844 + ], + [ + 109.3173853, + 0.0054345 + ], + [ + 109.3173915, + 0.0054341 + ], + [ + 109.3173966, + 0.0054365 + ], + [ + 109.3174343, + 0.0054663 + ], + [ + 109.3180518, + 0.0060048 + ], + [ + 109.3181001, + 0.0060463 + ], + [ + 109.3184426, + 0.0063611 + ], + [ + 109.3184817, + 0.0063971 + ], + [ + 109.3183791, + 0.0064816 + ] + ] + }, + "id": "way/576454209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454210", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3165255, + 0.0052479 + ], + [ + 109.3164057, + 0.0049916 + ], + [ + 109.3162504, + 0.0046026 + ], + [ + 109.3162044, + 0.0044873 + ], + [ + 109.3161509, + 0.0043478 + ], + [ + 109.3160637, + 0.0041159 + ], + [ + 109.3160033, + 0.0039696 + ], + [ + 109.3157566, + 0.0034118 + ], + [ + 109.3153838, + 0.0024861 + ] + ] + }, + "id": "way/576454210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454213", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160085, + 0.0054969 + ], + [ + 109.3155769, + 0.0045168 + ], + [ + 109.3153381, + 0.0038731 + ], + [ + 109.3153435, + 0.003806 + ], + [ + 109.3153354, + 0.0037497 + ], + [ + 109.3151229, + 0.0032227 + ], + [ + 109.3151241, + 0.0032159 + ], + [ + 109.3151299, + 0.0032069 + ], + [ + 109.315145, + 0.0031865 + ], + [ + 109.3151474, + 0.0031751 + ], + [ + 109.3151477, + 0.003165 + ], + [ + 109.3149607, + 0.0027123 + ] + ] + }, + "id": "way/576454213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454215", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156283, + 0.0056694 + ], + [ + 109.3152187, + 0.0046791 + ], + [ + 109.3151014, + 0.004427 + ], + [ + 109.3149043, + 0.0039522 + ], + [ + 109.3145255, + 0.0030309 + ], + [ + 109.314484, + 0.002974 + ] + ] + }, + "id": "way/576454215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454217", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151423, + 0.0041387 + ], + [ + 109.315068, + 0.003928 + ], + [ + 109.3149948, + 0.0037202 + ], + [ + 109.3146581, + 0.0028805 + ] + ] + }, + "id": "way/576454217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454218", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154712, + 0.005759 + ], + [ + 109.315078, + 0.0048575 + ], + [ + 109.3149546, + 0.0045732 + ], + [ + 109.3146703, + 0.003916 + ], + [ + 109.314337, + 0.0030538 + ] + ] + }, + "id": "way/576454218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454220", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143733, + 0.0062777 + ], + [ + 109.3143792, + 0.0062563 + ], + [ + 109.3143933, + 0.0062408 + ], + [ + 109.3144526, + 0.0062044 + ], + [ + 109.3147332, + 0.0060936 + ], + [ + 109.3149903, + 0.005992 + ], + [ + 109.3151465, + 0.0059132 + ], + [ + 109.3153486, + 0.0058172 + ], + [ + 109.3154712, + 0.005759 + ], + [ + 109.3155487, + 0.0057198 + ], + [ + 109.3156283, + 0.0056694 + ], + [ + 109.3159857, + 0.0055035 + ], + [ + 109.3160085, + 0.0054969 + ], + [ + 109.3161522, + 0.0054375 + ], + [ + 109.3162233, + 0.0054047 + ], + [ + 109.316286, + 0.0053777 + ], + [ + 109.3163842, + 0.0053108 + ], + [ + 109.316454, + 0.0052839 + ], + [ + 109.3165255, + 0.0052479 + ], + [ + 109.3166283, + 0.0051901 + ], + [ + 109.3168047, + 0.0051111 + ], + [ + 109.3170843, + 0.0049567 + ], + [ + 109.317525, + 0.0047596 + ], + [ + 109.3179053, + 0.0045895 + ], + [ + 109.3181518, + 0.0044793 + ], + [ + 109.3188913, + 0.00416 + ], + [ + 109.3192138, + 0.0039862 + ] + ] + }, + "id": "way/576454220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454224", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144526, + 0.0062044 + ], + [ + 109.3142864, + 0.0058029 + ], + [ + 109.3141392, + 0.0054516 + ], + [ + 109.3139112, + 0.0049084 + ], + [ + 109.313877, + 0.0048139 + ], + [ + 109.3138468, + 0.0047207 + ], + [ + 109.3137933, + 0.0045845 + ], + [ + 109.3137402, + 0.0044645 + ], + [ + 109.3136899, + 0.0043545 + ], + [ + 109.3136591, + 0.0042916 + ], + [ + 109.3136122, + 0.0041963 + ], + [ + 109.3134575, + 0.0038398 + ], + [ + 109.3133384, + 0.0035618 + ] + ] + }, + "id": "way/576454224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454227", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156587, + 0.0100757 + ], + [ + 109.3156734, + 0.0097217 + ], + [ + 109.3156707, + 0.0096211 + ], + [ + 109.3156453, + 0.0095178 + ], + [ + 109.3155983, + 0.0093904 + ], + [ + 109.3155098, + 0.0091732 + ], + [ + 109.3154481, + 0.009023 + ], + [ + 109.3153194, + 0.0086904 + ], + [ + 109.3150029, + 0.0078937 + ], + [ + 109.3148897, + 0.0075703 + ], + [ + 109.3146569, + 0.0070193 + ], + [ + 109.3143733, + 0.0062777 + ] + ] + }, + "id": "way/576454227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454247", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2952662, + 0.0233503 + ], + [ + 109.2952766, + 0.02336 + ], + [ + 109.2953, + 0.0233681 + ], + [ + 109.2953413, + 0.0233644 + ], + [ + 109.295412, + 0.0233406 + ], + [ + 109.2959672, + 0.0231797 + ], + [ + 109.2961228, + 0.0231367 + ], + [ + 109.2963105, + 0.0230805 + ], + [ + 109.2974344, + 0.0226352 + ], + [ + 109.2974981, + 0.0226057 + ], + [ + 109.2981591, + 0.0223279 + ] + ] + }, + "id": "way/576454247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454251", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264908, + 0.0265284 + ], + [ + 109.326531, + 0.0265539 + ], + [ + 109.3265498, + 0.0265814 + ], + [ + 109.3265551, + 0.0266317 + ], + [ + 109.3265436, + 0.0268251 + ], + [ + 109.3265505, + 0.026924 + ], + [ + 109.3265631, + 0.0271037 + ], + [ + 109.326578, + 0.0274907 + ], + [ + 109.32659, + 0.0278038 + ] + ] + }, + "id": "way/576454251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454253", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070796, + 0.0068665 + ], + [ + 109.3070099, + 0.0065231 + ], + [ + 109.3070112, + 0.006499 + ], + [ + 109.307026, + 0.0064695 + ], + [ + 109.3070957, + 0.0064427 + ], + [ + 109.3071158, + 0.0064293 + ], + [ + 109.3071252, + 0.0064051 + ], + [ + 109.3070293, + 0.0059681 + ] + ] + }, + "id": "way/576454253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454266", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070681, + 0.005959 + ], + [ + 109.3073317, + 0.0070542 + ], + [ + 109.3074283, + 0.007478 + ], + [ + 109.3075544, + 0.0079662 + ], + [ + 109.3078253, + 0.0090417 + ] + ] + }, + "id": "way/576454266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454267", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3076309, + 0.0102011 + ], + [ + 109.3076122, + 0.0101743 + ], + [ + 109.3073037, + 0.0091148 + ], + [ + 109.3071535, + 0.0085811 + ], + [ + 109.3069363, + 0.007881 + ], + [ + 109.3067471, + 0.0071059 + ], + [ + 109.3067405, + 0.0070797 + ], + [ + 109.3067713, + 0.0070589 + ], + [ + 109.3068022, + 0.0070254 + ], + [ + 109.3068102, + 0.0069905 + ], + [ + 109.3067941, + 0.0069221 + ], + [ + 109.30668, + 0.0067505 + ] + ] + }, + "id": "way/576454267" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454269", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134939, + 0.0066631 + ], + [ + 109.3138562, + 0.0074378 + ], + [ + 109.3141181, + 0.0079327 + ], + [ + 109.3144906, + 0.0086487 + ], + [ + 109.3145942, + 0.0088134 + ], + [ + 109.3146096, + 0.0088392 + ], + [ + 109.314621, + 0.0088701 + ], + [ + 109.3146203, + 0.0088862 + ], + [ + 109.3145479, + 0.0089579 + ], + [ + 109.3145455, + 0.0089703 + ], + [ + 109.3145506, + 0.0089847 + ], + [ + 109.3149754, + 0.009611 + ] + ] + }, + "id": "way/576454269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454271", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127391, + 0.004789 + ], + [ + 109.3127558, + 0.0048152 + ], + [ + 109.3128055, + 0.0049279 + ], + [ + 109.3128236, + 0.0049782 + ], + [ + 109.3129429, + 0.0052705 + ], + [ + 109.3132299, + 0.0060108 + ], + [ + 109.3134082, + 0.0064802 + ] + ] + }, + "id": "way/576454271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454281", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3055588, + 0.0128263 + ], + [ + 109.3051055, + 0.0116676 + ], + [ + 109.3050113, + 0.0114629 + ] + ] + }, + "id": "way/576454281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454283", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063043, + 0.0109741 + ], + [ + 109.3066907, + 0.0122229 + ] + ] + }, + "id": "way/576454283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454285", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061699, + 0.0110231 + ], + [ + 109.3063796, + 0.0117078 + ], + [ + 109.3062514, + 0.0117452 + ] + ] + }, + "id": "way/576454285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454287", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060384, + 0.0110711 + ], + [ + 109.3062514, + 0.0117452 + ], + [ + 109.3064654, + 0.0124294 + ] + ] + }, + "id": "way/576454287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454289", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058842, + 0.0111274 + ], + [ + 109.3062723, + 0.0123113 + ] + ] + }, + "id": "way/576454289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454291", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061569, + 0.0095513 + ], + [ + 109.306232, + 0.0095245 + ], + [ + 109.3062401, + 0.0095178 + ], + [ + 109.3062448, + 0.0095091 + ], + [ + 109.3062294, + 0.0094467 + ], + [ + 109.3061475, + 0.0089719 + ], + [ + 109.3060644, + 0.0085348 + ], + [ + 109.3060309, + 0.008347 + ], + [ + 109.3059424, + 0.0079313 + ], + [ + 109.3056822, + 0.0079796 + ], + [ + 109.3056017, + 0.0080064 + ], + [ + 109.3055534, + 0.0080251 + ] + ] + }, + "id": "way/576454291" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454293", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057318, + 0.0111835 + ], + [ + 109.3058842, + 0.0111274 + ], + [ + 109.3060384, + 0.0110711 + ], + [ + 109.3061699, + 0.0110231 + ], + [ + 109.3063043, + 0.0109741 + ], + [ + 109.3064117, + 0.0109349 + ], + [ + 109.3064332, + 0.0109271 + ], + [ + 109.3064593, + 0.0109247 + ], + [ + 109.3064929, + 0.0109227 + ], + [ + 109.3065646, + 0.0109059 + ], + [ + 109.3066243, + 0.0108824 + ], + [ + 109.3065895, + 0.0107623 + ], + [ + 109.3061569, + 0.0095513 + ], + [ + 109.3059303, + 0.009617 + ], + [ + 109.3059219, + 0.0096198 + ], + [ + 109.3058525, + 0.0093381 + ], + [ + 109.3055534, + 0.0080251 + ], + [ + 109.3053487, + 0.0080647 + ], + [ + 109.3053368, + 0.0080064 + ], + [ + 109.3052275, + 0.0076 + ] + ] + }, + "id": "way/576454293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454296", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3047917, + 0.0115496 + ], + [ + 109.3050113, + 0.0114629 + ], + [ + 109.3054032, + 0.0113082 + ], + [ + 109.3057318, + 0.0111835 + ], + [ + 109.3056312, + 0.0108308 + ], + [ + 109.3053705, + 0.0097902 + ], + [ + 109.3053254, + 0.0096104 + ], + [ + 109.3050358, + 0.008398 + ], + [ + 109.3049285, + 0.007887 + ] + ] + }, + "id": "way/576454296" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454298", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089623, + 0.0127813 + ], + [ + 109.3094856, + 0.0125554 + ], + [ + 109.3095526, + 0.0125286 + ], + [ + 109.309623, + 0.0125079 + ], + [ + 109.3097437, + 0.0124723 + ], + [ + 109.3098074, + 0.0124615 + ], + [ + 109.3100472, + 0.0124099 + ], + [ + 109.3108195, + 0.0122576 + ] + ] + }, + "id": "way/576454298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454302", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132728, + 0.0157848 + ], + [ + 109.3138522, + 0.0173593 + ] + ] + }, + "id": "way/576454302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454304", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023463, + 0.0069932 + ], + [ + 109.3020193, + 0.005183 + ], + [ + 109.3020129, + 0.005174 + ], + [ + 109.3020015, + 0.005169 + ], + [ + 109.3019754, + 0.0051686 + ], + [ + 109.3008251, + 0.0053521 + ] + ] + }, + "id": "way/576454304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454306", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134968, + 0.011504 + ], + [ + 109.313527, + 0.011508 + ], + [ + 109.3135611, + 0.0115067 + ] + ] + }, + "id": "way/576454306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454308", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111998, + 0.0094615 + ], + [ + 109.3118112, + 0.0094953 + ], + [ + 109.3120558, + 0.0095064 + ], + [ + 109.3120894, + 0.0095102 + ], + [ + 109.3121342, + 0.0095165 + ], + [ + 109.3121523, + 0.0095285 + ], + [ + 109.3121731, + 0.0095379 + ], + [ + 109.3123636, + 0.0097579 + ], + [ + 109.3125942, + 0.0100288 + ], + [ + 109.3127676, + 0.0102653 + ], + [ + 109.3128946, + 0.0104666 + ], + [ + 109.3130549, + 0.0107047 + ], + [ + 109.3130919, + 0.0107687 + ], + [ + 109.3132124, + 0.010985 + ], + [ + 109.3134968, + 0.011504 + ], + [ + 109.313407, + 0.0115335 + ] + ] + }, + "id": "way/576454308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454310", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132999, + 0.0099793 + ], + [ + 109.3137744, + 0.0099362 + ], + [ + 109.3143504, + 0.0098424 + ] + ] + }, + "id": "way/576454310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454312", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120989, + 0.0086948 + ], + [ + 109.3121329, + 0.008736 + ], + [ + 109.3121678, + 0.0087816 + ], + [ + 109.3125644, + 0.009213 + ], + [ + 109.3130314, + 0.0097391 + ], + [ + 109.3132999, + 0.0099793 + ], + [ + 109.3134365, + 0.0101092 + ] + ] + }, + "id": "way/576454312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454314", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120733, + 0.0086931 + ], + [ + 109.3120989, + 0.0086948 + ], + [ + 109.3120605, + 0.008634 + ], + [ + 109.3117359, + 0.0079849 + ], + [ + 109.3114006, + 0.0072017 + ], + [ + 109.3113479, + 0.0070859 + ] + ] + }, + "id": "way/576454314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454316", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140312, + 0.0129781 + ], + [ + 109.3139622, + 0.0127593 + ], + [ + 109.3138204, + 0.0123208 + ], + [ + 109.3136121, + 0.011677 + ], + [ + 109.3135611, + 0.0115067 + ] + ] + }, + "id": "way/576454316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454318", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119068, + 0.0119405 + ], + [ + 109.3120122, + 0.0123435 + ], + [ + 109.3121865, + 0.0129819 + ], + [ + 109.3122965, + 0.0134057 + ], + [ + 109.312377, + 0.0136524 + ], + [ + 109.3124709, + 0.0139046 + ], + [ + 109.3125379, + 0.0141326 + ], + [ + 109.3126076, + 0.0143901 + ] + ] + }, + "id": "way/576454318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454320", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310938, + 0.0124937 + ], + [ + 109.3110124, + 0.0124971 + ], + [ + 109.311056, + 0.0124951 + ], + [ + 109.3110815, + 0.0125011 + ], + [ + 109.3111029, + 0.0125206 + ], + [ + 109.3111157, + 0.0125628 + ], + [ + 109.3112236, + 0.012947 + ], + [ + 109.3115857, + 0.0142291 + ], + [ + 109.3117493, + 0.0149104 + ], + [ + 109.3118298, + 0.0151907 + ], + [ + 109.3119451, + 0.0155273 + ], + [ + 109.3121061, + 0.0159135 + ], + [ + 109.3121744, + 0.016078 + ] + ] + }, + "id": "way/576454320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454322", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107138, + 0.0152821 + ], + [ + 109.3112833, + 0.0152235 + ], + [ + 109.3112947, + 0.0152101 + ], + [ + 109.3112954, + 0.0151907 + ], + [ + 109.311119, + 0.0146341 + ] + ] + }, + "id": "way/576454322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454324", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3100472, + 0.0124099 + ], + [ + 109.3099925, + 0.0120271 + ], + [ + 109.3099952, + 0.0119492 + ], + [ + 109.3100005, + 0.0118098 + ], + [ + 109.3095928, + 0.0105384 + ], + [ + 109.3092307, + 0.0094843 + ], + [ + 109.309102, + 0.0090646 + ] + ] + }, + "id": "way/576454324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454326", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095526, + 0.0125286 + ], + [ + 109.3095151, + 0.0124917 + ], + [ + 109.3094875, + 0.0124555 + ], + [ + 109.3094413, + 0.0123436 + ], + [ + 109.3090993, + 0.0113457 + ], + [ + 109.3089947, + 0.0111178 + ], + [ + 109.3089142, + 0.0108039 + ], + [ + 109.3084288, + 0.0092724 + ], + [ + 109.308233, + 0.0085938 + ], + [ + 109.3080881, + 0.0080788 + ], + [ + 109.3077877, + 0.0069094 + ], + [ + 109.3074823, + 0.0058616 + ] + ] + }, + "id": "way/576454326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454328", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081896, + 0.0130896 + ], + [ + 109.308184, + 0.0130697 + ], + [ + 109.3081827, + 0.0130409 + ], + [ + 109.3081941, + 0.0130168 + ], + [ + 109.3082249, + 0.0129852 + ], + [ + 109.3082853, + 0.0129598 + ], + [ + 109.3083711, + 0.0129262 + ], + [ + 109.3084261, + 0.0129008 + ], + [ + 109.3084549, + 0.012878 + ], + [ + 109.3084685, + 0.0128579 + ], + [ + 109.3084744, + 0.0128317 + ], + [ + 109.3084609, + 0.0127827 + ], + [ + 109.3083563, + 0.0125339 + ], + [ + 109.3081102, + 0.0118329 + ] + ] + }, + "id": "way/576454328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454330", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081096, + 0.0100797 + ], + [ + 109.3076309, + 0.0102011 + ], + [ + 109.3076458, + 0.010246 + ] + ] + }, + "id": "way/576454330" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454332", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089623, + 0.0127813 + ], + [ + 109.3085578, + 0.0115992 + ], + [ + 109.3085307, + 0.0115201 + ], + [ + 109.3082437, + 0.0105733 + ], + [ + 109.3081096, + 0.0100797 + ], + [ + 109.3081638, + 0.0100603 + ], + [ + 109.3082356, + 0.0100395 + ] + ] + }, + "id": "way/576454332" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454334", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022132, + 0.0137527 + ], + [ + 109.3028645, + 0.0135244 + ], + [ + 109.302894, + 0.0135264 + ], + [ + 109.3029121, + 0.0135358 + ], + [ + 109.3029329, + 0.0135411 + ], + [ + 109.3035659, + 0.0132984 + ] + ] + }, + "id": "way/576454334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454336", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017852, + 0.0126792 + ], + [ + 109.3027667, + 0.0123328 + ] + ] + }, + "id": "way/576454336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454341", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300563, + 0.0098078 + ], + [ + 109.3019036, + 0.0093522 + ], + [ + 109.3020806, + 0.0092962 + ], + [ + 109.3024367, + 0.0091655 + ], + [ + 109.3028706, + 0.0090217 + ], + [ + 109.3036772, + 0.0087453 + ] + ] + }, + "id": "way/576454341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454343", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2973936, + 0.0111333 + ], + [ + 109.2973202, + 0.0109362 + ], + [ + 109.2970587, + 0.0102289 + ], + [ + 109.2969756, + 0.0100332 + ], + [ + 109.2966833, + 0.0093445 + ] + ] + }, + "id": "way/576454343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454345", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980053, + 0.0108099 + ], + [ + 109.2979574, + 0.0107141 + ], + [ + 109.2979172, + 0.0106463 + ] + ] + }, + "id": "way/576454345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454347", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979172, + 0.0106463 + ], + [ + 109.2978703, + 0.0105934 + ] + ] + }, + "id": "way/576454347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454349", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2964339, + 0.0106438 + ], + [ + 109.2958059, + 0.0108955 + ] + ] + }, + "id": "way/576454349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454351", + "highway": "residential", + "motorcar": "no", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966235, + 0.0111368 + ], + [ + 109.2964842, + 0.0107534 + ], + [ + 109.2964339, + 0.0106438 + ], + [ + 109.2962783, + 0.0103702 + ], + [ + 109.2962026, + 0.0102494 + ], + [ + 109.2960977, + 0.010081 + ], + [ + 109.2960303, + 0.0099409 + ], + [ + 109.2959534, + 0.0097574 + ] + ] + }, + "id": "way/576454351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454353", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2973936, + 0.0111333 + ], + [ + 109.2970574, + 0.0112487 + ], + [ + 109.2960612, + 0.0115906 + ], + [ + 109.2959775, + 0.0116161 + ], + [ + 109.2957785, + 0.0116836 + ], + [ + 109.2956541, + 0.011727 + ], + [ + 109.2956323, + 0.0117316 + ], + [ + 109.2956172, + 0.011728 + ], + [ + 109.2956102, + 0.0117226 + ], + [ + 109.2956024, + 0.0117085 + ], + [ + 109.2955542, + 0.0115227 + ], + [ + 109.2954153, + 0.0110641 + ], + [ + 109.2954117, + 0.0110041 + ], + [ + 109.295405, + 0.0109786 + ], + [ + 109.2953939, + 0.0109612 + ], + [ + 109.2953215, + 0.0108621 + ], + [ + 109.2952953, + 0.0107235 + ] + ] + }, + "id": "way/576454353" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454355", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2978703, + 0.0105934 + ], + [ + 109.2978112, + 0.0105304 + ], + [ + 109.297765, + 0.010476 + ], + [ + 109.2976865, + 0.0103332 + ], + [ + 109.2976517, + 0.0102695 + ], + [ + 109.2975793, + 0.0101254 + ], + [ + 109.2975464, + 0.0100657 + ], + [ + 109.297543, + 0.0100254 + ], + [ + 109.2975517, + 0.0099892 + ], + [ + 109.2975531, + 0.0099469 + ], + [ + 109.2975041, + 0.0098142 + ], + [ + 109.2970707, + 0.00914 + ] + ] + }, + "id": "way/576454355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454357", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982265, + 0.0092087 + ], + [ + 109.2984308, + 0.0098531 + ], + [ + 109.2984509, + 0.0099336 + ], + [ + 109.2984765, + 0.0100399 + ], + [ + 109.2985623, + 0.0102353 + ], + [ + 109.2986651, + 0.0104449 + ] + ] + }, + "id": "way/576454357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454359", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2977715, + 0.0087818 + ], + [ + 109.2980483, + 0.0092918 + ], + [ + 109.2980536, + 0.0092992 + ], + [ + 109.2980637, + 0.0093029 + ], + [ + 109.2982265, + 0.0092087 + ], + [ + 109.2982498, + 0.0091948 + ], + [ + 109.2981103, + 0.0089543 + ] + ] + }, + "id": "way/576454359" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454361", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2975283, + 0.0114852 + ], + [ + 109.2973936, + 0.0111333 + ] + ] + }, + "id": "way/576454361" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454363", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3003526, + 0.0096037 + ], + [ + 109.2986651, + 0.0104449 + ], + [ + 109.298402, + 0.0106001 + ], + [ + 109.2983598, + 0.0106215 + ], + [ + 109.2980053, + 0.0108099 + ], + [ + 109.2973936, + 0.0111333 + ] + ] + }, + "id": "way/576454363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454365", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959558, + 0.0127102 + ], + [ + 109.2966239, + 0.0123916 + ], + [ + 109.2976825, + 0.0118437 + ], + [ + 109.2979704, + 0.0117126 + ], + [ + 109.2981184, + 0.0116488 + ] + ] + }, + "id": "way/576454365" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454367", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983303, + 0.011826 + ], + [ + 109.2982461, + 0.011612 + ] + ] + }, + "id": "way/576454367" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454369", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3006969, + 0.010327 + ], + [ + 109.3000268, + 0.0106742 + ], + [ + 109.2991523, + 0.0111379 + ], + [ + 109.2987514, + 0.0113592 + ], + [ + 109.2983812, + 0.0115496 + ], + [ + 109.2982461, + 0.011612 + ], + [ + 109.2981184, + 0.0116488 + ] + ] + }, + "id": "way/576454369" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454371", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2958935, + 0.0132608 + ], + [ + 109.2967705, + 0.0127888 + ], + [ + 109.2978595, + 0.0122161 + ], + [ + 109.2978615, + 0.0122074 + ], + [ + 109.2978609, + 0.0121973 + ], + [ + 109.2978266, + 0.0121175 + ], + [ + 109.2976825, + 0.0118437 + ], + [ + 109.2975283, + 0.0114852 + ], + [ + 109.2981559, + 0.0111953 + ], + [ + 109.2985877, + 0.0110216 + ], + [ + 109.2994286, + 0.0105545 + ], + [ + 109.2997814, + 0.0103574 + ], + [ + 109.300531, + 0.0099912 + ] + ] + }, + "id": "way/576454371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454373", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979521, + 0.0120404 + ], + [ + 109.2978266, + 0.0121175 + ] + ] + }, + "id": "way/576454373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454375", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009011, + 0.010922 + ], + [ + 109.2998242, + 0.0114611 + ], + [ + 109.2981318, + 0.0123891 + ], + [ + 109.2979521, + 0.0120404 + ], + [ + 109.2983303, + 0.011826 + ], + [ + 109.2996851, + 0.0110841 + ], + [ + 109.3005344, + 0.0106792 + ], + [ + 109.3007583, + 0.0105639 + ] + ] + }, + "id": "way/576454375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454377", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010728, + 0.0112982 + ], + [ + 109.30105, + 0.0113122 + ], + [ + 109.3009239, + 0.0113753 + ], + [ + 109.300653, + 0.0115013 + ], + [ + 109.2997986, + 0.0119499 + ], + [ + 109.2997669, + 0.011978 + ], + [ + 109.2997478, + 0.0119948 + ], + [ + 109.2997336, + 0.0120068 + ], + [ + 109.2993481, + 0.0122349 + ], + [ + 109.2988982, + 0.0124736 + ], + [ + 109.2986756, + 0.0125923 + ], + [ + 109.2985522, + 0.0126674 + ], + [ + 109.2983229, + 0.0127874 + ], + [ + 109.2983091, + 0.0127915 + ], + [ + 109.298301, + 0.012791 + ], + [ + 109.298295, + 0.0127874 + ], + [ + 109.29829, + 0.0127801 + ], + [ + 109.2981867, + 0.0125273 + ], + [ + 109.2981318, + 0.0123891 + ] + ] + }, + "id": "way/576454377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454380", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993279, + 0.0140208 + ], + [ + 109.3001618, + 0.0135136 + ], + [ + 109.3002262, + 0.0134768 + ], + [ + 109.300438, + 0.0133559 + ], + [ + 109.3010054, + 0.0130319 + ], + [ + 109.3013726, + 0.0128403 + ], + [ + 109.3015285, + 0.0127597 + ], + [ + 109.301655, + 0.0126953 + ] + ] + }, + "id": "way/576454380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454382", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091771, + 0.0146368 + ], + [ + 109.3091476, + 0.0145242 + ], + [ + 109.3089893, + 0.0139287 + ], + [ + 109.3087246, + 0.0128563 + ] + ] + }, + "id": "way/576454382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454384", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.30859, + 0.0167811 + ], + [ + 109.3083724, + 0.015876 + ], + [ + 109.3078521, + 0.0138831 + ], + [ + 109.3077126, + 0.0133306 + ] + ] + }, + "id": "way/576454384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454387", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081858, + 0.0168458 + ], + [ + 109.3079835, + 0.0161281 + ], + [ + 109.3077528, + 0.0152269 + ], + [ + 109.3073747, + 0.013808 + ] + ] + }, + "id": "way/576454387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454389", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081182, + 0.0168619 + ], + [ + 109.3081391, + 0.0169368 + ], + [ + 109.3081659, + 0.0170508 + ], + [ + 109.3082866, + 0.0176007 + ], + [ + 109.3083563, + 0.0179467 + ], + [ + 109.3086031, + 0.0191805 + ], + [ + 109.3086541, + 0.0194594 + ], + [ + 109.30865, + 0.0194792 + ], + [ + 109.308638, + 0.0194889 + ], + [ + 109.3081572, + 0.0197009 + ], + [ + 109.3081015, + 0.0197357 + ], + [ + 109.306798, + 0.0202641 + ], + [ + 109.3060577, + 0.0206101 + ] + ] + }, + "id": "way/576454389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454392", + "highway": "residential", + "name": "KOMPLEK MANGUN LESTARI", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3104096, + 0.0165788 + ], + [ + 109.3103278, + 0.0166217 + ], + [ + 109.3102285, + 0.0166512 + ], + [ + 109.3086272, + 0.0170347 + ] + ] + }, + "id": "way/576454392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454396", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107744, + 0.0211385 + ], + [ + 109.3106557, + 0.0211666 + ], + [ + 109.3102879, + 0.0212614 + ], + [ + 109.3102473, + 0.0212719 + ], + [ + 109.3100261, + 0.0213235 + ] + ] + }, + "id": "way/576454396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454398", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127042, + 0.0213048 + ], + [ + 109.3121169, + 0.021385 + ], + [ + 109.3120363, + 0.021396 + ], + [ + 109.3110309, + 0.0215319 + ] + ] + }, + "id": "way/576454398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454408", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109626, + 0.0212359 + ], + [ + 109.312546, + 0.0210232 + ], + [ + 109.3134499, + 0.020889 + ], + [ + 109.3135545, + 0.0208756 + ], + [ + 109.3136282, + 0.0208629 + ], + [ + 109.3137563, + 0.0208448 + ], + [ + 109.3138944, + 0.0208407 + ], + [ + 109.3139964, + 0.0208515 + ], + [ + 109.314056, + 0.0208622 + ], + [ + 109.3140943, + 0.0208743 + ], + [ + 109.3141821, + 0.0208917 + ], + [ + 109.3142451, + 0.0208984 + ], + [ + 109.3143377, + 0.0209011 + ], + [ + 109.3144423, + 0.0209051 + ], + [ + 109.314567, + 0.0208864 + ], + [ + 109.3146233, + 0.0208656 + ], + [ + 109.3146468, + 0.0208421 + ], + [ + 109.3146569, + 0.0208146 + ], + [ + 109.3144939, + 0.0197491 + ] + ] + }, + "id": "way/576454408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454410", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025797, + 0.0145743 + ], + [ + 109.302497, + 0.0145932 + ] + ] + }, + "id": "way/576454410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454412", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3027123, + 0.015408 + ], + [ + 109.3026097, + 0.0154502 + ], + [ + 109.3025333, + 0.0154837 + ], + [ + 109.3021323, + 0.0156681 + ] + ] + }, + "id": "way/576454412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454414", + "highway": "service", + "noname": "yes", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029504, + 0.0160035 + ], + [ + 109.3020049, + 0.0164795 + ], + [ + 109.3015623, + 0.0166994 + ] + ] + }, + "id": "way/576454414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454416", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017852, + 0.0126792 + ], + [ + 109.3019275, + 0.0130383 + ], + [ + 109.3021512, + 0.0135978 + ], + [ + 109.3022132, + 0.0137527 + ], + [ + 109.3022248, + 0.0137818 + ], + [ + 109.3023072, + 0.0139559 + ], + [ + 109.302426, + 0.0142217 + ], + [ + 109.3024849, + 0.0143451 + ], + [ + 109.3025797, + 0.0145743 + ], + [ + 109.3026915, + 0.0148789 + ], + [ + 109.3027773, + 0.0151337 + ], + [ + 109.3028674, + 0.0153513 + ], + [ + 109.3028887, + 0.0154032 + ], + [ + 109.302941, + 0.0155253 + ], + [ + 109.3030458, + 0.0157542 + ] + ] + }, + "id": "way/576454416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454419", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017705, + 0.0126326 + ], + [ + 109.301714, + 0.0125014 + ], + [ + 109.301547, + 0.0121142 + ], + [ + 109.3014402, + 0.0118644 + ], + [ + 109.3013592, + 0.0116761 + ], + [ + 109.3013129, + 0.0115684 + ], + [ + 109.3011737, + 0.0112449 + ], + [ + 109.3010082, + 0.0108792 + ], + [ + 109.3009829, + 0.0108227 + ], + [ + 109.3008552, + 0.0105106 + ], + [ + 109.3007601, + 0.0102998 + ], + [ + 109.300704, + 0.0101763 + ], + [ + 109.3006166, + 0.0099479 + ], + [ + 109.300563, + 0.0098078 + ], + [ + 109.3005162, + 0.0096855 + ], + [ + 109.3004673, + 0.0095501 + ], + [ + 109.3004357, + 0.0094803 + ], + [ + 109.3004, + 0.0093917 + ], + [ + 109.3003754, + 0.009318 + ], + [ + 109.3001163, + 0.0086261 + ], + [ + 109.2999825, + 0.0083188 + ], + [ + 109.2997586, + 0.007761 + ] + ] + }, + "id": "way/576454419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454421", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3045074, + 0.0131267 + ], + [ + 109.3024139, + 0.013918 + ], + [ + 109.3023549, + 0.0139395 + ], + [ + 109.3023072, + 0.0139559 + ] + ] + }, + "id": "way/576454421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454424", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323189, + 0.0247484 + ], + [ + 109.3237549, + 0.0249204 + ], + [ + 109.3238515, + 0.0249472 + ], + [ + 109.3238863, + 0.0249472 + ], + [ + 109.3239272, + 0.0249419 + ], + [ + 109.3239719, + 0.0249065 + ] + ] + }, + "id": "way/576454424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454426", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227317, + 0.0264511 + ], + [ + 109.3229767, + 0.0258234 + ], + [ + 109.3230575, + 0.0256634 + ], + [ + 109.3231246, + 0.0251779 + ], + [ + 109.323189, + 0.0247484 + ], + [ + 109.323197, + 0.0246951 + ], + [ + 109.323189, + 0.0246723 + ], + [ + 109.3231702, + 0.0246602 + ], + [ + 109.322517, + 0.0245703 + ] + ] + }, + "id": "way/576454426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454428", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216658, + 0.0244609 + ], + [ + 109.322517, + 0.0245703 + ], + [ + 109.3224809, + 0.0246749 + ], + [ + 109.3222475, + 0.0253335 + ], + [ + 109.3219846, + 0.0260952 + ] + ] + }, + "id": "way/576454428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576454430", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182296, + 0.0239682 + ], + [ + 109.3197048, + 0.0239307 + ], + [ + 109.3210512, + 0.0238824 + ], + [ + 109.3212095, + 0.0238837 + ], + [ + 109.3213939, + 0.0238992 + ], + [ + 109.3216158, + 0.0239213 + ], + [ + 109.3217116, + 0.0239342 + ] + ] + }, + "id": "way/576454430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576597207", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406773, + -0.0163369 + ], + [ + 109.3411081, + -0.0158036 + ], + [ + 109.3411242, + -0.0157687 + ], + [ + 109.3411296, + -0.0157358 + ], + [ + 109.3411296, + -0.0157023 + ], + [ + 109.3411303, + -0.0156607 + ], + [ + 109.341141, + -0.0156306 + ], + [ + 109.3420017, + -0.014569 + ], + [ + 109.3422675, + -0.0142412 + ], + [ + 109.3424043, + -0.0140565 + ], + [ + 109.3424083, + -0.0140524 + ], + [ + 109.3424123, + -0.0140522 + ], + [ + 109.3424154, + -0.0140531 + ], + [ + 109.342501, + -0.0141297 + ], + [ + 109.3425056, + -0.0141304 + ], + [ + 109.3425103, + -0.0141297 + ], + [ + 109.3425146, + -0.0141262 + ] + ] + }, + "id": "way/576597207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576635466", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341314, + -0.0177535 + ], + [ + 109.3417751, + -0.0180645 + ] + ] + }, + "id": "way/576635466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576635467", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417751, + -0.0180645 + ], + [ + 109.3415752, + -0.0183574 + ], + [ + 109.3413603, + -0.0186812 + ] + ] + }, + "id": "way/576635467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576635468", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421236, + -0.0175379 + ], + [ + 109.3417751, + -0.0180645 + ] + ] + }, + "id": "way/576635468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576777954", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089853, + -0.0292736 + ], + [ + 109.3090371, + -0.0295315 + ] + ] + }, + "id": "way/576777954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576777955", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090371, + -0.0295315 + ], + [ + 109.3091273, + -0.0299778 + ] + ] + }, + "id": "way/576777955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576777956", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3086768, + -0.0296451 + ], + [ + 109.3090371, + -0.0295315 + ], + [ + 109.3093167, + -0.0294371 + ], + [ + 109.3093359, + -0.0294292 + ], + [ + 109.3093488, + -0.0294234 + ], + [ + 109.3093523, + -0.0294379 + ], + [ + 109.3094507, + -0.0298476 + ] + ] + }, + "id": "way/576777956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576785146", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409831, + -0.0124297 + ], + [ + 109.3411142, + -0.0125465 + ], + [ + 109.3415456, + -0.012931 + ] + ] + }, + "id": "way/576785146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576920216", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520694, + -0.0787408 + ], + [ + 109.3521646, + -0.0785651 + ], + [ + 109.3522582, + -0.0783901 + ] + ] + }, + "id": "way/576920216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576920217", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518162, + -0.0785753 + ], + [ + 109.3518977, + -0.0786303 + ], + [ + 109.3520587, + -0.0787314 + ], + [ + 109.3520694, + -0.0787408 + ] + ] + }, + "id": "way/576920217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576920525", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535535, + -0.0796703 + ], + [ + 109.3536307, + -0.0795664 + ], + [ + 109.3536937, + -0.0794678 + ], + [ + 109.3537729, + -0.079258 + ], + [ + 109.3538734, + -0.0790876 + ], + [ + 109.35397, + -0.0789427 + ], + [ + 109.3540129, + -0.0788864 + ], + [ + 109.3540853, + -0.0788811 + ], + [ + 109.3552347, + -0.0796035 + ] + ] + }, + "id": "way/576920525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576920526", + "highway": "residential", + "motor_vehicle": "destination", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522897, + -0.0774364 + ], + [ + 109.3521408, + -0.077288 + ], + [ + 109.3517987, + -0.0768854 + ] + ] + }, + "id": "way/576920526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/576920527", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523984, + -0.0775957 + ], + [ + 109.3523499, + -0.0775614 + ], + [ + 109.3523338, + -0.0775333 + ], + [ + 109.3523503, + -0.0774908 + ], + [ + 109.3524521, + -0.0773438 + ] + ] + }, + "id": "way/576920527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342929", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602224, + -0.0713916 + ], + [ + 109.3606062, + -0.0707922 + ] + ] + }, + "id": "way/577342929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342931", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3607771, + -0.0705121 + ], + [ + 109.3607294, + -0.0704791 + ], + [ + 109.3606929, + -0.0704539 + ], + [ + 109.3606044, + -0.0704187 + ], + [ + 109.3605199, + -0.0704076 + ], + [ + 109.360473, + -0.0704026 + ], + [ + 109.3603765, + -0.0703952 + ], + [ + 109.3603251, + -0.0703818 + ], + [ + 109.3603024, + -0.0703711 + ], + [ + 109.3602728, + -0.0703412 + ], + [ + 109.3601347, + -0.0702429 + ], + [ + 109.3601056, + -0.0702669 + ], + [ + 109.3600448, + -0.0703058 + ], + [ + 109.3600097, + -0.0702975 + ], + [ + 109.3599567, + -0.0702577 + ], + [ + 109.359872, + -0.070184 + ], + [ + 109.3597964, + -0.070128 + ], + [ + 109.3597144, + -0.0700735 + ] + ] + }, + "id": "way/577342931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342932", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601347, + -0.0702429 + ], + [ + 109.3601541, + -0.0702197 + ], + [ + 109.3602339, + -0.0701303 + ], + [ + 109.3602531, + -0.0700392 + ], + [ + 109.3602589, + -0.0698661 + ], + [ + 109.3602605, + -0.0696521 + ], + [ + 109.3602505, + -0.0692592 + ], + [ + 109.3602248, + -0.0690921 + ] + ] + }, + "id": "way/577342932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342933", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586753, + -0.0684278 + ], + [ + 109.3587217, + -0.0683753 + ], + [ + 109.3587326, + -0.0683457 + ], + [ + 109.3587403, + -0.0683061 + ], + [ + 109.358749, + -0.0681985 + ], + [ + 109.3587567, + -0.0681073 + ], + [ + 109.3587745, + -0.0680584 + ], + [ + 109.3587862, + -0.0680372 + ], + [ + 109.3588164, + -0.0680268 + ], + [ + 109.3589006, + -0.0680201 + ], + [ + 109.358981, + -0.0680215 + ], + [ + 109.3590716, + -0.0680644 + ], + [ + 109.359323, + -0.0682448 + ], + [ + 109.3597576, + -0.0685693 + ], + [ + 109.3599553, + -0.0686981 + ], + [ + 109.3600935, + -0.0688027 + ], + [ + 109.360255, + -0.0689219 + ], + [ + 109.3602818, + -0.0689257 + ], + [ + 109.3603204, + -0.0689313 + ], + [ + 109.3603764, + -0.0688892 + ], + [ + 109.3604628, + -0.0688192 + ], + [ + 109.3604917, + -0.0687991 + ], + [ + 109.3605626, + -0.0687498 + ], + [ + 109.3605958, + -0.0687267 + ], + [ + 109.360638, + -0.0686974 + ] + ] + }, + "id": "way/577342933" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342935", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360125, + -0.0690836 + ], + [ + 109.3602818, + -0.0689257 + ] + ] + }, + "id": "way/577342935" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342936", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3596923, + -0.0689892 + ], + [ + 109.3596901, + -0.0689632 + ], + [ + 109.3596946, + -0.0689383 + ], + [ + 109.3596993, + -0.0689149 + ], + [ + 109.3597413, + -0.0688659 + ], + [ + 109.3597646, + -0.0688542 + ], + [ + 109.3597997, + -0.0688402 + ], + [ + 109.3599001, + -0.0688308 + ], + [ + 109.3599608, + -0.0688238 + ], + [ + 109.3600308, + -0.0688168 + ], + [ + 109.3600935, + -0.0688027 + ] + ] + }, + "id": "way/577342936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342937", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606846, + -0.0687609 + ], + [ + 109.3606499, + -0.0687881 + ], + [ + 109.3605378, + -0.0688757 + ], + [ + 109.360383, + -0.0689967 + ], + [ + 109.3602248, + -0.0690921 + ] + ] + }, + "id": "way/577342937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342938", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586374, + -0.0691939 + ], + [ + 109.3585862, + -0.0692483 + ], + [ + 109.3585271, + -0.0693165 + ], + [ + 109.3584337, + -0.0694356 + ], + [ + 109.3584129, + -0.0694616 + ] + ] + }, + "id": "way/577342938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342939", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586374, + -0.0691939 + ], + [ + 109.3586265, + -0.0691512 + ], + [ + 109.3586149, + -0.0690742 + ], + [ + 109.3586075, + -0.0688885 + ], + [ + 109.3586048, + -0.0686357 + ], + [ + 109.3586028, + -0.0685318 + ], + [ + 109.3586035, + -0.068452 + ], + [ + 109.3586206, + -0.0684469 + ], + [ + 109.3586753, + -0.0684278 + ] + ] + }, + "id": "way/577342939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342940", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583313, + -0.0677311 + ], + [ + 109.3582964, + -0.0682649 + ], + [ + 109.35838, + -0.0683755 + ], + [ + 109.3584768, + -0.0684184 + ], + [ + 109.3585054, + -0.0684328 + ], + [ + 109.3585481, + -0.0684386 + ], + [ + 109.3586035, + -0.068452 + ] + ] + }, + "id": "way/577342940" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577342941", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602248, + -0.0690921 + ], + [ + 109.360125, + -0.0690836 + ], + [ + 109.3600157, + -0.0690803 + ], + [ + 109.359891, + -0.0690642 + ], + [ + 109.3598326, + -0.0690514 + ], + [ + 109.3596923, + -0.0689892 + ], + [ + 109.3596569, + -0.0689853 + ], + [ + 109.3596187, + -0.0689904 + ], + [ + 109.3595624, + -0.0690072 + ], + [ + 109.3594699, + -0.0690675 + ], + [ + 109.3593834, + -0.0691373 + ], + [ + 109.3592834, + -0.0692077 + ], + [ + 109.3592164, + -0.0692647 + ], + [ + 109.3591178, + -0.0693565 + ], + [ + 109.3590521, + -0.069386 + ], + [ + 109.3590132, + -0.0693995 + ], + [ + 109.3589428, + -0.0693512 + ], + [ + 109.3588717, + -0.0692922 + ], + [ + 109.358741, + -0.0691835 + ], + [ + 109.3586821, + -0.069153 + ] + ] + }, + "id": "way/577342941" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577343196", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587976, + -0.0736258 + ], + [ + 109.3590186, + -0.0732927 + ], + [ + 109.3592256, + -0.0729334 + ], + [ + 109.3594478, + -0.0725806 + ], + [ + 109.3596227, + -0.0723187 + ], + [ + 109.3597048, + -0.0721958 + ], + [ + 109.3598873, + -0.0719069 + ], + [ + 109.3599994, + -0.0717294 + ], + [ + 109.3601429, + -0.071512 + ], + [ + 109.3602224, + -0.0713916 + ] + ] + }, + "id": "way/577343196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/577345117", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3607771, + -0.0705121 + ], + [ + 109.3611538, + -0.0698498 + ], + [ + 109.3612372, + -0.0696872 + ], + [ + 109.3612418, + -0.0696687 + ], + [ + 109.3612392, + -0.0696465 + ], + [ + 109.3611863, + -0.0695734 + ], + [ + 109.3606846, + -0.0689071 + ], + [ + 109.3606716, + -0.068865 + ], + [ + 109.3606823, + -0.0688249 + ], + [ + 109.360696, + -0.0687739 + ] + ] + }, + "id": "way/577345117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774587", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3104606, + 0.0165541 + ], + [ + 109.3104096, + 0.0165788 + ] + ] + }, + "id": "way/578774587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774589", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106134, + 0.0164801 + ], + [ + 109.3105115, + 0.0165318 + ], + [ + 109.3104606, + 0.0165541 + ] + ] + }, + "id": "way/578774589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774591", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109201, + 0.011823 + ], + [ + 109.3110077, + 0.0118755 + ] + ] + }, + "id": "way/578774591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774592", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108699, + 0.0117903 + ], + [ + 109.3109201, + 0.011823 + ] + ] + }, + "id": "way/578774592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774594", + "bridge": "yes", + "highway": "service", + "layer": "1", + "noname": "yes", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303005, + 0.015976 + ], + [ + 109.3029504, + 0.0160035 + ] + ] + }, + "id": "way/578774594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774597", + "highway": "service", + "noname": "yes", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3031103, + 0.015923 + ], + [ + 109.303005, + 0.015976 + ] + ] + }, + "id": "way/578774597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774599", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108913, + 0.0122418 + ], + [ + 109.3109792, + 0.012224 + ], + [ + 109.3119068, + 0.0119405 + ], + [ + 109.3123477, + 0.0117978 + ], + [ + 109.312861, + 0.0116771 + ], + [ + 109.313407, + 0.0115335 + ] + ] + }, + "id": "way/578774599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774600", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108195, + 0.0122576 + ], + [ + 109.3108913, + 0.0122418 + ] + ] + }, + "id": "way/578774600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774603", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108391, + 0.0211198 + ], + [ + 109.3107744, + 0.0211385 + ] + ] + }, + "id": "way/578774603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774606", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109312, + 0.0210997 + ], + [ + 109.3108391, + 0.0211198 + ] + ] + }, + "id": "way/578774606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774608", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052446, + 0.0208514 + ], + [ + 109.3051584, + 0.0208883 + ] + ] + }, + "id": "way/578774608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774610", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053256, + 0.0208167 + ], + [ + 109.3052446, + 0.0208514 + ] + ] + }, + "id": "way/578774610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774632", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051584, + 0.0208883 + ], + [ + 109.3050438, + 0.0209373 + ], + [ + 109.3028283, + 0.02186 + ] + ] + }, + "id": "way/578774632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774638", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106625, + 0.0159292 + ], + [ + 109.3106585, + 0.0159941 + ], + [ + 109.3106317, + 0.0162782 + ], + [ + 109.3106134, + 0.0164801 + ], + [ + 109.3105584, + 0.0169918 + ], + [ + 109.3105101, + 0.0176221 + ], + [ + 109.3105062, + 0.0180258 + ], + [ + 109.3104967, + 0.0183356 + ], + [ + 109.3105102, + 0.0184965 + ], + [ + 109.3105531, + 0.018762 + ], + [ + 109.310604, + 0.0190088 + ], + [ + 109.3106657, + 0.0194246 + ], + [ + 109.3107006, + 0.0197437 + ], + [ + 109.3107784, + 0.0202185 + ], + [ + 109.3108542, + 0.0206001 + ], + [ + 109.3109312, + 0.0210997 + ], + [ + 109.3109626, + 0.0212359 + ], + [ + 109.3110309, + 0.0215319 + ], + [ + 109.3110949, + 0.0218278 + ], + [ + 109.3111593, + 0.022088 + ], + [ + 109.3114778, + 0.0234699 + ], + [ + 109.3116006, + 0.0238981 + ], + [ + 109.3117882, + 0.0245992 + ], + [ + 109.3118886, + 0.0250709 + ], + [ + 109.3119089, + 0.0252275 + ], + [ + 109.3119143, + 0.0253254 + ], + [ + 109.3119049, + 0.0254375 + ], + [ + 109.3118209, + 0.0259302 + ], + [ + 109.3116154, + 0.0270253 + ], + [ + 109.3115617, + 0.0273592 + ], + [ + 109.3115348, + 0.0275812 + ], + [ + 109.311524, + 0.0278158 + ], + [ + 109.3115196, + 0.02802 + ], + [ + 109.3115207, + 0.0290633 + ], + [ + 109.31152, + 0.0295311 + ], + [ + 109.3115079, + 0.029794 + ], + [ + 109.3114865, + 0.0300059 + ], + [ + 109.3114436, + 0.0302714 + ], + [ + 109.3114167, + 0.0303747 + ], + [ + 109.3113872, + 0.0305209 + ], + [ + 109.3112826, + 0.0309929 + ], + [ + 109.3111083, + 0.0316876 + ], + [ + 109.3110332, + 0.0319813 + ], + [ + 109.3109326, + 0.0323461 + ], + [ + 109.3103304, + 0.0340855 + ] + ] + }, + "id": "way/578774638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774643", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135971, + 0.0156892 + ], + [ + 109.313423, + 0.0151572 + ], + [ + 109.3132889, + 0.0148031 + ], + [ + 109.3132125, + 0.0145791 + ], + [ + 109.3131039, + 0.0142559 + ], + [ + 109.3129805, + 0.0138442 + ], + [ + 109.3127954, + 0.0133091 + ], + [ + 109.3127525, + 0.0132032 + ], + [ + 109.3127203, + 0.0131066 + ], + [ + 109.3127183, + 0.0130664 + ], + [ + 109.312725, + 0.0130308 + ], + [ + 109.312731, + 0.0129839 + ], + [ + 109.3127257, + 0.0129551 + ], + [ + 109.3127042, + 0.0128827 + ], + [ + 109.3125781, + 0.0125098 + ], + [ + 109.3123477, + 0.0117978 + ] + ] + }, + "id": "way/578774643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/578774644", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312861, + 0.0116771 + ], + [ + 109.3129268, + 0.0119063 + ], + [ + 109.313018, + 0.012145 + ], + [ + 109.3131119, + 0.0124079 + ], + [ + 109.3132111, + 0.0126949 + ], + [ + 109.3133292, + 0.0130463 + ], + [ + 109.3135518, + 0.0137249 + ], + [ + 109.3137744, + 0.0143874 + ], + [ + 109.3139447, + 0.0149158 + ] + ] + }, + "id": "way/578774644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579164865", + "highway": "residential", + "motor_vehicle": "no", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014152, + -0.040648 + ], + [ + 109.3012989, + -0.0407214 + ], + [ + 109.3000733, + -0.0414967 + ], + [ + 109.2998256, + -0.0416534 + ] + ] + }, + "id": "way/579164865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579290942", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302435, + 0.0069639 + ], + [ + 109.3025299, + 0.0074867 + ], + [ + 109.3026068, + 0.007834 + ] + ] + }, + "id": "way/579290942" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579290943", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004, + 0.0093917 + ], + [ + 109.3016626, + 0.0089507 + ], + [ + 109.3019593, + 0.0088634 + ], + [ + 109.3022959, + 0.0087668 + ], + [ + 109.3027204, + 0.0086424 + ], + [ + 109.3030759, + 0.0085373 + ] + ] + }, + "id": "way/579290943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579290948", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3024881, + 0.0078681 + ], + [ + 109.3027204, + 0.0086424 + ] + ] + }, + "id": "way/579290948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579290949", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3001163, + 0.0086261 + ], + [ + 109.3007288, + 0.0084201 + ], + [ + 109.3010265, + 0.0083182 + ], + [ + 109.3016192, + 0.0081246 + ], + [ + 109.3020729, + 0.0079872 + ], + [ + 109.3023416, + 0.0079101 + ], + [ + 109.3024881, + 0.0078681 + ], + [ + 109.3026068, + 0.007834 + ], + [ + 109.3030952, + 0.0077119 + ], + [ + 109.3033036, + 0.007659 + ] + ] + }, + "id": "way/579290949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579339137", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335789, + 0.0191615 + ], + [ + 109.3349517, + 0.0193414 + ], + [ + 109.3359737, + 0.0194809 + ], + [ + 109.3372284, + 0.0196154 + ], + [ + 109.3382491, + 0.0197481 + ] + ] + }, + "id": "way/579339137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579339138", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333597, + 0.0188181 + ], + [ + 109.3348164, + 0.0189632 + ], + [ + 109.335342, + 0.0190409 + ], + [ + 109.3360287, + 0.0191268 + ], + [ + 109.336431, + 0.0191758 + ] + ] + }, + "id": "way/579339138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579339140", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260214, + 0.0135613 + ], + [ + 109.3250344, + 0.0136564 + ] + ] + }, + "id": "way/579339140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579339141", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276656, + 0.0142117 + ], + [ + 109.3264224, + 0.0143485 + ], + [ + 109.3261148, + 0.0143879 + ], + [ + 109.3250163, + 0.014494 + ] + ] + }, + "id": "way/579339141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579339142", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244928, + 0.015172 + ], + [ + 109.324927, + 0.0151143 + ], + [ + 109.3261847, + 0.0149661 + ] + ] + }, + "id": "way/579339142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579339143", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257775, + 0.0122206 + ], + [ + 109.3258055, + 0.0122369 + ], + [ + 109.3258497, + 0.0123033 + ], + [ + 109.3258705, + 0.0123469 + ], + [ + 109.3258899, + 0.0124025 + ], + [ + 109.3259268, + 0.0127244 + ], + [ + 109.3259644, + 0.0131636 + ], + [ + 109.3260214, + 0.0135613 + ], + [ + 109.3260764, + 0.0139824 + ], + [ + 109.3261148, + 0.0143879 + ], + [ + 109.3261971, + 0.0149429 + ], + [ + 109.3261964, + 0.0149516 + ], + [ + 109.3261917, + 0.0149614 + ], + [ + 109.3261847, + 0.0149661 + ] + ] + }, + "id": "way/579339143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579427348", + "highway": "residential", + "name": "Gang Transmigrasi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642644, + -0.0577715 + ], + [ + 109.3644447, + -0.0576407 + ], + [ + 109.3645627, + -0.0575602 + ], + [ + 109.3646157, + -0.057532 + ], + [ + 109.3646552, + -0.0575186 + ], + [ + 109.3647116, + -0.0575005 + ], + [ + 109.3647961, + -0.0574703 + ], + [ + 109.3648544, + -0.0574348 + ], + [ + 109.3649858, + -0.0573423 + ], + [ + 109.3651863, + -0.0571934 + ], + [ + 109.3653848, + -0.057058 + ], + [ + 109.365598, + -0.0569272 + ], + [ + 109.365826, + -0.0567944 + ], + [ + 109.3661834, + -0.0565926 + ] + ] + }, + "id": "way/579427348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579428650", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017134, + 0.0126645 + ], + [ + 109.3017705, + 0.0126326 + ] + ] + }, + "id": "way/579428650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/579428651", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301655, + 0.0126953 + ], + [ + 109.3017134, + 0.0126645 + ] + ] + }, + "id": "way/579428651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/580675188", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328825, + -0.032385 + ], + [ + 109.3336332, + -0.0317064 + ] + ] + }, + "id": "way/580675188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/583609112", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499963, + -0.0310244 + ], + [ + 109.3500224, + -0.0310875 + ] + ] + }, + "id": "way/583609112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/584504720", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31566, + -0.0284717 + ], + [ + 109.314269, + -0.0288391 + ] + ] + }, + "id": "way/584504720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/584504721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142116, + -0.0286835 + ], + [ + 109.3127699, + -0.0290892 + ] + ] + }, + "id": "way/584504721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/584504722", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118191, + -0.0226699 + ], + [ + 109.3121121, + -0.0235619 + ], + [ + 109.3121434, + -0.0236573 + ], + [ + 109.3123802, + -0.0243816 + ], + [ + 109.3124627, + -0.0246342 + ], + [ + 109.3127699, + -0.0256218 + ], + [ + 109.312786, + -0.025719 + ] + ] + }, + "id": "way/584504722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/584504723", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155782, + -0.0247287 + ], + [ + 109.3150565, + -0.0249177 + ], + [ + 109.3150283, + -0.0249278 + ], + [ + 109.3148962, + -0.024966 + ], + [ + 109.3145194, + -0.0250787 + ], + [ + 109.3142284, + -0.0251799 + ], + [ + 109.3139783, + -0.0252704 + ], + [ + 109.3136572, + -0.0253995 + ], + [ + 109.312786, + -0.025719 + ] + ] + }, + "id": "way/584504723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/584504724", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123811, + -0.0258574 + ], + [ + 109.3123915, + -0.0260256 + ], + [ + 109.3123889, + -0.0260463 + ], + [ + 109.312379, + -0.0260607 + ], + [ + 109.3123214, + -0.0260657 + ] + ] + }, + "id": "way/584504724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/586148435", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356488, + -0.0774004 + ], + [ + 109.3567143, + -0.0770416 + ], + [ + 109.3569461, + -0.0766156 + ], + [ + 109.3571265, + -0.0763057 + ], + [ + 109.3572403, + -0.0761094 + ], + [ + 109.3573476, + -0.0759456 + ], + [ + 109.3575157, + -0.075689 + ] + ] + }, + "id": "way/586148435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/586148436", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546415, + -0.0804758 + ], + [ + 109.3547081, + -0.0803892 + ], + [ + 109.3547434, + -0.0803384 + ], + [ + 109.3549052, + -0.0800948 + ], + [ + 109.3551392, + -0.079757 + ], + [ + 109.3552347, + -0.0796035 + ], + [ + 109.3553645, + -0.079366 + ], + [ + 109.3555625, + -0.0790133 + ], + [ + 109.3557606, + -0.078664 + ], + [ + 109.3558133, + -0.078574 + ], + [ + 109.3558897, + -0.0784344 + ], + [ + 109.3559808, + -0.0782641 + ], + [ + 109.356039, + -0.0781671 + ], + [ + 109.3561259, + -0.0780224 + ], + [ + 109.3562177, + -0.0778694 + ], + [ + 109.3562965, + -0.0777503 + ], + [ + 109.3563273, + -0.0777028 + ], + [ + 109.356488, + -0.0774004 + ] + ] + }, + "id": "way/586148436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/586148437", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464708, + -0.0930609 + ], + [ + 109.3467366, + -0.0925997 + ], + [ + 109.3468598, + -0.092386 + ], + [ + 109.3470151, + -0.0921166 + ], + [ + 109.3472598, + -0.091692 + ], + [ + 109.347447, + -0.0913742 + ], + [ + 109.347496, + -0.091291 + ], + [ + 109.347632, + -0.0910775 + ], + [ + 109.3477034, + -0.090943 + ], + [ + 109.3477653, + -0.090843 + ], + [ + 109.3478603, + -0.0906896 + ], + [ + 109.3479664, + -0.0904247 + ], + [ + 109.3482862, + -0.0900166 + ], + [ + 109.3484508, + -0.089685 + ], + [ + 109.3485263, + -0.0895648 + ], + [ + 109.3485874, + -0.0894712 + ], + [ + 109.3488063, + -0.0891362 + ], + [ + 109.3490528, + -0.08874 + ], + [ + 109.3493015, + -0.0883654 + ], + [ + 109.3493674, + -0.0882704 + ], + [ + 109.3494649, + -0.088128 + ], + [ + 109.3495253, + -0.0880399 + ], + [ + 109.3497027, + -0.0877811 + ], + [ + 109.3497367, + -0.0877314 + ], + [ + 109.349885, + -0.0875097 + ], + [ + 109.3500232, + -0.0872822 + ], + [ + 109.3506355, + -0.0863234 + ], + [ + 109.3506903, + -0.0862229 + ], + [ + 109.3508269, + -0.0860166 + ], + [ + 109.3509038, + -0.0858844 + ], + [ + 109.3509675, + -0.085795 + ], + [ + 109.3510269, + -0.0857046 + ], + [ + 109.3510866, + -0.0856073 + ], + [ + 109.3512952, + -0.0852721 + ], + [ + 109.3515435, + -0.0849142 + ], + [ + 109.3519496, + -0.0842777 + ], + [ + 109.3520127, + -0.084164 + ], + [ + 109.3520511, + -0.0841078 + ], + [ + 109.3522442, + -0.0838163 + ], + [ + 109.352338, + -0.0836845 + ], + [ + 109.3524546, + -0.0835189 + ], + [ + 109.3527105, + -0.0831578 + ], + [ + 109.3527789, + -0.0830599 + ], + [ + 109.3528814, + -0.0829202 + ], + [ + 109.3529751, + -0.082787 + ], + [ + 109.3532176, + -0.0824205 + ], + [ + 109.3534416, + -0.0820782 + ], + [ + 109.3537172, + -0.081758 + ] + ] + }, + "id": "way/586148437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/586148438", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545234, + -0.0806297 + ], + [ + 109.3546089, + -0.0805227 + ], + [ + 109.3546176, + -0.0805087 + ], + [ + 109.3546415, + -0.0804758 + ] + ] + }, + "id": "way/586148438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/592066831", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599614, + -0.0313282 + ], + [ + 109.3599821, + -0.0313587 + ] + ] + }, + "id": "way/592066831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/592066832", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606604, + -0.0311616 + ], + [ + 109.3606207, + -0.0311335 + ] + ] + }, + "id": "way/592066832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/592206947", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "maxweight": "5", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes", + "truck": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501016, + -0.0382711 + ], + [ + 109.3494704, + -0.038644 + ] + ] + }, + "id": "way/592206947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/592206948", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630068, + -0.018175 + ], + [ + 109.3629975, + -0.0188722 + ], + [ + 109.3629759, + -0.0202713 + ], + [ + 109.362948, + -0.021501 + ] + ] + }, + "id": "way/592206948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/592216057", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522507, + -0.0365612 + ], + [ + 109.352176, + -0.036467 + ], + [ + 109.3519945, + -0.0362382 + ], + [ + 109.3519422, + -0.0361723 + ], + [ + 109.3517357, + -0.0358799 + ], + [ + 109.3512958, + -0.0350887 + ], + [ + 109.3511403, + -0.0348499 + ], + [ + 109.3511145, + -0.0348172 + ], + [ + 109.3510293, + -0.0347091 + ], + [ + 109.3509606, + -0.0346219 + ], + [ + 109.3508399, + -0.0344315 + ], + [ + 109.3507307, + -0.0342327 + ], + [ + 109.3504594, + -0.0337617 + ], + [ + 109.3503705, + -0.0336081 + ], + [ + 109.3502739, + -0.0333908 + ], + [ + 109.3502585, + -0.0333525 + ], + [ + 109.3502243, + -0.0332674 + ], + [ + 109.3501331, + -0.0330891 + ], + [ + 109.349999, + -0.0329456 + ], + [ + 109.3498392, + -0.0326117 + ], + [ + 109.3494677, + -0.0318437 + ], + [ + 109.3480464, + -0.028896 + ], + [ + 109.3475515, + -0.0278695 + ], + [ + 109.3476158, + -0.027836 + ] + ] + }, + "id": "way/592216057" + }, + { + "type": "Feature", + "properties": { + "@id": "way/595437942", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34362, + -0.0484644 + ], + [ + 109.3435094, + -0.0484893 + ], + [ + 109.3433978, + -0.0485145 + ], + [ + 109.3431873, + -0.0485641 + ], + [ + 109.34309, + -0.0485923 + ], + [ + 109.3431144, + -0.0486328 + ], + [ + 109.3431245, + -0.0486551 + ], + [ + 109.3431272, + -0.0486761 + ], + [ + 109.3431228, + -0.0487017 + ], + [ + 109.3431141, + -0.0487198 + ], + [ + 109.3428715, + -0.0489464 + ], + [ + 109.3425772, + -0.0492171 + ], + [ + 109.3424603, + -0.0493325 + ], + [ + 109.3424388, + -0.0493587 + ], + [ + 109.3424274, + -0.0493818 + ], + [ + 109.3424248, + -0.049417 + ], + [ + 109.3424295, + -0.0494458 + ], + [ + 109.3424455, + -0.0494754 + ], + [ + 109.3424926, + -0.0495391 + ], + [ + 109.342531, + -0.0495883 + ] + ] + }, + "id": "way/595437942" + }, + { + "type": "Feature", + "properties": { + "@id": "way/595437943", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34309, + -0.0485923 + ], + [ + 109.3427299, + -0.0481658 + ], + [ + 109.3426991, + -0.0481336 + ], + [ + 109.3426595, + -0.0480851 + ], + [ + 109.3426072, + -0.048021 + ], + [ + 109.3425593, + -0.0479654 + ], + [ + 109.3427313, + -0.0478466 + ], + [ + 109.3428856, + -0.0477534 + ], + [ + 109.3429593, + -0.0477009 + ] + ] + }, + "id": "way/595437943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/595437944", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437752, + -0.0486682 + ], + [ + 109.343705, + -0.0487201 + ], + [ + 109.3436921, + -0.0487297 + ], + [ + 109.3435962, + -0.0488109 + ], + [ + 109.3430934, + -0.0492427 + ], + [ + 109.3426698, + -0.049594 + ] + ] + }, + "id": "way/595437944" + }, + { + "type": "Feature", + "properties": { + "@id": "way/595529518", + "highway": "primary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353337, + -0.0385929 + ], + [ + 109.3354272, + -0.0385186 + ] + ] + }, + "id": "way/595529518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/595529519", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333528, + -0.0344583 + ], + [ + 109.3334757, + -0.0344027 + ], + [ + 109.3332341, + -0.034146 + ], + [ + 109.333209, + -0.0341003 + ], + [ + 109.3332016, + -0.0340573 + ], + [ + 109.333203, + -0.0340164 + ], + [ + 109.33321, + -0.0339885 + ], + [ + 109.3333358, + -0.0338729 + ], + [ + 109.3333472, + -0.0338501 + ], + [ + 109.3333498, + -0.0338324 + ], + [ + 109.333346, + -0.0338121 + ], + [ + 109.3332932, + -0.0337639 + ], + [ + 109.3331209, + -0.0336066 + ], + [ + 109.3330659, + -0.0335564 + ] + ] + }, + "id": "way/595529519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/595529520", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330659, + -0.0335564 + ], + [ + 109.3327633, + -0.0338362 + ], + [ + 109.3327453, + -0.0338421 + ], + [ + 109.3327292, + -0.0338421 + ], + [ + 109.3327151, + -0.0338335 + ], + [ + 109.3326742, + -0.033789 + ], + [ + 109.3326213, + -0.0337315 + ] + ] + }, + "id": "way/595529520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/595545689", + "highway": "primary_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331236, + -0.035091 + ], + [ + 109.333095, + -0.0352127 + ], + [ + 109.3330877, + -0.0352436 + ], + [ + 109.3330812, + -0.0353077 + ], + [ + 109.3330769, + -0.035379 + ], + [ + 109.3330801, + -0.0354428 + ], + [ + 109.333085, + -0.0355058 + ], + [ + 109.3330881, + -0.0355465 + ] + ] + }, + "id": "way/595545689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/595545690", + "highway": "service", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469863, + -0.0373959 + ], + [ + 109.3477582, + -0.0371608 + ], + [ + 109.34799, + -0.0370963 + ], + [ + 109.3482196, + -0.0370079 + ], + [ + 109.3484285, + -0.0368978 + ], + [ + 109.3484366, + -0.0368589 + ], + [ + 109.3484301, + -0.0368309 + ], + [ + 109.348253, + -0.0365814 + ], + [ + 109.3482126, + -0.0365625 + ], + [ + 109.3481684, + -0.0365625 + ], + [ + 109.3478762, + -0.036674 + ], + [ + 109.3478559, + -0.0366812 + ], + [ + 109.347823, + -0.0366732 + ], + [ + 109.3478009, + -0.0366557 + ], + [ + 109.3477123, + -0.0364301 + ] + ] + }, + "id": "way/595545690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/597158860", + "highway": "residential", + "name": "Gang Kurnia Abadi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3596142, + -0.038539 + ], + [ + 109.3598903, + -0.0383837 + ], + [ + 109.3601431, + -0.0382282 + ], + [ + 109.3603523, + -0.0380941 + ], + [ + 109.3606163, + -0.0379243 + ], + [ + 109.3609663, + -0.0376882 + ] + ] + }, + "id": "way/597158860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598308358", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460654, + -0.0516218 + ], + [ + 109.3460839, + -0.0516476 + ], + [ + 109.3460984, + -0.0516652 + ], + [ + 109.3461025, + -0.0516702 + ], + [ + 109.3462685, + -0.0518716 + ], + [ + 109.3462743, + -0.0518825 + ], + [ + 109.3462778, + -0.0518944 + ], + [ + 109.3462791, + -0.0519108 + ], + [ + 109.3462775, + -0.0519467 + ], + [ + 109.3462697, + -0.0519708 + ], + [ + 109.3462543, + -0.051995 + ], + [ + 109.3462135, + -0.052031 + ], + [ + 109.3459764, + -0.0522402 + ], + [ + 109.3457358, + -0.0524525 + ], + [ + 109.3453948, + -0.0527535 + ], + [ + 109.345346, + -0.0527965 + ] + ] + }, + "id": "way/598308358" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598308359", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34501, + -0.0524473 + ], + [ + 109.345928, + -0.0516762 + ], + [ + 109.3459468, + -0.0516409 + ], + [ + 109.345952, + -0.0516272 + ], + [ + 109.3459651, + -0.0516023 + ], + [ + 109.3459806, + -0.0515832 + ], + [ + 109.3460156, + -0.0515561 + ] + ] + }, + "id": "way/598308359" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598308360", + "access": "private", + "highway": "service", + "motorcycle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452466, + -0.0506959 + ], + [ + 109.3453034, + -0.0506579 + ], + [ + 109.3453477, + -0.0506297 + ], + [ + 109.3454004, + -0.0505876 + ] + ] + }, + "id": "way/598308360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598308361", + "access": "private", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452466, + -0.0506959 + ], + [ + 109.3451809, + -0.0507549 + ], + [ + 109.3451327, + -0.0507964 + ], + [ + 109.3450857, + -0.0508434 + ], + [ + 109.3449015, + -0.0510143 + ], + [ + 109.3445212, + -0.0513356 + ], + [ + 109.3441138, + -0.0517255 + ] + ] + }, + "id": "way/598308361" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598308363", + "access": "destination", + "highway": "service", + "motorcar": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447037, + -0.0497586 + ], + [ + 109.3446424, + -0.0498185 + ], + [ + 109.3445997, + -0.0498602 + ], + [ + 109.3442706, + -0.050134 + ], + [ + 109.3442207, + -0.0501794 + ] + ] + }, + "id": "way/598308363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598308364", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438064, + -0.0504967 + ], + [ + 109.343885, + -0.0505904 + ], + [ + 109.344204, + -0.0509637 + ], + [ + 109.3445212, + -0.0513356 + ] + ] + }, + "id": "way/598308364" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598308365", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344204, + -0.0509637 + ], + [ + 109.3437119, + -0.0514015 + ], + [ + 109.3436542, + -0.0514528 + ] + ] + }, + "id": "way/598308365" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598472683", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454614, + -0.0528066 + ], + [ + 109.3455055, + -0.0527666 + ], + [ + 109.345586, + -0.0527009 + ], + [ + 109.3456518, + -0.05265 + ], + [ + 109.3457898, + -0.0525198 + ], + [ + 109.3460286, + -0.0522946 + ], + [ + 109.3462231, + -0.0521113 + ], + [ + 109.3462534, + -0.0520755 + ] + ] + }, + "id": "way/598472683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598472684", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462534, + -0.0520755 + ], + [ + 109.3462528, + -0.052067 + ], + [ + 109.3462493, + -0.0520587 + ], + [ + 109.3462441, + -0.0520521 + ], + [ + 109.346238, + -0.0520454 + ], + [ + 109.3462135, + -0.052031 + ] + ] + }, + "id": "way/598472684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598472685", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460286, + -0.0522946 + ], + [ + 109.3459764, + -0.0522402 + ] + ] + }, + "id": "way/598472685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598472686", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457898, + -0.0525198 + ], + [ + 109.3457358, + -0.0524525 + ] + ] + }, + "id": "way/598472686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598472687", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460654, + -0.0516218 + ], + [ + 109.3460156, + -0.0515561 + ], + [ + 109.3459661, + -0.0514979 + ], + [ + 109.3452466, + -0.0506959 + ], + [ + 109.3451857, + -0.0506356 + ], + [ + 109.3450966, + -0.0505368 + ], + [ + 109.3448934, + -0.0503059 + ], + [ + 109.3446191, + -0.0499565 + ] + ] + }, + "id": "way/598472687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598475727", + "highway": "residential", + "name": "Jalan Tanjung Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536257, + -0.0454823 + ], + [ + 109.3531636, + -0.0458081 + ], + [ + 109.3529695, + -0.0456587 + ], + [ + 109.3523639, + -0.0465939 + ], + [ + 109.3516236, + -0.0477312 + ] + ] + }, + "id": "way/598475727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598475728", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529695, + -0.0456587 + ], + [ + 109.3526669, + -0.0454106 + ], + [ + 109.3526077, + -0.0454901 + ], + [ + 109.3524363, + -0.0457206 + ] + ] + }, + "id": "way/598475728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598658754", + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429866, + -0.032911 + ], + [ + 109.3432509, + -0.0333762 + ], + [ + 109.3432757, + -0.0334199 + ] + ] + }, + "id": "way/598658754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/598658755", + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435411, + -0.0332146 + ], + [ + 109.3434861, + -0.0332372 + ], + [ + 109.3432509, + -0.0333762 + ] + ] + }, + "id": "way/598658755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/600280374", + "highway": "residential", + "name": "Gang Keluarga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650509, + -0.0149667 + ], + [ + 109.3650992, + -0.0146334 + ], + [ + 109.3651226, + -0.0145087 + ], + [ + 109.36515, + -0.0143618 + ], + [ + 109.3651615, + -0.01427 + ], + [ + 109.3651805, + -0.0141227 + ], + [ + 109.3652006, + -0.0139363 + ], + [ + 109.3652148, + -0.0138425 + ], + [ + 109.3652287, + -0.0137432 + ], + [ + 109.3652695, + -0.0135016 + ], + [ + 109.3652896, + -0.0133715 + ], + [ + 109.3652922, + -0.0133497 + ] + ] + }, + "id": "way/600280374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/600280375", + "highway": "residential", + "name": "Gang Famili" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3655726, + -0.014927 + ], + [ + 109.3656228, + -0.0146214 + ], + [ + 109.365647, + -0.0144343 + ], + [ + 109.3656743, + -0.0142296 + ], + [ + 109.3657603, + -0.0136971 + ] + ] + }, + "id": "way/600280375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/600280376", + "highway": "residential", + "name": "Gang Samiken" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3689899, + -0.0153524 + ], + [ + 109.3690363, + -0.0152205 + ], + [ + 109.3690906, + -0.0150925 + ], + [ + 109.3691158, + -0.0150341 + ], + [ + 109.3691419, + -0.0149694 + ], + [ + 109.3691798, + -0.0148604 + ], + [ + 109.3692666, + -0.0146046 + ], + [ + 109.3692961, + -0.0145208 + ], + [ + 109.3693303, + -0.0144403 + ], + [ + 109.3693853, + -0.0143015 + ], + [ + 109.3694805, + -0.0140615 + ], + [ + 109.3695483, + -0.0138871 + ] + ] + }, + "id": "way/600280376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/601317808", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Eka Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3234079, + -0.0587759 + ], + [ + 109.3234753, + -0.0588563 + ] + ] + }, + "id": "way/601317808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/601317812", + "highway": "residential", + "name": "Gang Usaha Bersama 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324396, + -0.0622433 + ], + [ + 109.3243209, + -0.0620891 + ], + [ + 109.324235, + -0.0619309 + ], + [ + 109.3241284, + -0.0617424 + ], + [ + 109.3238253, + -0.061147 + ], + [ + 109.3235638, + -0.0606589 + ], + [ + 109.323305, + -0.0601814 + ], + [ + 109.3231058, + -0.0597858 + ], + [ + 109.3229335, + -0.0594612 + ] + ] + }, + "id": "way/601317812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/601317814", + "highway": "residential", + "name": "Gang Purnama Indah 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255854, + -0.0614047 + ], + [ + 109.3257888, + -0.0611242 + ], + [ + 109.3258303, + -0.0610524 + ], + [ + 109.3259817, + -0.0608651 + ], + [ + 109.326038, + -0.0607907 + ], + [ + 109.3260788, + -0.0607418 + ] + ] + }, + "id": "way/601317814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/601322702", + "highway": "residential", + "name": "Gang Pelangi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3299422, + -0.0277217 + ], + [ + 109.3296836, + -0.0274128 + ], + [ + 109.3296125, + -0.0273488 + ], + [ + 109.3295589, + -0.0273129 + ], + [ + 109.3295019, + -0.0272747 + ], + [ + 109.3293882, + -0.027211 + ], + [ + 109.3290717, + -0.0270427 + ] + ] + }, + "id": "way/601322702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/601328449", + "access": "no", + "bicycle": "yes", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Sa'aman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340131, + -0.0308332 + ], + [ + 109.334267, + -0.0311462 + ], + [ + 109.3347497, + -0.031678 + ] + ] + }, + "id": "way/601328449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602721799", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320199, + -0.0629379 + ], + [ + 109.3321026, + -0.0630782 + ], + [ + 109.332175, + -0.063207 + ], + [ + 109.3322126, + -0.0632459 + ], + [ + 109.3322501, + -0.0632848 + ], + [ + 109.3323762, + -0.0633947 + ], + [ + 109.332513, + -0.0635047 + ], + [ + 109.3326364, + -0.0635583 + ] + ] + }, + "id": "way/602721799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602721800", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320199, + -0.0629379 + ], + [ + 109.3319606, + -0.0629821 + ], + [ + 109.3319184, + -0.0630655 + ], + [ + 109.3318644, + -0.0631337 + ], + [ + 109.3317958, + -0.0632183 + ], + [ + 109.3317037, + -0.0633254 + ], + [ + 109.3316063, + -0.0634444 + ], + [ + 109.3315099, + -0.0635744 + ] + ] + }, + "id": "way/602721800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602721803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323948, + -0.0614418 + ], + [ + 109.3325266, + -0.06164 + ], + [ + 109.3325732, + -0.0616976 + ], + [ + 109.3326283, + -0.0617881 + ], + [ + 109.3327604, + -0.0619858 + ] + ] + }, + "id": "way/602721803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602721805", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325732, + -0.0616976 + ], + [ + 109.3327034, + -0.0617291 + ], + [ + 109.3327817, + -0.0617506 + ], + [ + 109.3328107, + -0.0617586 + ], + [ + 109.3329221, + -0.0617867 + ] + ] + }, + "id": "way/602721805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602721807", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325266, + -0.06164 + ], + [ + 109.3324915, + -0.0617449 + ], + [ + 109.3324889, + -0.0617988 + ], + [ + 109.3325157, + -0.0619195 + ], + [ + 109.3325452, + -0.0620268 + ], + [ + 109.3325908, + -0.0621234 + ], + [ + 109.3326478, + -0.0621723 + ] + ] + }, + "id": "way/602721807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602721809", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332919, + -0.0549525 + ], + [ + 109.3331551, + -0.0555487 + ], + [ + 109.3332077, + -0.055666 + ] + ] + }, + "id": "way/602721809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602721811", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335121, + -0.0546724 + ], + [ + 109.3333458, + -0.054247 + ] + ] + }, + "id": "way/602721811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602721813", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333458, + -0.054247 + ], + [ + 109.3333013, + -0.0541348 + ], + [ + 109.3334605, + -0.0540546 + ] + ] + }, + "id": "way/602721813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602721815", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330842, + -0.0535258 + ], + [ + 109.333034, + -0.0533849 + ], + [ + 109.3329685, + -0.0532012 + ], + [ + 109.3328494, + -0.0528674 + ], + [ + 109.3327242, + -0.0524861 + ] + ] + }, + "id": "way/602721815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602723247", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483163, + -0.0530643 + ], + [ + 109.3484661, + -0.0529159 + ] + ] + }, + "id": "way/602723247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602723249", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486441, + -0.0531357 + ], + [ + 109.3485007, + -0.0532528 + ] + ] + }, + "id": "way/602723249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602723250", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485693, + -0.054709 + ], + [ + 109.3483212, + -0.0544274 + ], + [ + 109.34834, + -0.0543858 + ], + [ + 109.3483293, + -0.0543415 + ], + [ + 109.3482891, + -0.0543295 + ], + [ + 109.3482579, + -0.0543404 + ], + [ + 109.3482354, + -0.0543483 + ], + [ + 109.348222, + -0.0543979 + ], + [ + 109.3482582, + -0.054426 + ], + [ + 109.3483212, + -0.0544274 + ] + ] + }, + "id": "way/602723250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602723253", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485693, + -0.054709 + ], + [ + 109.3486243, + -0.0546902 + ], + [ + 109.3486941, + -0.054705 + ], + [ + 109.348737, + -0.0547667 + ], + [ + 109.348741, + -0.0548176 + ], + [ + 109.3487142, + -0.054882 + ], + [ + 109.3486451, + -0.0549175 + ], + [ + 109.3485628, + -0.0549013 + ], + [ + 109.3485345, + -0.0548726 + ], + [ + 109.3485117, + -0.0547989 + ], + [ + 109.3485214, + -0.0547723 + ], + [ + 109.3485318, + -0.0547439 + ], + [ + 109.3485693, + -0.054709 + ] + ] + }, + "id": "way/602723253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/602723255", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485214, + -0.0547723 + ], + [ + 109.3484902, + -0.0547828 + ], + [ + 109.3484191, + -0.0547734 + ], + [ + 109.348387, + -0.0547036 + ], + [ + 109.3483682, + -0.0546594 + ], + [ + 109.3482971, + -0.0545695 + ], + [ + 109.348222, + -0.0545534 + ], + [ + 109.3481442, + -0.0544877 + ], + [ + 109.3481053, + -0.0544006 + ], + [ + 109.3480865, + -0.0542973 + ], + [ + 109.3481174, + -0.0542436 + ], + [ + 109.3481684, + -0.0542316 + ], + [ + 109.3482579, + -0.0543404 + ] + ] + }, + "id": "way/602723255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/608929064", + "highway": "residential", + "name": "Purnama Agung 7 Blok T - U", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276602, + -0.0627114 + ], + [ + 109.3288347, + -0.0643415 + ], + [ + 109.3298526, + -0.065808 + ] + ] + }, + "id": "way/608929064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/611548705", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330332, + -0.0205134 + ], + [ + 109.332859, + -0.0207154 + ], + [ + 109.3327712, + -0.02082 + ], + [ + 109.3326907, + -0.0209084 + ], + [ + 109.3325917, + -0.0210178 + ] + ] + }, + "id": "way/611548705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/611548706", + "highway": "residential", + "name": "Gang Perkutut" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333333, + -0.0235421 + ], + [ + 109.3327611, + -0.0233164 + ], + [ + 109.3325951, + -0.0232439 + ] + ] + }, + "id": "way/611548706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/611548707", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332223, + -0.0237572 + ], + [ + 109.3330329, + -0.0236682 + ], + [ + 109.3325334, + -0.0234746 + ] + ] + }, + "id": "way/611548707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/611548709", + "highway": "residential", + "name": "Gang Merak 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332091, + -0.0219992 + ], + [ + 109.3315659, + -0.0215471 + ], + [ + 109.3314207, + -0.0214019 + ], + [ + 109.331235, + -0.0212487 + ], + [ + 109.3310448, + -0.0210901 + ] + ] + }, + "id": "way/611548709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/611549305", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303456, + -0.0186998 + ], + [ + 109.330353, + -0.0187382 + ], + [ + 109.33063, + -0.0201728 + ] + ] + }, + "id": "way/611549305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/611738431", + "highway": "tertiary", + "name": "Jalan Jenderal Sudirman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371899, + -0.0242226 + ], + [ + 109.3372759, + -0.0242659 + ], + [ + 109.3373329, + -0.0242921 + ], + [ + 109.3373973, + -0.0243115 + ], + [ + 109.3374737, + -0.0243129 + ], + [ + 109.3376109, + -0.0242921 + ] + ] + }, + "id": "way/611738431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/611745422", + "bicycle": "yes", + "foot": "yes", + "goods": "yes", + "highway": "residential", + "motor_vehicle": "yes", + "motorcar": "yes", + "motorcycle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426312, + -0.0196651 + ], + [ + 109.3426149, + -0.0196552 + ], + [ + 109.3426039, + -0.019638 + ], + [ + 109.342574, + -0.0195774 + ], + [ + 109.3425632, + -0.0195489 + ], + [ + 109.3425605, + -0.0195221 + ], + [ + 109.3425646, + -0.019497 + ], + [ + 109.3425973, + -0.01941 + ], + [ + 109.3424589, + -0.0193404 + ], + [ + 109.3423459, + -0.0192887 + ], + [ + 109.3422836, + -0.0192604 + ] + ] + }, + "id": "way/611745422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/611745423", + "highway": "pedestrian", + "motorcar": "no", + "motorcycle": "no", + "toll": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423189, + -0.0193417 + ], + [ + 109.3423459, + -0.0192887 + ] + ] + }, + "id": "way/611745423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/611745424", + "highway": "residential", + "name": "Gang Selat Lombok" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353973, + -0.0173036 + ], + [ + 109.3539697, + -0.0172087 + ], + [ + 109.3539703, + -0.0170941 + ], + [ + 109.35397, + -0.0169713 + ], + [ + 109.3539723, + -0.0168476 + ], + [ + 109.3539745, + -0.0164268 + ], + [ + 109.3539873, + -0.0159597 + ] + ] + }, + "id": "way/611745424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614207728", + "highway": "residential", + "name": "Gang Pisang Raja" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3168826, + -0.0081002 + ], + [ + 109.3157636, + -0.0099739 + ] + ] + }, + "id": "way/614207728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614207729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186066, + -0.0128539 + ], + [ + 109.3182777, + -0.0126108 + ], + [ + 109.3178999, + -0.0123316 + ] + ] + }, + "id": "way/614207729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614207730", + "highway": "residential", + "name": "Jalur 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169062, + -0.0144901 + ], + [ + 109.3157862, + -0.0137095 + ] + ] + }, + "id": "way/614207730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614207731", + "highway": "residential", + "name": "Jalur 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171583, + -0.013964 + ], + [ + 109.3179074, + -0.014491 + ] + ] + }, + "id": "way/614207731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614207732", + "highway": "residential", + "name": "Jalur H" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3174085, + -0.0134134 + ], + [ + 109.3179962, + -0.0138228 + ], + [ + 109.31807, + -0.0138777 + ], + [ + 109.3181158, + -0.0138973 + ], + [ + 109.3181283, + -0.0138942 + ], + [ + 109.318141, + -0.0138871 + ], + [ + 109.3181652, + -0.013871 + ], + [ + 109.3182864, + -0.0136319 + ] + ] + }, + "id": "way/614207732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614207733", + "highway": "residential", + "name": "Gang Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195174, + -0.015574 + ], + [ + 109.3196403, + -0.0165343 + ], + [ + 109.3197845, + -0.0175012 + ], + [ + 109.3199193, + -0.0184053 + ], + [ + 109.3202463, + -0.0202656 + ], + [ + 109.3202617, + -0.0203295 + ] + ] + }, + "id": "way/614207733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614207734", + "highway": "residential", + "name": "Gang Keluarga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187532, + -0.0154441 + ], + [ + 109.3190405, + -0.0173519 + ], + [ + 109.3193362, + -0.0191698 + ], + [ + 109.3195083, + -0.0204046 + ] + ] + }, + "id": "way/614207734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614444907", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203521, + -0.0134585 + ], + [ + 109.3204106, + -0.0133669 + ] + ] + }, + "id": "way/614444907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614457472", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211373, + -0.0124362 + ], + [ + 109.3209954, + -0.0123431 + ], + [ + 109.3208533, + -0.0122407 + ] + ] + }, + "id": "way/614457472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614457473", + "highway": "residential", + "name": "Gang Semangka 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233368, + -0.0109629 + ], + [ + 109.323295, + -0.0110102 + ], + [ + 109.3225925, + -0.0117887 + ], + [ + 109.3224959, + -0.0119014 + ], + [ + 109.322306, + -0.0121109 + ], + [ + 109.3221339, + -0.0123205 + ], + [ + 109.3220988, + -0.0123728 + ], + [ + 109.3212941, + -0.0133813 + ] + ] + }, + "id": "way/614457473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614461508", + "highway": "residential", + "lanes": "1", + "name": "Gang Suka Pinang", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250643, + -0.0120461 + ], + [ + 109.3250385, + -0.0120749 + ], + [ + 109.3232792, + -0.014039 + ], + [ + 109.3232776, + -0.0140433 + ], + [ + 109.3232762, + -0.0140539 + ], + [ + 109.3232795, + -0.014063 + ] + ] + }, + "id": "way/614461508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614461509", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266579, + -0.0131326 + ], + [ + 109.326087, + -0.0139636 + ], + [ + 109.3256275, + -0.014615 + ] + ] + }, + "id": "way/614461509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614461510", + "access": "destination", + "highway": "residential", + "name": "Gang Tamang 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3269275, + -0.0133155 + ], + [ + 109.3260137, + -0.0147169 + ] + ] + }, + "id": "way/614461510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614471755", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246914, + -0.0156487 + ], + [ + 109.3247279, + -0.0156272 + ], + [ + 109.3247762, + -0.0156017 + ], + [ + 109.3248083, + -0.0155649 + ], + [ + 109.3253485, + -0.0147706 + ] + ] + }, + "id": "way/614471755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614471756", + "highway": "residential", + "name": "Gang Tiong Kandang 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229454, + -0.0157034 + ], + [ + 109.3229881, + -0.0156904 + ], + [ + 109.3232602, + -0.0156224 + ] + ] + }, + "id": "way/614471756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614471757", + "highway": "residential", + "motorcar": "destination", + "name": "Gang Srikaya 3", + "oneway:motorcar": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3232602, + -0.0156224 + ], + [ + 109.32311, + -0.0154966 + ], + [ + 109.3231039, + -0.0154891 + ], + [ + 109.3228065, + -0.015193 + ], + [ + 109.3225594, + -0.0149592 + ] + ] + }, + "id": "way/614471757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614471758", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231039, + -0.0154891 + ], + [ + 109.3232724, + -0.0152672 + ], + [ + 109.3239591, + -0.0145034 + ], + [ + 109.323988, + -0.0144784 + ], + [ + 109.3243218, + -0.0141427 + ], + [ + 109.3243814, + -0.0140717 + ], + [ + 109.324871, + -0.0134883 + ] + ] + }, + "id": "way/614471758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614471759", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243129, + -0.0132158 + ], + [ + 109.3244697, + -0.0133923 + ], + [ + 109.3244737, + -0.013409 + ], + [ + 109.3244724, + -0.0134208 + ], + [ + 109.324453, + -0.013455 + ], + [ + 109.3237165, + -0.0142242 + ], + [ + 109.3236952, + -0.0142457 + ], + [ + 109.32303, + -0.0150448 + ], + [ + 109.3230123, + -0.01507 + ], + [ + 109.3230099, + -0.0150914 + ], + [ + 109.3230173, + -0.0151136 + ], + [ + 109.3231367, + -0.0151847 + ], + [ + 109.3232724, + -0.0152672 + ] + ] + }, + "id": "way/614471759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614471760", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3235449, + -0.0140717 + ], + [ + 109.3237165, + -0.0142242 + ] + ] + }, + "id": "way/614471760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614471761", + "highway": "unclassified", + "lanes": "1", + "name": "Jalan Srikaya", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224906, + -0.0150354 + ], + [ + 109.3225594, + -0.0149592 + ], + [ + 109.3232627, + -0.0141889 + ], + [ + 109.323313, + -0.0141607 + ], + [ + 109.3233561, + -0.0141495 + ], + [ + 109.3234036, + -0.0141503 + ], + [ + 109.3234347, + -0.014153 + ], + [ + 109.3234803, + -0.0141369 + ], + [ + 109.3235137, + -0.0141071 + ], + [ + 109.3235449, + -0.0140717 + ], + [ + 109.3235484, + -0.0140679 + ], + [ + 109.3243129, + -0.0132158 + ], + [ + 109.3252426, + -0.0121564 + ] + ] + }, + "id": "way/614471761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614471763", + "highway": "residential", + "name": "Gang Apel 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3218367, + -0.0145315 + ], + [ + 109.3215125, + -0.0149353 + ], + [ + 109.3204585, + -0.0162777 + ], + [ + 109.3204424, + -0.0163031 + ], + [ + 109.320433, + -0.0163199 + ], + [ + 109.320433, + -0.0163306 + ], + [ + 109.3204363, + -0.01634 + ], + [ + 109.3204558, + -0.0163514 + ], + [ + 109.3204779, + -0.0163635 + ], + [ + 109.3204933, + -0.0163761 + ], + [ + 109.3204972, + -0.0163883 + ], + [ + 109.320498, + -0.0164017 + ], + [ + 109.3205726, + -0.0169364 + ], + [ + 109.3207386, + -0.0179498 + ] + ] + }, + "id": "way/614471763" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614471764", + "highway": "residential", + "name": "Gang Selamat 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219132, + -0.0199504 + ], + [ + 109.3218997, + -0.0198354 + ], + [ + 109.3217014, + -0.0181469 + ], + [ + 109.3216565, + -0.0177764 + ] + ] + }, + "id": "way/614471764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605628", + "highway": "residential", + "name": "Gang Darta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142853, + -0.0122162 + ], + [ + 109.3140884, + -0.012729 + ] + ] + }, + "id": "way/614605628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605629", + "highway": "residential", + "name": "Gang Jambu Mente" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191938, + -0.0125576 + ], + [ + 109.3195694, + -0.0120574 + ], + [ + 109.3198121, + -0.0117347 + ], + [ + 109.3202949, + -0.011048 + ], + [ + 109.3203654, + -0.0109358 + ], + [ + 109.3206555, + -0.0105379 + ], + [ + 109.3208843, + -0.0102547 + ], + [ + 109.3210333, + -0.0100573 + ], + [ + 109.3210739, + -0.0100098 + ], + [ + 109.3214767, + -0.0095217 + ] + ] + }, + "id": "way/614605629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605630", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312499, + -0.0189042 + ], + [ + 109.312146, + -0.0190112 + ], + [ + 109.3120833, + -0.0190081 + ], + [ + 109.3120578, + -0.0190048 + ], + [ + 109.312035, + -0.0189947 + ], + [ + 109.3118593, + -0.0188814 + ], + [ + 109.3118365, + -0.018876 + ], + [ + 109.311811, + -0.0188787 + ], + [ + 109.3115805, + -0.0189243 + ] + ] + }, + "id": "way/614605630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605631", + "highway": "residential", + "name": "Gang Hishak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119117, + -0.0182935 + ], + [ + 109.3112682, + -0.0184957 + ] + ] + }, + "id": "way/614605631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605632", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128648, + -0.0200827 + ], + [ + 109.3125339, + -0.0201993 + ] + ] + }, + "id": "way/614605632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605633", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3125339, + -0.0201993 + ], + [ + 109.312375, + -0.0202762 + ], + [ + 109.3123488, + -0.0202819 + ], + [ + 109.3123275, + -0.0202774 + ], + [ + 109.3123173, + -0.0202674 + ], + [ + 109.3123032, + -0.020248 + ], + [ + 109.3121921, + -0.0199127 + ], + [ + 109.3121745, + -0.0198953 + ], + [ + 109.3121411, + -0.0198939 + ], + [ + 109.3118321, + -0.0199878 + ] + ] + }, + "id": "way/614605633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605634", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108297, + -0.0199186 + ], + [ + 109.3110719, + -0.0198162 + ], + [ + 109.3110888, + -0.0197994 + ], + [ + 109.3110949, + -0.019781 + ], + [ + 109.3110943, + -0.0197616 + ], + [ + 109.3110818, + -0.0197198 + ], + [ + 109.3102498, + -0.0175015 + ] + ] + }, + "id": "way/614605634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605635", + "highway": "residential", + "name": "Gang Maria" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309525, + -0.0205785 + ], + [ + 109.3104364, + -0.0229263 + ] + ] + }, + "id": "way/614605635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605636", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3100121, + -0.0203671 + ], + [ + 109.3104862, + -0.0215298 + ] + ] + }, + "id": "way/614605636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605637", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109748, + -0.0227134 + ], + [ + 109.3105882, + -0.0216719 + ] + ] + }, + "id": "way/614605637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605638", + "highway": "residential", + "name": "Gang Jasa Pati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101896, + -0.023026 + ], + [ + 109.3091438, + -0.0204207 + ], + [ + 109.3091116, + -0.0203348 + ] + ] + }, + "id": "way/614605638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605639", + "highway": "residential", + "name": "Gang Tidar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040145, + -0.0236712 + ], + [ + 109.3034602, + -0.0222419 + ] + ] + }, + "id": "way/614605639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614605640", + "alt_name": "Jalan Haji Rais A. Rachman", + "highway": "tertiary", + "name": "Jalan Husein Hamzah", + "oneway": "yes", + "ref": "002.3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085345, + -0.0236934 + ], + [ + 109.3081085, + -0.0234863 + ], + [ + 109.3077351, + -0.0232769 + ], + [ + 109.3076979, + -0.0232561 + ], + [ + 109.3074255, + -0.0231005 + ], + [ + 109.3072003, + -0.0229718 + ], + [ + 109.3068999, + -0.0228216 + ], + [ + 109.3067671, + -0.0227948 + ], + [ + 109.3066625, + -0.0227907 + ], + [ + 109.3065606, + -0.0228082 + ], + [ + 109.3064942, + -0.022831 + ], + [ + 109.3062575, + -0.0229121 + ], + [ + 109.3059349, + -0.0230136 + ], + [ + 109.305554, + -0.0231615 + ], + [ + 109.3054283, + -0.0232121 + ], + [ + 109.3052643, + -0.0232782 + ], + [ + 109.3051329, + -0.0233311 + ], + [ + 109.3049409, + -0.0234038 + ], + [ + 109.3047635, + -0.023468 + ], + [ + 109.304608, + -0.0235297 + ], + [ + 109.30421, + -0.0236891 + ], + [ + 109.3040349, + -0.0237497 + ], + [ + 109.3039285, + -0.0237964 + ], + [ + 109.3036622, + -0.0238934 + ], + [ + 109.3033833, + -0.0240172 + ], + [ + 109.3032414, + -0.0240755 + ], + [ + 109.3031502, + -0.0241171 + ], + [ + 109.303012, + -0.0241962 + ], + [ + 109.3028373, + -0.0243137 + ] + ] + }, + "id": "way/614605640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614607285", + "highway": "residential", + "name": "Gang Tunas Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983914, + -0.0228185 + ], + [ + 109.2963511, + -0.0220411 + ] + ] + }, + "id": "way/614607285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/614607286", + "highway": "residential", + "name": "Gang Pendidikan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2960775, + -0.0243391 + ], + [ + 109.2973723, + -0.0262815 + ], + [ + 109.2981414, + -0.0274564 + ] + ] + }, + "id": "way/614607286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/616023368", + "highway": "unclassified", + "name": "Jalan Umuthalib" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310973, + -0.0096156 + ], + [ + 109.3112672, + -0.0090209 + ], + [ + 109.311383, + -0.0087547 + ], + [ + 109.3115685, + -0.0083612 + ], + [ + 109.3117332, + -0.0080399 + ], + [ + 109.3117688, + -0.0078196 + ], + [ + 109.3117466, + -0.0076014 + ], + [ + 109.3117413, + -0.0073164 + ], + [ + 109.3117606, + -0.0066532 + ] + ] + }, + "id": "way/616023368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/616075737", + "highway": "residential", + "name": "Gang A.R. Saleh V" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561773, + -0.057812 + ], + [ + 109.3567957, + -0.0584534 + ], + [ + 109.3568158, + -0.0584869 + ], + [ + 109.3568318, + -0.0585309 + ], + [ + 109.3568286, + -0.058568 + ], + [ + 109.3567709, + -0.0587028 + ], + [ + 109.3567581, + -0.058735 + ], + [ + 109.3567534, + -0.0587612 + ], + [ + 109.3567589, + -0.0587846 + ], + [ + 109.3568093, + -0.0588454 + ], + [ + 109.3571048, + -0.0591541 + ], + [ + 109.3573466, + -0.0593971 + ], + [ + 109.3578149, + -0.0598823 + ], + [ + 109.3581355, + -0.0602062 + ] + ] + }, + "id": "way/616075737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/616077916", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Analis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635211, + -0.0649975 + ], + [ + 109.3627462, + -0.0643898 + ], + [ + 109.362712, + -0.0643717 + ], + [ + 109.3626925, + -0.064375 + ], + [ + 109.3624425, + -0.0647229 + ] + ] + }, + "id": "way/616077916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/619994027", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390142, + -0.0519501 + ], + [ + 109.3392614, + -0.0526772 + ], + [ + 109.3394941, + -0.0533532 + ], + [ + 109.3397781, + -0.0541177 + ] + ] + }, + "id": "way/619994027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/619994029", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406518, + -0.0529567 + ], + [ + 109.3399659, + -0.05131 + ] + ] + }, + "id": "way/619994029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/619994030", + "highway": "residential", + "name": "Gang Karya Baru III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3382124, + -0.0524565 + ], + [ + 109.3387558, + -0.0541625 + ], + [ + 109.3389014, + -0.0546196 + ], + [ + 109.3390502, + -0.0550866 + ] + ] + }, + "id": "way/619994030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/619994032", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Anggrek 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350213, + -0.0539517 + ], + [ + 109.3349222, + -0.0536995 + ], + [ + 109.3343906, + -0.0520785 + ], + [ + 109.3340875, + -0.0511585 + ], + [ + 109.3338675, + -0.0505121 + ] + ] + }, + "id": "way/619994032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/619994034", + "highway": "residential", + "name": "Gang Ikhlas", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365316, + -0.058271 + ], + [ + 109.3366738, + -0.0584058 + ], + [ + 109.3368802, + -0.0585817 + ], + [ + 109.3379331, + -0.0594679 + ], + [ + 109.3384527, + -0.0599172 + ], + [ + 109.3386847, + -0.060111 + ], + [ + 109.3390127, + -0.0603615 + ] + ] + }, + "id": "way/619994034" + }, + { + "type": "Feature", + "properties": { + "@id": "way/621898809", + "highway": "residential", + "name": "Komplek Villa Gading Raya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556433, + -0.0712958 + ], + [ + 109.3533906, + -0.0688429 + ] + ] + }, + "id": "way/621898809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149741", + "highway": "residential", + "name": "Gang Mitra Perdana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411462, + -0.0578624 + ], + [ + 109.3400574, + -0.0571217 + ], + [ + 109.3395965, + -0.0567857 + ], + [ + 109.3390835, + -0.0564126 + ], + [ + 109.3390447, + -0.0563838 + ] + ] + }, + "id": "way/622149741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149742", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412954, + -0.0579763 + ], + [ + 109.34126, + -0.0579461 + ] + ] + }, + "id": "way/622149742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149743", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Gang Karya Baru 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403952, + -0.05872 + ], + [ + 109.3405185, + -0.0588123 + ] + ] + }, + "id": "way/622149743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149744", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406732, + -0.0583417 + ], + [ + 109.3403638, + -0.0581107 + ], + [ + 109.3401204, + -0.0579344 + ], + [ + 109.3398381, + -0.0577405 + ], + [ + 109.3396863, + -0.0576129 + ] + ] + }, + "id": "way/622149744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149745", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Jalan Perdana Komp Bali Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401731, + -0.0590439 + ], + [ + 109.3401562, + -0.059031 + ], + [ + 109.3397617, + -0.05875 + ], + [ + 109.3396416, + -0.0586572 + ], + [ + 109.3387109, + -0.0579196 + ], + [ + 109.3375965, + -0.0569701 + ], + [ + 109.3375777, + -0.0569459 + ], + [ + 109.3375629, + -0.0568789 + ], + [ + 109.3375595, + -0.056865 + ], + [ + 109.3375549, + -0.0568467 + ], + [ + 109.3375468, + -0.0568193 + ], + [ + 109.3375344, + -0.0567904 + ], + [ + 109.3369554, + -0.0556022 + ], + [ + 109.3367515, + -0.0551328 + ], + [ + 109.3367059, + -0.0550054 + ], + [ + 109.3366564, + -0.0548539 + ] + ] + }, + "id": "way/622149745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149746", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397005, + -0.0595618 + ], + [ + 109.3393254, + -0.0592872 + ], + [ + 109.3392903, + -0.059258 + ], + [ + 109.3382817, + -0.0584641 + ], + [ + 109.3371204, + -0.0575548 + ] + ] + }, + "id": "way/622149746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149747", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Ikhlas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390127, + -0.0603615 + ], + [ + 109.3390907, + -0.0604218 + ] + ] + }, + "id": "way/622149747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149748", + "highway": "residential", + "lanes": "1", + "name": "Gang Melati", + "vehicle": "destination", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387154, + -0.0607438 + ], + [ + 109.3384816, + -0.060517 + ], + [ + 109.3378573, + -0.0599682 + ], + [ + 109.3369801, + -0.0591879 + ], + [ + 109.3367314, + -0.058967 + ], + [ + 109.3362761, + -0.0585608 + ] + ] + }, + "id": "way/622149748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149749", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420507, + -0.0567263 + ], + [ + 109.3418212, + -0.0565703 + ], + [ + 109.3415856, + -0.0564102 + ], + [ + 109.340229, + -0.0555137 + ], + [ + 109.3395142, + -0.0549691 + ] + ] + }, + "id": "way/622149749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622149750", + "bridge": "yes", + "highway": "living_street", + "lanes": "1", + "layer": "1", + "motorcar": "destination", + "name": "Gang Sejahtera", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427936, + -0.0560727 + ], + [ + 109.3428425, + -0.0561101 + ] + ] + }, + "id": "way/622149750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545600", + "highway": "residential", + "name": "Gang Sukadana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448865, + -0.0323257 + ], + [ + 109.3439602, + -0.0328349 + ] + ] + }, + "id": "way/622545600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545601", + "highway": "residential", + "name": "Gang Irian" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455463, + -0.0320468 + ], + [ + 109.3466484, + -0.03142 + ], + [ + 109.3467852, + -0.0313342 + ] + ] + }, + "id": "way/622545601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545602", + "highway": "living_street", + "name": "Gang Sampit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457337, + -0.0312028 + ], + [ + 109.3459663, + -0.0310881 + ], + [ + 109.3460119, + -0.0311914 + ], + [ + 109.3467402, + -0.0308869 + ] + ] + }, + "id": "way/622545602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545603", + "highway": "living_street", + "name": "Gang Aden / Gang Bayu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461822, + -0.0336497 + ], + [ + 109.3467269, + -0.0334126 + ], + [ + 109.3467401, + -0.0333989 + ], + [ + 109.3467431, + -0.0333889 + ], + [ + 109.3467584, + -0.033338 + ], + [ + 109.3467709, + -0.0333184 + ], + [ + 109.3470577, + -0.0331587 + ] + ] + }, + "id": "way/622545603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545604", + "highway": "residential", + "name": "Gang Aden 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461185, + -0.0334787 + ], + [ + 109.3465861, + -0.0332604 + ], + [ + 109.346701, + -0.0331677 + ], + [ + 109.3469716, + -0.0330246 + ] + ] + }, + "id": "way/622545604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545605", + "highway": "residential", + "name": "Gang Tanjung Salah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537086, + -0.0456067 + ], + [ + 109.3539873, + -0.0453885 + ], + [ + 109.354143, + -0.0452823 + ] + ] + }, + "id": "way/622545605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545606", + "highway": "residential", + "name": "Gang Mendawai II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553831, + -0.0479911 + ], + [ + 109.3556081, + -0.0476776 + ], + [ + 109.3558595, + -0.0473705 + ] + ] + }, + "id": "way/622545606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545607", + "highway": "residential", + "name": "Gang Kusuma Wijaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572, + -0.0495919 + ], + [ + 109.3580526, + -0.0485061 + ], + [ + 109.3582699, + -0.0482171 + ] + ] + }, + "id": "way/622545607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545608", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359547, + -0.0516198 + ], + [ + 109.3591091, + -0.0521743 + ] + ] + }, + "id": "way/622545608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545609", + "highway": "residential", + "name": "Gang Haji Kasim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599528, + -0.0519507 + ], + [ + 109.3595114, + -0.0524734 + ] + ] + }, + "id": "way/622545609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545610", + "highway": "residential", + "name": "Gang Muria" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3629863, + -0.0555585 + ], + [ + 109.3637001, + -0.055268 + ] + ] + }, + "id": "way/622545610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545611", + "highway": "residential", + "name": "Gang Family" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639265, + -0.0571876 + ], + [ + 109.3647719, + -0.0566401 + ], + [ + 109.3654908, + -0.0562351 + ], + [ + 109.3662016, + -0.0558381 + ] + ] + }, + "id": "way/622545611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3653101, + -0.0592198 + ], + [ + 109.3674597, + -0.0575167 + ] + ] + }, + "id": "way/622545612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545613", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654985, + -0.0578288 + ], + [ + 109.3654358, + -0.0579028 + ], + [ + 109.3653868, + -0.0579411 + ], + [ + 109.3652983, + -0.0580108 + ], + [ + 109.3650884, + -0.0581724 + ], + [ + 109.3649455, + -0.0582881 + ], + [ + 109.364712, + -0.058461 + ] + ] + }, + "id": "way/622545613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622545615", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646555, + -0.0583786 + ], + [ + 109.3648805, + -0.0582079 + ], + [ + 109.3650995, + -0.0580396 + ], + [ + 109.3652681, + -0.0579089 + ], + [ + 109.365359, + -0.0578391 + ], + [ + 109.3654277, + -0.0577731 + ] + ] + }, + "id": "way/622545615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952980", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496463, + -0.0671813 + ], + [ + 109.3499052, + -0.0668494 + ] + ] + }, + "id": "way/622952980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952981", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486467, + -0.0662128 + ], + [ + 109.3483701, + -0.0664529 + ] + ] + }, + "id": "way/622952981" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952982", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491821, + -0.0674564 + ], + [ + 109.3495899, + -0.0677251 + ], + [ + 109.3498367, + -0.0678994 + ], + [ + 109.3499594, + -0.0679873 + ], + [ + 109.3499789, + -0.0680014 + ], + [ + 109.3499936, + -0.0680215 + ], + [ + 109.3499964, + -0.0680457 + ] + ] + }, + "id": "way/622952982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952983", + "highway": "living_street", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420806, + -0.0700055 + ], + [ + 109.3426256, + -0.0707191 + ] + ] + }, + "id": "way/622952983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952984", + "highway": "living_street", + "name": "Gang WP" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429165, + -0.069066 + ], + [ + 109.3439723, + -0.070442 + ] + ] + }, + "id": "way/622952984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952985", + "highway": "residential", + "name": "Gang Citra Perdana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344523, + -0.0670583 + ], + [ + 109.3444011, + -0.0669323 + ], + [ + 109.3439591, + -0.0665465 + ] + ] + }, + "id": "way/622952985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952986", + "highway": "living_street", + "motor_vehicle": "private", + "name": "Gang Usaha" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492133, + -0.0695928 + ], + [ + 109.3484366, + -0.0690763 + ], + [ + 109.3480235, + -0.0688 + ], + [ + 109.3476868, + -0.0685547 + ] + ] + }, + "id": "way/622952986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952987", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451679, + -0.0667161 + ], + [ + 109.3462117, + -0.0680087 + ], + [ + 109.3471279, + -0.0691373 + ] + ] + }, + "id": "way/622952987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952988", + "highway": "living_street", + "motor_vehicle": "private", + "name": "Gang Usaha" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476868, + -0.0685547 + ], + [ + 109.3476064, + -0.0684258 + ], + [ + 109.3475153, + -0.0683038 + ], + [ + 109.3472242, + -0.0679497 + ], + [ + 109.3466878, + -0.06731 + ], + [ + 109.345719, + -0.0661413 + ] + ] + }, + "id": "way/622952988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952989", + "highway": "living_street", + "name": "Gang Amalia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489461, + -0.0701684 + ], + [ + 109.3483165, + -0.0697185 + ], + [ + 109.3477583, + -0.0693345 + ], + [ + 109.3474308, + -0.0691071 + ], + [ + 109.3473283, + -0.0690291 + ] + ] + }, + "id": "way/622952989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952990", + "highway": "living_street", + "name": "Gang Masjid Quba" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488938, + -0.0723433 + ], + [ + 109.348774, + -0.0725262 + ], + [ + 109.3485495, + -0.0728447 + ], + [ + 109.3482997, + -0.0731457 + ] + ] + }, + "id": "way/622952990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952991", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417122, + -0.0758759 + ], + [ + 109.3415769, + -0.0757629 + ], + [ + 109.3414763, + -0.0756631 + ], + [ + 109.3413475, + -0.0755377 + ], + [ + 109.3412724, + -0.0754492 + ], + [ + 109.341257, + -0.0754237 + ], + [ + 109.3412536, + -0.0753902 + ], + [ + 109.3412697, + -0.0753553 + ], + [ + 109.3412617, + -0.0753151 + ], + [ + 109.3412255, + -0.0752574 + ], + [ + 109.3411396, + -0.0751219 + ], + [ + 109.3409854, + -0.0749127 + ], + [ + 109.3407816, + -0.0746083 + ], + [ + 109.3404798, + -0.0741724 + ], + [ + 109.3401968, + -0.0737674 + ], + [ + 109.3399152, + -0.0733503 + ], + [ + 109.3396403, + -0.0729628 + ], + [ + 109.3394552, + -0.0727011 + ] + ] + }, + "id": "way/622952991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952992", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466128, + -0.0737431 + ], + [ + 109.3462781, + -0.073522 + ], + [ + 109.3461004, + -0.0733933 + ] + ] + }, + "id": "way/622952992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952994", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454229, + -0.0596684 + ], + [ + 109.3458357, + -0.0600679 + ] + ] + }, + "id": "way/622952994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952995", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469326, + -0.0605807 + ], + [ + 109.3468247, + -0.0606864 + ], + [ + 109.3465831, + -0.0609228 + ], + [ + 109.3463403, + -0.0611948 + ], + [ + 109.3463103, + -0.0611979 + ], + [ + 109.3462747, + -0.0611892 + ], + [ + 109.3458902, + -0.0608102 + ] + ] + }, + "id": "way/622952995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952996", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461739, + -0.0605165 + ], + [ + 109.3465831, + -0.0609228 + ] + ] + }, + "id": "way/622952996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952997", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274966, + -0.0526214 + ], + [ + 109.3273217, + -0.0528353 + ], + [ + 109.3270782, + -0.0531037 + ] + ] + }, + "id": "way/622952997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952998", + "highway": "unclassified", + "name": "Jalan Wono Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192857, + -0.0538325 + ], + [ + 109.3192898, + -0.053871 + ], + [ + 109.3192944, + -0.0538903 + ], + [ + 109.3192995, + -0.0539047 + ], + [ + 109.319305, + -0.0539157 + ], + [ + 109.3193115, + -0.0539248 + ], + [ + 109.3194682, + -0.05409 + ], + [ + 109.3197137, + -0.0543327 + ], + [ + 109.3197295, + -0.0543501 + ], + [ + 109.3199062, + -0.0545302 + ], + [ + 109.3202197, + -0.0548275 + ], + [ + 109.3205196, + -0.0551183 + ], + [ + 109.3206686, + -0.0552526 + ], + [ + 109.3210052, + -0.0555563 + ], + [ + 109.3212623, + -0.0558059 + ], + [ + 109.3218113, + -0.0562618 + ], + [ + 109.32229, + -0.0567074 + ], + [ + 109.3224678, + -0.0568602 + ], + [ + 109.3224937, + -0.0568825 + ], + [ + 109.3227376, + -0.0571053 + ], + [ + 109.3230897, + -0.0574252 + ], + [ + 109.3237355, + -0.0579806 + ], + [ + 109.3239246, + -0.0581592 + ] + ] + }, + "id": "way/622952998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622952999", + "highway": "residential", + "name": "Gang Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317426, + -0.0498123 + ], + [ + 109.317665, + -0.0499957 + ], + [ + 109.3184991, + -0.0505784 + ], + [ + 109.319302, + -0.051138 + ], + [ + 109.319305, + -0.0511391 + ], + [ + 109.3193079, + -0.0511394 + ], + [ + 109.3193108, + -0.0511389 + ], + [ + 109.3193155, + -0.0511372 + ], + [ + 109.3193221, + -0.0511337 + ], + [ + 109.3193273, + -0.0511291 + ], + [ + 109.3193415, + -0.0511142 + ], + [ + 109.3194038, + -0.0510436 + ], + [ + 109.3194073, + -0.0510411 + ], + [ + 109.3194111, + -0.0510395 + ], + [ + 109.3194163, + -0.0510384 + ], + [ + 109.3194235, + -0.0510387 + ], + [ + 109.3194301, + -0.051041 + ], + [ + 109.3196424, + -0.0511792 + ], + [ + 109.3197765, + -0.0512664 + ], + [ + 109.3198235, + -0.0512855 + ], + [ + 109.319854, + -0.0512952 + ], + [ + 109.3198935, + -0.0513003 + ], + [ + 109.3199204, + -0.0513019 + ], + [ + 109.3199432, + -0.0513076 + ], + [ + 109.3199594, + -0.0513143 + ], + [ + 109.3199795, + -0.0513288 + ], + [ + 109.320149, + -0.0514501 + ], + [ + 109.3204384, + -0.0516707 + ], + [ + 109.3207039, + -0.0518585 + ] + ] + }, + "id": "way/622952999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622953000", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318442, + -0.0522487 + ], + [ + 109.3188693, + -0.052564 + ] + ] + }, + "id": "way/622953000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622953001", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190105, + -0.0522734 + ], + [ + 109.3189589, + -0.0523536 + ] + ] + }, + "id": "way/622953001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622953002", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176136, + -0.0547203 + ], + [ + 109.3178534, + -0.054878 + ], + [ + 109.3183322, + -0.0552324 + ], + [ + 109.3183553, + -0.0552518 + ], + [ + 109.3183683, + -0.0552605 + ], + [ + 109.318372, + -0.055262 + ], + [ + 109.3183766, + -0.0552619 + ], + [ + 109.3183803, + -0.0552616 + ], + [ + 109.3183859, + -0.0552604 + ], + [ + 109.3183896, + -0.0552587 + ], + [ + 109.3183994, + -0.0552516 + ], + [ + 109.3184156, + -0.055238 + ], + [ + 109.3184317, + -0.055222 + ], + [ + 109.318536, + -0.0550729 + ] + ] + }, + "id": "way/622953002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622953003", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184583, + -0.0536943 + ], + [ + 109.3187547, + -0.0540282 + ] + ] + }, + "id": "way/622953003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/622953004", + "highway": "residential", + "name": "Gang Keliru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3168901, + -0.0584166 + ], + [ + 109.3175697, + -0.0588664 + ], + [ + 109.3181699, + -0.0592032 + ] + ] + }, + "id": "way/622953004" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623028023", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Suka Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3166572, + -0.0605008 + ], + [ + 109.3163839, + -0.06084 + ], + [ + 109.3161022, + -0.0611903 + ], + [ + 109.3158601, + -0.0614912 + ], + [ + 109.3155548, + -0.0618767 + ] + ] + }, + "id": "way/623028023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623028024", + "highway": "residential", + "name": "Gang Tata Kota" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170664, + -0.0607678 + ], + [ + 109.3172531, + -0.0605312 + ], + [ + 109.3175548, + -0.0601483 + ], + [ + 109.317726, + -0.059931 + ], + [ + 109.3179338, + -0.0596673 + ], + [ + 109.3179702, + -0.0596206 + ] + ] + }, + "id": "way/623028024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623030567", + "highway": "residential", + "name": "Gang Sepakat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219266, + -0.0608916 + ], + [ + 109.3217862, + -0.0608218 + ], + [ + 109.3211132, + -0.0604045 + ] + ] + }, + "id": "way/623030567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623030569", + "highway": "residential", + "name": "Jalur D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192702, + -0.0584193 + ], + [ + 109.3198179, + -0.0587619 + ] + ] + }, + "id": "way/623030569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623030571", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321051, + -0.0581227 + ], + [ + 109.3208301, + -0.058465 + ] + ] + }, + "id": "way/623030571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623030573", + "highway": "unclassified", + "name": "Gang Harapan Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3125388, + -0.0634682 + ], + [ + 109.312783, + -0.0636531 + ], + [ + 109.3131737, + -0.0639156 + ], + [ + 109.313708, + -0.0642573 + ], + [ + 109.3140033, + -0.064479 + ], + [ + 109.3143969, + -0.0647308 + ], + [ + 109.3145499, + -0.0648206 + ], + [ + 109.3147434, + -0.0649735 + ], + [ + 109.3149094, + -0.0651048 + ], + [ + 109.3149646, + -0.0652092 + ], + [ + 109.3150149, + -0.0652984 + ], + [ + 109.315112, + -0.0654386 + ], + [ + 109.3151893, + -0.0655237 + ], + [ + 109.3154736, + -0.0657235 + ], + [ + 109.31577, + -0.0659206 + ], + [ + 109.3163493, + -0.0663256 + ], + [ + 109.3170809, + -0.0668192 + ], + [ + 109.3177226, + -0.0672537 + ] + ] + }, + "id": "way/623030573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623030575", + "highway": "residential", + "name": "Gang Antar Kita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3125388, + -0.0634682 + ], + [ + 109.3128651, + -0.063111 + ], + [ + 109.3131823, + -0.0627574 + ], + [ + 109.3135158, + -0.0623502 + ], + [ + 109.3135437, + -0.0623194 + ], + [ + 109.3138348, + -0.0619837 + ], + [ + 109.3140235, + -0.0617758 + ], + [ + 109.3141781, + -0.0615761 + ], + [ + 109.3144866, + -0.0612176 + ] + ] + }, + "id": "way/623030575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623050428", + "highway": "residential", + "name": "Blok V - W" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273665, + -0.062999 + ], + [ + 109.3285212, + -0.0645657 + ], + [ + 109.3295763, + -0.0660602 + ] + ] + }, + "id": "way/623050428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623052497", + "highway": "residential", + "lanes": "1", + "name": "Gang Purnama A. Rahim", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216447, + -0.0615862 + ], + [ + 109.3221228, + -0.0621159 + ], + [ + 109.3224547, + -0.0624868 + ], + [ + 109.3226716, + -0.062743 + ] + ] + }, + "id": "way/623052497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623057499", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202616, + -0.0634668 + ], + [ + 109.3180162, + -0.0620258 + ] + ] + }, + "id": "way/623057499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623061113", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103995, + -0.0634319 + ], + [ + 109.3102372, + -0.0632847 + ], + [ + 109.3098912, + -0.063105 + ], + [ + 109.3095642, + -0.0629279 + ] + ] + }, + "id": "way/623061113" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623061114", + "highway": "residential", + "name": "Gang Intan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090014, + -0.0638043 + ], + [ + 109.3094329, + -0.0631211 + ], + [ + 109.3095642, + -0.0629279 + ] + ] + }, + "id": "way/623061114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623116811", + "highway": "residential", + "name": "Gang Abdul Karim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2876135, + -0.0385052 + ], + [ + 109.287002, + -0.0391144 + ], + [ + 109.2868106, + -0.0392995 + ], + [ + 109.2866238, + -0.0394755 + ], + [ + 109.2864703, + -0.0396202 + ], + [ + 109.2860184, + -0.0400697 + ], + [ + 109.2858167, + -0.0402593 + ], + [ + 109.2851813, + -0.0408347 + ], + [ + 109.2848117, + -0.0411741 + ], + [ + 109.2846519, + -0.0413219 + ], + [ + 109.2844268, + -0.0415441 + ], + [ + 109.2843991, + -0.0415719 + ], + [ + 109.2842378, + -0.0417181 + ], + [ + 109.2840762, + -0.0418646 + ], + [ + 109.2839911, + -0.0419412 + ], + [ + 109.2837932, + -0.0421194 + ], + [ + 109.2837482, + -0.042162 + ] + ] + }, + "id": "way/623116811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623124517", + "highway": "residential", + "name": "Gang Sukarela" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081123, + -0.0561118 + ], + [ + 109.3075171, + -0.0567529 + ], + [ + 109.3070113, + -0.0572774 + ] + ] + }, + "id": "way/623124517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623124518", + "highway": "residential", + "name": "Gang Hidayah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063935, + -0.0566598 + ], + [ + 109.3053502, + -0.0573876 + ], + [ + 109.3050482, + -0.0575983 + ] + ] + }, + "id": "way/623124518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623124519", + "highway": "unclassified", + "name": "Jalan Ampera", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2876135, + -0.0385052 + ], + [ + 109.2875826, + -0.0384723 + ] + ] + }, + "id": "way/623124519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623124520", + "highway": "residential", + "name": "Gang Mandiri Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052313, + -0.0578145 + ], + [ + 109.3045342, + -0.0585962 + ], + [ + 109.3035894, + -0.0596983 + ] + ] + }, + "id": "way/623124520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623126107", + "highway": "residential", + "name": "Gang Keluarga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067099, + -0.0604724 + ], + [ + 109.3073131, + -0.0608493 + ] + ] + }, + "id": "way/623126107" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623130748", + "highway": "residential", + "name": "Gang Ilham 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087146, + -0.0554038 + ], + [ + 109.3085487, + -0.0555831 + ], + [ + 109.3081123, + -0.0561118 + ] + ] + }, + "id": "way/623130748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623130749", + "highway": "residential", + "name": "Gang Sederhana Pontianak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3100133, + -0.054918 + ], + [ + 109.3099035, + -0.0551867 + ], + [ + 109.3098248, + -0.0554084 + ], + [ + 109.3098094, + -0.055454 + ], + [ + 109.3097826, + -0.0555623 + ], + [ + 109.309755, + -0.0556802 + ], + [ + 109.3096806, + -0.0558442 + ], + [ + 109.3095983, + -0.0560279 + ] + ] + }, + "id": "way/623130749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623130750", + "highway": "residential", + "name": "Gang Sarikaton Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3150374, + -0.0460814 + ], + [ + 109.315127, + -0.0459897 + ], + [ + 109.315372, + -0.0457716 + ], + [ + 109.3154037, + -0.0457469 + ], + [ + 109.3155875, + -0.0455681 + ], + [ + 109.3156629, + -0.0454956 + ], + [ + 109.3159103, + -0.0452737 + ], + [ + 109.3161854, + -0.0450557 + ], + [ + 109.3162454, + -0.0450041 + ], + [ + 109.3163464, + -0.0449167 + ], + [ + 109.316768, + -0.0445177 + ] + ] + }, + "id": "way/623130750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623133745", + "highway": "unclassified", + "name": "Jalan Surya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281741, + -0.0491755 + ], + [ + 109.3285192, + -0.0490851 + ], + [ + 109.3292102, + -0.0489437 + ], + [ + 109.3292504, + -0.0489355 + ], + [ + 109.3293838, + -0.0489068 + ], + [ + 109.3294846, + -0.0488692 + ], + [ + 109.3298156, + -0.0487839 + ], + [ + 109.330207, + -0.0486672 + ], + [ + 109.3302808, + -0.0486473 + ], + [ + 109.3311181, + -0.04839 + ], + [ + 109.3316915, + -0.0481904 + ], + [ + 109.3320249, + -0.0480807 + ], + [ + 109.3323592, + -0.0479793 + ], + [ + 109.3334792, + -0.0475808 + ] + ] + }, + "id": "way/623133745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623135701", + "highway": "residential", + "name": "Jalan Kompl. Puri Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274493, + -0.0483586 + ], + [ + 109.3275361, + -0.0483126 + ], + [ + 109.3277786, + -0.0482327 + ], + [ + 109.327861, + -0.048205 + ], + [ + 109.329095, + -0.0478309 + ], + [ + 109.3292337, + -0.0477928 + ], + [ + 109.3295751, + -0.0476955 + ] + ] + }, + "id": "way/623135701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623135702", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287471, + -0.0470441 + ], + [ + 109.3289624, + -0.0475235 + ], + [ + 109.329095, + -0.0478309 + ] + ] + }, + "id": "way/623135702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623135703", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3289624, + -0.0475235 + ], + [ + 109.3286393, + -0.047628 + ], + [ + 109.3283227, + -0.0477073 + ], + [ + 109.3280975, + -0.0477987 + ], + [ + 109.3280612, + -0.0478184 + ], + [ + 109.3278038, + -0.0479937 + ], + [ + 109.3274633, + -0.0482052 + ] + ] + }, + "id": "way/623135703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623135704", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284693, + -0.0472099 + ], + [ + 109.3286393, + -0.047628 + ] + ] + }, + "id": "way/623135704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623135705", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281888, + -0.04737 + ], + [ + 109.3283227, + -0.0477073 + ] + ] + }, + "id": "way/623135705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623135706", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278038, + -0.0479937 + ], + [ + 109.327861, + -0.048205 + ] + ] + }, + "id": "way/623135706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623135707", + "highway": "residential", + "name": "Gang Sederhana", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290619, + -0.0462577 + ], + [ + 109.3321781, + -0.0454058 + ] + ] + }, + "id": "way/623135707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623135708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271408, + -0.0461788 + ], + [ + 109.3273435, + -0.0464875 + ] + ] + }, + "id": "way/623135708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623135709", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292123, + -0.0465589 + ], + [ + 109.3290619, + -0.0462577 + ], + [ + 109.3287189, + -0.0456918 + ], + [ + 109.3285091, + -0.0453559 + ] + ] + }, + "id": "way/623135709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484795", + "highway": "residential", + "name": "Gang Gajah Mada 21" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424983, + -0.0370828 + ], + [ + 109.3428824, + -0.0368093 + ], + [ + 109.3430024, + -0.0367275 + ], + [ + 109.3431935, + -0.0366041 + ], + [ + 109.3432727, + -0.0365572 + ], + [ + 109.3433303, + -0.036527 + ], + [ + 109.3434121, + -0.0364915 + ], + [ + 109.3436569, + -0.0364016 + ], + [ + 109.3443513, + -0.0361851 + ] + ] + }, + "id": "way/623484795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484797", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445203, + -0.0347819 + ], + [ + 109.3438252, + -0.0351238 + ] + ] + }, + "id": "way/623484797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484798", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444065, + -0.0344811 + ], + [ + 109.3436674, + -0.0348673 + ] + ] + }, + "id": "way/623484798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484800", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Gajah Mada 17" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442328, + -0.0339624 + ], + [ + 109.3437406, + -0.0342372 + ], + [ + 109.3435846, + -0.0343242 + ], + [ + 109.34336, + -0.0344496 + ] + ] + }, + "id": "way/623484800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484801", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431203, + -0.0349554 + ], + [ + 109.3435117, + -0.0347212 + ], + [ + 109.3435154, + -0.0347145 + ], + [ + 109.3435161, + -0.0347031 + ], + [ + 109.3435149, + -0.0346966 + ], + [ + 109.3433988, + -0.0344978 + ], + [ + 109.34336, + -0.0344496 + ], + [ + 109.3432501, + -0.0342805 + ], + [ + 109.3430308, + -0.0339432 + ] + ] + }, + "id": "way/623484801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484803", + "highway": "living_street", + "name": "Gang Gajah Mada 17", + "name:id": "Gang Gajah Mada 17" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418696, + -0.0352341 + ], + [ + 109.3433988, + -0.0344978 + ] + ] + }, + "id": "way/623484803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484804", + "highway": "residential", + "name": "Gang Gajah Mada 11" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405376, + -0.0327782 + ], + [ + 109.3405959, + -0.0327436 + ], + [ + 109.340824, + -0.0326317 + ], + [ + 109.340924, + -0.0325568 + ], + [ + 109.3410402, + -0.0324788 + ], + [ + 109.3412986, + -0.0323541 + ], + [ + 109.3412537, + -0.032234 + ], + [ + 109.3412563, + -0.0322241 + ], + [ + 109.3412657, + -0.0322127 + ], + [ + 109.341548, + -0.0320886 + ] + ] + }, + "id": "way/623484804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484806", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403806, + -0.0325137 + ], + [ + 109.3400436, + -0.0326559 + ], + [ + 109.3398311, + -0.0327774 + ], + [ + 109.3395509, + -0.0329338 + ], + [ + 109.3393392, + -0.0330944 + ], + [ + 109.3393365, + -0.0331099 + ], + [ + 109.3393432, + -0.0331353 + ], + [ + 109.3393656, + -0.0331548 + ], + [ + 109.3394956, + -0.0332954 + ], + [ + 109.339554, + -0.0333711 + ], + [ + 109.3396177, + -0.0334642 + ] + ] + }, + "id": "way/623484806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484808", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402679, + -0.0320363 + ], + [ + 109.3396178, + -0.0324173 + ] + ] + }, + "id": "way/623484808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623484809", + "highway": "residential", + "name": "Gang Gajah Mada 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402925, + -0.0318482 + ], + [ + 109.3404345, + -0.0317612 + ], + [ + 109.3412204, + -0.0314137 + ] + ] + }, + "id": "way/623484809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623772990", + "highway": "service", + "name": "Jalan Hijas 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344259, + -0.0358021 + ], + [ + 109.344277, + -0.0358767 + ], + [ + 109.3443513, + -0.0361851 + ] + ] + }, + "id": "way/623772990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623772991", + "access": "no", + "bicycle": "yes", + "foot": "yes", + "highway": "footway", + "horse": "yes", + "motor_vehicle": "no", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423282, + -0.032492 + ], + [ + 109.342695, + -0.0331508 + ] + ] + }, + "id": "way/623772991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623772992", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421324, + -0.032604 + ], + [ + 109.3424624, + -0.0332568 + ] + ] + }, + "id": "way/623772992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623772993", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412714, + -0.0330774 + ], + [ + 109.3415545, + -0.0336545 + ] + ] + }, + "id": "way/623772993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623772994", + "access": "no", + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "motor_vehicle": "no", + "width": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427264, + -0.0314919 + ], + [ + 109.3428814, + -0.0314042 + ], + [ + 109.3430117, + -0.0313305 + ], + [ + 109.3435855, + -0.0310058 + ], + [ + 109.3436193, + -0.0309866 + ], + [ + 109.3436301, + -0.0309741 + ], + [ + 109.3436328, + -0.0309581 + ], + [ + 109.3436281, + -0.0309306 + ], + [ + 109.3436113, + -0.0309004 + ], + [ + 109.34361, + -0.0308816 + ], + [ + 109.3436294, + -0.0308675 + ], + [ + 109.3436824, + -0.0308347 + ], + [ + 109.3437481, + -0.0307998 + ], + [ + 109.3438165, + -0.0307418 + ] + ] + }, + "id": "way/623772994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623774522", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398729, + -0.0289054 + ], + [ + 109.3397784, + -0.0287291 + ], + [ + 109.339662, + -0.0285379 + ] + ] + }, + "id": "way/623774522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623821034", + "highway": "residential", + "name": "Jalan Tanjung Harapan", + "wide": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526831, + -0.0443052 + ], + [ + 109.3523023, + -0.0446698 + ], + [ + 109.3522221, + -0.0447475 + ], + [ + 109.3520368, + -0.0449585 + ], + [ + 109.351925, + -0.0450788 + ], + [ + 109.3515791, + -0.0454443 + ], + [ + 109.3514659, + -0.0455624 + ], + [ + 109.3513597, + -0.0456701 + ], + [ + 109.3511906, + -0.0458396 + ], + [ + 109.3511591, + -0.0458737 + ], + [ + 109.3509324, + -0.0461199 + ], + [ + 109.3508711, + -0.046186 + ], + [ + 109.350292, + -0.0468106 + ], + [ + 109.3499313, + -0.0471797 + ] + ] + }, + "id": "way/623821034" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623961667", + "highway": "tertiary_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405753, + -0.0330631 + ], + [ + 109.3406489, + -0.0330216 + ] + ] + }, + "id": "way/623961667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623961668", + "highway": "tertiary_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3419312, + -0.0353733 + ], + [ + 109.3418577, + -0.0354073 + ] + ] + }, + "id": "way/623961668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623961670", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439464, + -0.0394723 + ], + [ + 109.3440244, + -0.0394277 + ] + ] + }, + "id": "way/623961670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/623961671", + "highway": "tertiary_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340385, + -0.032194 + ], + [ + 109.3403108, + -0.032212 + ] + ] + }, + "id": "way/623961671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/624028422", + "highway": "trunk_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426327, + -0.0458321 + ], + [ + 109.3425671, + -0.0457906 + ] + ] + }, + "id": "way/624028422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/624028423", + "highway": "trunk_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434644, + -0.0440339 + ], + [ + 109.3435378, + -0.0440694 + ] + ] + }, + "id": "way/624028423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/624028424", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440595, + -0.0428623 + ], + [ + 109.3441396, + -0.0429064 + ] + ] + }, + "id": "way/624028424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/624028426", + "highway": "trunk_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457929, + -0.0329374 + ], + [ + 109.3458704, + -0.032904 + ] + ] + }, + "id": "way/624028426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/624028427", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447376, + -0.0302706 + ], + [ + 109.3447771, + -0.03025 + ], + [ + 109.3448264, + -0.0302268 + ] + ] + }, + "id": "way/624028427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/624028428", + "highway": "trunk_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471357, + -0.0379566 + ], + [ + 109.3472082, + -0.0379221 + ] + ] + }, + "id": "way/624028428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/630708554", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154375, + -0.00608 + ], + [ + 109.3153153, + -0.0061031 + ], + [ + 109.3149709, + -0.0061681 + ], + [ + 109.3145666, + -0.0062383 + ], + [ + 109.3144287, + -0.0062623 + ], + [ + 109.3141845, + -0.0063047 + ], + [ + 109.313925, + -0.0063497 + ], + [ + 109.3138739, + -0.0063574 + ], + [ + 109.313559, + -0.0063985 + ], + [ + 109.3133839, + -0.0064316 + ], + [ + 109.3130848, + -0.0064779 + ], + [ + 109.3128373, + -0.006513 + ], + [ + 109.3124926, + -0.0065618 + ], + [ + 109.3122185, + -0.0065959 + ], + [ + 109.312111, + -0.0066129 + ], + [ + 109.3118491, + -0.0066432 + ], + [ + 109.3117606, + -0.0066532 + ], + [ + 109.3112339, + -0.0066704 + ], + [ + 109.3111188, + -0.0066844 + ], + [ + 109.3109567, + -0.0066978 + ], + [ + 109.3107287, + -0.0067262 + ] + ] + }, + "id": "way/630708554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/630708555", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142219, + -0.0083353 + ], + [ + 109.3141043, + -0.0086614 + ] + ] + }, + "id": "way/630708555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/630708556", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142219, + -0.0083353 + ], + [ + 109.3142981, + -0.0081497 + ], + [ + 109.3143196, + -0.0081076 + ], + [ + 109.3149818, + -0.0067701 + ], + [ + 109.3153153, + -0.0061031 + ] + ] + }, + "id": "way/630708556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/634445155", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33645, + -0.0456522 + ], + [ + 109.3363127, + -0.0456521 + ], + [ + 109.3359093, + -0.0459623 + ] + ] + }, + "id": "way/634445155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/634445156", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364357, + -0.0462536 + ], + [ + 109.3362881, + -0.046075 + ] + ] + }, + "id": "way/634445156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/634445157", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362755, + -0.0467029 + ], + [ + 109.3364123, + -0.0467573 + ] + ] + }, + "id": "way/634445157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/634445158", + "highway": "service", + "name": "Jalan Letnan Kolonel Sugiono" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405603, + -0.0455476 + ], + [ + 109.3404812, + -0.0456641 + ], + [ + 109.3402018, + -0.0460391 + ], + [ + 109.340004, + -0.0463005 + ], + [ + 109.3399088, + -0.0464113 + ], + [ + 109.3394562, + -0.046818 + ], + [ + 109.3393566, + -0.0468863 + ], + [ + 109.3392608, + -0.0469454 + ], + [ + 109.339195, + -0.047002 + ], + [ + 109.339122, + -0.0470681 + ], + [ + 109.3390104, + -0.0471629 + ], + [ + 109.3387934, + -0.0473584 + ], + [ + 109.3384398, + -0.0476387 + ] + ] + }, + "id": "way/634445158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/635893777", + "highway": "residential", + "name": "Blok H" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496219, + -0.0595207 + ], + [ + 109.3504058, + -0.0601373 + ] + ] + }, + "id": "way/635893777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/636204252", + "highway": "residential", + "name": "Jalan Sepakat 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559974, + -0.0520566 + ], + [ + 109.3562789, + -0.0522485 + ], + [ + 109.3563252, + -0.0521841 + ], + [ + 109.3563801, + -0.0521317 + ], + [ + 109.3565149, + -0.051955 + ], + [ + 109.3568523, + -0.0514596 + ], + [ + 109.3569776, + -0.0512793 + ], + [ + 109.357063, + -0.0511563 + ], + [ + 109.3571354, + -0.0510511 + ], + [ + 109.3571887, + -0.0509735 + ], + [ + 109.3573191, + -0.0508095 + ], + [ + 109.3578289, + -0.0501684 + ] + ] + }, + "id": "way/636204252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/636204253", + "highway": "living_street", + "lanes": "1", + "name": "Blok E", + "smoothness": "intermediate", + "surface": "concrete", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559387, + -0.0520122 + ], + [ + 109.3559974, + -0.0520566 + ] + ] + }, + "id": "way/636204253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/636204254", + "bridge": "yes", + "highway": "living_street", + "lanes": "1", + "layer": "1", + "name": "Blok E", + "smoothness": "intermediate", + "surface": "concrete", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558901, + -0.0519648 + ], + [ + 109.3559387, + -0.0520122 + ] + ] + }, + "id": "way/636204254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/636204255", + "highway": "living_street", + "lanes": "1", + "motor_vehicle": "no", + "name": "Blok E", + "smoothness": "intermediate", + "surface": "concrete", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554125, + -0.0510543 + ], + [ + 109.3553392, + -0.0511551 + ], + [ + 109.3552082, + -0.0513385 + ], + [ + 109.3552048, + -0.051368 + ], + [ + 109.3552078, + -0.0513921 + ], + [ + 109.3552202, + -0.0514156 + ], + [ + 109.3554968, + -0.0516506 + ], + [ + 109.3558901, + -0.0519648 + ] + ] + }, + "id": "way/636204255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/636204256", + "highway": "residential", + "lanes": "1", + "name": "Jalan Ketapang", + "smoothness": "good", + "surface": "asphalt", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551044, + -0.0506533 + ], + [ + 109.3545697, + -0.0501093 + ], + [ + 109.353787, + -0.0493334 + ], + [ + 109.3537363, + -0.0492807 + ] + ] + }, + "id": "way/636204256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/636204257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499043, + -0.0546604 + ], + [ + 109.3499821, + -0.054731 + ] + ] + }, + "id": "way/636204257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/640778297", + "highway": "residential", + "horse": "no", + "maxspeed": "20", + "name": "Gang Bangau 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303441, + -0.0227471 + ], + [ + 109.3307291, + -0.0222381 + ] + ] + }, + "id": "way/640778297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126135", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2858759, + -0.0192637 + ], + [ + 109.2860547, + -0.0203615 + ], + [ + 109.2861938, + -0.02112 + ], + [ + 109.2862308, + -0.0213592 + ], + [ + 109.2862716, + -0.0215633 + ] + ] + }, + "id": "way/641126135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126140", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2830739, + -0.0357816 + ], + [ + 109.2841294, + -0.0373661 + ], + [ + 109.2843538, + -0.0376713 + ], + [ + 109.2848295, + -0.0383803 + ], + [ + 109.2849462, + -0.0385599 + ], + [ + 109.2853035, + -0.0390865 + ], + [ + 109.2853391, + -0.0391295 + ] + ] + }, + "id": "way/641126140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126141", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2858992, + -0.0387477 + ], + [ + 109.2860636, + -0.0389831 + ], + [ + 109.2863464, + -0.039426 + ] + ] + }, + "id": "way/641126141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126145", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2851026, + -0.0393279 + ], + [ + 109.2850315, + -0.0392098 + ], + [ + 109.2836941, + -0.037227 + ], + [ + 109.2830613, + -0.0362935 + ], + [ + 109.2828569, + -0.0359818 + ] + ] + }, + "id": "way/641126145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126147", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2909326, + -0.0413697 + ], + [ + 109.2905695, + -0.0417283 + ] + ] + }, + "id": "way/641126147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126148", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2910937, + -0.0093769 + ], + [ + 109.2907543, + -0.0093676 + ] + ] + }, + "id": "way/641126148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126150", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2881551, + -0.0078089 + ], + [ + 109.2872171, + -0.0077267 + ] + ] + }, + "id": "way/641126150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126151", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2917902, + -0.0297995 + ], + [ + 109.2926474, + -0.0309574 + ], + [ + 109.2930435, + -0.0314904 + ], + [ + 109.2932203, + -0.0316906 + ] + ] + }, + "id": "way/641126151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126158", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2877683, + -0.0176338 + ], + [ + 109.2878283, + -0.0179174 + ], + [ + 109.2880172, + -0.0191483 + ] + ] + }, + "id": "way/641126158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126161", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2911044, + -0.0077017 + ], + [ + 109.2903712, + -0.0077227 + ] + ] + }, + "id": "way/641126161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126181", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2850046, + -0.0381739 + ], + [ + 109.2852947, + -0.0378889 + ] + ] + }, + "id": "way/641126181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126186", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.289617, + -0.0081268 + ], + [ + 109.2911226, + -0.0081053 + ] + ] + }, + "id": "way/641126186" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126190", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2889359, + -0.0196838 + ], + [ + 109.2885141, + -0.0176463 + ], + [ + 109.2884394, + -0.0173491 + ] + ] + }, + "id": "way/641126190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126191", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2890334, + -0.0357839 + ], + [ + 109.2892929, + -0.0361438 + ] + ] + }, + "id": "way/641126191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126195", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2805436, + -0.0230138 + ], + [ + 109.2804056, + -0.0226001 + ], + [ + 109.2803157, + -0.0223717 + ], + [ + 109.2801497, + -0.0220415 + ] + ] + }, + "id": "way/641126195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126197", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2829342, + -0.0336312 + ], + [ + 109.283923, + -0.034974 + ] + ] + }, + "id": "way/641126197" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126198", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2880825, + -0.0264332 + ], + [ + 109.287428, + -0.0254732 + ], + [ + 109.2862387, + -0.0238217 + ], + [ + 109.2860637, + -0.0235659 + ], + [ + 109.2859017, + -0.0233306 + ], + [ + 109.2855768, + -0.0228667 + ], + [ + 109.2852245, + -0.0222644 + ] + ] + }, + "id": "way/641126198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126202", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2810273, + -0.0348167 + ], + [ + 109.2796685, + -0.0329096 + ] + ] + }, + "id": "way/641126202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126203", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2829451, + -0.0206906 + ], + [ + 109.2827091, + -0.0207154 + ], + [ + 109.2826946, + -0.020715 + ], + [ + 109.2826822, + -0.0207087 + ], + [ + 109.2824016, + -0.0199531 + ] + ] + }, + "id": "way/641126203" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126205", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2840621, + -0.0415622 + ], + [ + 109.2835746, + -0.040881 + ] + ] + }, + "id": "way/641126205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126209", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2885883, + -0.006726 + ], + [ + 109.2887333, + -0.0061109 + ] + ] + }, + "id": "way/641126209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126210", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.291234, + -0.0279231 + ], + [ + 109.2920094, + -0.0290217 + ] + ] + }, + "id": "way/641126210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126213", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2853392, + -0.0313035 + ], + [ + 109.2850826, + -0.0314725 + ] + ] + }, + "id": "way/641126213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126214", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.289177, + -0.0366146 + ], + [ + 109.2888652, + -0.0362021 + ], + [ + 109.2887925, + -0.0361615 + ] + ] + }, + "id": "way/641126214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126217", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2869135, + -0.0377048 + ], + [ + 109.2868817, + -0.0376692 + ], + [ + 109.2867189, + -0.0375007 + ] + ] + }, + "id": "way/641126217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126223", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2852029, + -0.0405291 + ], + [ + 109.2850821, + -0.0403807 + ], + [ + 109.2849888, + -0.0402434 + ], + [ + 109.2846848, + -0.0397629 + ] + ] + }, + "id": "way/641126223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126229", + "highway": "living_street", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2871486, + -0.0230916 + ], + [ + 109.2877556, + -0.02395 + ], + [ + 109.2884333, + -0.0248988 + ], + [ + 109.2889573, + -0.0256516 + ] + ] + }, + "id": "way/641126229" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126230", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2870734, + -0.0371288 + ], + [ + 109.2872527, + -0.0373771 + ] + ] + }, + "id": "way/641126230" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126232", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2816835, + -0.0204602 + ], + [ + 109.2819397, + -0.021111 + ], + [ + 109.2822938, + -0.0220326 + ] + ] + }, + "id": "way/641126232" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126233", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2861421, + -0.0219663 + ], + [ + 109.2858707, + -0.0220534 + ], + [ + 109.2853557, + -0.0222142 + ], + [ + 109.2852245, + -0.0222644 + ], + [ + 109.284303, + -0.0225681 + ], + [ + 109.2842285, + -0.0225956 + ], + [ + 109.2841454, + -0.0226399 + ], + [ + 109.2835609, + -0.0230205 + ], + [ + 109.2832678, + -0.0232113 + ] + ] + }, + "id": "way/641126233" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126234", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2869412, + -0.0092586 + ], + [ + 109.2868866, + -0.0092335 + ] + ] + }, + "id": "way/641126234" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126235", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2907352, + -0.0163598 + ], + [ + 109.2908227, + -0.0169403 + ], + [ + 109.2908911, + -0.0172707 + ], + [ + 109.2909756, + -0.0177696 + ], + [ + 109.2910071, + -0.01795 + ], + [ + 109.2910715, + -0.018292 + ], + [ + 109.2912036, + -0.0188345 + ], + [ + 109.2913069, + -0.0191993 + ], + [ + 109.2914249, + -0.0196338 + ], + [ + 109.2914504, + -0.0197122 + ], + [ + 109.291455, + -0.0197189 + ], + [ + 109.2914607, + -0.0197239 + ], + [ + 109.2914698, + -0.0197276 + ], + [ + 109.2915055, + -0.019738 + ], + [ + 109.291511, + -0.0197407 + ], + [ + 109.2915161, + -0.0197438 + ], + [ + 109.2915197, + -0.0197485 + ], + [ + 109.2915235, + -0.0197545 + ], + [ + 109.29162, + -0.0199881 + ], + [ + 109.2917683, + -0.0204412 + ], + [ + 109.2918579, + -0.0207235 + ] + ] + }, + "id": "way/641126235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126238", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2882147, + -0.0063444 + ], + [ + 109.287445, + -0.0060685 + ] + ] + }, + "id": "way/641126238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126244", + "highway": "track", + "import": "yes", + "source": "digitalglobe", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2813888, + -0.0207202 + ], + [ + 109.2813722, + -0.0206704 + ] + ] + }, + "id": "way/641126244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126248", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891738, + -0.0005834 + ], + [ + 109.2888634, + -0.0004734 + ], + [ + 109.2886038, + -0.0003815 + ], + [ + 109.2885178, + -0.000338 + ], + [ + 109.2884708, + -0.0002843 + ], + [ + 109.2884526, + -0.0002399 + ], + [ + 109.2884498, + -0.0001365 + ], + [ + 109.2885402, + 0.0009468 + ] + ] + }, + "id": "way/641126248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126249", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2837064, + -0.0406449 + ], + [ + 109.283178, + -0.0398793 + ] + ] + }, + "id": "way/641126249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126250", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2921169, + -0.0248735 + ], + [ + 109.2919748, + -0.0249975 + ], + [ + 109.2918805, + -0.0250783 + ], + [ + 109.2923383, + -0.0257111 + ], + [ + 109.2923469, + -0.025719 + ], + [ + 109.292357, + -0.0257177 + ], + [ + 109.2923996, + -0.0256795 + ], + [ + 109.2924271, + -0.0256634 + ], + [ + 109.2924492, + -0.0256667 + ], + [ + 109.2924613, + -0.0256785 + ], + [ + 109.2924713, + -0.0256915 + ], + [ + 109.2931063, + -0.0265373 + ] + ] + }, + "id": "way/641126250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126252", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2809311, + -0.0360217 + ], + [ + 109.2810507, + -0.0361813 + ], + [ + 109.2811728, + -0.0363527 + ], + [ + 109.2814143, + -0.0366974 + ], + [ + 109.2816957, + -0.0371293 + ] + ] + }, + "id": "way/641126252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126256", + "highway": "living_street", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2888045, + -0.0257815 + ], + [ + 109.2886038, + -0.025536 + ], + [ + 109.2877336, + -0.0243144 + ], + [ + 109.287572, + -0.0240851 + ], + [ + 109.2863763, + -0.0223882 + ], + [ + 109.2862229, + -0.0221284 + ], + [ + 109.2861421, + -0.0219663 + ], + [ + 109.2859874, + -0.0211559 + ], + [ + 109.2858707, + -0.020375 + ], + [ + 109.2858352, + -0.0201903 + ], + [ + 109.2857868, + -0.0198956 + ], + [ + 109.2857339, + -0.0196915 + ], + [ + 109.2856706, + -0.0193309 + ], + [ + 109.2855829, + -0.0185138 + ] + ] + }, + "id": "way/641126256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126257", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2812545, + -0.0305304 + ], + [ + 109.2814112, + -0.0307347 + ], + [ + 109.2815908, + -0.0309892 + ], + [ + 109.2818575, + -0.0313805 + ] + ] + }, + "id": "way/641126257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126261", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2905121, + -0.0097566 + ], + [ + 109.2910569, + -0.0097853 + ] + ] + }, + "id": "way/641126261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126262", + "highway": "residential", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2907785, + -0.0199302 + ], + [ + 109.2908068, + -0.0199199 + ], + [ + 109.2910519, + -0.0198304 + ], + [ + 109.2907503, + -0.0185957 + ], + [ + 109.2903728, + -0.0165957 + ], + [ + 109.2903554, + -0.0165217 + ], + [ + 109.2903485, + -0.0165033 + ] + ] + }, + "id": "way/641126262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126263", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2900175, + -0.0076563 + ], + [ + 109.2900501, + -0.0069001 + ], + [ + 109.290065, + -0.0065135 + ] + ] + }, + "id": "way/641126263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126264", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2835909, + -0.0420021 + ], + [ + 109.2834719, + -0.0418513 + ], + [ + 109.2830797, + -0.0412804 + ] + ] + }, + "id": "way/641126264" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126266", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2873831, + -0.0215194 + ], + [ + 109.2871318, + -0.0201371 + ], + [ + 109.2870973, + -0.0199113 + ], + [ + 109.2867997, + -0.0180099 + ] + ] + }, + "id": "way/641126266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126267", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2866455, + -0.035784 + ], + [ + 109.286153, + -0.0351162 + ] + ] + }, + "id": "way/641126267" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126269", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.287153, + -0.0084107 + ], + [ + 109.2871245, + -0.0087638 + ] + ] + }, + "id": "way/641126269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126271", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2798344, + -0.0348529 + ], + [ + 109.2794493, + -0.0343224 + ], + [ + 109.2793576, + -0.0341605 + ], + [ + 109.2793012, + -0.0340651 + ], + [ + 109.2790565, + -0.0337358 + ] + ] + }, + "id": "way/641126271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641126295", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2894052, + -0.0109568 + ], + [ + 109.2896313, + -0.0109966 + ], + [ + 109.2897972, + -0.0110195 + ], + [ + 109.2899615, + -0.0110254 + ] + ] + }, + "id": "way/641126295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156782", + "highway": "tertiary", + "name": "Jalan Parit Haruna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2827252, + -0.0429113 + ], + [ + 109.2827102, + -0.0428857 + ] + ] + }, + "id": "way/641156782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156783", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2899403, + -0.0355607 + ], + [ + 109.2895998, + -0.0350635 + ] + ] + }, + "id": "way/641156783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156784", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.291909, + -0.0336564 + ], + [ + 109.2915467, + -0.0331575 + ] + ] + }, + "id": "way/641156784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156785", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2892929, + -0.0361438 + ], + [ + 109.2894768, + -0.0363797 + ] + ] + }, + "id": "way/641156785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156786", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2855308, + -0.0356732 + ], + [ + 109.285856, + -0.0353898 + ], + [ + 109.2858915, + -0.0353508 + ] + ] + }, + "id": "way/641156786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156787", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2910163, + -0.0240534 + ], + [ + 109.2909005, + -0.0241271 + ], + [ + 109.2907939, + -0.0242009 + ], + [ + 109.2906912, + -0.0242717 + ], + [ + 109.2904355, + -0.0244591 + ] + ] + }, + "id": "way/641156787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156806", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2924842, + -0.0089784 + ], + [ + 109.2924758, + -0.0091047 + ], + [ + 109.2924735, + -0.0091594 + ], + [ + 109.292465, + -0.0092372 + ], + [ + 109.2924596, + -0.0092979 + ], + [ + 109.2924738, + -0.0096306 + ] + ] + }, + "id": "way/641156806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156807", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2868866, + -0.0092335 + ], + [ + 109.2867672, + -0.0091839 + ] + ] + }, + "id": "way/641156807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156810", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2857705, + -0.0117793 + ], + [ + 109.2858907, + -0.0118132 + ] + ] + }, + "id": "way/641156810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156811", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2859586, + -0.0112934 + ], + [ + 109.2860876, + -0.0113284 + ] + ] + }, + "id": "way/641156811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641156815", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2862626, + -0.010516 + ], + [ + 109.2863998, + -0.0105545 + ] + ] + }, + "id": "way/641156815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160716", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2953074, + -0.0313349 + ], + [ + 109.2953463, + -0.0313832 + ], + [ + 109.295363, + -0.0314039 + ] + ] + }, + "id": "way/641160716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160717", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2952377, + -0.0312343 + ], + [ + 109.2953074, + -0.0313349 + ] + ] + }, + "id": "way/641160717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160720", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2870227, + -0.0070904 + ], + [ + 109.2871381, + -0.0070991 + ] + ] + }, + "id": "way/641160720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2871381, + -0.0070991 + ], + [ + 109.2872235, + -0.007107 + ] + ] + }, + "id": "way/641160721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160723", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2858234, + -0.0134686 + ], + [ + 109.285937, + -0.0134408 + ] + ] + }, + "id": "way/641160723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160724", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.285937, + -0.0134408 + ], + [ + 109.2859765, + -0.0134305 + ], + [ + 109.2859817, + -0.013431 + ], + [ + 109.2859877, + -0.0134364 + ] + ] + }, + "id": "way/641160724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160725", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2925659, + -0.0229866 + ], + [ + 109.2927447, + -0.0229324 + ], + [ + 109.2928797, + -0.0228915 + ], + [ + 109.2928781, + -0.0228202 + ], + [ + 109.292875, + -0.0225295 + ], + [ + 109.2928909, + -0.0220776 + ], + [ + 109.2928884, + -0.022061 + ], + [ + 109.2928817, + -0.0220464 + ], + [ + 109.2928738, + -0.0220338 + ], + [ + 109.2928626, + -0.0220216 + ], + [ + 109.2927559, + -0.0219925 + ], + [ + 109.2927504, + -0.0219899 + ], + [ + 109.2927466, + -0.021986 + ], + [ + 109.2927438, + -0.0219811 + ], + [ + 109.2927419, + -0.0219761 + ], + [ + 109.2927494, + -0.0216547 + ] + ] + }, + "id": "way/641160725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160727", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.286843, + -0.0055508 + ], + [ + 109.2867479, + -0.0055645 + ] + ] + }, + "id": "way/641160727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160728", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2870214, + -0.0055226 + ], + [ + 109.2869912, + -0.0055247 + ] + ] + }, + "id": "way/641160728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160729", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Jalan Ampera", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2875826, + -0.0384723 + ], + [ + 109.2874995, + -0.0383891 + ] + ] + }, + "id": "way/641160729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160730", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2859679, + -0.0400145 + ], + [ + 109.2860184, + -0.0400697 + ] + ] + }, + "id": "way/641160730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160731", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2859049, + -0.0399448 + ], + [ + 109.2859679, + -0.0400145 + ] + ] + }, + "id": "way/641160731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160732", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2857721, + -0.0402076 + ], + [ + 109.2858167, + -0.0402593 + ] + ] + }, + "id": "way/641160732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160733", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2857185, + -0.0401433 + ], + [ + 109.2857721, + -0.0402076 + ] + ] + }, + "id": "way/641160733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160734", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2851586, + -0.0408135 + ], + [ + 109.2851813, + -0.0408347 + ] + ] + }, + "id": "way/641160734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160735", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2850724, + -0.0407082 + ], + [ + 109.2851586, + -0.0408135 + ] + ] + }, + "id": "way/641160735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160737", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2842728, + -0.0414576 + ], + [ + 109.2843452, + -0.0415219 + ] + ] + }, + "id": "way/641160737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160739", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2839603, + -0.0417553 + ], + [ + 109.2840233, + -0.0418223 + ] + ] + }, + "id": "way/641160739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160741", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2836881, + -0.0420007 + ], + [ + 109.2837645, + -0.0420906 + ] + ] + }, + "id": "way/641160741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160744", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2886931, + -0.0373645 + ], + [ + 109.288735, + -0.0374041 + ] + ] + }, + "id": "way/641160744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160745", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2885809, + -0.0372298 + ], + [ + 109.288622, + -0.0372827 + ] + ] + }, + "id": "way/641160745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160746", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2881365, + -0.0379211 + ], + [ + 109.2881817, + -0.0379729 + ] + ] + }, + "id": "way/641160746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160747", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2880601, + -0.0378366 + ], + [ + 109.2881365, + -0.0379211 + ] + ] + }, + "id": "way/641160747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160748", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2892563, + -0.0368267 + ], + [ + 109.2892836, + -0.0368676 + ] + ] + }, + "id": "way/641160748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160749", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891906, + -0.0367288 + ], + [ + 109.2892563, + -0.0368267 + ] + ] + }, + "id": "way/641160749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160750", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.289837, + -0.0360797 + ], + [ + 109.2899121, + -0.0361575 + ] + ] + }, + "id": "way/641160750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160751", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2909515, + -0.0349143 + ], + [ + 109.2910355, + -0.0350106 + ] + ] + }, + "id": "way/641160751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160752", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2914477, + -0.0346099 + ], + [ + 109.2914758, + -0.0346448 + ] + ] + }, + "id": "way/641160752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160753", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2913753, + -0.0345187 + ], + [ + 109.2914477, + -0.0346099 + ] + ] + }, + "id": "way/641160753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160754", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2919748, + -0.0340761 + ], + [ + 109.2920221, + -0.0341278 + ] + ] + }, + "id": "way/641160754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641160755", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.291909, + -0.0339957 + ], + [ + 109.2919748, + -0.0340761 + ] + ] + }, + "id": "way/641160755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/641486930", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2905851, + -0.0452189 + ], + [ + 109.2911073, + -0.0446872 + ], + [ + 109.2916735, + -0.0441282 + ], + [ + 109.2921319, + -0.0436757 + ], + [ + 109.2922029, + -0.0436056 + ] + ] + }, + "id": "way/641486930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642108135", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2906622, + 0.0088439 + ], + [ + 109.291645, + 0.0112682 + ], + [ + 109.2916903, + 0.0113165 + ], + [ + 109.2917434, + 0.0113411 + ], + [ + 109.2917854, + 0.0113605 + ], + [ + 109.291842, + 0.0114249 + ], + [ + 109.2918831, + 0.0115141 + ] + ] + }, + "id": "way/642108135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642108136", + "highway": "service", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2915946, + 0.0089026 + ], + [ + 109.2919728, + 0.0097949 + ], + [ + 109.2923167, + 0.0106242 + ], + [ + 109.2925233, + 0.0111043 + ], + [ + 109.2926019, + 0.0112445 + ] + ] + }, + "id": "way/642108136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642265926", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338816, + 0.0142895 + ], + [ + 109.3359873, + 0.014347 + ], + [ + 109.3361409, + 0.0143452 + ], + [ + 109.3363102, + 0.014354 + ], + [ + 109.3375068, + 0.0143983 + ] + ] + }, + "id": "way/642265926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396207", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2923262, + 0.0113479 + ], + [ + 109.2924972, + 0.0117938 + ], + [ + 109.2927566, + 0.0124508 + ], + [ + 109.2928659, + 0.0127179 + ], + [ + 109.2929042, + 0.012833 + ], + [ + 109.2929132, + 0.0128525 + ], + [ + 109.2929303, + 0.0128679 + ], + [ + 109.2929551, + 0.0128759 + ], + [ + 109.292984, + 0.0128692 + ], + [ + 109.2934298, + 0.012719 + ], + [ + 109.2934563, + 0.0127016 + ], + [ + 109.2934781, + 0.0126734 + ], + [ + 109.2934852, + 0.012647 + ], + [ + 109.2934889, + 0.0126225 + ], + [ + 109.2931187, + 0.0116569 + ], + [ + 109.2929737, + 0.011104 + ] + ] + }, + "id": "way/642396207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396209", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959534, + 0.0097574 + ], + [ + 109.2956453, + 0.0092201 + ], + [ + 109.2952653, + 0.0084832 + ], + [ + 109.2951212, + 0.0082907 + ] + ] + }, + "id": "way/642396209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396210", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2928659, + 0.0127179 + ], + [ + 109.2931254, + 0.0126292 + ], + [ + 109.2931361, + 0.0126037 + ], + [ + 109.2931335, + 0.0125635 + ], + [ + 109.2929551, + 0.0121343 + ] + ] + }, + "id": "way/642396210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396212", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2965843, + 0.0093962 + ], + [ + 109.2964872, + 0.0092275 + ] + ] + }, + "id": "way/642396212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396215", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940047, + 0.0106815 + ], + [ + 109.2939009, + 0.0104581 + ], + [ + 109.2935653, + 0.010595 + ] + ] + }, + "id": "way/642396215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396216", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2977951, + 0.0093582 + ], + [ + 109.297548, + 0.0088883 + ], + [ + 109.2974612, + 0.0086501 + ], + [ + 109.2974358, + 0.0085724 + ], + [ + 109.2974451, + 0.0084919 + ], + [ + 109.2974639, + 0.0084222 + ], + [ + 109.2975015, + 0.0083618 + ], + [ + 109.2975095, + 0.0083256 + ], + [ + 109.2974907, + 0.0082773 + ], + [ + 109.2973351, + 0.0079581 + ], + [ + 109.2970616, + 0.0074069 + ] + ] + }, + "id": "way/642396216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396217", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968854, + 0.0092344 + ], + [ + 109.2967316, + 0.008972 + ], + [ + 109.2967048, + 0.0089505 + ], + [ + 109.296627, + 0.0089398 + ], + [ + 109.2964822, + 0.0090122 + ], + [ + 109.2964426, + 0.0090461 + ], + [ + 109.2964326, + 0.0090652 + ], + [ + 109.2964286, + 0.0090883 + ], + [ + 109.2964872, + 0.0092275 + ] + ] + }, + "id": "way/642396217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396218", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2963913, + 0.0095068 + ], + [ + 109.2960209, + 0.0087521 + ] + ] + }, + "id": "way/642396218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396219", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957785, + 0.0116836 + ], + [ + 109.2958197, + 0.0118634 + ], + [ + 109.2958747, + 0.0121309 + ], + [ + 109.2959075, + 0.012375 + ] + ] + }, + "id": "way/642396219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396220", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2956829, + 0.0105062 + ], + [ + 109.2958059, + 0.0108955 + ], + [ + 109.2958841, + 0.0111392 + ], + [ + 109.2959199, + 0.0112429 + ], + [ + 109.2960612, + 0.0115906 + ] + ] + }, + "id": "way/642396220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396221", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950976, + 0.0115859 + ], + [ + 109.2954839, + 0.0115325 + ] + ] + }, + "id": "way/642396221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396222", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2954153, + 0.0110641 + ], + [ + 109.2953905, + 0.0110742 + ] + ] + }, + "id": "way/642396222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642396223", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2953215, + 0.0108621 + ], + [ + 109.2953114, + 0.0108616 + ] + ] + }, + "id": "way/642396223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642399126", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2998917, + 0.007707 + ], + [ + 109.2996657, + 0.0072966 + ], + [ + 109.2994732, + 0.0068094 + ] + ] + }, + "id": "way/642399126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642399127", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3001533, + 0.007606 + ], + [ + 109.3000252, + 0.007257 + ], + [ + 109.2997209, + 0.0065637 + ] + ] + }, + "id": "way/642399127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642399128", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2992583, + 0.0080133 + ], + [ + 109.2990518, + 0.0075813 + ], + [ + 109.2988855, + 0.0072058 + ], + [ + 109.298902, + 0.0071922 + ], + [ + 109.2990415, + 0.007131 + ] + ] + }, + "id": "way/642399128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642399129", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991983, + 0.0080443 + ], + [ + 109.2987157, + 0.0070407 + ] + ] + }, + "id": "way/642399129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642399130", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048785, + 0.0059372 + ], + [ + 109.3050992, + 0.0058717 + ] + ] + }, + "id": "way/642399130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642399131", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050303, + 0.0063798 + ], + [ + 109.3048785, + 0.0059372 + ], + [ + 109.3046734, + 0.0053394 + ] + ] + }, + "id": "way/642399131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642399132", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010797, + 0.007332 + ], + [ + 109.3010005, + 0.0069875 + ], + [ + 109.300546, + 0.0070714 + ] + ] + }, + "id": "way/642399132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642399133", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030411, + 0.006826 + ], + [ + 109.3029286, + 0.0057948 + ] + ] + }, + "id": "way/642399133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642399134", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303462, + 0.006729 + ], + [ + 109.3034291, + 0.0062158 + ], + [ + 109.3034284, + 0.0059237 + ], + [ + 109.303437, + 0.0057823 + ], + [ + 109.3033759, + 0.0050848 + ] + ] + }, + "id": "way/642399134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408871", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2962783, + 0.0103702 + ], + [ + 109.2969756, + 0.0100332 + ] + ] + }, + "id": "way/642408871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408872", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959199, + 0.0112429 + ], + [ + 109.2962757, + 0.0111124 + ] + ] + }, + "id": "way/642408872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408874", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304898, + 0.0064093 + ], + [ + 109.305017, + 0.0068061 + ], + [ + 109.3052275, + 0.0076 + ] + ] + }, + "id": "way/642408874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408875", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048432, + 0.0064215 + ], + [ + 109.3048547, + 0.0065124 + ], + [ + 109.3048561, + 0.0065768 + ], + [ + 109.304844, + 0.0065996 + ], + [ + 109.3048145, + 0.0066184 + ], + [ + 109.3046562, + 0.0066613 + ], + [ + 109.3046261, + 0.0066821 + ], + [ + 109.3046173, + 0.0067015 + ], + [ + 109.3046227, + 0.0067699 + ], + [ + 109.3047676, + 0.0072879 + ] + ] + }, + "id": "way/642408875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408876", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008251, + 0.0053521 + ], + [ + 109.3007751, + 0.0053503 + ], + [ + 109.3007295, + 0.005357 + ], + [ + 109.3004465, + 0.0054295 + ], + [ + 109.3003131, + 0.0054838 + ] + ] + }, + "id": "way/642408876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408877", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013592, + 0.0116761 + ], + [ + 109.3013244, + 0.0116964 + ] + ] + }, + "id": "way/642408877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408878", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020076, + 0.0136337 + ], + [ + 109.3017742, + 0.0137162 + ] + ] + }, + "id": "way/642408878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408879", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020719, + 0.0136176 + ], + [ + 109.3020076, + 0.0136337 + ] + ] + }, + "id": "way/642408879" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408880", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3021512, + 0.0135978 + ], + [ + 109.3020719, + 0.0136176 + ] + ] + }, + "id": "way/642408880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408881", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014005, + 0.0121867 + ], + [ + 109.3014691, + 0.0123784 + ], + [ + 109.3014664, + 0.0123864 + ], + [ + 109.3014624, + 0.0123938 + ], + [ + 109.3013558, + 0.0124662 + ] + ] + }, + "id": "way/642408881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408882", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014148, + 0.0121799 + ], + [ + 109.3014005, + 0.0121867 + ], + [ + 109.301333, + 0.0122188 + ] + ] + }, + "id": "way/642408882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408883", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014765, + 0.0121477 + ], + [ + 109.3014148, + 0.0121799 + ] + ] + }, + "id": "way/642408883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408884", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301547, + 0.0121142 + ], + [ + 109.3014765, + 0.0121477 + ] + ] + }, + "id": "way/642408884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408885", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013357, + 0.0119063 + ], + [ + 109.3013008, + 0.0119197 + ] + ] + }, + "id": "way/642408885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408886", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013933, + 0.0118808 + ], + [ + 109.3013357, + 0.0119063 + ] + ] + }, + "id": "way/642408886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408887", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014402, + 0.0118644 + ], + [ + 109.3013933, + 0.0118808 + ] + ] + }, + "id": "way/642408887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408888", + "bicycle": "yes", + "highway": "trunk", + "name": "Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2997485, + 0.0077657 + ], + [ + 109.2997586, + 0.007761 + ] + ] + }, + "id": "way/642408888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408889", + "bicycle": "yes", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996351, + 0.0078227 + ], + [ + 109.2997485, + 0.0077657 + ] + ] + }, + "id": "way/642408889" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408890", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3007432, + 0.0103061 + ], + [ + 109.3006969, + 0.010327 + ] + ] + }, + "id": "way/642408890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408891", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3007601, + 0.0102998 + ], + [ + 109.3007432, + 0.0103061 + ] + ] + }, + "id": "way/642408891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408892", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3027941, + 0.0153731 + ], + [ + 109.3027123, + 0.015408 + ] + ] + }, + "id": "way/642408892" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408893", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028674, + 0.0153513 + ], + [ + 109.3027941, + 0.0153731 + ] + ] + }, + "id": "way/642408893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408894", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302426, + 0.0146281 + ], + [ + 109.301502, + 0.0150794 + ] + ] + }, + "id": "way/642408894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408895", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302497, + 0.0145932 + ], + [ + 109.302426, + 0.0146281 + ] + ] + }, + "id": "way/642408895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408896", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991512, + 0.0080686 + ], + [ + 109.2992134, + 0.0082967 + ], + [ + 109.2992147, + 0.0083175 + ], + [ + 109.299208, + 0.0083383 + ], + [ + 109.2990571, + 0.008406 + ] + ] + }, + "id": "way/642408896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408897", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3016192, + 0.0081246 + ], + [ + 109.3013249, + 0.0072586 + ] + ] + }, + "id": "way/642408897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408898", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004479, + 0.0095581 + ], + [ + 109.3003526, + 0.0096037 + ] + ] + }, + "id": "way/642408898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408899", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004673, + 0.0095501 + ], + [ + 109.3004479, + 0.0095581 + ] + ] + }, + "id": "way/642408899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408900", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3006027, + 0.0099577 + ], + [ + 109.3006166, + 0.0099479 + ] + ] + }, + "id": "way/642408900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408901", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300531, + 0.0099912 + ], + [ + 109.3006027, + 0.0099577 + ] + ] + }, + "id": "way/642408901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408902", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008307, + 0.0105216 + ], + [ + 109.3008552, + 0.0105106 + ] + ] + }, + "id": "way/642408902" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408903", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3007583, + 0.0105639 + ], + [ + 109.3008307, + 0.0105216 + ] + ] + }, + "id": "way/642408903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408904", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009856, + 0.0108884 + ], + [ + 109.3009011, + 0.010922 + ] + ] + }, + "id": "way/642408904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408905", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010082, + 0.0108792 + ], + [ + 109.3009856, + 0.0108884 + ] + ] + }, + "id": "way/642408905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408906", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011318, + 0.0112666 + ], + [ + 109.3010728, + 0.0112982 + ] + ] + }, + "id": "way/642408906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408907", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011737, + 0.0112449 + ], + [ + 109.3011318, + 0.0112666 + ] + ] + }, + "id": "way/642408907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408908", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999916, + 0.0076696 + ], + [ + 109.3001114, + 0.0079222 + ] + ] + }, + "id": "way/642408908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408909", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.299447, + 0.0079158 + ], + [ + 109.2995873, + 0.0081757 + ], + [ + 109.2996216, + 0.0082232 + ], + [ + 109.2996494, + 0.0082379 + ], + [ + 109.2996906, + 0.0082578 + ], + [ + 109.2997296, + 0.0082921 + ], + [ + 109.3001172, + 0.0090949 + ] + ] + }, + "id": "way/642408909" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408910", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982498, + 0.0091948 + ], + [ + 109.2982978, + 0.0091753 + ], + [ + 109.2983782, + 0.0091428 + ], + [ + 109.2988641, + 0.0088885 + ] + ] + }, + "id": "way/642408910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642408911", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019275, + 0.0130383 + ], + [ + 109.3023651, + 0.0128523 + ] + ] + }, + "id": "way/642408911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417328", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106625, + 0.0159292 + ], + [ + 109.3105392, + 0.0159338 + ] + ] + }, + "id": "way/642417328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417329", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3065104, + 0.0060902 + ], + [ + 109.3065524, + 0.0062638 + ], + [ + 109.3066625, + 0.0067189 + ], + [ + 109.3066692, + 0.0067397 + ], + [ + 109.30668, + 0.0067505 + ], + [ + 109.3068201, + 0.0067209 + ], + [ + 109.3068302, + 0.0067109 + ] + ] + }, + "id": "way/642417329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417330", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087246, + 0.0128563 + ], + [ + 109.3086783, + 0.0128695 + ] + ] + }, + "id": "way/642417330" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417331", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087246, + 0.0128563 + ], + [ + 109.3089229, + 0.0128002 + ], + [ + 109.3089623, + 0.0127813 + ] + ] + }, + "id": "way/642417331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417332", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311119, + 0.0094092 + ], + [ + 109.3109434, + 0.0094213 + ] + ] + }, + "id": "way/642417332" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417333", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111941, + 0.0093998 + ], + [ + 109.311119, + 0.0094092 + ] + ] + }, + "id": "way/642417333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417334", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112088, + 0.009401 + ], + [ + 109.3111941, + 0.0093998 + ] + ] + }, + "id": "way/642417334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417337", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109219, + 0.0111741 + ], + [ + 109.3108736, + 0.0111808 + ] + ] + }, + "id": "way/642417337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417338", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110037, + 0.0111768 + ], + [ + 109.3109219, + 0.0111741 + ] + ] + }, + "id": "way/642417338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417339", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110765, + 0.0111752 + ], + [ + 109.3110037, + 0.0111768 + ] + ] + }, + "id": "way/642417339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417340", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108857, + 0.0115389 + ], + [ + 109.3107749, + 0.0115575 + ] + ] + }, + "id": "way/642417340" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417341", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109433, + 0.0115362 + ], + [ + 109.3108857, + 0.0115389 + ] + ] + }, + "id": "way/642417341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417342", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110338, + 0.0115289 + ], + [ + 109.3109433, + 0.0115362 + ] + ] + }, + "id": "way/642417342" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417343", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066243, + 0.0108824 + ], + [ + 109.3067953, + 0.0108093 + ] + ] + }, + "id": "way/642417343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417344", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127676, + 0.0102653 + ], + [ + 109.3123002, + 0.0105089 + ], + [ + 109.3122818, + 0.0105169 + ], + [ + 109.312258, + 0.0105183 + ], + [ + 109.3120893, + 0.0105156 + ], + [ + 109.3118285, + 0.0104935 + ], + [ + 109.3117011, + 0.0104874 + ], + [ + 109.3111468, + 0.0104344 + ] + ] + }, + "id": "way/642417344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417345", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110702, + 0.0112198 + ], + [ + 109.3118164, + 0.0112867 + ] + ] + }, + "id": "way/642417345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417346", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111137, + 0.0109514 + ], + [ + 109.3111847, + 0.0109528 + ], + [ + 109.3121437, + 0.0109998 + ], + [ + 109.3124373, + 0.0109608 + ], + [ + 109.3125339, + 0.0110038 + ] + ] + }, + "id": "way/642417346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417347", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120894, + 0.0095102 + ], + [ + 109.3120323, + 0.0090337 + ] + ] + }, + "id": "way/642417347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417348", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059424, + 0.0079313 + ], + [ + 109.3063313, + 0.0078106 + ], + [ + 109.3063641, + 0.0077925 + ], + [ + 109.3063635, + 0.0077784 + ], + [ + 109.3063635, + 0.0077516 + ], + [ + 109.30635, + 0.0076711 + ], + [ + 109.3062387, + 0.00727 + ], + [ + 109.3061529, + 0.0069978 + ], + [ + 109.3060215, + 0.0065285 + ], + [ + 109.3059299, + 0.0062177 + ] + ] + }, + "id": "way/642417348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417349", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053487, + 0.0080647 + ], + [ + 109.3055132, + 0.0087976 + ], + [ + 109.3057459, + 0.0096955 + ] + ] + }, + "id": "way/642417349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417350", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057459, + 0.0096955 + ], + [ + 109.3057989, + 0.0099108 + ], + [ + 109.3060175, + 0.0106886 + ] + ] + }, + "id": "way/642417350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417351", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059219, + 0.0096198 + ], + [ + 109.3059316, + 0.0096466 + ] + ] + }, + "id": "way/642417351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642417352", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053705, + 0.0097902 + ], + [ + 109.3057459, + 0.0096955 + ], + [ + 109.3059316, + 0.0096466 + ], + [ + 109.3060061, + 0.0096375 + ], + [ + 109.3060175, + 0.0096432 + ], + [ + 109.3060235, + 0.009659 + ], + [ + 109.306047, + 0.0097726 + ] + ] + }, + "id": "way/642417352" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420391", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3663595, + -0.0078524 + ], + [ + 109.3663548, + -0.0079768 + ], + [ + 109.3663524, + -0.0080424 + ], + [ + 109.3663491, + -0.00813 + ], + [ + 109.3663457, + -0.0082196 + ] + ] + }, + "id": "way/642420391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420392", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3647174, + -0.0079739 + ], + [ + 109.3651366, + -0.0079999 + ], + [ + 109.365415, + -0.0080171 + ], + [ + 109.3656792, + -0.0080319 + ], + [ + 109.366103, + -0.0080399 + ], + [ + 109.3663524, + -0.0080424 + ], + [ + 109.3678477, + -0.008115 + ] + ] + }, + "id": "way/642420392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420393", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364735, + -0.0052907 + ], + [ + 109.3645969, + -0.0052679 + ], + [ + 109.3645124, + -0.0052571 + ] + ] + }, + "id": "way/642420393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3647771, + -0.0074151 + ], + [ + 109.3648423, + -0.007415 + ], + [ + 109.3649047, + -0.0074157 + ], + [ + 109.3649573, + -0.0074166 + ], + [ + 109.3650009, + -0.0074145 + ] + ] + }, + "id": "way/642420394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420395", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3647599, + -0.0075734 + ], + [ + 109.3648732, + -0.0075839 + ], + [ + 109.3651065, + -0.0075907 + ], + [ + 109.3654485, + -0.0076 + ], + [ + 109.3656389, + -0.0076121 + ], + [ + 109.3657462, + -0.0076269 + ], + [ + 109.3664919, + -0.0076537 + ], + [ + 109.3667816, + -0.0076644 + ], + [ + 109.3672147, + -0.0076658 + ], + [ + 109.3678021, + -0.0076765 + ], + [ + 109.3679497, + -0.0076778 + ] + ] + }, + "id": "way/642420395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420396", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3647369, + -0.0077901 + ], + [ + 109.3648476, + -0.0077944 + ], + [ + 109.3650608, + -0.0078025 + ], + [ + 109.3651975, + -0.0078078 + ], + [ + 109.3653653, + -0.0078142 + ], + [ + 109.3655463, + -0.0078212 + ], + [ + 109.3658892, + -0.0078344 + ], + [ + 109.3663595, + -0.0078524 + ], + [ + 109.3664132, + -0.0078545 + ], + [ + 109.3667987, + -0.0078693 + ], + [ + 109.3670163, + -0.0078776 + ] + ] + }, + "id": "way/642420396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420397", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650009, + -0.0074145 + ], + [ + 109.3650371, + -0.0074151 + ], + [ + 109.3651212, + -0.0074163 + ], + [ + 109.3653003, + -0.0074166 + ], + [ + 109.3655562, + -0.007414 + ], + [ + 109.3658046, + -0.007419 + ], + [ + 109.3661378, + -0.0074244 + ], + [ + 109.3665382, + -0.0074351 + ], + [ + 109.3666173, + -0.0074358 + ], + [ + 109.366744, + -0.0074451 + ], + [ + 109.3669747, + -0.0074512 + ], + [ + 109.36732, + -0.0074612 + ], + [ + 109.3674447, + -0.0074679 + ], + [ + 109.3679778, + -0.0074713 + ] + ] + }, + "id": "way/642420397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420398", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650009, + -0.0074145 + ], + [ + 109.3650153, + -0.0073801 + ], + [ + 109.3650321, + -0.0073419 + ], + [ + 109.3650428, + -0.007303 + ], + [ + 109.3650489, + -0.0072688 + ], + [ + 109.3650549, + -0.0072366 + ], + [ + 109.3650609, + -0.0072185 + ] + ] + }, + "id": "way/642420398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420399", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364676, + -0.0059384 + ], + [ + 109.3648142, + -0.0059384 + ] + ] + }, + "id": "way/642420399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420400", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646286, + -0.0059386 + ], + [ + 109.364676, + -0.0059384 + ] + ] + }, + "id": "way/642420400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420401", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648142, + -0.0059384 + ], + [ + 109.3649178, + -0.0059407 + ] + ] + }, + "id": "way/642420401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420402", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649551, + -0.0055496 + ], + [ + 109.3650985, + -0.00555 + ], + [ + 109.3653667, + -0.0055506 + ], + [ + 109.3656135, + -0.0055512 + ], + [ + 109.3658603, + -0.0055518 + ], + [ + 109.3660051, + -0.0055522 + ] + ] + }, + "id": "way/642420402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420442", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122798, + 0.0042533 + ], + [ + 109.3122094, + 0.0041822 + ], + [ + 109.3121483, + 0.0041065 + ], + [ + 109.3119894, + 0.0038302 + ] + ] + }, + "id": "way/642420442" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420443", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127952, + 0.003846 + ], + [ + 109.3127055, + 0.0036828 + ], + [ + 109.3126023, + 0.0034949 + ] + ] + }, + "id": "way/642420443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420444", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122426, + 0.0042908 + ], + [ + 109.3126881, + 0.0054449 + ], + [ + 109.3127726, + 0.0056863 + ], + [ + 109.3128584, + 0.0059491 + ], + [ + 109.3130298, + 0.0065486 + ] + ] + }, + "id": "way/642420444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420445", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103897, + 0.0052788 + ], + [ + 109.3104029, + 0.0054342 + ], + [ + 109.3104123, + 0.0054798 + ], + [ + 109.3104216, + 0.00552 + ], + [ + 109.3107435, + 0.0063542 + ] + ] + }, + "id": "way/642420445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420446", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083664, + 0.0057186 + ], + [ + 109.3084003, + 0.0058486 + ], + [ + 109.3084408, + 0.0059827 + ], + [ + 109.3084261, + 0.0061087 + ], + [ + 109.308351, + 0.0061744 + ] + ] + }, + "id": "way/642420446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420447", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101399, + 0.0053363 + ], + [ + 109.3100086, + 0.0050533 + ], + [ + 109.309676, + 0.0044176 + ] + ] + }, + "id": "way/642420447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420448", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311935, + 0.004586 + ], + [ + 109.3118734, + 0.004547 + ], + [ + 109.3118405, + 0.0045075 + ], + [ + 109.3116394, + 0.0040206 + ] + ] + }, + "id": "way/642420448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420449", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310882, + 0.0051818 + ], + [ + 109.3107837, + 0.0049406 + ], + [ + 109.3104055, + 0.0042218 + ] + ] + }, + "id": "way/642420449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420450", + "bicycle": "yes", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105423, + 0.0052437 + ], + [ + 109.3106966, + 0.0052116 + ] + ] + }, + "id": "way/642420450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642420451", + "bicycle": "yes", + "highway": "trunk", + "name": "Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2997586, + 0.007761 + ], + [ + 109.2998917, + 0.007707 + ], + [ + 109.2999916, + 0.0076696 + ], + [ + 109.3001533, + 0.007606 + ], + [ + 109.3004635, + 0.0075195 + ], + [ + 109.3010797, + 0.007332 + ], + [ + 109.301229, + 0.0072848 + ], + [ + 109.3013249, + 0.0072586 + ], + [ + 109.3013673, + 0.007247 + ], + [ + 109.3019836, + 0.0070871 + ], + [ + 109.3023463, + 0.0069932 + ], + [ + 109.302435, + 0.0069639 + ], + [ + 109.3028774, + 0.0068645 + ], + [ + 109.3030411, + 0.006826 + ], + [ + 109.303462, + 0.006729 + ], + [ + 109.3048432, + 0.0064215 + ], + [ + 109.304898, + 0.0064093 + ], + [ + 109.3050303, + 0.0063798 + ], + [ + 109.3055845, + 0.0062845 + ], + [ + 109.3059299, + 0.0062177 + ], + [ + 109.3065104, + 0.0060902 + ], + [ + 109.3070293, + 0.0059681 + ], + [ + 109.3070681, + 0.005959 + ], + [ + 109.3074823, + 0.0058616 + ], + [ + 109.3075278, + 0.0058509 + ], + [ + 109.3078882, + 0.0057945 + ], + [ + 109.3081688, + 0.00575 + ], + [ + 109.3083664, + 0.0057186 + ], + [ + 109.3090632, + 0.0055665 + ], + [ + 109.3091074, + 0.0055569 + ], + [ + 109.3095716, + 0.0054565 + ], + [ + 109.3097322, + 0.005428 + ], + [ + 109.3098554, + 0.0054017 + ], + [ + 109.3101399, + 0.0053363 + ], + [ + 109.3103897, + 0.0052788 + ], + [ + 109.3105423, + 0.0052437 + ] + ] + }, + "id": "way/642420451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444712", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087027, + 0.0059369 + ], + [ + 109.3086044, + 0.0059424 + ], + [ + 109.3085267, + 0.0059277 + ], + [ + 109.3084003, + 0.0058486 + ] + ] + }, + "id": "way/642444712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444713", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088464, + 0.0058966 + ], + [ + 109.3087027, + 0.0059369 + ] + ] + }, + "id": "way/642444713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444714", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090632, + 0.0055665 + ], + [ + 109.3090242, + 0.0057171 + ], + [ + 109.3089974, + 0.0057587 + ], + [ + 109.3089357, + 0.0058392 + ], + [ + 109.3088981, + 0.0058821 + ], + [ + 109.3088464, + 0.0058966 + ] + ] + }, + "id": "way/642444714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444716", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093889, + 0.0065296 + ], + [ + 109.3092763, + 0.0065559 + ], + [ + 109.3091811, + 0.0065781 + ] + ] + }, + "id": "way/642444716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444717", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096411, + 0.007401 + ], + [ + 109.3090698, + 0.0075853 + ], + [ + 109.309051, + 0.0075826 + ], + [ + 109.3090403, + 0.0075679 + ], + [ + 109.3087734, + 0.0067659 + ] + ] + }, + "id": "way/642444717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444718", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118112, + 0.0094953 + ], + [ + 109.3118727, + 0.0102192 + ] + ] + }, + "id": "way/642444718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444719", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3104437, + 0.0100322 + ], + [ + 109.3099791, + 0.0101548 + ] + ] + }, + "id": "way/642444719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444720", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959726, + 0.0137007 + ], + [ + 109.296104, + 0.0136424 + ] + ] + }, + "id": "way/642444720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444721", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959123, + 0.0137114 + ], + [ + 109.2959726, + 0.0137007 + ] + ] + }, + "id": "way/642444721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444722", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957738, + 0.0137266 + ], + [ + 109.2959123, + 0.0137114 + ] + ] + }, + "id": "way/642444722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444723", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2952766, + 0.0108576 + ], + [ + 109.2952454, + 0.0108556 + ], + [ + 109.2952226, + 0.0108606 + ], + [ + 109.2948951, + 0.0109732 + ] + ] + }, + "id": "way/642444723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444724", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2953114, + 0.0108616 + ], + [ + 109.2952766, + 0.0108576 + ] + ] + }, + "id": "way/642444724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444725", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2953154, + 0.0110943 + ], + [ + 109.2949748, + 0.011209 + ] + ] + }, + "id": "way/642444725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444726", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2953905, + 0.0110742 + ], + [ + 109.2953154, + 0.0110943 + ] + ] + }, + "id": "way/642444726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444727", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2939009, + 0.0104581 + ], + [ + 109.2936015, + 0.0098464 + ] + ] + }, + "id": "way/642444727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444730", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969545, + 0.0091992 + ], + [ + 109.2970374, + 0.0093515 + ], + [ + 109.2971286, + 0.0095379 + ] + ] + }, + "id": "way/642444730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444731", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2955228, + 0.0115271 + ], + [ + 109.2955542, + 0.0115227 + ] + ] + }, + "id": "way/642444731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444732", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2954839, + 0.0115325 + ], + [ + 109.2955228, + 0.0115271 + ] + ] + }, + "id": "way/642444732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444798", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999351, + -0.0119293 + ], + [ + 109.2999481, + -0.012 + ], + [ + 109.2999662, + -0.0120734 + ] + ] + }, + "id": "way/642444798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444799", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033909, + -0.0145604 + ], + [ + 109.3037846, + -0.01454 + ], + [ + 109.3040316, + -0.0145316 + ], + [ + 109.3042732, + -0.0145234 + ], + [ + 109.3045935, + -0.0145125 + ], + [ + 109.305045, + -0.0144969 + ], + [ + 109.3051006, + -0.0144967 + ] + ] + }, + "id": "way/642444799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444800", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034412, + -0.0123118 + ], + [ + 109.3034316, + -0.0121827 + ], + [ + 109.3034244, + -0.0120974 + ], + [ + 109.3034184, + -0.0120793 + ], + [ + 109.303411, + -0.0120666 + ], + [ + 109.3033619, + -0.012058 + ], + [ + 109.3032862, + -0.012058 + ], + [ + 109.3032073, + -0.012058 + ], + [ + 109.3030017, + -0.012058 + ], + [ + 109.3028816, + -0.012058 + ], + [ + 109.3026332, + -0.012058 + ] + ] + }, + "id": "way/642444800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444801", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3018933, + -0.0077457 + ], + [ + 109.3014654, + -0.00775 + ] + ] + }, + "id": "way/642444801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444802", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019246, + -0.0146287 + ], + [ + 109.3020806, + -0.0146338 + ] + ] + }, + "id": "way/642444802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011207, + -0.010365 + ], + [ + 109.3011383, + -0.0104834 + ], + [ + 109.3011513, + -0.0105678 + ], + [ + 109.3011743, + -0.010683 + ] + ] + }, + "id": "way/642444803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444804", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008241, + -0.0104178 + ], + [ + 109.3008614, + -0.0105372 + ], + [ + 109.3008847, + -0.0106435 + ], + [ + 109.3009031, + -0.0107311 + ], + [ + 109.300918, + -0.0108035 + ], + [ + 109.3009474, + -0.0109305 + ] + ] + }, + "id": "way/642444804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444805", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013475, + -0.0103307 + ], + [ + 109.3013815, + -0.0105218 + ], + [ + 109.3014259, + -0.0107175 + ], + [ + 109.3014769, + -0.0109593 + ], + [ + 109.3014967, + -0.0110333 + ] + ] + }, + "id": "way/642444805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444806", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2998524, + -0.0114853 + ], + [ + 109.2998881, + -0.0116748 + ], + [ + 109.2999351, + -0.0119293 + ], + [ + 109.3001172, + -0.0119008 + ], + [ + 109.3003322, + -0.0118623 + ] + ] + }, + "id": "way/642444806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444807", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981746, + -0.0138608 + ], + [ + 109.2985163, + -0.013869 + ], + [ + 109.2986874, + -0.0138854 + ], + [ + 109.2987712, + -0.0138969 + ], + [ + 109.298911, + -0.0139249 + ], + [ + 109.2990114, + -0.0139364 + ], + [ + 109.2990953, + -0.0139446 + ], + [ + 109.2991972, + -0.0139397 + ], + [ + 109.2993272, + -0.0139397 + ], + [ + 109.2993815, + -0.0139413 + ], + [ + 109.299424, + -0.0139421 + ], + [ + 109.2995131, + -0.0139475 + ], + [ + 109.2999208, + -0.0140119 + ] + ] + }, + "id": "way/642444807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444808", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2976963, + -0.0069036 + ], + [ + 109.2974654, + -0.0069375 + ], + [ + 109.2973384, + -0.0069535 + ], + [ + 109.2972499, + -0.00696 + ], + [ + 109.29711, + -0.0069664 + ] + ] + }, + "id": "way/642444808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444809", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2976579, + -0.0066901 + ], + [ + 109.2976724, + -0.006769 + ], + [ + 109.2976916, + -0.0068732 + ], + [ + 109.2976963, + -0.0069036 + ], + [ + 109.2977145, + -0.0069978 + ], + [ + 109.2977391, + -0.0071315 + ], + [ + 109.2977623, + -0.0072371 + ], + [ + 109.2978351, + -0.0075264 + ] + ] + }, + "id": "way/642444809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444810", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2942878, + -0.0097373 + ], + [ + 109.2941645, + -0.0097223 + ], + [ + 109.2940134, + -0.0097039 + ], + [ + 109.2939876, + -0.0097089 + ], + [ + 109.2939656, + -0.0097224 + ], + [ + 109.2939576, + -0.0097733 + ], + [ + 109.2939761, + -0.0098042 + ], + [ + 109.2940023, + -0.0098169 + ], + [ + 109.2942795, + -0.0098467 + ] + ] + }, + "id": "way/642444810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444811", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2945579, + -0.0075676 + ], + [ + 109.2944729, + -0.0078883 + ], + [ + 109.2943957, + -0.0081116 + ], + [ + 109.294333, + -0.0083034 + ], + [ + 109.2943197, + -0.0083692 + ], + [ + 109.2943197, + -0.0084255 + ], + [ + 109.2943288, + -0.0084979 + ], + [ + 109.2943405, + -0.008575 + ], + [ + 109.2943577, + -0.0088128 + ], + [ + 109.2943735, + -0.0089977 + ], + [ + 109.2943814, + -0.0091042 + ], + [ + 109.2943887, + -0.0092234 + ], + [ + 109.2943876, + -0.0093023 + ], + [ + 109.2943787, + -0.0093661 + ], + [ + 109.2943514, + -0.0094428 + ], + [ + 109.2943359, + -0.0095046 + ], + [ + 109.2942878, + -0.0097373 + ], + [ + 109.2942788, + -0.0097994 + ], + [ + 109.2942795, + -0.0098467 + ], + [ + 109.2943539, + -0.0098625 + ], + [ + 109.2944022, + -0.0098806 + ], + [ + 109.2944343, + -0.0099047 + ], + [ + 109.2944591, + -0.0099383 + ], + [ + 109.2944752, + -0.0099798 + ], + [ + 109.2944817, + -0.0100568 + ], + [ + 109.2944978, + -0.0101195 + ], + [ + 109.294509, + -0.0101726 + ], + [ + 109.2945621, + -0.0104138 + ], + [ + 109.2945869, + -0.010541 + ], + [ + 109.2945891, + -0.010567 + ], + [ + 109.2945904, + -0.0105967 + ], + [ + 109.2945879, + -0.0106346 + ], + [ + 109.2945776, + -0.0106643 + ], + [ + 109.2945563, + -0.0106885 + ], + [ + 109.2945214, + -0.0107056 + ], + [ + 109.2939924, + -0.0108761 + ] + ] + }, + "id": "way/642444811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444812", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2944431, + -0.0075447 + ], + [ + 109.2944645, + -0.0074669 + ], + [ + 109.2944638, + -0.0074267 + ], + [ + 109.2944514, + -0.0073826 + ], + [ + 109.2944443, + -0.0073367 + ], + [ + 109.2944427, + -0.0072798 + ], + [ + 109.2944942, + -0.0070427 + ], + [ + 109.294523, + -0.0069723 + ], + [ + 109.2946163, + -0.0066075 + ] + ] + }, + "id": "way/642444812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444813", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940622, + -0.0074632 + ], + [ + 109.2941681, + -0.0070033 + ] + ] + }, + "id": "way/642444813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444814", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2964335, + -0.007876 + ], + [ + 109.2964742, + -0.0075107 + ], + [ + 109.2964925, + -0.0071565 + ], + [ + 109.2965207, + -0.0060411 + ] + ] + }, + "id": "way/642444814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444815", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2951327, + -0.0076833 + ], + [ + 109.295169, + -0.0071751 + ], + [ + 109.2951789, + -0.0068538 + ], + [ + 109.2952001, + -0.0060451 + ], + [ + 109.2951947, + -0.0059505 + ] + ] + }, + "id": "way/642444815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444816", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2938629, + -0.0074116 + ], + [ + 109.2938787, + -0.007262 + ], + [ + 109.2939253, + -0.0068953 + ], + [ + 109.2939462, + -0.0067426 + ] + ] + }, + "id": "way/642444816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642444817", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2872316, + -0.0070711 + ], + [ + 109.2874447, + -0.007139 + ], + [ + 109.2875624, + -0.0071765 + ], + [ + 109.2877084, + -0.007223 + ], + [ + 109.2878575, + -0.0072705 + ], + [ + 109.2880264, + -0.0073243 + ] + ] + }, + "id": "way/642444817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642448694", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113423, + 0.0071447 + ], + [ + 109.3113376, + 0.0072634 + ] + ] + }, + "id": "way/642448694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642448695", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115172, + 0.004979 + ], + [ + 109.3114114, + 0.0063729 + ], + [ + 109.3113973, + 0.0065312 + ], + [ + 109.3113479, + 0.0070859 + ], + [ + 109.3113423, + 0.0071447 + ] + ] + }, + "id": "way/642448695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642448699", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3104632, + 0.0159182 + ], + [ + 109.3103626, + 0.015939 + ] + ] + }, + "id": "way/642448699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642448700", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105392, + 0.0159338 + ], + [ + 109.3104632, + 0.0159182 + ] + ] + }, + "id": "way/642448700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642448701", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311978, + 0.0086964 + ], + [ + 109.3120733, + 0.0086931 + ] + ] + }, + "id": "way/642448701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642448702", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112519, + 0.0087817 + ], + [ + 109.311978, + 0.0086964 + ] + ] + }, + "id": "way/642448702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642448703", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313521, + 0.0102179 + ], + [ + 109.3135451, + 0.0102286 + ], + [ + 109.313584, + 0.0102299 + ], + [ + 109.3140882, + 0.0102407 + ], + [ + 109.3144637, + 0.0102434 + ], + [ + 109.3146098, + 0.010246 + ], + [ + 109.3151719, + 0.0102166 + ], + [ + 109.3156633, + 0.0101864 + ], + [ + 109.3158424, + 0.010187 + ], + [ + 109.3162044, + 0.0101596 + ], + [ + 109.3165739, + 0.010126 + ], + [ + 109.3168489, + 0.0101193 + ], + [ + 109.3171455, + 0.0101085 + ] + ] + }, + "id": "way/642448703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642448704", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134365, + 0.0101092 + ], + [ + 109.313521, + 0.0102179 + ] + ] + }, + "id": "way/642448704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451962", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624693, + -0.0115197 + ], + [ + 109.3624686, + -0.0114748 + ], + [ + 109.3624687, + -0.0114075 + ], + [ + 109.3624705, + -0.011339 + ], + [ + 109.3624726, + -0.0112478 + ] + ] + }, + "id": "way/642451962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632961, + -0.010028 + ], + [ + 109.363292, + -0.0099631 + ], + [ + 109.3632866, + -0.0098893 + ] + ] + }, + "id": "way/642451965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451967", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634858, + -0.0075145 + ], + [ + 109.3635763, + -0.0075176 + ], + [ + 109.3636876, + -0.0075215 + ], + [ + 109.3637895, + -0.0075203 + ] + ] + }, + "id": "way/642451967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451968", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635388, + -0.0104432 + ], + [ + 109.3637426, + -0.0104341 + ], + [ + 109.3638835, + -0.0104333 + ], + [ + 109.3640671, + -0.0104356 + ], + [ + 109.364153, + -0.0104351 + ] + ] + }, + "id": "way/642451968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451970", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645399, + -0.0097057 + ], + [ + 109.3647994, + -0.0096975 + ], + [ + 109.3653868, + -0.0096801 + ], + [ + 109.3658535, + -0.0096761 + ], + [ + 109.3662612, + -0.0096667 + ], + [ + 109.3667239, + -0.0096613 + ], + [ + 109.3670766, + -0.0096573 + ], + [ + 109.3671128, + -0.0096573 + ], + [ + 109.367137, + -0.0096466 + ], + [ + 109.3671598, + -0.0096332 + ] + ] + }, + "id": "way/642451970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451972", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626738, + -0.0110769 + ], + [ + 109.3628055, + -0.0110745 + ], + [ + 109.3628179, + -0.0110795 + ], + [ + 109.3628233, + -0.0110862 + ], + [ + 109.3628223, + -0.011109 + ], + [ + 109.3628114, + -0.0114805 + ], + [ + 109.3628109, + -0.011507 + ] + ] + }, + "id": "way/642451972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451974", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635803, + -0.0106403 + ], + [ + 109.3634677, + -0.010643 + ], + [ + 109.3632907, + -0.010651 + ], + [ + 109.3631941, + -0.0106403 + ], + [ + 109.3631673, + -0.0106081 + ] + ] + }, + "id": "way/642451974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451976", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646163, + -0.0089483 + ], + [ + 109.3650877, + -0.0089546 + ], + [ + 109.3653714, + -0.0089653 + ], + [ + 109.365657, + -0.0089727 + ], + [ + 109.3660728, + -0.008978 + ], + [ + 109.3662109, + -0.0089847 + ], + [ + 109.3663725, + -0.0089934 + ], + [ + 109.366455, + -0.0089995 + ], + [ + 109.3664812, + -0.0090042 + ], + [ + 109.3664939, + -0.0090196 + ] + ] + }, + "id": "way/642451976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451978", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643872, + -0.0091958 + ], + [ + 109.3643436, + -0.0091876 + ] + ] + }, + "id": "way/642451978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451979", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645067, + -0.0092127 + ], + [ + 109.3643872, + -0.0091958 + ] + ] + }, + "id": "way/642451979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642451982", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645914, + -0.0092231 + ], + [ + 109.3645067, + -0.0092127 + ] + ] + }, + "id": "way/642451982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457586", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138204, + 0.0123208 + ], + [ + 109.3141285, + 0.0122362 + ] + ] + }, + "id": "way/642457586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457588", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149903, + 0.005992 + ], + [ + 109.3157556, + 0.0075606 + ], + [ + 109.3161399, + 0.0082818 + ], + [ + 109.3164744, + 0.0089734 + ] + ] + }, + "id": "way/642457588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457590", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160944, + 0.00679 + ], + [ + 109.3165768, + 0.0065002 + ] + ] + }, + "id": "way/642457590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160085, + 0.0054969 + ], + [ + 109.316425, + 0.0062657 + ], + [ + 109.3165768, + 0.0065002 + ], + [ + 109.3167323, + 0.0067403 + ], + [ + 109.3170121, + 0.0072835 + ], + [ + 109.3174757, + 0.0082327 + ], + [ + 109.3175991, + 0.0084714 + ] + ] + }, + "id": "way/642457592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457594", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171095, + 0.0091024 + ], + [ + 109.3177983, + 0.0087814 + ], + [ + 109.3182059, + 0.0085829 + ], + [ + 109.3187557, + 0.0083291 + ], + [ + 109.3187834, + 0.00832 + ], + [ + 109.3189918, + 0.008251 + ], + [ + 109.3193226, + 0.00817 + ], + [ + 109.319626, + 0.0081284 + ], + [ + 109.3200113, + 0.0081092 + ], + [ + 109.3204026, + 0.0080862 + ], + [ + 109.3206536, + 0.0080929 + ], + [ + 109.3207464, + 0.0080701 + ], + [ + 109.3207964, + 0.008058 + ], + [ + 109.3208511, + 0.0080318 + ], + [ + 109.3210573, + 0.0078471 + ], + [ + 109.3221188, + 0.0067592 + ] + ] + }, + "id": "way/642457594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457596", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155487, + 0.0057198 + ], + [ + 109.3160944, + 0.00679 + ], + [ + 109.3162714, + 0.0071189 + ], + [ + 109.3167981, + 0.0080845 + ], + [ + 109.3169327, + 0.0083248 + ], + [ + 109.3169716, + 0.0084208 + ], + [ + 109.317011, + 0.0085524 + ], + [ + 109.3170668, + 0.0087775 + ], + [ + 109.3171095, + 0.0091024 + ] + ] + }, + "id": "way/642457596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457599", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130298, + 0.0065486 + ], + [ + 109.3132728, + 0.0064963 + ] + ] + }, + "id": "way/642457599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457601", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156599, + 0.0101569 + ], + [ + 109.3156587, + 0.0100757 + ] + ] + }, + "id": "way/642457601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457603", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3172639, + 0.0152752 + ], + [ + 109.3171807, + 0.0148625 + ], + [ + 109.3170731, + 0.0143343 + ], + [ + 109.3169747, + 0.0138515 + ], + [ + 109.3169617, + 0.0137898 + ], + [ + 109.3166363, + 0.0122577 + ], + [ + 109.316474, + 0.0113887 + ], + [ + 109.3162957, + 0.0105545 + ], + [ + 109.3162044, + 0.0101596 + ] + ] + }, + "id": "way/642457603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457605", + "highway": "residential", + "motorcar": "no", + "tracktype": "grade2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3158424, + 0.010187 + ], + [ + 109.3160972, + 0.0115845 + ], + [ + 109.3164379, + 0.0131898 + ] + ] + }, + "id": "way/642457605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457607", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155259, + 0.013499 + ], + [ + 109.3152577, + 0.0126788 + ], + [ + 109.3149412, + 0.0117588 + ], + [ + 109.3147303, + 0.0111602 + ], + [ + 109.3146247, + 0.0108603 + ], + [ + 109.3144637, + 0.0102434 + ] + ] + }, + "id": "way/642457607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457609", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146174, + 0.0137253 + ], + [ + 109.3155259, + 0.013499 + ], + [ + 109.3157086, + 0.0134534 + ], + [ + 109.3161197, + 0.0133635 + ], + [ + 109.3161529, + 0.0133556 + ], + [ + 109.3164606, + 0.013285 + ], + [ + 109.3164379, + 0.0131898 + ] + ] + }, + "id": "way/642457609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642457611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3150679, + 0.0153573 + ], + [ + 109.3149573, + 0.0150257 + ], + [ + 109.3149586, + 0.0150123 + ], + [ + 109.3149643, + 0.0150026 + ], + [ + 109.3150377, + 0.0149694 + ], + [ + 109.3150428, + 0.0149547 + ], + [ + 109.3150418, + 0.0149429 + ], + [ + 109.3149331, + 0.0146154 + ], + [ + 109.3147481, + 0.0141205 + ], + [ + 109.3146174, + 0.0137253 + ], + [ + 109.3145276, + 0.0134357 + ], + [ + 109.3143967, + 0.0130489 + ], + [ + 109.3143759, + 0.0129762 + ], + [ + 109.3143628, + 0.0129561 + ], + [ + 109.3143427, + 0.0129477 + ], + [ + 109.3143142, + 0.0129457 + ], + [ + 109.3141747, + 0.0129859 + ], + [ + 109.3140445, + 0.0130221 + ] + ] + }, + "id": "way/642457611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477522", + "highway": "residential", + "name": "KOMPLEK FAMILY RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316286, + 0.0053777 + ], + [ + 109.3166202, + 0.0059518 + ], + [ + 109.3170507, + 0.0066573 + ], + [ + 109.317272, + 0.0070784 + ] + ] + }, + "id": "way/642477522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477523", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185122, + 0.0025817 + ], + [ + 109.3186292, + 0.0025441 + ], + [ + 109.3188277, + 0.0024596 + ] + ] + }, + "id": "way/642477523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477525", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184219, + 0.0013172 + ], + [ + 109.3182671, + 0.0009227 + ] + ] + }, + "id": "way/642477525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477526", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3183134, + 0.0013544 + ], + [ + 109.318359, + 0.0014377 + ], + [ + 109.318359, + 0.0014591 + ], + [ + 109.3183543, + 0.0014699 + ], + [ + 109.3182078, + 0.0015409 + ], + [ + 109.318196, + 0.0015587 + ], + [ + 109.3181944, + 0.0015714 + ], + [ + 109.3183476, + 0.0019687 + ] + ] + }, + "id": "way/642477526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477527", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187557, + 0.0083291 + ], + [ + 109.3188384, + 0.0098067 + ] + ] + }, + "id": "way/642477527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477528", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3152672, + 0.0025359 + ], + [ + 109.3151557, + 0.0022101 + ] + ] + }, + "id": "way/642477528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477529", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147514, + 0.0028276 + ], + [ + 109.3145308, + 0.0024086 + ] + ] + }, + "id": "way/642477529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477530", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146716, + 0.0028716 + ], + [ + 109.3144503, + 0.002532 + ] + ] + }, + "id": "way/642477530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477531", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314439, + 0.0029984 + ], + [ + 109.3142894, + 0.002701 + ], + [ + 109.3140788, + 0.0028069 + ] + ] + }, + "id": "way/642477531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477532", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127055, + 0.0036828 + ], + [ + 109.3132728, + 0.0034145 + ] + ] + }, + "id": "way/642477532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477533", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135612, + 0.0031368 + ], + [ + 109.3137011, + 0.0033813 + ] + ] + }, + "id": "way/642477533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642477534", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188913, + 0.00416 + ], + [ + 109.3188223, + 0.0039992 + ] + ] + }, + "id": "way/642477534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478031", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080091, + -0.0406154 + ], + [ + 109.308147, + -0.0404877 + ], + [ + 109.3082523, + -0.0403837 + ], + [ + 109.3087869, + -0.0398993 + ], + [ + 109.3088841, + -0.0398117 + ], + [ + 109.3088931, + -0.0398003 + ], + [ + 109.3088948, + -0.0397865 + ], + [ + 109.3088918, + -0.0397751 + ], + [ + 109.3088479, + -0.0397376 + ], + [ + 109.3087967, + -0.0396984 + ] + ] + }, + "id": "way/642478031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478032", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3076491, + -0.0402758 + ], + [ + 109.3077618, + -0.0401713 + ] + ] + }, + "id": "way/642478032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478034", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067304, + -0.03942 + ], + [ + 109.3078007, + -0.0388199 + ], + [ + 109.3078052, + -0.0388065 + ], + [ + 109.3077984, + -0.0387921 + ], + [ + 109.3077307, + -0.038742 + ] + ] + }, + "id": "way/642478034" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478035", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050616, + -0.0380473 + ], + [ + 109.304686, + -0.0384118 + ], + [ + 109.304528, + -0.0385804 + ], + [ + 109.304422, + -0.0386783 + ] + ] + }, + "id": "way/642478035" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478036", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058732, + -0.0336041 + ], + [ + 109.3038072, + -0.0345991 + ], + [ + 109.3036522, + -0.0346738 + ], + [ + 109.3033376, + -0.0348253 + ], + [ + 109.3028621, + -0.0350543 + ] + ] + }, + "id": "way/642478036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478037", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091032, + -0.0407681 + ], + [ + 109.3093001, + -0.040536 + ] + ] + }, + "id": "way/642478037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478038", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107714, + -0.0419257 + ], + [ + 109.310971, + -0.0416443 + ] + ] + }, + "id": "way/642478038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478039", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3104938, + -0.0417329 + ], + [ + 109.3107025, + -0.0414527 + ] + ] + }, + "id": "way/642478039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478040", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108768, + -0.0427015 + ], + [ + 109.3109581, + -0.0427488 + ] + ] + }, + "id": "way/642478040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478041", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310815, + -0.0428114 + ], + [ + 109.3108768, + -0.0427015 + ], + [ + 109.3107159, + -0.0425767 + ] + ] + }, + "id": "way/642478041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478042", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087178, + -0.0424528 + ], + [ + 109.3085961, + -0.0426925 + ] + ] + }, + "id": "way/642478042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478045", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092661, + -0.0437792 + ], + [ + 109.3094339, + -0.0435044 + ] + ] + }, + "id": "way/642478045" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478048", + "highway": "residential", + "name": "Gang Berkat Usaha" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042696, + -0.0465525 + ], + [ + 109.3040915, + -0.0466861 + ], + [ + 109.303997, + -0.0467485 + ], + [ + 109.3037875, + -0.046901 + ], + [ + 109.3028052, + -0.0476165 + ] + ] + }, + "id": "way/642478048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478049", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071303, + -0.0453763 + ], + [ + 109.3069016, + -0.0456322 + ] + ] + }, + "id": "way/642478049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478053", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064737, + -0.0433298 + ], + [ + 109.3068643, + -0.042921 + ] + ] + }, + "id": "way/642478053" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478054", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062736, + -0.0431321 + ], + [ + 109.3068048, + -0.0425478 + ] + ] + }, + "id": "way/642478054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478055", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092774, + -0.040889 + ], + [ + 109.3094744, + -0.0406373 + ], + [ + 109.3094906, + -0.0406198 + ], + [ + 109.3095003, + -0.040615 + ], + [ + 109.3095105, + -0.0406147 + ], + [ + 109.3095304, + -0.0406246 + ], + [ + 109.3103738, + -0.0412082 + ], + [ + 109.3103868, + -0.0412219 + ], + [ + 109.3103965, + -0.0412343 + ], + [ + 109.3104005, + -0.041248 + ], + [ + 109.3103978, + -0.0412591 + ], + [ + 109.3102098, + -0.0415359 + ] + ] + }, + "id": "way/642478055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478058", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049579, + -0.0429023 + ], + [ + 109.3050064, + -0.0429468 + ] + ] + }, + "id": "way/642478058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478059", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3054621, + -0.0423527 + ], + [ + 109.3049579, + -0.0429023 + ], + [ + 109.3047516, + -0.0431273 + ], + [ + 109.3047335, + -0.043147 + ] + ] + }, + "id": "way/642478059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478060", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077564, + -0.0408036 + ], + [ + 109.3079434, + -0.0409659 + ] + ] + }, + "id": "way/642478060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478061", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075533, + -0.0410357 + ], + [ + 109.3077663, + -0.0412069 + ] + ] + }, + "id": "way/642478061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478062", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307346, + -0.0412725 + ], + [ + 109.3075669, + -0.0414541 + ] + ] + }, + "id": "way/642478062" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478063", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071092, + -0.041543 + ], + [ + 109.3073321, + -0.0417366 + ] + ] + }, + "id": "way/642478063" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478064", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068707, + -0.0418155 + ], + [ + 109.3070849, + -0.0419983 + ] + ] + }, + "id": "way/642478064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478065", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066429, + -0.0420757 + ], + [ + 109.3068699, + -0.0422715 + ] + ] + }, + "id": "way/642478065" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478066", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061519, + -0.0408738 + ], + [ + 109.3063893, + -0.0410745 + ], + [ + 109.3064063, + -0.0410825 + ], + [ + 109.3064233, + -0.0410833 + ], + [ + 109.3064363, + -0.0410795 + ], + [ + 109.3064481, + -0.0410709 + ], + [ + 109.3073523, + -0.0399984 + ] + ] + }, + "id": "way/642478066" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478067", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066389, + -0.0393361 + ], + [ + 109.3055872, + -0.0405172 + ], + [ + 109.3050373, + -0.041063 + ], + [ + 109.3045419, + -0.0415546 + ] + ] + }, + "id": "way/642478067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642478069", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305128, + -0.0381038 + ], + [ + 109.3050284, + -0.0381927 + ] + ] + }, + "id": "way/642478069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642480610", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3596685, + -0.0073829 + ], + [ + 109.3596668, + -0.0074255 + ], + [ + 109.3596655, + -0.0074594 + ], + [ + 109.3596625, + -0.007506 + ], + [ + 109.3596616, + -0.0075407 + ], + [ + 109.3596455, + -0.0077689 + ] + ] + }, + "id": "way/642480610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642480611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584401, + -0.0073617 + ], + [ + 109.3584448, + -0.0073417 + ], + [ + 109.3584521, + -0.0073042 + ], + [ + 109.3584575, + -0.0072733 + ], + [ + 109.3584602, + -0.0072378 + ], + [ + 109.3584608, + -0.0071895 + ], + [ + 109.3584642, + -0.0071245 + ], + [ + 109.3584662, + -0.0070654 + ] + ] + }, + "id": "way/642480611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642480612", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578908, + -0.0052891 + ], + [ + 109.3579008, + -0.0052692 + ], + [ + 109.3579088, + -0.005237 + ], + [ + 109.3579236, + -0.0051941 + ], + [ + 109.3579303, + -0.0051364 + ], + [ + 109.3579236, + -0.0050734 + ], + [ + 109.3579236, + -0.005005 + ], + [ + 109.3579182, + -0.0049594 + ], + [ + 109.3579155, + -0.0049151 + ], + [ + 109.3579061, + -0.004891 + ], + [ + 109.3579015, + -0.0048525 + ] + ] + }, + "id": "way/642480612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642480613", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560461, + -0.0047524 + ], + [ + 109.3560992, + -0.0047581 + ], + [ + 109.3561468, + -0.0047654 + ], + [ + 109.356185, + -0.0047728 + ], + [ + 109.356244, + -0.0047815 + ], + [ + 109.3563593, + -0.0047943 + ], + [ + 109.3564344, + -0.0048037 + ], + [ + 109.3565565, + -0.0048198 + ], + [ + 109.3566678, + -0.0048238 + ], + [ + 109.3567858, + -0.0048332 + ], + [ + 109.3571975, + -0.0048291 + ], + [ + 109.3578573, + -0.0048572 + ] + ] + }, + "id": "way/642480613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642480614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561012, + -0.0044544 + ], + [ + 109.3562386, + -0.004463 + ], + [ + 109.3564706, + -0.0044724 + ], + [ + 109.3566356, + -0.0044738 + ], + [ + 109.3568703, + -0.0044845 + ], + [ + 109.3589423, + -0.0045113 + ] + ] + }, + "id": "way/642480614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642480615", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594363, + -0.0043599 + ], + [ + 109.359429, + -0.0044022 + ], + [ + 109.3594303, + -0.0044384 + ], + [ + 109.3594276, + -0.0044706 + ], + [ + 109.3594243, + -0.0044967 + ], + [ + 109.3594181, + -0.0045233 + ] + ] + }, + "id": "way/642480615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642480616", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361101, + -0.0045866 + ], + [ + 109.3609861, + -0.0045918 + ], + [ + 109.3608172, + -0.0045877 + ], + [ + 109.3606509, + -0.0045757 + ], + [ + 109.3605215, + -0.0045556 + ], + [ + 109.3603095, + -0.0045428 + ], + [ + 109.3601533, + -0.0045428 + ], + [ + 109.3600032, + -0.0045395 + ], + [ + 109.3599146, + -0.0045381 + ], + [ + 109.3598006, + -0.0045395 + ], + [ + 109.3596993, + -0.0045428 + ], + [ + 109.3595874, + -0.0045381 + ], + [ + 109.3595323, + -0.0045347 + ], + [ + 109.3594626, + -0.0045281 + ], + [ + 109.3594181, + -0.0045233 + ], + [ + 109.3593768, + -0.0045207 + ], + [ + 109.3593285, + -0.0045194 + ], + [ + 109.3592614, + -0.0045193 + ], + [ + 109.3591663, + -0.0045173 + ], + [ + 109.3590556, + -0.0045126 + ], + [ + 109.3589423, + -0.0045113 + ] + ] + }, + "id": "way/642480616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642485970", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362026, + 0.0252658 + ], + [ + 109.3362191, + 0.025363 + ] + ] + }, + "id": "way/642485970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642485971", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361895, + 0.025218 + ], + [ + 109.3362026, + 0.0252658 + ] + ] + }, + "id": "way/642485971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642485972", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343507, + 0.0254045 + ], + [ + 109.3343512, + 0.0254703 + ] + ] + }, + "id": "way/642485972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642485973", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343514, + 0.0253433 + ], + [ + 109.3343507, + 0.0254045 + ] + ] + }, + "id": "way/642485973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642485974", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3172324, + 0.0101061 + ], + [ + 109.3171455, + 0.0101085 + ] + ] + }, + "id": "way/642485974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642486917", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333758, + 0.0125999 + ], + [ + 109.33381, + 0.0126007 + ] + ] + }, + "id": "way/642486917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642486919", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338793, + 0.0127589 + ], + [ + 109.3343694, + 0.0127891 + ], + [ + 109.3344485, + 0.0127877 + ], + [ + 109.3346107, + 0.0127772 + ], + [ + 109.3346986, + 0.0127683 + ], + [ + 109.3352934, + 0.0127287 + ] + ] + }, + "id": "way/642486919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642486922", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336483, + 0.0155929 + ], + [ + 109.3341055, + 0.0156079 + ], + [ + 109.334823, + 0.0156158 + ] + ] + }, + "id": "way/642486922" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487030", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560058, + -0.0095943 + ], + [ + 109.3560167, + -0.0094316 + ] + ] + }, + "id": "way/642487030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487031", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573531, + -0.0085606 + ], + [ + 109.3574595, + -0.0077422 + ], + [ + 109.357446, + -0.007695 + ] + ] + }, + "id": "way/642487031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487032", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575376, + -0.0111795 + ], + [ + 109.357757, + -0.0094835 + ] + ] + }, + "id": "way/642487032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487033", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574979, + -0.0094706 + ], + [ + 109.3575083, + -0.0093841 + ], + [ + 109.3575229, + -0.0092672 + ], + [ + 109.3575266, + -0.0092375 + ] + ] + }, + "id": "way/642487033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487034", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569632, + -0.0094515 + ], + [ + 109.3569547, + -0.0095569 + ], + [ + 109.3569353, + -0.0097005 + ], + [ + 109.356921, + -0.0098067 + ], + [ + 109.3569078, + -0.0099044 + ], + [ + 109.3568882, + -0.0100499 + ], + [ + 109.3568667, + -0.0102095 + ], + [ + 109.3568359, + -0.0104378 + ] + ] + }, + "id": "way/642487034" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487035", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359028, + -0.0092603 + ], + [ + 109.359038, + -0.0092757 + ], + [ + 109.3590588, + -0.0093207 + ], + [ + 109.3590689, + -0.0093589 + ], + [ + 109.3590675, + -0.0093844 + ], + [ + 109.3590662, + -0.0094085 + ], + [ + 109.3590628, + -0.0094488 + ], + [ + 109.3590615, + -0.0094803 + ], + [ + 109.3590554, + -0.0095243 + ] + ] + }, + "id": "way/642487035" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487036", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554735, + -0.0089411 + ], + [ + 109.3555512, + -0.0089465 + ], + [ + 109.3556638, + -0.0089559 + ], + [ + 109.3558328, + -0.0089613 + ], + [ + 109.3559213, + -0.0089693 + ], + [ + 109.3560769, + -0.0089814 + ], + [ + 109.3561721, + -0.0089894 + ], + [ + 109.3562284, + -0.00898 + ], + [ + 109.3562767, + -0.0089653 + ] + ] + }, + "id": "way/642487036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487037", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358118, + -0.0093086 + ], + [ + 109.3580952, + -0.009377 + ], + [ + 109.3580805, + -0.0094266 + ], + [ + 109.3580704, + -0.0094742 + ], + [ + 109.3580637, + -0.0094906 + ] + ] + }, + "id": "way/642487037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487038", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564016, + -0.0094442 + ], + [ + 109.3563967, + -0.0095346 + ], + [ + 109.3563866, + -0.0096613 + ], + [ + 109.3563733, + -0.0097552 + ], + [ + 109.3563524, + -0.0099 + ], + [ + 109.3563344, + -0.0099651 + ], + [ + 109.356325, + -0.0100187 + ], + [ + 109.3563183, + -0.0100824 + ], + [ + 109.3563129, + -0.0101227 + ], + [ + 109.3562995, + -0.0102594 + ] + ] + }, + "id": "way/642487038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642487039", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565678, + -0.0094498 + ], + [ + 109.3565576, + -0.0095967 + ], + [ + 109.3565533, + -0.0096571 + ], + [ + 109.356541, + -0.0097491 + ], + [ + 109.3565285, + -0.0098677 + ] + ] + }, + "id": "way/642487039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642510338", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051005, + -0.0122654 + ], + [ + 109.3051233, + -0.0122707 + ] + ] + }, + "id": "way/642510338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642510339", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096484, + -0.0105243 + ], + [ + 109.3089721, + -0.0103536 + ], + [ + 109.3084782, + -0.0102301 + ], + [ + 109.3080896, + -0.0101139 + ], + [ + 109.3078179, + -0.0100368 + ], + [ + 109.3075495, + -0.009959 + ], + [ + 109.3073911, + -0.0099268 + ], + [ + 109.3071469, + -0.0098677 + ], + [ + 109.3069375, + -0.0098087 + ], + [ + 109.306755, + -0.0097523 + ], + [ + 109.3065832, + -0.0097147 + ], + [ + 109.3064268, + -0.0096703 + ] + ] + }, + "id": "way/642510339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642510341", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094746, + -0.0082881 + ], + [ + 109.3094217, + -0.0085155 + ] + ] + }, + "id": "way/642510341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642510344", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310046, + -0.0147213 + ], + [ + 109.3099865, + -0.0150364 + ] + ] + }, + "id": "way/642510344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642510346", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074828, + -0.0128415 + ], + [ + 109.3075278, + -0.0126757 + ], + [ + 109.3075936, + -0.0123644 + ] + ] + }, + "id": "way/642510346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642510348", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074806, + -0.0120428 + ], + [ + 109.3072111, + -0.0119926 + ] + ] + }, + "id": "way/642510348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642510350", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080184, + -0.0121846 + ], + [ + 109.3074806, + -0.0120428 + ] + ] + }, + "id": "way/642510350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642510351", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305086, + -0.0140757 + ], + [ + 109.3051014, + -0.0144513 + ], + [ + 109.3051006, + -0.0144967 + ], + [ + 109.305096, + -0.014768 + ], + [ + 109.3050907, + -0.0150632 + ], + [ + 109.3050799, + -0.01538 + ], + [ + 109.3050612, + -0.0157019 + ] + ] + }, + "id": "way/642510351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642510353", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059498, + -0.0081339 + ], + [ + 109.3060747, + -0.0077674 + ] + ] + }, + "id": "way/642510353" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642512431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545386, + -0.0069887 + ], + [ + 109.3546593, + -0.007081 + ], + [ + 109.3547505, + -0.0071239 + ], + [ + 109.3549329, + -0.0071776 + ], + [ + 109.355191, + -0.0072299 + ], + [ + 109.3553078, + -0.0072142 + ] + ] + }, + "id": "way/642512431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642512433", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476328, + -0.0045072 + ], + [ + 109.3475139, + -0.004769 + ], + [ + 109.3472869, + -0.0053218 + ], + [ + 109.3472759, + -0.0053416 + ], + [ + 109.3472638, + -0.0053517 + ], + [ + 109.3471939, + -0.0053242 + ] + ] + }, + "id": "way/642512433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642512435", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478573, + -0.0036352 + ], + [ + 109.3477077, + -0.0035606 + ], + [ + 109.3475197, + -0.0034628 + ], + [ + 109.347418, + -0.00341 + ], + [ + 109.3471878, + -0.003276 + ], + [ + 109.3469807, + -0.0031665 + ], + [ + 109.346423, + -0.0028612 + ], + [ + 109.34604, + -0.0026554 + ] + ] + }, + "id": "way/642512435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642512436", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491232, + -0.0049031 + ], + [ + 109.3495604, + -0.0051686 + ], + [ + 109.3498448, + -0.0053295 + ], + [ + 109.3502712, + -0.0055549 + ] + ] + }, + "id": "way/642512436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642512438", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489249, + -0.0052131 + ], + [ + 109.3489459, + -0.0051708 + ], + [ + 109.3489661, + -0.00513 + ], + [ + 109.3490032, + -0.0050553 + ], + [ + 109.349032, + -0.0050043 + ], + [ + 109.3490709, + -0.0049353 + ], + [ + 109.3490911, + -0.0049084 + ], + [ + 109.3490937, + -0.0049007 + ], + [ + 109.3490998, + -0.0048987 + ], + [ + 109.3491092, + -0.0048987 + ], + [ + 109.3491232, + -0.0049031 + ] + ] + }, + "id": "way/642512438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642512440", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348701, + -0.0056413 + ], + [ + 109.348847, + -0.0057118 + ], + [ + 109.3490039, + -0.0058016 + ], + [ + 109.3491796, + -0.0059076 + ], + [ + 109.3493526, + -0.0060068 + ], + [ + 109.3495068, + -0.0060926 + ], + [ + 109.3505415, + -0.0066881 + ], + [ + 109.3505616, + -0.0066988 + ], + [ + 109.3505837, + -0.0066941 + ], + [ + 109.3506192, + -0.0066512 + ], + [ + 109.3506682, + -0.0065875 + ], + [ + 109.3508613, + -0.0063367 + ], + [ + 109.3508761, + -0.0063005 + ] + ] + }, + "id": "way/642512440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/642533136", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217116, + 0.0239342 + ], + [ + 109.321672, + 0.0243899 + ], + [ + 109.3216658, + 0.0244609 + ], + [ + 109.3216508, + 0.0245962 + ], + [ + 109.3212732, + 0.0283569 + ] + ] + }, + "id": "way/642533136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643214912", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194352, + 0.0011907 + ], + [ + 109.3193011, + 0.0008664 + ] + ] + }, + "id": "way/643214912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643214913", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170682, + 0.0055844 + ], + [ + 109.3175107, + 0.0063327 + ], + [ + 109.3176502, + 0.0065607 + ], + [ + 109.3181652, + 0.0074002 + ] + ] + }, + "id": "way/643214913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643214914", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315068, + 0.003928 + ], + [ + 109.3153381, + 0.0038731 + ] + ] + }, + "id": "way/643214914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643214915", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195372, + 0.0041454 + ], + [ + 109.3201178, + 0.0036317 + ], + [ + 109.3202922, + 0.0034869 + ] + ] + }, + "id": "way/643214915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643214917", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176008, + 0.0016228 + ], + [ + 109.3175644, + 0.0015208 + ], + [ + 109.3175483, + 0.0015181 + ], + [ + 109.3175161, + 0.0015262 + ], + [ + 109.3174316, + 0.001561 + ] + ] + }, + "id": "way/643214917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643214918", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154977, + 0.0024366 + ], + [ + 109.3154008, + 0.002181 + ] + ] + }, + "id": "way/643214918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643220994", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258457, + 0.0039107 + ], + [ + 109.3265661, + 0.0043022 + ] + ] + }, + "id": "way/643220994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643220996", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322034, + 0.0051491 + ], + [ + 109.3222354, + 0.0053148 + ] + ] + }, + "id": "way/643220996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643220997", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220143, + 0.0032125 + ], + [ + 109.3226899, + 0.002672 + ] + ] + }, + "id": "way/643220997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221000", + "highway": "service", + "name": "Tujuh" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198881, + 0.0011986 + ], + [ + 109.3197343, + 0.0008798 + ], + [ + 109.3195948, + 0.0005633 + ], + [ + 109.3194848, + 0.0004721 + ] + ] + }, + "id": "way/643221000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221003", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243816, + 0.0042749 + ], + [ + 109.3247318, + 0.0040628 + ] + ] + }, + "id": "way/643221003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221004", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Track 006" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259235, + 0.0034855 + ], + [ + 109.3258748, + 0.0034437 + ] + ] + }, + "id": "way/643221004" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221006", + "highway": "residential", + "name": "Track 006" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268164, + 0.0040502 + ], + [ + 109.3259235, + 0.0034855 + ] + ] + }, + "id": "way/643221006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221008", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Bougenvile" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255882, + 0.0028954 + ], + [ + 109.3256526, + 0.0028472 + ] + ] + }, + "id": "way/643221008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221010", + "highway": "residential", + "name": "Bougenvile" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254777, + 0.0030191 + ], + [ + 109.3255172, + 0.0029695 + ], + [ + 109.3255882, + 0.0028954 + ] + ] + }, + "id": "way/643221010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221016", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3234818, + -0.0000388 + ], + [ + 109.3229476, + -0.0008181 + ] + ] + }, + "id": "way/643221016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221018", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199414, + 0.0020206 + ], + [ + 109.3202276, + 0.0018473 + ] + ] + }, + "id": "way/643221018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221019", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322057, + 0.0019071 + ], + [ + 109.3217432, + 0.0021189 + ] + ] + }, + "id": "way/643221019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221021", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203635, + 0.0012174 + ], + [ + 109.3204866, + 0.0015128 + ] + ] + }, + "id": "way/643221021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221022", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3218007, + 0.0012719 + ], + [ + 109.3217166, + 0.0013398 + ], + [ + 109.3212675, + 0.0017025 + ], + [ + 109.3210152, + 0.0019002 + ] + ] + }, + "id": "way/643221022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221024", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216482, + 0.0061344 + ], + [ + 109.3223011, + 0.0055495 + ] + ] + }, + "id": "way/643221024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221025", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247887, + 0.0056703 + ], + [ + 109.325332, + 0.0055012 + ] + ] + }, + "id": "way/643221025" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221026", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254795, + -0.0010951 + ], + [ + 109.3251818, + -0.0008436 + ] + ] + }, + "id": "way/643221026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221027", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246199, + -0.0003625 + ], + [ + 109.3246213, + -0.0003547 + ], + [ + 109.3248533, + -0.000057 + ] + ] + }, + "id": "way/643221027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221029", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250189, + -0.0002561 + ], + [ + 109.3249136, + -0.0004064 + ], + [ + 109.3248181, + -0.0005171 + ], + [ + 109.3248105, + -0.0005205 + ], + [ + 109.324801, + -0.0005177 + ], + [ + 109.3246239, + -0.0003701 + ], + [ + 109.3246199, + -0.0003625 + ] + ] + }, + "id": "way/643221029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221031", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249834, + -0.0004546 + ], + [ + 109.3249136, + -0.0004064 + ] + ] + }, + "id": "way/643221031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221033", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247292, + -0.0007954 + ], + [ + 109.3243611, + -0.0005016 + ] + ] + }, + "id": "way/643221033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221035", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254229, + -0.0002034 + ], + [ + 109.3256029, + 0.0000432 + ] + ] + }, + "id": "way/643221035" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221037", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250948, + 0.00004 + ], + [ + 109.3252798, + 0.000293 + ] + ] + }, + "id": "way/643221037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221038", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32454, + 0.0015039 + ], + [ + 109.3240231, + 0.001891 + ] + ] + }, + "id": "way/643221038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221040", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223059, + 0.0012846 + ], + [ + 109.3223548, + 0.0014524 + ], + [ + 109.3223843, + 0.0016308 + ] + ] + }, + "id": "way/643221040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221042", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224186, + 0.0011963 + ], + [ + 109.3227266, + 0.0015557 + ], + [ + 109.3228372, + 0.0017102 + ] + ] + }, + "id": "way/643221042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221043", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223919, + 0.0071152 + ], + [ + 109.3228349, + 0.0067646 + ], + [ + 109.3229167, + 0.0067169 + ], + [ + 109.3229985, + 0.0066774 + ], + [ + 109.3230663, + 0.0066438 + ], + [ + 109.3233928, + 0.0063407 + ], + [ + 109.3239681, + 0.0058459 + ], + [ + 109.3245949, + 0.0053802 + ] + ] + }, + "id": "way/643221043" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221044", + "highway": "residential", + "maxspeed": "20", + "name": "Merapi Indah", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221188, + 0.0067592 + ], + [ + 109.322902, + 0.0060055 + ], + [ + 109.3233853, + 0.005579 + ], + [ + 109.3237925, + 0.0052196 + ], + [ + 109.3241328, + 0.0049127 + ] + ] + }, + "id": "way/643221044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221046", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225428, + 0.0038626 + ], + [ + 109.3228778, + 0.0034627 + ] + ] + }, + "id": "way/643221046" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221047", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321534, + 0.0041789 + ], + [ + 109.3217191, + 0.0039053 + ], + [ + 109.321819, + 0.0038094 + ], + [ + 109.3218304, + 0.0038068 + ], + [ + 109.3218405, + 0.0038128 + ], + [ + 109.3220597, + 0.0040555 + ] + ] + }, + "id": "way/643221047" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643221048", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211116, + 0.0040189 + ], + [ + 109.3213811, + 0.0043371 + ] + ] + }, + "id": "way/643221048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231050", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210982, + 0.0086036 + ], + [ + 109.3211491, + 0.0091731 + ] + ] + }, + "id": "way/643231050" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231051", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224689, + 0.0072156 + ], + [ + 109.3222247, + 0.0074472 + ] + ] + }, + "id": "way/643231051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231052", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320606, + 0.0071548 + ], + [ + 109.3204531, + 0.0075451 + ], + [ + 109.3204397, + 0.0075518 + ], + [ + 109.3204142, + 0.0075544 + ], + [ + 109.3197745, + 0.0075102 + ], + [ + 109.3196028, + 0.0075088 + ], + [ + 109.3195224, + 0.007474 + ], + [ + 109.3186976, + 0.007934 + ], + [ + 109.3187834, + 0.00832 + ] + ] + }, + "id": "way/643231052" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231053", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206536, + 0.0080929 + ], + [ + 109.3206463, + 0.0084892 + ], + [ + 109.3206677, + 0.0085536 + ], + [ + 109.3207374, + 0.008575 + ], + [ + 109.3208098, + 0.0085965 + ] + ] + }, + "id": "way/643231053" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231054", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243721, + 0.0109519 + ], + [ + 109.324699, + 0.0109387 + ], + [ + 109.324813, + 0.010928 + ], + [ + 109.3249485, + 0.0109092 + ], + [ + 109.325267, + 0.0108723 + ] + ] + }, + "id": "way/643231054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231055", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243295, + 0.0113362 + ], + [ + 109.3245421, + 0.0113525 + ] + ] + }, + "id": "way/643231055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231056", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237263, + 0.0088479 + ], + [ + 109.3235727, + 0.0089242 + ], + [ + 109.3235462, + 0.008961 + ], + [ + 109.3235484, + 0.0090121 + ], + [ + 109.3235874, + 0.0092057 + ], + [ + 109.3236195, + 0.0093126 + ], + [ + 109.3236409, + 0.0094427 + ], + [ + 109.3236476, + 0.0095098 + ], + [ + 109.3236543, + 0.0095607 + ], + [ + 109.3236583, + 0.0096204 + ], + [ + 109.3236637, + 0.0097606 + ] + ] + }, + "id": "way/643231056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231057", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231079, + 0.0084522 + ], + [ + 109.323217, + 0.0090122 + ], + [ + 109.3232819, + 0.0093919 + ] + ] + }, + "id": "way/643231057" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231058", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233121, + 0.0083121 + ], + [ + 109.3231079, + 0.0084522 + ], + [ + 109.3228116, + 0.0086524 + ], + [ + 109.3228, + 0.0086729 + ], + [ + 109.3227947, + 0.0087078 + ], + [ + 109.322843, + 0.0091571 + ], + [ + 109.3229006, + 0.009428 + ] + ] + }, + "id": "way/643231058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231059", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242431, + 0.0075303 + ], + [ + 109.3242679, + 0.0075249 + ], + [ + 109.324294, + 0.0075296 + ], + [ + 109.3252653, + 0.0088562 + ] + ] + }, + "id": "way/643231059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231060", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255898, + 0.0092056 + ], + [ + 109.3258343, + 0.0093027 + ] + ] + }, + "id": "way/643231060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231061", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254572, + 0.0092059 + ], + [ + 109.3255898, + 0.0092056 + ] + ] + }, + "id": "way/643231061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231062", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237522, + 0.0110078 + ], + [ + 109.3237962, + 0.0099519 + ] + ] + }, + "id": "way/643231062" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231064", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224527, + 0.01104 + ], + [ + 109.3224744, + 0.0100432 + ] + ] + }, + "id": "way/643231064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231065", + "highway": "track", + "motorcar": "no", + "tracktype": "grade3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257044, + 0.011341 + ], + [ + 109.3257183, + 0.0113592 + ], + [ + 109.3257263, + 0.0113873 + ], + [ + 109.3257471, + 0.011624 + ], + [ + 109.3257639, + 0.0117702 + ], + [ + 109.325786, + 0.0118721 + ] + ] + }, + "id": "way/643231065" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231067", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243812, + 0.0106701 + ], + [ + 109.3254929, + 0.0105046 + ] + ] + }, + "id": "way/643231067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231068", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258462, + 0.0067375 + ], + [ + 109.3259038, + 0.0067556 + ] + ] + }, + "id": "way/643231068" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231070", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259952, + 0.0067832 + ], + [ + 109.3259038, + 0.0067556 + ] + ] + }, + "id": "way/643231070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231072", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255871, + 0.006865 + ], + [ + 109.3256647, + 0.0067556 + ], + [ + 109.3256747, + 0.0067404 + ], + [ + 109.325696, + 0.0067255 + ], + [ + 109.3258462, + 0.0067375 + ] + ] + }, + "id": "way/643231072" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231073", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3252204, + 0.0063163 + ], + [ + 109.3256178, + 0.0059868 + ], + [ + 109.3258534, + 0.0058015 + ] + ] + }, + "id": "way/643231073" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231075", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322806, + 0.007655 + ], + [ + 109.3225994, + 0.0078202 + ] + ] + }, + "id": "way/643231075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643231076", + "highway": "residential", + "name": "PONDOK MARISSA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217026, + 0.0062066 + ], + [ + 109.3213641, + 0.0065705 + ], + [ + 109.3213523, + 0.0065949 + ], + [ + 109.3213569, + 0.006621 + ], + [ + 109.3213857, + 0.006657 + ], + [ + 109.3214578, + 0.0067315 + ], + [ + 109.3214606, + 0.0067488 + ], + [ + 109.3214602, + 0.0067652 + ], + [ + 109.3208234, + 0.0075558 + ] + ] + }, + "id": "way/643231076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643235254", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488563, + -0.089166 + ], + [ + 109.3488063, + -0.0891362 + ], + [ + 109.3484857, + -0.0889457 + ], + [ + 109.3481845, + -0.0887543 + ], + [ + 109.3477679, + -0.0884911 + ], + [ + 109.3473543, + -0.0882379 + ], + [ + 109.3471812, + -0.0881403 + ], + [ + 109.3462992, + -0.0877354 + ] + ] + }, + "id": "way/643235254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643235344", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348493, + -0.0897111 + ], + [ + 109.3484508, + -0.089685 + ], + [ + 109.3471886, + -0.0889139 + ], + [ + 109.346869, + -0.0887523 + ], + [ + 109.3465827, + -0.0886087 + ], + [ + 109.3462372, + -0.0884516 + ] + ] + }, + "id": "way/643235344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643235364", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412085, + -0.0943455 + ], + [ + 109.3411316, + -0.0945317 + ], + [ + 109.3411276, + -0.0945448 + ], + [ + 109.3411296, + -0.0945592 + ], + [ + 109.3411353, + -0.0945716 + ], + [ + 109.3411441, + -0.094579 + ] + ] + }, + "id": "way/643235364" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236891", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3126801, + -0.0123642 + ], + [ + 109.3119076, + -0.0120887 + ] + ] + }, + "id": "way/643236891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236892", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3158566, + -0.0148716 + ], + [ + 109.3160489, + -0.0146261 + ], + [ + 109.3161964, + -0.0144222 + ] + ] + }, + "id": "way/643236892" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236893", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140627, + -0.0146092 + ], + [ + 109.314244, + -0.0143702 + ] + ] + }, + "id": "way/643236893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236894", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129268, + -0.0123475 + ], + [ + 109.3130113, + -0.0122148 + ] + ] + }, + "id": "way/643236894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236895", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127243, + -0.0122211 + ], + [ + 109.3129268, + -0.0123475 + ], + [ + 109.313073, + -0.0124548 + ] + ] + }, + "id": "way/643236895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236896", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131414, + -0.0121075 + ], + [ + 109.3132299, + -0.0119197 + ], + [ + 109.3132822, + -0.0117816 + ] + ] + }, + "id": "way/643236896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236897", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169329, + -0.0156278 + ], + [ + 109.316993, + -0.0160825 + ] + ] + }, + "id": "way/643236897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236898", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3104737, + -0.0148808 + ], + [ + 109.3104092, + -0.0151233 + ], + [ + 109.3103905, + -0.0152041 + ], + [ + 109.3103804, + -0.0152267 + ], + [ + 109.3103687, + -0.0152463 + ], + [ + 109.3103595, + -0.0152546 + ], + [ + 109.3103489, + -0.0152598 + ], + [ + 109.310316, + -0.0152661 + ], + [ + 109.3103011, + -0.0152727 + ], + [ + 109.3102906, + -0.0152846 + ], + [ + 109.3102828, + -0.015305 + ], + [ + 109.3102128, + -0.0155854 + ] + ] + }, + "id": "way/643236898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236900", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3100412, + -0.0108001 + ], + [ + 109.3101212, + -0.0105961 + ] + ] + }, + "id": "way/643236900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236901", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118461, + -0.0112475 + ], + [ + 109.3117701, + -0.011394 + ], + [ + 109.3117567, + -0.0114034 + ], + [ + 109.3117455, + -0.0114056 + ], + [ + 109.3117346, + -0.0114039 + ] + ] + }, + "id": "way/643236901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236903", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108066, + -0.0136859 + ], + [ + 109.3108146, + -0.0136679 + ], + [ + 109.310822, + -0.0136545 + ], + [ + 109.3108354, + -0.0136484 + ], + [ + 109.3108488, + -0.0136471 + ], + [ + 109.310889, + -0.0136618 + ], + [ + 109.3115093, + -0.0138744 + ] + ] + }, + "id": "way/643236903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236904", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124105, + -0.0150103 + ], + [ + 109.3121222, + -0.0148896 + ], + [ + 109.3119109, + -0.0147998 + ], + [ + 109.3116077, + -0.0146774 + ], + [ + 109.3114729, + -0.014619 + ], + [ + 109.3114593, + -0.0146184 + ], + [ + 109.3114476, + -0.0146224 + ], + [ + 109.3114399, + -0.0146326 + ], + [ + 109.3114197, + -0.0147008 + ] + ] + }, + "id": "way/643236904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236905", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112945, + -0.0151835 + ], + [ + 109.3112582, + -0.0153349 + ], + [ + 109.3112339, + -0.015455 + ], + [ + 109.3111863, + -0.0156387 + ], + [ + 109.3111619, + -0.0157378 + ], + [ + 109.3111099, + -0.0159438 + ] + ] + }, + "id": "way/643236905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236906", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112873, + -0.0151811 + ], + [ + 109.3112974, + -0.0151317 + ], + [ + 109.3113121, + -0.0150573 + ], + [ + 109.3113215, + -0.0149889 + ], + [ + 109.3113255, + -0.0149305 + ], + [ + 109.3113309, + -0.014901 + ], + [ + 109.3113396, + -0.0148708 + ], + [ + 109.3113571, + -0.0148259 + ], + [ + 109.3113909, + -0.0147383 + ] + ] + }, + "id": "way/643236906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643236907", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123871, + -0.0098688 + ], + [ + 109.3114724, + -0.0094503 + ] + ] + }, + "id": "way/643236907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237814", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471418, + -0.0052994 + ], + [ + 109.3471156, + -0.0052869 + ] + ] + }, + "id": "way/643237814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237815", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471939, + -0.0053242 + ], + [ + 109.3471418, + -0.0052994 + ] + ] + }, + "id": "way/643237815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237818", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448869, + -0.005403 + ], + [ + 109.3449081, + -0.0053557 + ], + [ + 109.3449364, + -0.0052873 + ], + [ + 109.3449625, + -0.0052343 + ] + ] + }, + "id": "way/643237818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237828", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465892, + -0.0065788 + ], + [ + 109.3465513, + -0.0065693 + ] + ] + }, + "id": "way/643237828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237829", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466482, + -0.0066063 + ], + [ + 109.3465892, + -0.0065788 + ] + ] + }, + "id": "way/643237829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237830", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480141, + -0.0074451 + ], + [ + 109.3479263, + -0.0074002 + ], + [ + 109.3477996, + -0.0073224 + ], + [ + 109.3476708, + -0.007242 + ], + [ + 109.34753, + -0.0071514 + ], + [ + 109.3470767, + -0.0068665 + ], + [ + 109.3469808, + -0.0068088 + ], + [ + 109.3468655, + -0.0067384 + ], + [ + 109.3467502, + -0.006666 + ], + [ + 109.3466482, + -0.0066063 + ] + ] + }, + "id": "way/643237830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237831", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442014, + -0.0061262 + ], + [ + 109.3442751, + -0.0061677 + ], + [ + 109.3445071, + -0.0062749 + ] + ] + }, + "id": "way/643237831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237835", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341723, + -0.0033581 + ], + [ + 109.3418995, + -0.0033456 + ], + [ + 109.3420656, + -0.0033338 + ], + [ + 109.342285, + -0.0033183 + ], + [ + 109.3426918, + -0.0033031 + ] + ] + }, + "id": "way/643237835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440539, + -0.0040407 + ], + [ + 109.3442014, + -0.0041078 + ] + ] + }, + "id": "way/643237836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237839", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426189, + -0.005346 + ], + [ + 109.3426987, + -0.0053483 + ] + ] + }, + "id": "way/643237839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237840", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425462, + -0.0053434 + ], + [ + 109.3426189, + -0.005346 + ] + ] + }, + "id": "way/643237840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237841", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426987, + -0.0053483 + ], + [ + 109.3427946, + -0.0053845 + ], + [ + 109.3429166, + -0.0054395 + ], + [ + 109.3430775, + -0.0055052 + ], + [ + 109.3432291, + -0.0055803 + ], + [ + 109.3434557, + -0.0056836 + ] + ] + }, + "id": "way/643237841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237842", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445876, + -0.0042969 + ], + [ + 109.3447861, + -0.0043881 + ], + [ + 109.345006, + -0.0044766 + ], + [ + 109.3452126, + -0.0045732 + ] + ] + }, + "id": "way/643237842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237843", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450141, + -0.0051188 + ], + [ + 109.3449625, + -0.0052343 + ], + [ + 109.344884, + -0.0051915 + ] + ] + }, + "id": "way/643237843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237844", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440102, + -0.0047697 + ], + [ + 109.3440968, + -0.0046322 + ], + [ + 109.3441585, + -0.0045437 + ], + [ + 109.3442282, + -0.004482 + ], + [ + 109.3442631, + -0.0044525 + ], + [ + 109.3442926, + -0.0044431 + ] + ] + }, + "id": "way/643237844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237845", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442926, + -0.0044431 + ], + [ + 109.3443221, + -0.0044505 + ], + [ + 109.3443825, + -0.0044742 + ], + [ + 109.3445481, + -0.004544 + ], + [ + 109.3446464, + -0.0045853 + ], + [ + 109.3447473, + -0.0046278 + ], + [ + 109.3448462, + -0.0046695 + ], + [ + 109.3449206, + -0.0047008 + ], + [ + 109.345065, + -0.0047616 + ], + [ + 109.3451363, + -0.0047896 + ] + ] + }, + "id": "way/643237845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237846", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453266, + -0.0042915 + ], + [ + 109.3452485, + -0.0042578 + ], + [ + 109.3451199, + -0.0041939 + ], + [ + 109.3449873, + -0.0041279 + ], + [ + 109.3448599, + -0.0040689 + ], + [ + 109.3447754, + -0.0040287 + ] + ] + }, + "id": "way/643237846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643237847", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345435, + -0.0040514 + ], + [ + 109.3453386, + -0.0040086 + ], + [ + 109.3451804, + -0.0039321 + ], + [ + 109.3450771, + -0.0038825 + ], + [ + 109.3450436, + -0.0038664 + ] + ] + }, + "id": "way/643237847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238293", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219932, + 0.0191236 + ], + [ + 109.3219618, + 0.0191711 + ], + [ + 109.321927, + 0.0191899 + ], + [ + 109.3216212, + 0.0191939 + ] + ] + }, + "id": "way/643238293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238294", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244802, + 0.0161779 + ], + [ + 109.3238448, + 0.0162649 + ] + ] + }, + "id": "way/643238294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238295", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243557, + 0.0111066 + ], + [ + 109.3240687, + 0.0111339 + ] + ] + }, + "id": "way/643238295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238296", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236629, + 0.0080275 + ], + [ + 109.323953, + 0.0077661 + ], + [ + 109.3242431, + 0.0075303 + ] + ] + }, + "id": "way/643238296" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238297", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243193, + 0.0210383 + ], + [ + 109.3245354, + 0.0210097 + ], + [ + 109.3246622, + 0.0209957 + ] + ] + }, + "id": "way/643238297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238298", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244914, + 0.0150579 + ], + [ + 109.324176, + 0.01507 + ], + [ + 109.3241519, + 0.0150754 + ], + [ + 109.3241331, + 0.0150807 + ], + [ + 109.3240679, + 0.0151134 + ], + [ + 109.3239962, + 0.0151538 + ], + [ + 109.3239832, + 0.0151632 + ], + [ + 109.3239736, + 0.0151746 + ], + [ + 109.3239641, + 0.0151961 + ] + ] + }, + "id": "way/643238298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238299", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255543, + 0.0123111 + ], + [ + 109.3254957, + 0.0120217 + ] + ] + }, + "id": "way/643238299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238300", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251876, + 0.0123562 + ], + [ + 109.3252463, + 0.0124039 + ], + [ + 109.3252864, + 0.0124294 + ], + [ + 109.3253146, + 0.0124843 + ], + [ + 109.3253267, + 0.0125822 + ] + ] + }, + "id": "way/643238300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238301", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3215363, + 0.0224264 + ], + [ + 109.3203887, + 0.0224903 + ] + ] + }, + "id": "way/643238301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238302", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222795, + 0.024002 + ], + [ + 109.3223816, + 0.0236598 + ] + ] + }, + "id": "way/643238302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238303", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225331, + 0.0243565 + ], + [ + 109.322517, + 0.0245703 + ] + ] + }, + "id": "way/643238303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238304", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323481, + 0.0241454 + ], + [ + 109.3234451, + 0.024396 + ], + [ + 109.3234351, + 0.0244168 + ], + [ + 109.3234183, + 0.0244249 + ], + [ + 109.322843, + 0.0243545 + ] + ] + }, + "id": "way/643238304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238305", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226134, + 0.0240418 + ], + [ + 109.3225331, + 0.0243565 + ], + [ + 109.3224916, + 0.0243571 + ], + [ + 109.3221268, + 0.0243585 + ], + [ + 109.3220142, + 0.0243625 + ], + [ + 109.3218136, + 0.0243773 + ], + [ + 109.321672, + 0.0243899 + ] + ] + }, + "id": "way/643238305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238306", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244528, + 0.0174144 + ], + [ + 109.3239279, + 0.0174961 + ] + ] + }, + "id": "way/643238306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238307", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243498, + 0.0202406 + ], + [ + 109.3224969, + 0.02024 + ], + [ + 109.3224943, + 0.020307 + ] + ] + }, + "id": "way/643238307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238308", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243441, + 0.0203904 + ], + [ + 109.3234464, + 0.0204036 + ] + ] + }, + "id": "way/643238308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238309", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242721, + 0.0217773 + ], + [ + 109.3236074, + 0.0217339 + ], + [ + 109.322851, + 0.0216401 + ] + ] + }, + "id": "way/643238309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643238310", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247473, + 0.0221846 + ], + [ + 109.3242434, + 0.0221236 + ] + ] + }, + "id": "way/643238310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242956", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325445, + 0.0200441 + ], + [ + 109.3335501, + 0.0200213 + ] + ] + }, + "id": "way/643242956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242957", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302896, + 0.012622 + ], + [ + 109.3303518, + 0.0128612 + ], + [ + 109.3305731, + 0.013918 + ] + ] + }, + "id": "way/643242957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242958", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301118, + 0.0126602 + ], + [ + 109.3303049, + 0.013572 + ] + ] + }, + "id": "way/643242958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242959", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338123, + 0.0114882 + ], + [ + 109.3336355, + 0.0114872 + ] + ] + }, + "id": "way/643242959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242960", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333622, + 0.0175913 + ], + [ + 109.333384, + 0.0176355 + ] + ] + }, + "id": "way/643242960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338025, + 0.0154609 + ], + [ + 109.3338635, + 0.015479 + ], + [ + 109.3339158, + 0.0155059 + ], + [ + 109.3341055, + 0.0156079 + ] + ] + }, + "id": "way/643242961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242962", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337233, + 0.0154475 + ], + [ + 109.3338025, + 0.0154609 + ] + ] + }, + "id": "way/643242962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242963", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336602, + 0.0154374 + ], + [ + 109.3337233, + 0.0154475 + ] + ] + }, + "id": "way/643242963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242964", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337056, + 0.0158753 + ], + [ + 109.3337807, + 0.0158767 + ] + ] + }, + "id": "way/643242964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242965", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336482, + 0.0158734 + ], + [ + 109.3337056, + 0.0158753 + ] + ] + }, + "id": "way/643242965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242966", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337807, + 0.0158767 + ], + [ + 109.3338393, + 0.01587 + ], + [ + 109.333897, + 0.0158646 + ] + ] + }, + "id": "way/643242966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242967", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337837, + 0.0142898 + ], + [ + 109.3338816, + 0.0142895 + ] + ] + }, + "id": "way/643242967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242968", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337013, + 0.0142858 + ], + [ + 109.3337837, + 0.0142898 + ] + ] + }, + "id": "way/643242968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242969", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338682, + 0.0111714 + ], + [ + 109.33395, + 0.0111674 + ] + ] + }, + "id": "way/643242969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242970", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338263, + 0.0111724 + ], + [ + 109.3338682, + 0.0111714 + ] + ] + }, + "id": "way/643242970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242971", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33395, + 0.0111674 + ], + [ + 109.3340439, + 0.0111895 + ], + [ + 109.3341042, + 0.0112183 + ], + [ + 109.3341648, + 0.0112869 + ] + ] + }, + "id": "way/643242971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242972", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339158, + 0.0115704 + ], + [ + 109.3341103, + 0.0116133 + ], + [ + 109.3343899, + 0.0116113 + ], + [ + 109.3344153, + 0.0116475 + ], + [ + 109.3348113, + 0.0116555 + ] + ] + }, + "id": "way/643242972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242973", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338457, + 0.0115563 + ], + [ + 109.3339158, + 0.0115704 + ] + ] + }, + "id": "way/643242973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242974", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338521, + 0.0117742 + ], + [ + 109.333903, + 0.0117695 + ] + ] + }, + "id": "way/643242974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242975", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337995, + 0.0117776 + ], + [ + 109.3338521, + 0.0117742 + ] + ] + }, + "id": "way/643242975" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242976", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339004, + 0.011962 + ], + [ + 109.3341109, + 0.0119975 + ] + ] + }, + "id": "way/643242976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242977", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338481, + 0.0119546 + ], + [ + 109.3339004, + 0.011962 + ] + ] + }, + "id": "way/643242977" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242978", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338975, + 0.0124256 + ], + [ + 109.3342059, + 0.0124597 + ], + [ + 109.334443, + 0.0124614 + ], + [ + 109.3345387, + 0.0124468 + ], + [ + 109.33465, + 0.0123969 + ], + [ + 109.3349411, + 0.0124092 + ], + [ + 109.3351181, + 0.0124481 + ], + [ + 109.3353647, + 0.0124506 + ] + ] + }, + "id": "way/643242978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242979", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333824, + 0.0124187 + ], + [ + 109.3338975, + 0.0124256 + ] + ] + }, + "id": "way/643242979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242980", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333777, + 0.0124178 + ], + [ + 109.333824, + 0.0124187 + ] + ] + }, + "id": "way/643242980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242981", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338794, + 0.0126001 + ], + [ + 109.3349089, + 0.0126198 + ] + ] + }, + "id": "way/643242981" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242982", + "bridge": "yes", + "highway": "service", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33381, + 0.0126007 + ], + [ + 109.3338794, + 0.0126001 + ] + ] + }, + "id": "way/643242982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242983", + "bridge": "yes", + "highway": "service", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337891, + 0.0127478 + ], + [ + 109.3338793, + 0.0127589 + ] + ] + }, + "id": "way/643242983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242984", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337411, + 0.012743 + ], + [ + 109.3337891, + 0.0127478 + ] + ] + }, + "id": "way/643242984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242985", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338675, + 0.0133004 + ], + [ + 109.3349243, + 0.0133172 + ] + ] + }, + "id": "way/643242985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242986", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333787, + 0.0132964 + ], + [ + 109.3338675, + 0.0133004 + ] + ] + }, + "id": "way/643242986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242987", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338095, + 0.0115512 + ], + [ + 109.3338457, + 0.0115563 + ] + ] + }, + "id": "way/643242987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242988", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337921, + 0.0119442 + ], + [ + 109.3338481, + 0.0119546 + ] + ] + }, + "id": "way/643242988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242989", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333903, + 0.0117695 + ], + [ + 109.334068, + 0.0117595 + ], + [ + 109.3343348, + 0.0117601 + ], + [ + 109.3343617, + 0.0117715 + ], + [ + 109.3343972, + 0.0117923 + ], + [ + 109.3344455, + 0.0118386 + ] + ] + }, + "id": "way/643242989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242990", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346107, + 0.0127772 + ], + [ + 109.3346152, + 0.0128129 + ] + ] + }, + "id": "way/643242990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242991", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337174, + 0.0132956 + ], + [ + 109.333787, + 0.0132964 + ] + ] + }, + "id": "way/643242991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242992", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323594, + 0.0138 + ], + [ + 109.3337085, + 0.0138806 + ] + ] + }, + "id": "way/643242992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242993", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336893, + 0.0145405 + ], + [ + 109.3326384, + 0.0145188 + ] + ] + }, + "id": "way/643242993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242994", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336477, + 0.0159358 + ], + [ + 109.3334977, + 0.0158914 + ], + [ + 109.3334826, + 0.0158854 + ], + [ + 109.3334736, + 0.0158733 + ], + [ + 109.3334618, + 0.0157714 + ] + ] + }, + "id": "way/643242994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242995", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336341, + 0.0166284 + ], + [ + 109.3328798, + 0.0165761 + ], + [ + 109.3328503, + 0.0165761 + ], + [ + 109.3325606, + 0.0165613 + ] + ] + }, + "id": "way/643242995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242996", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336288, + 0.0170506 + ], + [ + 109.3340418, + 0.0171051 + ], + [ + 109.3340777, + 0.0171165 + ], + [ + 109.3341002, + 0.017142 + ], + [ + 109.3341377, + 0.0171949 + ], + [ + 109.334182, + 0.0172292 + ], + [ + 109.3342906, + 0.0172587 + ], + [ + 109.3351328, + 0.0173271 + ], + [ + 109.3354131, + 0.0173606 + ], + [ + 109.3356774, + 0.0173794 + ], + [ + 109.3360461, + 0.0174048 + ], + [ + 109.3367958, + 0.0174692 + ], + [ + 109.337461, + 0.0175363 + ], + [ + 109.3376756, + 0.0175577 + ] + ] + }, + "id": "way/643242996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242997", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335302, + 0.0206156 + ], + [ + 109.3332808, + 0.0205913 + ] + ] + }, + "id": "way/643242997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242998", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334869, + 0.0216415 + ], + [ + 109.3336657, + 0.0216535 + ] + ] + }, + "id": "way/643242998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643242999", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335127, + 0.0211707 + ], + [ + 109.3339567, + 0.0212109 + ] + ] + }, + "id": "way/643242999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643243000", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338321, + 0.0109459 + ], + [ + 109.3334902, + 0.0109772 + ], + [ + 109.3334276, + 0.0109724 + ], + [ + 109.3333513, + 0.0109506 + ], + [ + 109.333268, + 0.0109454 + ], + [ + 109.3332069, + 0.0109617 + ], + [ + 109.333137, + 0.0109892 + ], + [ + 109.3331024, + 0.0110024 + ], + [ + 109.3330737, + 0.0110034 + ], + [ + 109.3329708, + 0.0109978 + ] + ] + }, + "id": "way/643243000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246026", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301021, + 0.0083063 + ], + [ + 109.3301117, + 0.0081673 + ], + [ + 109.3300983, + 0.0080439 + ], + [ + 109.3300259, + 0.0076738 + ] + ] + }, + "id": "way/643246026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246027", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282437, + 0.0078388 + ], + [ + 109.3288484, + 0.008229 + ], + [ + 109.3289644, + 0.0082666 + ], + [ + 109.3291441, + 0.0082967 + ], + [ + 109.3293688, + 0.0083256 + ], + [ + 109.3294626, + 0.0083524 + ], + [ + 109.3295994, + 0.0083538 + ], + [ + 109.3299749, + 0.0083249 + ], + [ + 109.3301021, + 0.0083063 + ], + [ + 109.3305141, + 0.0082424 + ], + [ + 109.3309057, + 0.0081754 + ] + ] + }, + "id": "way/643246027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246028", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279992, + 0.0058864 + ], + [ + 109.3282744, + 0.0060967 + ] + ] + }, + "id": "way/643246028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246029", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266846, + 0.0103725 + ], + [ + 109.3268368, + 0.0104928 + ] + ] + }, + "id": "way/643246029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246580", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099363, + -0.0379254 + ], + [ + 109.3102553, + -0.0375992 + ] + ] + }, + "id": "way/643246580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246581", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083844, + -0.038603 + ], + [ + 109.3085059, + -0.0387204 + ] + ] + }, + "id": "way/643246581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246582", + "highway": "residential", + "name": "Gang Sepakat 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084828, + -0.0378972 + ], + [ + 109.3082553, + -0.0376879 + ] + ] + }, + "id": "way/643246582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246583", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31019, + -0.0423616 + ], + [ + 109.3102855, + -0.0422522 + ] + ] + }, + "id": "way/643246583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052679, + -0.0382227 + ], + [ + 109.3046388, + -0.0388437 + ], + [ + 109.3039575, + -0.0394781 + ] + ] + }, + "id": "way/643246584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059296, + -0.0406616 + ], + [ + 109.3059866, + -0.0407226 + ], + [ + 109.3060631, + -0.0407977 + ], + [ + 109.3061519, + -0.0408738 + ] + ] + }, + "id": "way/643246587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246589", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042257, + -0.0425814 + ], + [ + 109.3045034, + -0.0423172 + ], + [ + 109.3048957, + -0.0418678 + ] + ] + }, + "id": "way/643246589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643246591", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073807, + -0.0439645 + ], + [ + 109.3075155, + -0.0437663 + ] + ] + }, + "id": "way/643246591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643247131", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025197, + -0.0470232 + ], + [ + 109.3020759, + -0.047333 + ], + [ + 109.301681, + -0.0475978 + ], + [ + 109.3010366, + -0.0480598 + ] + ] + }, + "id": "way/643247131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643247134", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302235, + -0.0547734 + ], + [ + 109.3024762, + -0.0550358 + ], + [ + 109.3028672, + -0.0554499 + ] + ] + }, + "id": "way/643247134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643247136", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040194, + -0.0566307 + ], + [ + 109.3039964, + -0.0566412 + ], + [ + 109.30398, + -0.0566436 + ], + [ + 109.3039609, + -0.0566345 + ], + [ + 109.3035646, + -0.0562486 + ] + ] + }, + "id": "way/643247136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643247141", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005305, + -0.0501951 + ], + [ + 109.3004693, + -0.0502538 + ], + [ + 109.3001046, + -0.0505637 + ], + [ + 109.2999356, + -0.0507038 + ], + [ + 109.2998103, + -0.0508031 + ], + [ + 109.2995809, + -0.0510068 + ], + [ + 109.2994266, + -0.0511222 + ], + [ + 109.2993545, + -0.0511816 + ], + [ + 109.2992453, + -0.051267 + ] + ] + }, + "id": "way/643247141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250773", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3306499, + 0.0041745 + ], + [ + 109.3307464, + 0.0042345 + ], + [ + 109.3306585, + 0.0043534 + ] + ] + }, + "id": "way/643250773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250776", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307889, + 0.0039599 + ], + [ + 109.331307, + 0.004281 + ] + ] + }, + "id": "way/643250776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250778", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291017, + 0.0041633 + ], + [ + 109.3295166, + 0.0044515 + ] + ] + }, + "id": "way/643250778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250781", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32954, + -0.0008443 + ], + [ + 109.3293461, + -0.0007854 + ], + [ + 109.3293273, + -0.0007744 + ], + [ + 109.3293215, + -0.0007602 + ], + [ + 109.3294048, + -0.0005316 + ] + ] + }, + "id": "way/643250781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250787", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3298078, + -0.0002928 + ], + [ + 109.329909, + -0.000373 + ], + [ + 109.329917, + -0.0003746 + ], + [ + 109.3299232, + -0.0003688 + ], + [ + 109.3300876, + -0.0000439 + ] + ] + }, + "id": "way/643250787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250792", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315478, + -0.000746 + ], + [ + 109.3313513, + -0.0011253 + ] + ] + }, + "id": "way/643250792" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250797", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319503, + -0.0010626 + ], + [ + 109.3321303, + -0.0008656 + ], + [ + 109.3321945, + -0.0007832 + ], + [ + 109.3322428, + -0.0006813 + ], + [ + 109.3322836, + -0.0005968 + ], + [ + 109.3325981, + -0.0000955 + ] + ] + }, + "id": "way/643250797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250799", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317914, + -0.0009373 + ], + [ + 109.3324309, + 0.0001343 + ] + ] + }, + "id": "way/643250799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250802", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3298429, + -0.0002269 + ], + [ + 109.3293409, + 0.0000646 + ] + ] + }, + "id": "way/643250802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250804", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300709, + 0.0001628 + ], + [ + 109.3295863, + 0.0004831 + ] + ] + }, + "id": "way/643250804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250807", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293176, + 0.0011427 + ], + [ + 109.3305316, + 0.0019849 + ] + ] + }, + "id": "way/643250807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250809", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.327504, + 0.0018408 + ], + [ + 109.3282803, + 0.0022062 + ] + ] + }, + "id": "way/643250809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643250811", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305316, + 0.0019849 + ], + [ + 109.3316047, + 0.002714 + ] + ] + }, + "id": "way/643250811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252943", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Suka Pinang", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3232795, + -0.014063 + ], + [ + 109.323306, + -0.0140997 + ] + ] + }, + "id": "way/643252943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252944", + "highway": "residential", + "lanes": "1", + "name": "Gang Suka Pinang", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323306, + -0.0140997 + ], + [ + 109.3233561, + -0.0141495 + ] + ] + }, + "id": "way/643252944" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252945", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319033, + -0.0098667 + ], + [ + 109.3188719, + -0.0100596 + ], + [ + 109.3187023, + -0.0102849 + ], + [ + 109.3186828, + -0.0103211 + ], + [ + 109.3186761, + -0.0103419 + ], + [ + 109.3186795, + -0.0103594 + ], + [ + 109.3187124, + -0.0103895 + ] + ] + }, + "id": "way/643252945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252946", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3234811, + -0.0110805 + ], + [ + 109.3238729, + -0.0107127 + ], + [ + 109.3240271, + -0.010592 + ], + [ + 109.324066, + -0.0105411 + ], + [ + 109.3240875, + -0.0104928 + ], + [ + 109.3240929, + -0.0104231 + ], + [ + 109.3241331, + -0.0103426 + ], + [ + 109.3244442, + -0.0100489 + ] + ] + }, + "id": "way/643252946" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252948", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188259, + -0.0096983 + ], + [ + 109.3186989, + -0.0098722 + ], + [ + 109.318571, + -0.0100475 + ], + [ + 109.3183642, + -0.0103308 + ], + [ + 109.3182458, + -0.0104931 + ], + [ + 109.3181936, + -0.010455 + ] + ] + }, + "id": "way/643252948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252949", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323988, + -0.0144784 + ], + [ + 109.3238497, + -0.014353 + ], + [ + 109.3237609, + -0.0142629 + ], + [ + 109.3237165, + -0.0142242 + ] + ] + }, + "id": "way/643252949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252950", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236953, + -0.0155227 + ], + [ + 109.3235875, + -0.0154488 + ], + [ + 109.3234466, + -0.0153549 + ], + [ + 109.3232724, + -0.0152672 + ] + ] + }, + "id": "way/643252950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252951", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190885, + -0.0117259 + ], + [ + 109.3189833, + -0.0118822 + ] + ] + }, + "id": "way/643252951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252952", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193017, + -0.0118801 + ], + [ + 109.3191496, + -0.0120914 + ] + ] + }, + "id": "way/643252952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252953", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319228, + -0.0118259 + ], + [ + 109.3193373, + -0.0116488 + ] + ] + }, + "id": "way/643252953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252954", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195694, + -0.0120574 + ], + [ + 109.3193017, + -0.0118801 + ], + [ + 109.319228, + -0.0118259 + ], + [ + 109.3190885, + -0.0117259 + ], + [ + 109.3193045, + -0.0114282 + ], + [ + 109.3193822, + -0.0113196 + ], + [ + 109.3194077, + -0.01129 + ], + [ + 109.3194506, + -0.0112479 + ], + [ + 109.3194761, + -0.0112354 + ], + [ + 109.3194979, + -0.0112358 + ], + [ + 109.3195244, + -0.0112488 + ], + [ + 109.3195381, + -0.0112505 + ], + [ + 109.3195603, + -0.0112462 + ], + [ + 109.3195707, + -0.0112364 + ], + [ + 109.3198496, + -0.0108603 + ] + ] + }, + "id": "way/643252954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252955", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240238, + -0.0114816 + ], + [ + 109.3240997, + -0.0113683 + ], + [ + 109.3241331, + -0.0113285 + ], + [ + 109.3242282, + -0.0112281 + ], + [ + 109.3244884, + -0.0110004 + ], + [ + 109.32464, + -0.0108683 + ], + [ + 109.3247772, + -0.0107173 + ] + ] + }, + "id": "way/643252955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252956", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3245827, + -0.0117585 + ], + [ + 109.3242664, + -0.0121387 + ] + ] + }, + "id": "way/643252956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252957", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255171, + -0.0123397 + ], + [ + 109.3256489, + -0.0121758 + ], + [ + 109.3257469, + -0.0120479 + ], + [ + 109.3255936, + -0.0119171 + ], + [ + 109.3255882, + -0.0118875 + ], + [ + 109.3255882, + -0.011855 + ], + [ + 109.3256218, + -0.0118078 + ], + [ + 109.325907, + -0.0114748 + ], + [ + 109.3262313, + -0.0111355 + ], + [ + 109.3262594, + -0.0111184 + ], + [ + 109.3262896, + -0.0111204 + ], + [ + 109.326563, + -0.0113185 + ] + ] + }, + "id": "way/643252957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252958", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249744, + -0.0149469 + ], + [ + 109.3247654, + -0.0148112 + ], + [ + 109.3247534, + -0.014791 + ], + [ + 109.3247534, + -0.0147729 + ], + [ + 109.3247587, + -0.0147568 + ], + [ + 109.3249036, + -0.0145349 + ], + [ + 109.3249163, + -0.0145171 + ], + [ + 109.3249321, + -0.0145081 + ], + [ + 109.3249465, + -0.0145107 + ], + [ + 109.3250068, + -0.0145454 + ], + [ + 109.3250152, + -0.0145456 + ], + [ + 109.3250246, + -0.0145433 + ], + [ + 109.3251618, + -0.0143464 + ], + [ + 109.3252555, + -0.0142144 + ], + [ + 109.3255734, + -0.0137758 + ], + [ + 109.3256393, + -0.013678 + ], + [ + 109.3256896, + -0.0136032 + ] + ] + }, + "id": "way/643252958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252959", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248458, + -0.0119081 + ], + [ + 109.3250202, + -0.0116891 + ], + [ + 109.3252096, + -0.0114768 + ], + [ + 109.325387, + -0.0113088 + ], + [ + 109.3256101, + -0.0111051 + ] + ] + }, + "id": "way/643252959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242226, + -0.0115739 + ], + [ + 109.324341, + -0.0114749 + ], + [ + 109.3245151, + -0.0113065 + ], + [ + 109.3247064, + -0.0111362 + ], + [ + 109.3248021, + -0.0110501 + ], + [ + 109.3249915, + -0.0108837 + ] + ] + }, + "id": "way/643252961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252963", + "highway": "residential", + "name": "Gang Nangka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244535, + -0.0116874 + ], + [ + 109.3245032, + -0.0115992 + ], + [ + 109.324651, + -0.0114442 + ], + [ + 109.3248461, + -0.0112759 + ], + [ + 109.3249437, + -0.0111822 + ] + ] + }, + "id": "way/643252963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216715, + -0.0096598 + ], + [ + 109.3214953, + -0.0098535 + ], + [ + 109.3213394, + -0.0100276 + ], + [ + 109.3211758, + -0.0102332 + ], + [ + 109.3210375, + -0.0103927 + ], + [ + 109.3208843, + -0.0102547 + ] + ] + }, + "id": "way/643252965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643252971", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179304, + -0.0089439 + ], + [ + 109.3177312, + -0.0092308 + ] + ] + }, + "id": "way/643252971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643253200", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439345, + -0.0970369 + ], + [ + 109.3438441, + -0.096972 + ] + ] + }, + "id": "way/643253200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643253201", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442202, + -0.096707 + ], + [ + 109.3441156, + -0.0966292 + ] + ] + }, + "id": "way/643253201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643253202", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441156, + -0.0966292 + ], + [ + 109.3434584, + -0.0962644 + ], + [ + 109.3428391, + -0.0959377 + ], + [ + 109.3423346, + -0.0956422 + ], + [ + 109.3418652, + -0.0953914 + ], + [ + 109.3409371, + -0.0949166 + ] + ] + }, + "id": "way/643253202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643253204", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473999, + -0.091765 + ], + [ + 109.3472785, + -0.0917005 + ] + ] + }, + "id": "way/643253204" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643253207", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Griya Pesona" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481382, + -0.0904695 + ], + [ + 109.3480035, + -0.0904481 + ] + ] + }, + "id": "way/643253207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643253208", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Vila Gading Mansion" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483976, + -0.0900943 + ], + [ + 109.3483191, + -0.0900394 + ] + ] + }, + "id": "way/643253208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643253209", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489408, + -0.089221 + ], + [ + 109.3488563, + -0.089166 + ] + ] + }, + "id": "way/643253209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643253211", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Vila Permata Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491956, + -0.0888334 + ], + [ + 109.3490864, + -0.0887608 + ] + ] + }, + "id": "way/643253211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643253213", + "highway": "residential", + "name": "Dinas Perhubungan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423061, + -0.0882528 + ], + [ + 109.3448527, + -0.0898148 + ] + ] + }, + "id": "way/643253213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257539", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323268, + -0.0035725 + ], + [ + 109.3324095, + -0.0036105 + ], + [ + 109.3324939, + -0.0036492 + ], + [ + 109.332579, + -0.0036883 + ], + [ + 109.3326512, + -0.0037215 + ], + [ + 109.3327407, + -0.0037625 + ], + [ + 109.3328089, + -0.0037938 + ], + [ + 109.3328977, + -0.0038346 + ], + [ + 109.3329746, + -0.0038699 + ], + [ + 109.333136, + -0.003944 + ], + [ + 109.3331802, + -0.0039643 + ] + ] + }, + "id": "way/643257539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257540", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336568, + -0.0041505 + ], + [ + 109.3335094, + -0.0040906 + ], + [ + 109.3332714, + -0.0039938 + ] + ] + }, + "id": "way/643257540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257541", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367609, + -0.0061972 + ], + [ + 109.3368684, + -0.0062283 + ], + [ + 109.3369393, + -0.0062415 + ] + ] + }, + "id": "way/643257541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.336238, + -0.0040731 + ], + [ + 109.3363224, + -0.0039656 + ], + [ + 109.3363774, + -0.0038932 + ], + [ + 109.3364136, + -0.0038328 + ], + [ + 109.3364182, + -0.0038108 + ], + [ + 109.3364176, + -0.0037872 + ], + [ + 109.3364203, + -0.003731 + ], + [ + 109.3364176, + -0.00368 + ], + [ + 109.3364096, + -0.0036398 + ], + [ + 109.3364143, + -0.0036083 + ], + [ + 109.3364344, + -0.0035848 + ], + [ + 109.3365893, + -0.0035003 + ], + [ + 109.3367019, + -0.0034131 + ], + [ + 109.3367422, + -0.0033702 + ], + [ + 109.3367609, + -0.0033514 + ], + [ + 109.3367918, + -0.0033152 + ], + [ + 109.3368427, + -0.0032562 + ], + [ + 109.3368964, + -0.0032106 + ], + [ + 109.3369688, + -0.0031529 + ], + [ + 109.3370815, + -0.0030966 + ] + ] + }, + "id": "way/643257542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257546", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354867, + -0.0034734 + ], + [ + 109.3355888, + -0.0033447 + ] + ] + }, + "id": "way/643257546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257550", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364588, + -0.0042271 + ], + [ + 109.3364069, + -0.0042808 + ], + [ + 109.3363586, + -0.00438 + ], + [ + 109.3362781, + -0.0044471 + ], + [ + 109.3361762, + -0.0045598 + ], + [ + 109.3359938, + -0.0046577 + ] + ] + }, + "id": "way/643257550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257551", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343925, + -0.002251 + ], + [ + 109.334524, + -0.0022732 + ], + [ + 109.3347372, + -0.0022946 + ], + [ + 109.3349236, + -0.0023201 + ], + [ + 109.334992, + -0.0023268 + ], + [ + 109.3351234, + -0.002347 + ] + ] + }, + "id": "way/643257551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257552", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334292, + -0.0022457 + ], + [ + 109.3343925, + -0.002251 + ] + ] + }, + "id": "way/643257552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257553", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342567, + -0.0022438 + ], + [ + 109.3342717, + -0.0022446 + ], + [ + 109.334292, + -0.0022457 + ] + ] + }, + "id": "way/643257553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257554", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342846, + -0.0013679 + ], + [ + 109.3343885, + -0.0013773 + ] + ] + }, + "id": "way/643257554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257555", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342482, + -0.0013625 + ], + [ + 109.3342846, + -0.0013679 + ] + ] + }, + "id": "way/643257555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257556", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343885, + -0.0013773 + ], + [ + 109.3345092, + -0.0013854 + ], + [ + 109.334579, + -0.0013854 + ], + [ + 109.3346246, + -0.0013961 + ], + [ + 109.3346634, + -0.0014041 + ], + [ + 109.3346956, + -0.0014149 + ], + [ + 109.3347546, + -0.0014122 + ], + [ + 109.3347922, + -0.0013961 + ], + [ + 109.3348096, + -0.0013854 + ], + [ + 109.3348338, + -0.0013733 + ], + [ + 109.3348639, + -0.0013659 + ], + [ + 109.3349089, + -0.0013666 + ], + [ + 109.3350027, + -0.0013719 + ] + ] + }, + "id": "way/643257556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257557", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343926, + -0.0016322 + ], + [ + 109.3344542, + -0.0016241 + ], + [ + 109.3346809, + -0.0016066 + ] + ] + }, + "id": "way/643257557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257558", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369253, + -0.0059511 + ], + [ + 109.3368629, + -0.0059733 + ], + [ + 109.3365705, + -0.0060806 + ], + [ + 109.3362084, + -0.0062093 + ], + [ + 109.3359563, + -0.0062978 + ], + [ + 109.3358919, + -0.0063287 + ] + ] + }, + "id": "way/643257558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257559", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369743, + -0.0060284 + ], + [ + 109.3369253, + -0.0059511 + ], + [ + 109.3369138, + -0.0059089 + ] + ] + }, + "id": "way/643257559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257560", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376943, + -0.0053108 + ], + [ + 109.3377111, + -0.0053192 + ], + [ + 109.3377393, + -0.0053302 + ], + [ + 109.3377808, + -0.0053517 + ], + [ + 109.3377892, + -0.0053567 + ], + [ + 109.337801, + -0.0053583 + ], + [ + 109.3378627, + -0.0053456 + ], + [ + 109.3379116, + -0.0053363 + ], + [ + 109.3379954, + -0.0053141 + ], + [ + 109.3380524, + -0.0052987 + ], + [ + 109.3381081, + -0.005284 + ], + [ + 109.3382013, + -0.0052578 + ], + [ + 109.3382385, + -0.0052424 + ], + [ + 109.3383139, + -0.0052156 + ] + ] + }, + "id": "way/643257560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257567", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350128, + -0.0031657 + ], + [ + 109.3350483, + -0.0031301 + ], + [ + 109.3350939, + -0.0030631 + ] + ] + }, + "id": "way/643257567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257568", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352306, + -0.0032984 + ], + [ + 109.3352938, + -0.0032294 + ], + [ + 109.3353192, + -0.0031878 + ], + [ + 109.3353675, + -0.0031114 + ] + ] + }, + "id": "way/643257568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257569", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348718, + -0.0030998 + ], + [ + 109.3349384, + -0.0030215 + ], + [ + 109.3350027, + -0.0029357 + ], + [ + 109.3350832, + -0.0028123 + ], + [ + 109.3351798, + -0.0026661 + ], + [ + 109.3352455, + -0.0025333 + ], + [ + 109.3352562, + -0.0024556 + ], + [ + 109.3352415, + -0.0023858 + ], + [ + 109.3352012, + -0.002363 + ], + [ + 109.3351234, + -0.002347 + ] + ] + }, + "id": "way/643257569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257570", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370607, + -0.0044551 + ], + [ + 109.3370506, + -0.0044203 + ], + [ + 109.3370332, + -0.0043653 + ], + [ + 109.3370104, + -0.0043398 + ] + ] + }, + "id": "way/643257570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257571", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.336494, + -0.0042545 + ], + [ + 109.3365205, + -0.0042347 + ], + [ + 109.3365735, + -0.0041951 + ], + [ + 109.3366845, + -0.0041122 + ], + [ + 109.3367254, + -0.0040747 + ], + [ + 109.3368193, + -0.0039956 + ], + [ + 109.3368702, + -0.0039486 + ], + [ + 109.3369467, + -0.0038936 + ], + [ + 109.336995, + -0.003848 + ], + [ + 109.3370245, + -0.0038105 + ], + [ + 109.3370835, + -0.0037488 + ], + [ + 109.3371116, + -0.0037126 + ], + [ + 109.3371519, + -0.0036777 + ], + [ + 109.3371961, + -0.0036509 + ], + [ + 109.3372323, + -0.0036227 + ], + [ + 109.3374576, + -0.003431 + ], + [ + 109.3376152, + -0.0032928 + ], + [ + 109.3378211, + -0.0031084 + ] + ] + }, + "id": "way/643257571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257572", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367393, + -0.0045116 + ], + [ + 109.3368159, + -0.0044391 + ], + [ + 109.336895, + -0.0043774 + ] + ] + }, + "id": "way/643257572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257573", + "highway": "residential", + "name": "KOMPLEK PURI KIBARAYA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350504, + -0.0040233 + ], + [ + 109.3350159, + -0.0040129 + ], + [ + 109.3349705, + -0.0039985 + ], + [ + 109.3349377, + -0.0039891 + ], + [ + 109.3348619, + -0.0039683 + ], + [ + 109.3348023, + -0.0039556 + ], + [ + 109.3347459, + -0.0039435 + ], + [ + 109.3347211, + -0.0039368 + ], + [ + 109.3346715, + -0.0039254 + ] + ] + }, + "id": "way/643257573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257574", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342464, + -0.0043948 + ], + [ + 109.3342544, + -0.0043251 + ], + [ + 109.3342651, + -0.0042473 + ], + [ + 109.3342946, + -0.0040877 + ], + [ + 109.3343148, + -0.0040193 + ], + [ + 109.3343295, + -0.0039482 + ], + [ + 109.3343577, + -0.0038919 + ], + [ + 109.3343805, + -0.0038637 + ], + [ + 109.3344535, + -0.0038658 + ], + [ + 109.3344865, + -0.0038731 + ], + [ + 109.3345414, + -0.0038905 + ], + [ + 109.3346071, + -0.0039053 + ], + [ + 109.3346715, + -0.0039254 + ] + ] + }, + "id": "way/643257574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257575", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358294, + -0.0037486 + ], + [ + 109.3357404, + -0.0039174 + ], + [ + 109.3356666, + -0.0040515 + ], + [ + 109.3356089, + -0.0041185 + ], + [ + 109.3355727, + -0.0041373 + ], + [ + 109.3355338, + -0.0041413 + ], + [ + 109.3354641, + -0.0041299 + ], + [ + 109.3353776, + -0.0041132 + ], + [ + 109.3352482, + -0.0040844 + ], + [ + 109.3351563, + -0.0040549 + ], + [ + 109.3350839, + -0.0040327 + ], + [ + 109.3350504, + -0.0040233 + ] + ] + }, + "id": "way/643257575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257576", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323976, + -0.0033607 + ], + [ + 109.3325016, + -0.003401 + ], + [ + 109.3327162, + -0.0034842 + ], + [ + 109.3331788, + -0.0037068 + ] + ] + }, + "id": "way/643257576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257577", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326813, + -0.0025494 + ], + [ + 109.332739, + -0.0025803 + ], + [ + 109.3327819, + -0.0026125 + ], + [ + 109.3328509, + -0.0026634 + ], + [ + 109.3328831, + -0.0026822 + ], + [ + 109.3329743, + -0.0027553 + ], + [ + 109.3330327, + -0.0027962 + ], + [ + 109.3330903, + -0.0028311 + ], + [ + 109.3331715, + -0.0028807 + ], + [ + 109.3332379, + -0.0029196 + ] + ] + }, + "id": "way/643257577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257578", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339686, + -0.0032834 + ], + [ + 109.3339044, + -0.0032549 + ], + [ + 109.3338494, + -0.0032294 + ], + [ + 109.3337917, + -0.0032052 + ], + [ + 109.3337542, + -0.0031878 + ], + [ + 109.3336965, + -0.0031596 + ], + [ + 109.3336093, + -0.0031181 + ], + [ + 109.3335249, + -0.0030617 + ], + [ + 109.3333867, + -0.002992 + ], + [ + 109.3332379, + -0.0029196 + ] + ] + }, + "id": "way/643257578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643257579", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333996, + -0.0022242 + ], + [ + 109.33338, + -0.0022466 + ], + [ + 109.3333489, + -0.0022821 + ], + [ + 109.3332922, + -0.002347 + ], + [ + 109.3332439, + -0.0024022 + ], + [ + 109.3330356, + -0.0026632 + ] + ] + }, + "id": "way/643257579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258795", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326811, + 0.0056602 + ], + [ + 109.3323499, + 0.0056878 + ] + ] + }, + "id": "way/643258795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258796", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341648, + 0.0112869 + ], + [ + 109.3344204, + 0.0112727 + ] + ] + }, + "id": "way/643258796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258798", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341648, + 0.0112869 + ], + [ + 109.3342237, + 0.0114347 + ] + ] + }, + "id": "way/643258798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258799", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339341, + 0.0096717 + ], + [ + 109.3340351, + 0.009668 + ] + ] + }, + "id": "way/643258799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258800", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338964, + 0.009664 + ], + [ + 109.3339341, + 0.0096717 + ] + ] + }, + "id": "way/643258800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258801", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340033, + 0.0099373 + ], + [ + 109.3342034, + 0.0099504 + ] + ] + }, + "id": "way/643258801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258803", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339294, + 0.0099347 + ], + [ + 109.3340033, + 0.0099373 + ] + ] + }, + "id": "way/643258803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258805", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340033, + 0.0105077 + ], + [ + 109.3340315, + 0.0105203 + ], + [ + 109.3340566, + 0.0105354 + ], + [ + 109.3341305, + 0.0105957 + ] + ] + }, + "id": "way/643258805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258806", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339154, + 0.010504 + ], + [ + 109.3340033, + 0.0105077 + ] + ] + }, + "id": "way/643258806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258807", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340566, + 0.0066567 + ], + [ + 109.334138, + 0.0066585 + ] + ] + }, + "id": "way/643258807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258808", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339774, + 0.0066511 + ], + [ + 109.3340566, + 0.0066567 + ] + ] + }, + "id": "way/643258808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258809", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33405, + 0.0068222 + ], + [ + 109.3341398, + 0.0068222 + ] + ] + }, + "id": "way/643258809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258810", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339737, + 0.0068082 + ], + [ + 109.33405, + 0.0068222 + ] + ] + }, + "id": "way/643258810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258811", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340482, + 0.0070644 + ], + [ + 109.3341305, + 0.00707 + ] + ] + }, + "id": "way/643258811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258812", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339687, + 0.0070681 + ], + [ + 109.3340482, + 0.0070644 + ] + ] + }, + "id": "way/643258812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258813", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334123, + 0.0073001 + ], + [ + 109.3342782, + 0.0073075 + ] + ] + }, + "id": "way/643258813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258814", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340388, + 0.0073001 + ], + [ + 109.334123, + 0.0073001 + ] + ] + }, + "id": "way/643258814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258815", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341267, + 0.0074422 + ], + [ + 109.3349497, + 0.0074235 + ] + ] + }, + "id": "way/643258815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258816", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340163, + 0.0074517 + ], + [ + 109.3341267, + 0.0074422 + ] + ] + }, + "id": "way/643258816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258817", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340154, + 0.0079771 + ], + [ + 109.3341249, + 0.0079771 + ] + ] + }, + "id": "way/643258817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258818", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339499, + 0.0079714 + ], + [ + 109.3340154, + 0.0079771 + ] + ] + }, + "id": "way/643258818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258819", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333991, + 0.0084445 + ], + [ + 109.3340734, + 0.0084419 + ] + ] + }, + "id": "way/643258819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258820", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339402, + 0.0084392 + ], + [ + 109.333991, + 0.0084445 + ] + ] + }, + "id": "way/643258820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258821", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339846, + 0.0087253 + ], + [ + 109.3340706, + 0.0087253 + ] + ] + }, + "id": "way/643258821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258822", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339344, + 0.0087166 + ], + [ + 109.3339846, + 0.0087253 + ] + ] + }, + "id": "way/643258822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258823", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334051, + 0.0089058 + ], + [ + 109.3339818, + 0.0089048 + ] + ] + }, + "id": "way/643258823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258824", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341454, + 0.0089048 + ], + [ + 109.334051, + 0.0089058 + ] + ] + }, + "id": "way/643258824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258825", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340341, + 0.0091648 + ], + [ + 109.3344466, + 0.0091686 + ] + ] + }, + "id": "way/643258825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258826", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339612, + 0.0091639 + ], + [ + 109.3340341, + 0.0091648 + ] + ] + }, + "id": "way/643258826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258827", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337315, + 0.0130086 + ], + [ + 109.3335002, + 0.013029 + ] + ] + }, + "id": "way/643258827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258828", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337671, + 0.0125072 + ], + [ + 109.3335226, + 0.0124791 + ] + ] + }, + "id": "way/643258828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258829", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334361, + 0.0085075 + ], + [ + 109.334409, + 0.0084609 + ], + [ + 109.3344727, + 0.0083886 + ] + ] + }, + "id": "way/643258829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258830", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340734, + 0.0084419 + ], + [ + 109.3343116, + 0.0084934 + ], + [ + 109.334361, + 0.0085075 + ], + [ + 109.3344129, + 0.0085308 + ], + [ + 109.3344408, + 0.0085381 + ], + [ + 109.3347047, + 0.0085252 + ], + [ + 109.334744, + 0.0085233 + ] + ] + }, + "id": "way/643258830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258831", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343336, + 0.0062591 + ], + [ + 109.3342786, + 0.0061188 + ], + [ + 109.3342577, + 0.0060675 + ], + [ + 109.3342202, + 0.0059291 + ], + [ + 109.3342128, + 0.0056223 + ], + [ + 109.3342276, + 0.0055709 + ], + [ + 109.3342638, + 0.0055093 + ], + [ + 109.3343228, + 0.0054958 + ], + [ + 109.334532, + 0.0054932 + ], + [ + 109.3345536, + 0.0054947 + ], + [ + 109.3348593, + 0.005516 + ], + [ + 109.3350617, + 0.0055179 + ], + [ + 109.3351369, + 0.0055186 + ] + ] + }, + "id": "way/643258831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258832", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346211, + 0.0062425 + ], + [ + 109.3345622, + 0.0057604 + ] + ] + }, + "id": "way/643258832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258833", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359448, + 0.0061742 + ], + [ + 109.3359073, + 0.0058655 + ], + [ + 109.3358774, + 0.0057159 + ], + [ + 109.3358589, + 0.0055634 + ] + ] + }, + "id": "way/643258833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258834", + "highway": "tertiary", + "name": "Budi Utomo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341548, + 0.0062695 + ], + [ + 109.3343336, + 0.0062591 + ], + [ + 109.3346211, + 0.0062425 + ], + [ + 109.3355345, + 0.0061895 + ], + [ + 109.3359448, + 0.0061742 + ], + [ + 109.3363051, + 0.0061608 + ], + [ + 109.3364339, + 0.006156 + ], + [ + 109.3366128, + 0.0061493 + ], + [ + 109.3377587, + 0.0060886 + ], + [ + 109.3379009, + 0.0060712 + ], + [ + 109.33809, + 0.0060242 + ], + [ + 109.3392132, + 0.0057024 + ], + [ + 109.3396168, + 0.0055914 + ], + [ + 109.3414709, + 0.0050466 + ], + [ + 109.342057, + 0.0049017 + ], + [ + 109.3423587, + 0.0048441 + ], + [ + 109.3427409, + 0.0047837 + ], + [ + 109.3432434, + 0.0047146 + ], + [ + 109.3432815, + 0.0047089 + ], + [ + 109.3434625, + 0.0046898 + ], + [ + 109.3435977, + 0.0046723 + ], + [ + 109.344123, + 0.0046044 + ], + [ + 109.3441769, + 0.0045979 + ], + [ + 109.3450805, + 0.004489 + ], + [ + 109.3454198, + 0.0044427 + ], + [ + 109.345483, + 0.0044362 + ], + [ + 109.3458926, + 0.0044007 + ], + [ + 109.3465274, + 0.0043296 + ], + [ + 109.3466914, + 0.0043112 + ], + [ + 109.3471827, + 0.0042311 + ], + [ + 109.3472725, + 0.0042164 + ], + [ + 109.3473279, + 0.0042014 + ], + [ + 109.3475386, + 0.0041445 + ], + [ + 109.3475702, + 0.004136 + ], + [ + 109.3478988, + 0.0040354 + ], + [ + 109.3480396, + 0.0039988 + ], + [ + 109.348869, + 0.00379 + ], + [ + 109.3492179, + 0.0036921 + ], + [ + 109.3493587, + 0.0036563 + ], + [ + 109.3497041, + 0.0035685 + ], + [ + 109.3499111, + 0.0035201 + ], + [ + 109.3505421, + 0.0033528 + ], + [ + 109.351206, + 0.0031731 + ], + [ + 109.3515962, + 0.0030939 + ], + [ + 109.3519288, + 0.0030041 + ], + [ + 109.3521324, + 0.0029292 + ], + [ + 109.352186, + 0.0029092 + ] + ] + }, + "id": "way/643258834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258835", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Budi Utomo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340519, + 0.0062695 + ], + [ + 109.3341548, + 0.0062695 + ] + ] + }, + "id": "way/643258835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339737, + 0.0068082 + ], + [ + 109.333926, + 0.0068009 + ], + [ + 109.3337654, + 0.0067895 + ], + [ + 109.3335064, + 0.0067628 + ], + [ + 109.3334102, + 0.0067612 + ], + [ + 109.3333021, + 0.0067627 + ], + [ + 109.3330275, + 0.0067721 + ], + [ + 109.332413, + 0.006779 + ] + ] + }, + "id": "way/643258836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258837", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332066, + 0.0062465 + ], + [ + 109.3331354, + 0.0063237 + ], + [ + 109.3331192, + 0.0063347 + ], + [ + 109.3330709, + 0.0063468 + ], + [ + 109.333009, + 0.0063397 + ], + [ + 109.3329475, + 0.006332 + ], + [ + 109.3328953, + 0.0063369 + ], + [ + 109.3328469, + 0.0063588 + ], + [ + 109.3328212, + 0.0063742 + ], + [ + 109.3327702, + 0.0064033 + ] + ] + }, + "id": "way/643258837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258838", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334138, + 0.0066585 + ], + [ + 109.334252, + 0.0066634 + ], + [ + 109.3343449, + 0.0066814 + ], + [ + 109.3343849, + 0.0067143 + ], + [ + 109.3344409, + 0.0067928 + ] + ] + }, + "id": "way/643258838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341398, + 0.0068222 + ], + [ + 109.3344409, + 0.0067928 + ], + [ + 109.3348132, + 0.0068025 + ] + ] + }, + "id": "way/643258839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258841", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347238, + 0.0070878 + ], + [ + 109.3347608, + 0.0071972 + ] + ] + }, + "id": "way/643258841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258842", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341305, + 0.00707 + ], + [ + 109.3343811, + 0.0070363 + ], + [ + 109.3344926, + 0.0070387 + ], + [ + 109.3345893, + 0.0070535 + ], + [ + 109.3347238, + 0.0070878 + ], + [ + 109.3348237, + 0.0070891 + ], + [ + 109.3349209, + 0.0070924 + ], + [ + 109.3350188, + 0.0070965 + ], + [ + 109.3352918, + 0.0070938 + ], + [ + 109.3355894, + 0.0070887 + ] + ] + }, + "id": "way/643258842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258843", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339639, + 0.0073019 + ], + [ + 109.3340388, + 0.0073001 + ] + ] + }, + "id": "way/643258843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258844", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310593, + 0.0074852 + ], + [ + 109.333963, + 0.0074581 + ], + [ + 109.3340163, + 0.0074517 + ] + ] + }, + "id": "way/643258844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258845", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341249, + 0.0079771 + ], + [ + 109.3342873, + 0.0080218 + ], + [ + 109.3343961, + 0.0080276 + ], + [ + 109.3344355, + 0.0080272 + ], + [ + 109.3345045, + 0.0080164 + ], + [ + 109.334826, + 0.0079874 + ], + [ + 109.3355127, + 0.0079697 + ] + ] + }, + "id": "way/643258845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258846", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339402, + 0.0084392 + ], + [ + 109.3338144, + 0.0084597 + ], + [ + 109.3337826, + 0.0084634 + ], + [ + 109.3336797, + 0.0084597 + ] + ] + }, + "id": "way/643258846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258847", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340706, + 0.0087253 + ], + [ + 109.3341641, + 0.0087384 + ], + [ + 109.3342598, + 0.0087735 + ], + [ + 109.3343508, + 0.008814 + ], + [ + 109.3344167, + 0.0088251 + ], + [ + 109.3347318, + 0.0088178 + ], + [ + 109.3351185, + 0.0088052 + ] + ] + }, + "id": "way/643258847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258848", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339265, + 0.0090197 + ], + [ + 109.3335263, + 0.0090432 + ] + ] + }, + "id": "way/643258848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258849", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339818, + 0.0089048 + ], + [ + 109.3339319, + 0.0089048 + ], + [ + 109.3337003, + 0.0089048 + ] + ] + }, + "id": "way/643258849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258850", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339199, + 0.009161 + ], + [ + 109.3339612, + 0.0091639 + ] + ] + }, + "id": "way/643258850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258851", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339176, + 0.0092096 + ], + [ + 109.3337363, + 0.0092106 + ], + [ + 109.3337323, + 0.0092118 + ], + [ + 109.3337302, + 0.0092135 + ], + [ + 109.3337152, + 0.0092527 + ], + [ + 109.3337111, + 0.0092556 + ], + [ + 109.3337073, + 0.009256 + ], + [ + 109.3334366, + 0.0092434 + ] + ] + }, + "id": "way/643258851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258852", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340351, + 0.009668 + ], + [ + 109.3340832, + 0.0096841 + ], + [ + 109.3341156, + 0.0097136 + ], + [ + 109.3341525, + 0.0097331 + ], + [ + 109.334271, + 0.0097518 + ] + ] + }, + "id": "way/643258852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258853", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338838, + 0.0099335 + ], + [ + 109.3339294, + 0.0099347 + ] + ] + }, + "id": "way/643258853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258854", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338807, + 0.0099993 + ], + [ + 109.3334534, + 0.010014 + ] + ] + }, + "id": "way/643258854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258855", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338686, + 0.0102594 + ], + [ + 109.3335843, + 0.0102683 + ] + ] + }, + "id": "way/643258855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258856", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338573, + 0.0104997 + ], + [ + 109.3339154, + 0.010504 + ] + ] + }, + "id": "way/643258856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643258857", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333858, + 0.0104593 + ], + [ + 109.333587, + 0.0104476 + ] + ] + }, + "id": "way/643258857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261006", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326157, + -0.0149823 + ], + [ + 109.3263904, + -0.015159 + ] + ] + }, + "id": "way/643261006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261007", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257595, + -0.014776 + ], + [ + 109.3261045, + -0.0150234 + ], + [ + 109.3261119, + -0.0150272 + ], + [ + 109.3261188, + -0.0150282 + ], + [ + 109.3261253, + -0.0150272 + ], + [ + 109.3261313, + -0.0150234 + ], + [ + 109.326157, + -0.0149823 + ], + [ + 109.3262032, + -0.0149023 + ] + ] + }, + "id": "way/643261007" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261008", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3289146, + -0.0156734 + ], + [ + 109.3286775, + -0.0154603 + ], + [ + 109.3286757, + -0.0154595 + ], + [ + 109.3286739, + -0.0154592 + ], + [ + 109.3286712, + -0.0154594 + ], + [ + 109.3286689, + -0.0154599 + ], + [ + 109.3286662, + -0.0154613 + ], + [ + 109.3286643, + -0.0154631 + ], + [ + 109.3284784, + -0.0157189 + ] + ] + }, + "id": "way/643261008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261009", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264957, + -0.0156749 + ], + [ + 109.3264767, + -0.015707 + ], + [ + 109.3264143, + -0.0158156 + ], + [ + 109.3263178, + -0.0159625 + ], + [ + 109.3262359, + -0.0160899 + ], + [ + 109.3261387, + -0.0162482 + ], + [ + 109.3256734, + -0.0170065 + ], + [ + 109.3256026, + -0.0171337 + ] + ] + }, + "id": "way/643261009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261010", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263919, + -0.0155216 + ], + [ + 109.3260147, + -0.0152551 + ] + ] + }, + "id": "way/643261010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261011", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255381, + -0.015088 + ], + [ + 109.325674, + -0.0151759 + ], + [ + 109.3259101, + -0.0153396 + ] + ] + }, + "id": "way/643261011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261012", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292239, + -0.0146301 + ], + [ + 109.3287358, + -0.0142989 + ], + [ + 109.3287143, + -0.014274 + ], + [ + 109.3287035, + -0.0142492 + ], + [ + 109.3287022, + -0.0142211 + ], + [ + 109.3287089, + -0.0141942 + ], + [ + 109.3287961, + -0.0141071 + ] + ] + }, + "id": "way/643261012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261013", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293594, + -0.0144196 + ], + [ + 109.3294828, + -0.0145135 + ], + [ + 109.3297242, + -0.0141595 + ], + [ + 109.3299401, + -0.0138429 + ] + ] + }, + "id": "way/643261013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261014", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291602, + -0.014887 + ], + [ + 109.3292803, + -0.0147333 + ], + [ + 109.329287, + -0.0147025 + ], + [ + 109.3292803, + -0.014677 + ], + [ + 109.3292239, + -0.0146301 + ], + [ + 109.3293594, + -0.0144196 + ], + [ + 109.3289275, + -0.0141165 + ], + [ + 109.3289141, + -0.014087 + ], + [ + 109.3289195, + -0.0140521 + ], + [ + 109.3290791, + -0.0138697 + ], + [ + 109.3291254, + -0.0138375 + ], + [ + 109.3291328, + -0.0137905 + ], + [ + 109.3291837, + -0.0137288 + ], + [ + 109.329232, + -0.0137329 + ], + [ + 109.3295968, + -0.0140681 + ], + [ + 109.3297242, + -0.0141595 + ] + ] + }, + "id": "way/643261014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261015", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304791, + -0.0157762 + ], + [ + 109.3307501, + -0.0154495 + ] + ] + }, + "id": "way/643261015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261016", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312798, + -0.0160633 + ], + [ + 109.3325894, + -0.0171561 + ], + [ + 109.3326035, + -0.0171596 + ], + [ + 109.3326175, + -0.0171602 + ], + [ + 109.3326342, + -0.0171585 + ], + [ + 109.3326489, + -0.0171551 + ], + [ + 109.3326633, + -0.0171474 + ], + [ + 109.3326755, + -0.0171386 + ], + [ + 109.3328531, + -0.0169345 + ] + ] + }, + "id": "way/643261016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261017", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331544, + -0.0158248 + ], + [ + 109.3328531, + -0.0169345 + ] + ] + }, + "id": "way/643261017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261018", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3298692, + -0.0153457 + ], + [ + 109.3300732, + -0.0150848 + ] + ] + }, + "id": "way/643261018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261019", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296058, + -0.0151538 + ], + [ + 109.3299582, + -0.0146948 + ], + [ + 109.3300313, + -0.0146154 + ], + [ + 109.3301332, + -0.0145443 + ], + [ + 109.3304472, + -0.0144144 + ] + ] + }, + "id": "way/643261019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261020", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310954, + -0.0161972 + ], + [ + 109.3312798, + -0.0160633 + ], + [ + 109.331544, + -0.0158248 + ], + [ + 109.3317452, + -0.0155809 + ], + [ + 109.331991, + -0.0152871 + ] + ] + }, + "id": "way/643261020" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261021", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337887, + -0.0092995 + ], + [ + 109.3333201, + -0.0098405 + ] + ] + }, + "id": "way/643261021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261022", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274733, + -0.0136986 + ], + [ + 109.3278898, + -0.0130485 + ] + ] + }, + "id": "way/643261022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261023", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271254, + -0.0134587 + ], + [ + 109.3277014, + -0.0127059 + ] + ] + }, + "id": "way/643261023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261024", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277426, + -0.0138932 + ], + [ + 109.3284977, + -0.0127465 + ] + ] + }, + "id": "way/643261024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261025", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268025, + -0.0132389 + ], + [ + 109.3274468, + -0.0123457 + ] + ] + }, + "id": "way/643261025" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261026", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263087, + -0.0128951 + ], + [ + 109.3265367, + -0.0125732 + ], + [ + 109.3265853, + -0.0124999 + ], + [ + 109.3267209, + -0.0123484 + ], + [ + 109.3268482, + -0.0122075 + ], + [ + 109.3268609, + -0.0121692 + ], + [ + 109.3268699, + -0.0121046 + ], + [ + 109.3268877, + -0.0120766 + ], + [ + 109.3269149, + -0.0120578 + ], + [ + 109.3269749, + -0.0120378 + ], + [ + 109.3270148, + -0.0120201 + ], + [ + 109.3270757, + -0.0119583 + ], + [ + 109.3272057, + -0.0117714 + ] + ] + }, + "id": "way/643261026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261027", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258194, + -0.0125402 + ], + [ + 109.3259838, + -0.0123707 + ], + [ + 109.3261385, + -0.0122239 + ], + [ + 109.326303, + -0.0120378 + ], + [ + 109.3265177, + -0.0118068 + ], + [ + 109.3267723, + -0.0115061 + ] + ] + }, + "id": "way/643261027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261028", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257469, + -0.0120479 + ], + [ + 109.3258262, + -0.0121175 + ], + [ + 109.3258772, + -0.0121263 + ], + [ + 109.3259013, + -0.0121142 + ], + [ + 109.3259268, + -0.0120907 + ], + [ + 109.3262821, + -0.0116712 + ], + [ + 109.3264914, + -0.0114187 + ], + [ + 109.326563, + -0.0113185 + ], + [ + 109.3266631, + -0.0113638 + ], + [ + 109.3267845, + -0.0114396 + ], + [ + 109.3267925, + -0.0114512 + ], + [ + 109.3267932, + -0.0114658 + ], + [ + 109.3267723, + -0.0115061 + ] + ] + }, + "id": "way/643261028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643261508", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058967, + -0.0643341 + ], + [ + 109.3057922, + -0.0644722 + ], + [ + 109.3056763, + -0.0646088 + ] + ] + }, + "id": "way/643261508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263691", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110202, + -0.0420986 + ], + [ + 109.3112464, + -0.0418143 + ] + ] + }, + "id": "way/643263691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263693", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3164097, + -0.0429911 + ], + [ + 109.3164132, + -0.0429884 + ], + [ + 109.3165438, + -0.0428711 + ] + ] + }, + "id": "way/643263693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263694", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175999, + -0.0429187 + ], + [ + 109.3178232, + -0.0431775 + ], + [ + 109.3178518, + -0.0432127 + ], + [ + 109.3178782, + -0.0432453 + ] + ] + }, + "id": "way/643263694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161508, + -0.0444563 + ], + [ + 109.3164497, + -0.0441264 + ] + ] + }, + "id": "way/643263696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263700", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133576, + -0.0415039 + ], + [ + 109.3134048, + -0.0415464 + ], + [ + 109.3136913, + -0.0418438 + ], + [ + 109.3137127, + -0.0418559 + ], + [ + 109.3137422, + -0.0418572 + ], + [ + 109.3137677, + -0.0418478 + ], + [ + 109.3138106, + -0.041821 + ], + [ + 109.3138428, + -0.0418036 + ], + [ + 109.3138777, + -0.0417969 + ], + [ + 109.3139246, + -0.0417995 + ], + [ + 109.3139622, + -0.041813 + ], + [ + 109.3140788, + -0.0418948 + ], + [ + 109.3142076, + -0.0420383 + ], + [ + 109.3144597, + -0.0423253 + ], + [ + 109.3146119, + -0.0424976 + ], + [ + 109.3146193, + -0.0425097 + ], + [ + 109.3146367, + -0.0425184 + ], + [ + 109.3146542, + -0.0425217 + ], + [ + 109.3146743, + -0.042515 + ], + [ + 109.3146877, + -0.0425063 + ], + [ + 109.3148489, + -0.042386 + ], + [ + 109.3148836, + -0.0423561 + ] + ] + }, + "id": "way/643263700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263703", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129412, + -0.0404665 + ], + [ + 109.3130857, + -0.0403049 + ], + [ + 109.3132453, + -0.0401453 + ] + ] + }, + "id": "way/643263703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263705", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185038, + -0.0409694 + ], + [ + 109.3186913, + -0.0407937 + ] + ] + }, + "id": "way/643263705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263707", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186755, + -0.0410619 + ], + [ + 109.3188148, + -0.0409315 + ] + ] + }, + "id": "way/643263707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263710", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176287, + -0.0399663 + ], + [ + 109.3178417, + -0.0398205 + ] + ] + }, + "id": "way/643263710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263711", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178983, + -0.0416581 + ], + [ + 109.3182564, + -0.0413666 + ] + ] + }, + "id": "way/643263711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263713", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316694, + -0.042057 + ], + [ + 109.316836, + -0.0422189 + ], + [ + 109.3169542, + -0.0423615 + ] + ] + }, + "id": "way/643263713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263716", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170957, + -0.042859 + ], + [ + 109.3173417, + -0.0431608 + ] + ] + }, + "id": "way/643263716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263718", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178935, + -0.0426317 + ], + [ + 109.3183006, + -0.0430857 + ] + ] + }, + "id": "way/643263718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263720", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185731, + -0.041978 + ], + [ + 109.3187593, + -0.0422072 + ] + ] + }, + "id": "way/643263720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263723", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314475, + -0.0376873 + ], + [ + 109.314966, + -0.0371626 + ], + [ + 109.3146799, + -0.0369162 + ] + ] + }, + "id": "way/643263723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263724", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154374, + -0.0385181 + ], + [ + 109.3156238, + -0.0382986 + ] + ] + }, + "id": "way/643263724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263728", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316525, + -0.0433049 + ], + [ + 109.3167631, + -0.0431319 + ] + ] + }, + "id": "way/643263728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263730", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138696, + -0.0401111 + ], + [ + 109.3142465, + -0.0404824 + ] + ] + }, + "id": "way/643263730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263731", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135223, + -0.0400615 + ], + [ + 109.3141038, + -0.0406334 + ] + ] + }, + "id": "way/643263731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263732", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175918, + -0.0426348 + ], + [ + 109.3179895, + -0.0422461 + ] + ] + }, + "id": "way/643263732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179291, + -0.0420356 + ], + [ + 109.3184126, + -0.0415597 + ] + ] + }, + "id": "way/643263733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263734", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176272, + -0.0395747 + ], + [ + 109.3177206, + -0.0395002 + ] + ] + }, + "id": "way/643263734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263735", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175599, + -0.0394916 + ], + [ + 109.3178245, + -0.0392635 + ] + ] + }, + "id": "way/643263735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263736", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170499, + -0.0403368 + ], + [ + 109.3175711, + -0.0409667 + ] + ] + }, + "id": "way/643263736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263737", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163427, + -0.0413758 + ], + [ + 109.3163728, + -0.0413557 + ], + [ + 109.3165417, + -0.0412211 + ] + ] + }, + "id": "way/643263737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263738", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156079, + -0.0407546 + ], + [ + 109.3157056, + -0.0408706 + ], + [ + 109.3160138, + -0.0406112 + ] + ] + }, + "id": "way/643263738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263739", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153737, + -0.0413833 + ], + [ + 109.3154721, + -0.0413097 + ], + [ + 109.3158303, + -0.0410418 + ] + ] + }, + "id": "way/643263739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263740", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133939, + -0.0381446 + ], + [ + 109.3135967, + -0.0378971 + ] + ] + }, + "id": "way/643263740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263742", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143977, + -0.0397713 + ], + [ + 109.314676, + -0.0400352 + ] + ] + }, + "id": "way/643263742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263744", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141958, + -0.0399515 + ], + [ + 109.3143977, + -0.0397713 + ], + [ + 109.3145254, + -0.0396511 + ] + ] + }, + "id": "way/643263744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263745", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130463, + -0.0383241 + ], + [ + 109.3135411, + -0.0387888 + ], + [ + 109.3135508, + -0.0387992 + ], + [ + 109.3135649, + -0.0388028 + ], + [ + 109.3135749, + -0.0388025 + ], + [ + 109.3135846, + -0.0387995 + ], + [ + 109.3135967, + -0.0387918 + ], + [ + 109.3136929, + -0.0386912 + ] + ] + }, + "id": "way/643263745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263748", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116345, + -0.0376131 + ], + [ + 109.3118553, + -0.0378017 + ] + ] + }, + "id": "way/643263748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263750", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114522, + -0.0378131 + ], + [ + 109.3115964, + -0.0379251 + ] + ] + }, + "id": "way/643263750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263751", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114837, + -0.0392254 + ], + [ + 109.3116722, + -0.0390181 + ] + ] + }, + "id": "way/643263751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263752", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121316, + -0.0418532 + ], + [ + 109.3123783, + -0.0420356 + ], + [ + 109.3123944, + -0.0420584 + ], + [ + 109.3124065, + -0.0420946 + ], + [ + 109.3124118, + -0.0421147 + ], + [ + 109.3124172, + -0.0421509 + ], + [ + 109.3124016, + -0.0422108 + ] + ] + }, + "id": "way/643263752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643263753", + "highway": "residential", + "name": "Gang Abidin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110711, + -0.0442742 + ], + [ + 109.3113095, + -0.0445307 + ], + [ + 109.3115696, + -0.0448164 + ], + [ + 109.3118533, + -0.0451208 + ], + [ + 109.3122429, + -0.0455292 + ], + [ + 109.3127612, + -0.046107 + ] + ] + }, + "id": "way/643263753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264047", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342146, + -0.0001838 + ], + [ + 109.3341203, + -0.0001717 + ], + [ + 109.334064, + -0.000236 + ], + [ + 109.3340573, + -0.0002635 + ], + [ + 109.3340425, + -0.000283 + ], + [ + 109.3339822, + -0.0002776 + ] + ] + }, + "id": "way/643264047" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264048", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341317, + 0.0047623 + ], + [ + 109.3342189, + 0.0047683 + ] + ] + }, + "id": "way/643264048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264049", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340924, + 0.0047643 + ], + [ + 109.3341317, + 0.0047623 + ] + ] + }, + "id": "way/643264049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264050", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342001, + 0.0019628 + ], + [ + 109.3343275, + 0.0019607 + ] + ] + }, + "id": "way/643264050" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264051", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341505, + 0.0019648 + ], + [ + 109.3342001, + 0.0019628 + ] + ] + }, + "id": "way/643264051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264052", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341873, + 0.0018595 + ], + [ + 109.3341501, + 0.0018614 + ] + ] + }, + "id": "way/643264052" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264053", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343047, + 0.0018588 + ], + [ + 109.3341873, + 0.0018595 + ] + ] + }, + "id": "way/643264053" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264054", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33418, + 0.0016254 + ], + [ + 109.334304, + 0.0016281 + ] + ] + }, + "id": "way/643264054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264055", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341522, + 0.0016199 + ], + [ + 109.33418, + 0.0016254 + ] + ] + }, + "id": "way/643264055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264056", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343094, + 0.001443 + ], + [ + 109.3343966, + 0.0014511 + ] + ] + }, + "id": "way/643264056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264057", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342102, + 0.001443 + ], + [ + 109.3343094, + 0.001443 + ] + ] + }, + "id": "way/643264057" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264058", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341556, + 0.0014444 + ], + [ + 109.3342102, + 0.001443 + ] + ] + }, + "id": "way/643264058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264059", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343376, + 0.0002883 + ], + [ + 109.3344351, + 0.000279 + ] + ] + }, + "id": "way/643264059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264060", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342316, + 0.000295 + ], + [ + 109.3343376, + 0.0002883 + ] + ] + }, + "id": "way/643264060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264061", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334198, + 0.0002912 + ], + [ + 109.3342316, + 0.000295 + ] + ] + }, + "id": "way/643264061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264062", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342927, + -0.0011111 + ], + [ + 109.334412, + -0.0011198 + ] + ] + }, + "id": "way/643264062" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264063", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342409, + -0.001108 + ], + [ + 109.3342927, + -0.0011111 + ] + ] + }, + "id": "way/643264063" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264064", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343335, + -0.0004935 + ], + [ + 109.3342665, + -0.0005123 + ] + ] + }, + "id": "way/643264064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264065", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344395, + -0.0004292 + ], + [ + 109.3343335, + -0.0004935 + ] + ] + }, + "id": "way/643264065" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264067", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341314, + 0.0027253 + ], + [ + 109.3339728, + 0.0027479 + ], + [ + 109.3337823, + 0.0027707 + ] + ] + }, + "id": "way/643264067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264068", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342189, + 0.0047683 + ], + [ + 109.3342739, + 0.0047924 + ], + [ + 109.3343081, + 0.0048159 + ], + [ + 109.3343383, + 0.0048374 + ], + [ + 109.3343711, + 0.0048615 + ] + ] + }, + "id": "way/643264068" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264069", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334304, + 0.0016281 + ], + [ + 109.3343644, + 0.0016496 + ], + [ + 109.3344073, + 0.0016549 + ], + [ + 109.3344288, + 0.0016522 + ] + ] + }, + "id": "way/643264069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264070", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343275, + 0.0019607 + ], + [ + 109.3343898, + 0.0019573 + ], + [ + 109.3343892, + 0.0018574 + ], + [ + 109.3343047, + 0.0018588 + ] + ] + }, + "id": "way/643264070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264071", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341805, + 0.0027988 + ], + [ + 109.33413, + 0.0027962 + ] + ] + }, + "id": "way/643264071" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264072", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343134, + 0.0028056 + ], + [ + 109.3341805, + 0.0027988 + ] + ] + }, + "id": "way/643264072" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264073", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350617, + 0.0055179 + ], + [ + 109.3350443, + 0.0053926 + ], + [ + 109.3350269, + 0.0053517 + ], + [ + 109.3350054, + 0.0053135 + ], + [ + 109.3349759, + 0.0052772 + ], + [ + 109.3349223, + 0.0052451 + ], + [ + 109.3348686, + 0.005241 + ], + [ + 109.3348069, + 0.0052518 + ], + [ + 109.3347258, + 0.0052793 + ], + [ + 109.3345536, + 0.0054947 + ] + ] + }, + "id": "way/643264073" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264074", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341793, + 0.0030939 + ], + [ + 109.3342879, + 0.0030845 + ] + ] + }, + "id": "way/643264074" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264075", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341245, + 0.0030897 + ], + [ + 109.3341793, + 0.0030939 + ] + ] + }, + "id": "way/643264075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264076", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342718, + 0.002593 + ], + [ + 109.3342926, + 0.0026017 + ], + [ + 109.3343496, + 0.0027037 + ], + [ + 109.334361, + 0.0027117 + ], + [ + 109.3343738, + 0.0027157 + ], + [ + 109.3348043, + 0.0026983 + ], + [ + 109.3355231, + 0.0027037 + ], + [ + 109.3355429, + 0.0027057 + ], + [ + 109.3355513, + 0.0027157 + ], + [ + 109.3355549, + 0.0027218 + ], + [ + 109.3355553, + 0.0027372 + ], + [ + 109.3355499, + 0.0029008 + ] + ] + }, + "id": "way/643264076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264077", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341693, + 0.0025937 + ], + [ + 109.3342718, + 0.002593 + ] + ] + }, + "id": "way/643264077" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264078", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341339, + 0.002591 + ], + [ + 109.3341693, + 0.0025937 + ] + ] + }, + "id": "way/643264078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264079", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343456, + 0.0008838 + ], + [ + 109.3344985, + 0.0009401 + ] + ] + }, + "id": "way/643264079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264080", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341967, + 0.0008932 + ], + [ + 109.3343456, + 0.0008838 + ] + ] + }, + "id": "way/643264080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264081", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343966, + -0.0009006 + ], + [ + 109.3345159, + -0.0008945 + ], + [ + 109.334658, + -0.0008905 + ] + ] + }, + "id": "way/643264081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264082", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342772, + -0.0009046 + ], + [ + 109.3343966, + -0.0009006 + ] + ] + }, + "id": "way/643264082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264083", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341754, + 0.0008933 + ], + [ + 109.3341967, + 0.0008932 + ] + ] + }, + "id": "way/643264083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264085", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342879, + 0.0030845 + ], + [ + 109.3343738, + 0.0030698 + ], + [ + 109.3343899, + 0.003051 + ], + [ + 109.3343644, + 0.0028324 + ], + [ + 109.3343134, + 0.0028056 + ] + ] + }, + "id": "way/643264085" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264087", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342322, + -0.0009064 + ], + [ + 109.3342772, + -0.0009046 + ] + ] + }, + "id": "way/643264087" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264088", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334412, + -0.0011198 + ], + [ + 109.3350121, + -0.0011802 + ], + [ + 109.3359402, + -0.0012687 + ] + ] + }, + "id": "way/643264088" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264089", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342906, + -0.0016388 + ], + [ + 109.3343926, + -0.0016322 + ] + ] + }, + "id": "way/643264089" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264090", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342561, + -0.0016404 + ], + [ + 109.3342906, + -0.0016388 + ] + ] + }, + "id": "way/643264090" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264092", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324944, + 0.0038621 + ], + [ + 109.331945, + 0.0038892 + ], + [ + 109.3319195, + 0.0038758 + ], + [ + 109.3319048, + 0.0038423 + ], + [ + 109.3319029, + 0.0036949 + ] + ] + }, + "id": "way/643264092" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264093", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325634, + 0.004631 + ], + [ + 109.3330316, + 0.0045893 + ] + ] + }, + "id": "way/643264093" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643264095", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325287, + 0.0042642 + ], + [ + 109.3319128, + 0.0043264 + ], + [ + 109.3318981, + 0.0043378 + ], + [ + 109.331888, + 0.0043579 + ], + [ + 109.3318897, + 0.0044371 + ] + ] + }, + "id": "way/643264095" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643269149", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466556, + -0.001384 + ], + [ + 109.3467898, + -0.0011383 + ], + [ + 109.3468011, + -0.0011299 + ] + ] + }, + "id": "way/643269149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643269150", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466084, + -0.0014798 + ], + [ + 109.347257, + -0.0018487 + ] + ] + }, + "id": "way/643269150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643269151", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344027, + 0.0011829 + ], + [ + 109.344129, + 0.0011668 + ] + ] + }, + "id": "way/643269151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643269152", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439148, + 0.0011909 + ], + [ + 109.344027, + 0.0011829 + ] + ] + }, + "id": "way/643269152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643269153", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344129, + 0.0011668 + ], + [ + 109.3444401, + 0.0010863 + ], + [ + 109.3444937, + 0.0010729 + ], + [ + 109.3445641, + 0.0010394 + ], + [ + 109.3445883, + 0.0010213 + ], + [ + 109.3446312, + 0.000981 + ], + [ + 109.3446721, + 0.0009576 + ], + [ + 109.3457812, + 0.0005874 + ] + ] + }, + "id": "way/643269153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643269155", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468556, + 0.0021198 + ], + [ + 109.3481737, + 0.0017783 + ] + ] + }, + "id": "way/643269155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643269156", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343914, + 0.0013107 + ], + [ + 109.342643, + 0.0013371 + ] + ] + }, + "id": "way/643269156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643273395", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190449, + -0.0569812 + ], + [ + 109.3195143, + -0.0573349 + ] + ] + }, + "id": "way/643273395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643273397", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156887, + -0.0569845 + ], + [ + 109.3161777, + -0.0572839 + ] + ] + }, + "id": "way/643273397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643273398", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160963, + -0.0564779 + ], + [ + 109.3165961, + -0.0567984 + ] + ] + }, + "id": "way/643273398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643273402", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175725, + -0.0575599 + ], + [ + 109.3177038, + -0.0576433 + ] + ] + }, + "id": "way/643273402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643273403", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3165532, + -0.059724 + ], + [ + 109.3165166, + -0.0597881 + ], + [ + 109.3164626, + -0.059871 + ], + [ + 109.3164187, + -0.0599433 + ], + [ + 109.3163883, + -0.059989 + ], + [ + 109.3163152, + -0.0601056 + ] + ] + }, + "id": "way/643273403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643273406", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111616, + -0.0613372 + ], + [ + 109.3118164, + -0.0617337 + ] + ] + }, + "id": "way/643273406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274298", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561935, + -0.0031087 + ], + [ + 109.3562309, + -0.0031169 + ] + ] + }, + "id": "way/643274298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274299", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561198, + -0.0030899 + ], + [ + 109.3561935, + -0.0031087 + ] + ] + }, + "id": "way/643274299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274300", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558878, + -0.0028431 + ], + [ + 109.355873, + -0.0029638 + ], + [ + 109.3558824, + -0.0029893 + ], + [ + 109.3559146, + -0.0030108 + ], + [ + 109.3560206, + -0.0030564 + ], + [ + 109.3561198, + -0.0030899 + ] + ] + }, + "id": "way/643274300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274301", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561171, + -0.0038181 + ], + [ + 109.3561584, + -0.003845 + ] + ] + }, + "id": "way/643274301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274302", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560353, + -0.0037886 + ], + [ + 109.3561171, + -0.0038181 + ] + ] + }, + "id": "way/643274302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274303", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559253, + -0.0037028 + ], + [ + 109.3560353, + -0.0037886 + ] + ] + }, + "id": "way/643274303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274304", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516626, + 0.0021787 + ], + [ + 109.3506437, + 0.0027577 + ], + [ + 109.3506001, + 0.0027828 + ], + [ + 109.3505421, + 0.002816 + ], + [ + 109.3503758, + 0.002929 + ] + ] + }, + "id": "way/643274304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274305", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478049, + -0.0026219 + ], + [ + 109.3482193, + -0.0028539 + ], + [ + 109.348383, + -0.0029383 + ], + [ + 109.3484503, + -0.0029697 + ], + [ + 109.3484697, + -0.0029818 + ] + ] + }, + "id": "way/643274305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274306", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562394, + -0.0028162 + ], + [ + 109.3561452, + -0.0027788 + ] + ] + }, + "id": "way/643274306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274307", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561452, + -0.0027788 + ], + [ + 109.356046, + -0.0027265 + ], + [ + 109.3559823, + -0.0026708 + ], + [ + 109.3558187, + -0.0025005 + ], + [ + 109.3557914, + -0.002486 + ], + [ + 109.3557047, + -0.0024362 + ], + [ + 109.3553433, + -0.0021874 + ], + [ + 109.3550375, + -0.0019553 + ], + [ + 109.3536079, + -0.0006276 + ], + [ + 109.3534362, + -0.0004721 + ] + ] + }, + "id": "way/643274307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274308", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561955, + -0.0020177 + ], + [ + 109.3562572, + -0.0020331 + ] + ] + }, + "id": "way/643274308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274309", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509834, + 0.0016375 + ], + [ + 109.3512348, + 0.0015102 + ], + [ + 109.351253, + 0.0015 + ] + ] + }, + "id": "way/643274309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274310", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492507, + 0.0021431 + ], + [ + 109.3505743, + 0.0013908 + ] + ] + }, + "id": "way/643274310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274311", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500151, + -0.0006652 + ], + [ + 109.3502524, + -0.0007698 + ] + ] + }, + "id": "way/643274311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274312", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499427, + -0.000631 + ], + [ + 109.3500151, + -0.0006652 + ] + ] + }, + "id": "way/643274312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274313", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490971, + -0.0019754 + ], + [ + 109.3490748, + -0.0019609 + ] + ] + }, + "id": "way/643274313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274314", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491521, + -0.002009 + ], + [ + 109.3490971, + -0.0019754 + ] + ] + }, + "id": "way/643274314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274315", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490748, + -0.0019609 + ], + [ + 109.3472604, + -0.0008596 + ], + [ + 109.347074, + -0.0007443 + ] + ] + }, + "id": "way/643274315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274318", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486517, + -0.0026299 + ], + [ + 109.347257, + -0.0018487 + ] + ] + }, + "id": "way/643274318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492865, + -0.0016225 + ], + [ + 109.3478435, + -0.0007047 + ], + [ + 109.347294, + -0.0003594 + ] + ] + }, + "id": "way/643274319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643274320", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495392, + -0.0012518 + ], + [ + 109.3495221, + -0.0012424 + ], + [ + 109.3491091, + -0.0010152 + ], + [ + 109.3486168, + -0.0007365 + ], + [ + 109.3482354, + -0.0005123 + ] + ] + }, + "id": "way/643274320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276271", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592535, + -0.0000122 + ], + [ + 109.3592003, + -0.0004077 + ] + ] + }, + "id": "way/643276271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276272", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638532, + -0.0017016 + ], + [ + 109.3642777, + -0.0017032 + ], + [ + 109.3644172, + -0.0016952 + ], + [ + 109.3644574, + -0.0016871 + ], + [ + 109.3644842, + -0.0016281 + ] + ] + }, + "id": "way/643276272" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276273", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638604, + -0.001484 + ], + [ + 109.3644091, + -0.0015101 + ], + [ + 109.3644333, + -0.0015181 + ], + [ + 109.3644682, + -0.0015396 + ], + [ + 109.3644869, + -0.0015905 + ], + [ + 109.3644842, + -0.0016281 + ] + ] + }, + "id": "way/643276273" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276274", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3637779, + -0.002906 + ], + [ + 109.3625559, + -0.0028847 + ], + [ + 109.361459, + -0.0028636 + ] + ] + }, + "id": "way/643276274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276711", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246604, + -0.0412297 + ], + [ + 109.3245542, + -0.0410981 + ], + [ + 109.3244352, + -0.0409521 + ] + ] + }, + "id": "way/643276711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276712", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259873, + -0.0414441 + ], + [ + 109.3260009, + -0.0415752 + ], + [ + 109.3260185, + -0.0416368 + ], + [ + 109.3260452, + -0.041702 + ], + [ + 109.3260926, + -0.0417731 + ], + [ + 109.3261281, + -0.0418394 + ], + [ + 109.3262025, + -0.0419622 + ], + [ + 109.326299, + -0.042163 + ], + [ + 109.3263886, + -0.0423398 + ] + ] + }, + "id": "way/643276712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276714", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262976, + -0.0434135 + ], + [ + 109.3264575, + -0.0437303 + ], + [ + 109.3269202, + -0.0445745 + ] + ] + }, + "id": "way/643276714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276715", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259303, + -0.0425963 + ], + [ + 109.3261332, + -0.0430296 + ] + ] + }, + "id": "way/643276715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276716", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253525, + -0.0434109 + ], + [ + 109.3253636, + -0.0434051 + ], + [ + 109.3253696, + -0.0434008 + ], + [ + 109.3253727, + -0.0433979 + ], + [ + 109.3253741, + -0.0433955 + ], + [ + 109.3253749, + -0.0433922 + ], + [ + 109.3253751, + -0.0433881 + ], + [ + 109.3253748, + -0.0433846 + ], + [ + 109.325374, + -0.0433795 + ], + [ + 109.3253704, + -0.0433698 + ], + [ + 109.3252512, + -0.0431589 + ], + [ + 109.3252457, + -0.0431475 + ], + [ + 109.325243, + -0.0431371 + ], + [ + 109.325243, + -0.0431282 + ], + [ + 109.3252471, + -0.0431199 + ], + [ + 109.3252549, + -0.0431125 + ], + [ + 109.3252717, + -0.0431011 + ], + [ + 109.3255681, + -0.0429422 + ] + ] + }, + "id": "way/643276716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276717", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272301, + -0.0443582 + ], + [ + 109.326658, + -0.043219 + ], + [ + 109.3264773, + -0.0428845 + ], + [ + 109.3264465, + -0.0428845 + ] + ] + }, + "id": "way/643276717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276718", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266034, + -0.0447956 + ], + [ + 109.3263695, + -0.0443268 + ] + ] + }, + "id": "way/643276718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276720", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3209039, + -0.0437504 + ], + [ + 109.3206844, + -0.0435336 + ] + ] + }, + "id": "way/643276720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3197671, + -0.038976 + ], + [ + 109.3195095, + -0.0386426 + ], + [ + 109.3194881, + -0.0386104 + ], + [ + 109.3194732, + -0.0385895 + ], + [ + 109.3194404, + -0.0386066 + ], + [ + 109.3194064, + -0.0386306 + ], + [ + 109.3192045, + -0.0387972 + ] + ] + }, + "id": "way/643276721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276722", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211471, + -0.0435282 + ], + [ + 109.3215161, + -0.0439079 + ] + ] + }, + "id": "way/643276722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276723", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3234645, + -0.0417755 + ], + [ + 109.323955, + -0.0413854 + ], + [ + 109.3242106, + -0.0411798 + ] + ] + }, + "id": "way/643276723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276724", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226311, + -0.0408346 + ], + [ + 109.3226847, + -0.0407863 + ], + [ + 109.3227558, + -0.040728 + ], + [ + 109.3228067, + -0.0406938 + ], + [ + 109.3228456, + -0.040677 + ], + [ + 109.3228879, + -0.0406576 + ], + [ + 109.322932, + -0.0406442 + ] + ] + }, + "id": "way/643276724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276725", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226434, + -0.0410637 + ], + [ + 109.3227712, + -0.0412095 + ], + [ + 109.3228704, + -0.0411187 + ] + ] + }, + "id": "way/643276725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276726", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226222, + -0.0418637 + ], + [ + 109.3231497, + -0.0414364 + ] + ] + }, + "id": "way/643276726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276727", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225244, + -0.0417544 + ], + [ + 109.3226222, + -0.0418637 + ], + [ + 109.3227043, + -0.0419556 + ] + ] + }, + "id": "way/643276727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276728", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212488, + -0.0406268 + ], + [ + 109.3217105, + -0.0402211 + ], + [ + 109.3219617, + -0.0400253 + ] + ] + }, + "id": "way/643276728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276729", + "highway": "residential", + "name": "Gang Mentari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208453, + -0.0414794 + ], + [ + 109.3210552, + -0.0413099 + ], + [ + 109.3213802, + -0.0410707 + ], + [ + 109.3215756, + -0.0409186 + ] + ] + }, + "id": "way/643276729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276730", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220148, + -0.0415551 + ], + [ + 109.3226434, + -0.0410637 + ], + [ + 109.3227526, + -0.0409783 + ] + ] + }, + "id": "way/643276730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276731", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236639, + -0.0381209 + ], + [ + 109.3235309, + -0.0379573 + ], + [ + 109.323425, + -0.0378077 + ], + [ + 109.3233968, + -0.037734 + ], + [ + 109.323374, + -0.0376951 + ], + [ + 109.3232225, + -0.0375275 + ] + ] + }, + "id": "way/643276731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262297, + -0.0400982 + ], + [ + 109.3261435, + -0.0401643 + ], + [ + 109.3260227, + -0.0402507 + ], + [ + 109.3258645, + -0.0404115 + ], + [ + 109.3258564, + -0.0404276 + ], + [ + 109.3258521, + -0.0404545 + ], + [ + 109.3258846, + -0.040492 + ], + [ + 109.3259125, + -0.0405318 + ], + [ + 109.3259383, + -0.0405617 + ], + [ + 109.3259455, + -0.0405966 + ], + [ + 109.3259276, + -0.0406425 + ], + [ + 109.3259104, + -0.0406574 + ], + [ + 109.3258604, + -0.0406931 + ], + [ + 109.3257522, + -0.0407631 + ], + [ + 109.3257387, + -0.0407911 + ], + [ + 109.3257354, + -0.0408086 + ], + [ + 109.3257432, + -0.040857 + ], + [ + 109.3257598, + -0.0408823 + ], + [ + 109.3259288, + -0.041133 + ], + [ + 109.326008, + -0.0412564 + ] + ] + }, + "id": "way/643276733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276734", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256882, + -0.0415658 + ], + [ + 109.3255333, + -0.0413699 + ], + [ + 109.3254211, + -0.0412368 + ], + [ + 109.3253664, + -0.0411689 + ], + [ + 109.3253612, + -0.0411541 + ], + [ + 109.3253575, + -0.0411401 + ], + [ + 109.3253555, + -0.0411283 + ], + [ + 109.325355, + -0.0411176 + ], + [ + 109.3253593, + -0.0410741 + ], + [ + 109.3253615, + -0.0410482 + ], + [ + 109.3253593, + -0.0410303 + ], + [ + 109.3253535, + -0.0410137 + ], + [ + 109.3253455, + -0.0409955 + ], + [ + 109.3253307, + -0.0409721 + ], + [ + 109.3253024, + -0.0409284 + ], + [ + 109.325176, + -0.0407678 + ] + ] + }, + "id": "way/643276734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276735", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240513, + -0.0409663 + ], + [ + 109.3242106, + -0.0411798 + ], + [ + 109.3244099, + -0.041447 + ] + ] + }, + "id": "way/643276735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276736", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3252461, + -0.0407052 + ], + [ + 109.3250275, + -0.0403408 + ] + ] + }, + "id": "way/643276736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276737", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247735, + -0.041127 + ], + [ + 109.3244885, + -0.0407294 + ] + ] + }, + "id": "way/643276737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276738", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257188, + -0.0402976 + ], + [ + 109.3254031, + -0.0397567 + ] + ] + }, + "id": "way/643276738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276739", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262881, + -0.039239 + ], + [ + 109.3264845, + -0.0394626 + ] + ] + }, + "id": "way/643276739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276740", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265266, + -0.0394219 + ], + [ + 109.326673, + -0.0396666 + ] + ] + }, + "id": "way/643276740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276741", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263722, + -0.0386052 + ], + [ + 109.3269512, + -0.0381027 + ] + ] + }, + "id": "way/643276741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276742", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256507, + -0.0392014 + ], + [ + 109.3262075, + -0.0387379 + ] + ] + }, + "id": "way/643276742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276743", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221624, + -0.0381714 + ], + [ + 109.3223418, + -0.0384441 + ] + ] + }, + "id": "way/643276743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276744", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224851, + -0.0393646 + ], + [ + 109.3222634, + -0.0390943 + ], + [ + 109.3219997, + -0.0387692 + ] + ] + }, + "id": "way/643276744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276745", + "highway": "residential", + "name": "Gang Rahayu Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216465, + -0.0380284 + ], + [ + 109.3206352, + -0.0366829 + ] + ] + }, + "id": "way/643276745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276746", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204856, + -0.0381216 + ], + [ + 109.320945, + -0.037751 + ], + [ + 109.320953, + -0.0377454 + ], + [ + 109.3209952, + -0.0377147 + ] + ] + }, + "id": "way/643276746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276747", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206836, + -0.0375494 + ], + [ + 109.3205096, + -0.0373088 + ], + [ + 109.3204228, + -0.0372003 + ], + [ + 109.3204134, + -0.0371878 + ], + [ + 109.3204068, + -0.0371754 + ], + [ + 109.3204045, + -0.0371654 + ], + [ + 109.3204032, + -0.0371535 + ], + [ + 109.3204035, + -0.0371437 + ], + [ + 109.3204044, + -0.0371358 + ], + [ + 109.3204067, + -0.0371261 + ], + [ + 109.3204109, + -0.037115 + ], + [ + 109.3204164, + -0.037105 + ], + [ + 109.3204245, + -0.0370937 + ], + [ + 109.3204399, + -0.0370742 + ], + [ + 109.3204488, + -0.0370629 + ], + [ + 109.3204498, + -0.0370587 + ], + [ + 109.3204503, + -0.037054 + ], + [ + 109.3204491, + -0.0370468 + ], + [ + 109.3204467, + -0.0370406 + ], + [ + 109.3204412, + -0.0370326 + ], + [ + 109.3204359, + -0.0370272 + ], + [ + 109.3204064, + -0.036996 + ], + [ + 109.320279, + -0.0368582 + ], + [ + 109.3201006, + -0.0366423 + ], + [ + 109.319819, + -0.0363111 + ], + [ + 109.319015, + -0.0353958 + ] + ] + }, + "id": "way/643276747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276748", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202692, + -0.0378347 + ], + [ + 109.3206441, + -0.0375792 + ], + [ + 109.3206836, + -0.0375494 + ], + [ + 109.3209, + -0.0373968 + ] + ] + }, + "id": "way/643276748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276749", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230002, + -0.0390742 + ], + [ + 109.3232097, + -0.0389049 + ] + ] + }, + "id": "way/643276749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276750", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225813, + -0.0398447 + ], + [ + 109.3233846, + -0.0391748 + ] + ] + }, + "id": "way/643276750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276751", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32305, + -0.0399605 + ], + [ + 109.3234589, + -0.0396491 + ], + [ + 109.3236081, + -0.0395387 + ] + ] + }, + "id": "way/643276751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276752", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222527, + -0.0403861 + ], + [ + 109.3227147, + -0.0399723 + ], + [ + 109.3231104, + -0.0396324 + ], + [ + 109.3234747, + -0.0393337 + ] + ] + }, + "id": "way/643276752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276753", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225077, + -0.0378996 + ], + [ + 109.3227185, + -0.0377354 + ], + [ + 109.3238434, + -0.036814 + ] + ] + }, + "id": "way/643276753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276754", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229574, + -0.0385616 + ], + [ + 109.3229248, + -0.0384736 + ], + [ + 109.3229073, + -0.0384186 + ], + [ + 109.3226713, + -0.0380766 + ], + [ + 109.3225077, + -0.0378996 + ], + [ + 109.3223749, + -0.037744 + ], + [ + 109.3221158, + -0.0374062 + ] + ] + }, + "id": "way/643276754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643276755", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237279, + -0.0420611 + ], + [ + 109.3243109, + -0.0415415 + ], + [ + 109.3244099, + -0.041447 + ], + [ + 109.3246049, + -0.0412812 + ], + [ + 109.3246604, + -0.0412297 + ], + [ + 109.3247735, + -0.041127 + ], + [ + 109.3248843, + -0.0410281 + ], + [ + 109.3250879, + -0.0408464 + ], + [ + 109.325176, + -0.0407678 + ], + [ + 109.3252461, + -0.0407052 + ], + [ + 109.3255027, + -0.0404811 + ], + [ + 109.3257188, + -0.0402976 + ], + [ + 109.3261322, + -0.0399467 + ], + [ + 109.3262297, + -0.0400982 + ], + [ + 109.3266149, + -0.0406987 + ] + ] + }, + "id": "way/643276755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643277383", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266131, + -0.0536828 + ], + [ + 109.3265252, + -0.0537532 + ], + [ + 109.3262848, + -0.053963 + ] + ] + }, + "id": "way/643277383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643277385", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264803, + -0.054393 + ], + [ + 109.326427, + -0.0544388 + ] + ] + }, + "id": "way/643277385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643277386", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3252032, + -0.053952 + ], + [ + 109.3252446, + -0.0538953 + ] + ] + }, + "id": "way/643277386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643277387", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268248, + -0.05456 + ], + [ + 109.3266557, + -0.0547264 + ] + ] + }, + "id": "way/643277387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643277388", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270242, + -0.054343 + ], + [ + 109.3271369, + -0.054245 + ] + ] + }, + "id": "way/643277388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643277392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220965, + -0.052351 + ], + [ + 109.3221644, + -0.052232 + ], + [ + 109.3222301, + -0.0521314 + ], + [ + 109.3222713, + -0.0520744 + ], + [ + 109.3222882, + -0.0520476 + ], + [ + 109.3222938, + -0.0520382 + ], + [ + 109.3222954, + -0.0520335 + ], + [ + 109.322296, + -0.0520286 + ], + [ + 109.3222961, + -0.0520252 + ], + [ + 109.3222954, + -0.0520218 + ], + [ + 109.3222923, + -0.0520167 + ], + [ + 109.3222887, + -0.0520132 + ], + [ + 109.3222814, + -0.052008 + ], + [ + 109.3222207, + -0.0519705 + ] + ] + }, + "id": "way/643277392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283430", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286359, + -0.0016355 + ], + [ + 109.3289061, + -0.0018212 + ], + [ + 109.3290633, + -0.0019528 + ] + ] + }, + "id": "way/643283430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297295, + -0.0031381 + ], + [ + 109.3300152, + -0.0028257 + ], + [ + 109.3301828, + -0.0025977 + ], + [ + 109.3303089, + -0.0024676 + ] + ] + }, + "id": "way/643283431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283432", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3283576, + -0.0037645 + ], + [ + 109.3282489, + -0.0038704 + ], + [ + 109.3282047, + -0.0039241 + ], + [ + 109.3281645, + -0.0039777 + ], + [ + 109.3281215, + -0.0040314 + ], + [ + 109.3281047, + -0.0040609 + ], + [ + 109.3280947, + -0.0040904 + ], + [ + 109.3280961, + -0.0041252 + ], + [ + 109.3281135, + -0.004144 + ], + [ + 109.3281403, + -0.0041574 + ], + [ + 109.328157, + -0.0041574 + ], + [ + 109.3281953, + -0.0041293 + ], + [ + 109.3282141, + -0.0041118 + ] + ] + }, + "id": "way/643283432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283433", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3269144, + -0.0022308 + ], + [ + 109.3272257, + -0.0024569 + ] + ] + }, + "id": "way/643283433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283434", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276743, + -0.0031851 + ], + [ + 109.3277068, + -0.0031496 + ], + [ + 109.327743, + -0.0031053 + ], + [ + 109.3277779, + -0.0030631 + ], + [ + 109.3278801, + -0.002941 + ], + [ + 109.3279345, + -0.0028834 + ], + [ + 109.3279744, + -0.0028445 + ], + [ + 109.3280106, + -0.0027982 + ], + [ + 109.3280538, + -0.0027419 + ], + [ + 109.3280887, + -0.0027053 + ], + [ + 109.3281282, + -0.0026581 + ], + [ + 109.3281403, + -0.0026447 + ] + ] + }, + "id": "way/643283434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283435", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.328324, + -0.0019265 + ], + [ + 109.3283733, + -0.0019585 + ], + [ + 109.3284891, + -0.0020339 + ], + [ + 109.3285664, + -0.0020842 + ], + [ + 109.3288343, + -0.0022585 + ], + [ + 109.3288796, + -0.002288 + ] + ] + }, + "id": "way/643283435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283436", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282453, + -0.003654 + ], + [ + 109.3281712, + -0.0037363 + ], + [ + 109.3281175, + -0.0037886 + ], + [ + 109.3280545, + -0.0038302 + ], + [ + 109.3279928, + -0.0038517 + ], + [ + 109.32751, + -0.0034976 + ] + ] + }, + "id": "way/643283436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283437", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294968, + -0.0051198 + ], + [ + 109.3297845, + -0.0053859 + ] + ] + }, + "id": "way/643283437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283438", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3295255, + -0.0050921 + ], + [ + 109.329468, + -0.0050452 + ], + [ + 109.3293808, + -0.0049715 + ], + [ + 109.3293218, + -0.0049138 + ], + [ + 109.329244, + -0.0048481 + ], + [ + 109.3291327, + -0.0047421 + ], + [ + 109.3290348, + -0.0046483 + ], + [ + 109.328941, + -0.0045665 + ], + [ + 109.3288819, + -0.0045222 + ], + [ + 109.328827, + -0.0044927 + ], + [ + 109.3287505, + -0.0044699 + ], + [ + 109.3286969, + -0.0044779 + ], + [ + 109.3286486, + -0.0044954 + ], + [ + 109.3285947, + -0.0045334 + ], + [ + 109.3285624, + -0.0045725 + ], + [ + 109.328539, + -0.0046171 + ], + [ + 109.3285188, + -0.004653 + ], + [ + 109.3284897, + -0.0047012 + ], + [ + 109.3284615, + -0.0047418 + ], + [ + 109.3284397, + -0.0047703 + ], + [ + 109.3284317, + -0.0047844 + ], + [ + 109.3284196, + -0.0048012 + ], + [ + 109.328371, + -0.0048722 + ], + [ + 109.3283133, + -0.0049245 + ], + [ + 109.3282717, + -0.0049567 + ], + [ + 109.3280987, + -0.0050747 + ], + [ + 109.3279901, + -0.0051337 + ], + [ + 109.3279338, + -0.0051713 + ], + [ + 109.3277876, + -0.0052182 + ] + ] + }, + "id": "way/643283438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283439", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296068, + -0.0050135 + ], + [ + 109.3295255, + -0.0050921 + ], + [ + 109.3294968, + -0.0051198 + ], + [ + 109.3293782, + -0.0052345 + ], + [ + 109.3292379, + -0.00537 + ], + [ + 109.329088, + -0.0055148 + ], + [ + 109.3288299, + -0.0057642 + ], + [ + 109.3286729, + -0.0059159 + ], + [ + 109.328556, + -0.0060242 + ] + ] + }, + "id": "way/643283439" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283440", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273893, + -0.0000375 + ], + [ + 109.3275039, + -0.0001209 + ], + [ + 109.3275841, + -0.0001793 + ], + [ + 109.3277068, + -0.0002686 + ], + [ + 109.327803, + -0.0003386 + ], + [ + 109.327919, + -0.0004224 + ], + [ + 109.3280652, + -0.0005284 + ], + [ + 109.3281054, + -0.0005532 + ], + [ + 109.3281075, + -0.0005673 + ], + [ + 109.3281001, + -0.0005908 + ] + ] + }, + "id": "way/643283440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283441", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267396, + -0.0024665 + ], + [ + 109.3269144, + -0.0022308 + ], + [ + 109.3270412, + -0.0020597 + ], + [ + 109.327238, + -0.0017943 + ], + [ + 109.3274182, + -0.0015512 + ], + [ + 109.3275906, + -0.0013186 + ], + [ + 109.3276808, + -0.001197 + ], + [ + 109.3277092, + -0.0011587 + ], + [ + 109.3279284, + -0.000861 + ], + [ + 109.3281001, + -0.0005908 + ] + ] + }, + "id": "way/643283441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283448", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3678146, + -0.0031332 + ], + [ + 109.3677416, + -0.0031326 + ], + [ + 109.3674916, + -0.003138 + ] + ] + }, + "id": "way/643283448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283449", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3668848, + -0.0031395 + ], + [ + 109.3667205, + -0.0031499 + ], + [ + 109.3665717, + -0.003157 + ], + [ + 109.3665363, + -0.0031627 + ], + [ + 109.3665147, + -0.0031791 + ], + [ + 109.3665056, + -0.0032082 + ] + ] + }, + "id": "way/643283449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283450", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3674916, + -0.003138 + ], + [ + 109.3668848, + -0.0031395 + ] + ] + }, + "id": "way/643283450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283451", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681992, + -0.0051853 + ], + [ + 109.3685209, + -0.0052253 + ], + [ + 109.3686015, + -0.0052345 + ], + [ + 109.3686931, + -0.0052361 + ] + ] + }, + "id": "way/643283451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283452", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688231, + -0.0047002 + ], + [ + 109.3688116, + -0.00483 + ] + ] + }, + "id": "way/643283452" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283453", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.369114, + -0.0048072 + ], + [ + 109.3691067, + -0.0048363 + ], + [ + 109.3690752, + -0.0048546 + ], + [ + 109.3688116, + -0.00483 + ], + [ + 109.368541, + -0.0048048 + ], + [ + 109.3683759, + -0.0047805 + ], + [ + 109.3683671, + -0.0047683 + ], + [ + 109.3683638, + -0.004755 + ], + [ + 109.3683674, + -0.0047259 + ] + ] + }, + "id": "way/643283453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283454", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682579, + -0.0047099 + ], + [ + 109.3683674, + -0.0047259 + ] + ] + }, + "id": "way/643283454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283455", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683674, + -0.0047259 + ], + [ + 109.3683917, + -0.0046749 + ], + [ + 109.3683993, + -0.0046654 + ], + [ + 109.3684111, + -0.0046543 + ], + [ + 109.3688231, + -0.0047002 + ], + [ + 109.3689577, + -0.0047204 + ], + [ + 109.3690934, + -0.0047514 + ], + [ + 109.3691104, + -0.0047793 + ], + [ + 109.369114, + -0.0048072 + ] + ] + }, + "id": "way/643283455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283456", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3712678, + -0.0050203 + ], + [ + 109.3713355, + -0.00502 + ] + ] + }, + "id": "way/643283456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283457", + "highway": "residential", + "name": "KOMPLEK LOTUS GARDEN" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714075, + -0.0043293 + ], + [ + 109.3741773, + -0.004373 + ] + ] + }, + "id": "way/643283457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283458", + "highway": "residential", + "name": "KOMPLEK MARISSA 12" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3713355, + -0.00502 + ], + [ + 109.3729587, + -0.0050089 + ], + [ + 109.3744528, + -0.0049987 + ], + [ + 109.3744624, + -0.004985 + ], + [ + 109.3744666, + -0.0049507 + ], + [ + 109.3744405, + -0.0047587 + ], + [ + 109.3744309, + -0.004745 + ], + [ + 109.3744165, + -0.0047394 + ] + ] + }, + "id": "way/643283458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283459", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3712707, + -0.0048873 + ], + [ + 109.3712678, + -0.0050203 + ], + [ + 109.3712729, + -0.0055233 + ], + [ + 109.3712721, + -0.0056936 + ], + [ + 109.3712714, + -0.0058492 + ] + ] + }, + "id": "way/643283459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283460", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3708288, + -0.0048495 + ], + [ + 109.3707737, + -0.0055173 + ] + ] + }, + "id": "way/643283460" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283461", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3713231, + -0.0043282 + ], + [ + 109.3714075, + -0.0043293 + ] + ] + }, + "id": "way/643283461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283462", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3696073, + 0.0000241 + ], + [ + 109.3697626, + 0.0007055 + ] + ] + }, + "id": "way/643283462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283463", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682018, + -0.0035727 + ], + [ + 109.3681663, + -0.0037544 + ], + [ + 109.3681696, + -0.0037739 + ], + [ + 109.3681823, + -0.0037806 + ], + [ + 109.368397, + -0.0038203 + ] + ] + }, + "id": "way/643283463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283464", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3674333, + -0.0035916 + ], + [ + 109.3682018, + -0.0035727 + ], + [ + 109.3682454, + -0.003338 + ], + [ + 109.3682528, + -0.0033259 + ], + [ + 109.3682709, + -0.0033226 + ], + [ + 109.3684781, + -0.0033592 + ] + ] + }, + "id": "way/643283464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283465", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3678146, + -0.0031332 + ], + [ + 109.3678638, + -0.0031328 + ], + [ + 109.3679158, + -0.0031304 + ], + [ + 109.3679363, + -0.0031234 + ], + [ + 109.3681079, + -0.0029732 + ], + [ + 109.3681294, + -0.0029638 + ], + [ + 109.3681481, + -0.0029598 + ], + [ + 109.3685561, + -0.0029451 + ] + ] + }, + "id": "way/643283465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283466", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3656832, + -0.0037416 + ], + [ + 109.3658146, + -0.0030792 + ] + ] + }, + "id": "way/643283466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283467", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652306, + -0.003726 + ], + [ + 109.3656832, + -0.0037416 + ], + [ + 109.3657603, + -0.0037243 + ], + [ + 109.3658167, + -0.0037169 + ], + [ + 109.3658609, + -0.0037041 + ], + [ + 109.365887, + -0.0036693 + ], + [ + 109.3659729, + -0.0030765 + ] + ] + }, + "id": "way/643283467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283468", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651789, + -0.0035955 + ], + [ + 109.3650596, + -0.003562 + ] + ] + }, + "id": "way/643283468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283469", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652438, + -0.0036055 + ], + [ + 109.3651789, + -0.0035955 + ] + ] + }, + "id": "way/643283469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643283470", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650596, + -0.003562 + ], + [ + 109.3650314, + -0.0035543 + ], + [ + 109.3649902, + -0.0035438 + ] + ] + }, + "id": "way/643283470" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284537", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409779, + -0.013665 + ], + [ + 109.3412073, + -0.013873 + ], + [ + 109.3413361, + -0.0139836 + ], + [ + 109.3414917, + -0.0141345 + ], + [ + 109.3419309, + -0.0145067 + ], + [ + 109.3420017, + -0.014569 + ] + ] + }, + "id": "way/643284537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284538", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407551, + -0.0139212 + ], + [ + 109.3412521, + -0.014339 + ], + [ + 109.3412617, + -0.0143479 + ], + [ + 109.3412726, + -0.0143445 + ], + [ + 109.3412843, + -0.0143362 + ], + [ + 109.3412973, + -0.0143225 + ], + [ + 109.3413097, + -0.0143074 + ], + [ + 109.3413186, + -0.0143061 + ], + [ + 109.3413309, + -0.0143177 + ], + [ + 109.3413433, + -0.0143287 + ], + [ + 109.3413913, + -0.0143808 + ], + [ + 109.3414325, + -0.014422 + ], + [ + 109.3414475, + -0.0144364 + ], + [ + 109.3414537, + -0.0144425 + ], + [ + 109.3414619, + -0.0144521 + ], + [ + 109.3414736, + -0.0144535 + ], + [ + 109.3414839, + -0.0144494 + ], + [ + 109.3415024, + -0.0144296 + ], + [ + 109.3415703, + -0.0143472 + ] + ] + }, + "id": "way/643284538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284540", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377057, + -0.0135143 + ], + [ + 109.3378822, + -0.0133262 + ], + [ + 109.3380726, + -0.0131249 + ] + ] + }, + "id": "way/643284540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389805, + -0.014724 + ], + [ + 109.3391568, + -0.014551 + ], + [ + 109.3393064, + -0.0144115 + ], + [ + 109.3393318, + -0.0143854 + ], + [ + 109.339354, + -0.0143659 + ], + [ + 109.3393962, + -0.0143424 + ], + [ + 109.3394545, + -0.0143042 + ], + [ + 109.3395675, + -0.0142196 + ], + [ + 109.3396828, + -0.0141085 + ], + [ + 109.3397649, + -0.0140333 + ], + [ + 109.3399599, + -0.0138547 + ] + ] + }, + "id": "way/643284542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284544", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397724, + -0.0119593 + ], + [ + 109.3399335, + -0.0121875 + ] + ] + }, + "id": "way/643284544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284545", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379854, + -0.0137812 + ], + [ + 109.3378171, + -0.0139274 + ], + [ + 109.3377681, + -0.0139743 + ], + [ + 109.3377453, + -0.0139904 + ], + [ + 109.3377205, + -0.0139984 + ], + [ + 109.3376937, + -0.0139978 + ], + [ + 109.3375918, + -0.013985 + ], + [ + 109.3375582, + -0.0139844 + ], + [ + 109.337524, + -0.0139931 + ], + [ + 109.3374597, + -0.0140414 + ], + [ + 109.3374234, + -0.0140816 + ], + [ + 109.3373725, + -0.0141138 + ], + [ + 109.337355, + -0.0141165 + ], + [ + 109.3373403, + -0.0141165 + ], + [ + 109.337288, + -0.0141165 + ], + [ + 109.3372129, + -0.0141057 + ] + ] + }, + "id": "way/643284545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284548", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367013, + -0.0104405 + ], + [ + 109.3367599, + -0.0103775 + ], + [ + 109.3368153, + -0.0103118 + ], + [ + 109.336889, + -0.010238 + ], + [ + 109.337021, + -0.010136 + ] + ] + }, + "id": "way/643284548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284550", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3419194, + -0.0170326 + ], + [ + 109.3422829, + -0.0172218 + ] + ] + }, + "id": "way/643284550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284552", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3419932, + -0.0169012 + ], + [ + 109.3423942, + -0.0170977 + ] + ] + }, + "id": "way/643284552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284553", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379809, + -0.0107081 + ], + [ + 109.3381101, + -0.010812 + ], + [ + 109.3382227, + -0.0108951 + ], + [ + 109.3383005, + -0.010922 + ], + [ + 109.3383488, + -0.0108857 + ], + [ + 109.3383703, + -0.0108562 + ], + [ + 109.3384105, + -0.0107986 + ] + ] + }, + "id": "way/643284553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284555", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370097, + -0.0107238 + ], + [ + 109.3371478, + -0.0108428 + ], + [ + 109.3372531, + -0.0109186 + ], + [ + 109.3373564, + -0.0110044 + ], + [ + 109.3374552, + -0.0110717 + ] + ] + }, + "id": "way/643284555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284557", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403815, + -0.0110536 + ], + [ + 109.3402612, + -0.0109005 + ], + [ + 109.3401365, + -0.0107409 + ], + [ + 109.3400279, + -0.0105867 + ] + ] + }, + "id": "way/643284557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284559", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342815, + -0.0137641 + ], + [ + 109.3426216, + -0.0136109 + ], + [ + 109.3426071, + -0.0135998 + ], + [ + 109.3425907, + -0.0135951 + ], + [ + 109.3425753, + -0.0135981 + ], + [ + 109.3425491, + -0.0136243 + ], + [ + 109.3425186, + -0.0136568 + ], + [ + 109.3425076, + -0.0136628 + ], + [ + 109.3424982, + -0.0136622 + ], + [ + 109.3424881, + -0.0136558 + ] + ] + }, + "id": "way/643284559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284561", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417615, + -0.0173212 + ], + [ + 109.3418604, + -0.0171404 + ], + [ + 109.3419194, + -0.0170326 + ], + [ + 109.3419578, + -0.0169643 + ], + [ + 109.3419932, + -0.0169012 + ], + [ + 109.3420717, + -0.0167544 + ], + [ + 109.3421984, + -0.0165137 + ] + ] + }, + "id": "way/643284561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284563", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407508, + -0.0164025 + ], + [ + 109.3406099, + -0.0165647 + ], + [ + 109.3404915, + -0.0166964 + ], + [ + 109.3403484, + -0.0168537 + ] + ] + }, + "id": "way/643284563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284565", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339191, + -0.0149218 + ], + [ + 109.3390194, + -0.0150794 + ], + [ + 109.3389335, + -0.0151712 + ], + [ + 109.3388899, + -0.0152189 + ], + [ + 109.3388531, + -0.0152718 + ], + [ + 109.3388075, + -0.0153463 + ], + [ + 109.3387806, + -0.0153999 + ], + [ + 109.3387592, + -0.0154482 + ], + [ + 109.3387377, + -0.0155045 + ], + [ + 109.338723, + -0.0155689 + ], + [ + 109.3387203, + -0.0156467 + ], + [ + 109.3387216, + -0.0157003 + ], + [ + 109.3387525, + -0.0157821 + ], + [ + 109.3388034, + -0.0158612 + ], + [ + 109.3388437, + -0.0159189 + ] + ] + }, + "id": "way/643284565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284568", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387333, + -0.0145005 + ], + [ + 109.3386358, + -0.0145684 + ], + [ + 109.3386345, + -0.0145912 + ], + [ + 109.3386412, + -0.014618 + ], + [ + 109.3386465, + -0.0146435 + ], + [ + 109.3386465, + -0.0146663 + ], + [ + 109.3386371, + -0.014677 + ], + [ + 109.3385956, + -0.014724 + ], + [ + 109.3385486, + -0.0147817 + ], + [ + 109.3385084, + -0.0148272 + ], + [ + 109.3384588, + -0.0148863 + ], + [ + 109.3383823, + -0.0149667 + ] + ] + }, + "id": "way/643284568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284570", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.338352, + -0.0141278 + ], + [ + 109.3381986, + -0.0142962 + ], + [ + 109.338148, + -0.0143377 + ], + [ + 109.3381289, + -0.0143418 + ], + [ + 109.3381081, + -0.0143357 + ], + [ + 109.3380913, + -0.014329 + ], + [ + 109.3380745, + -0.014327 + ], + [ + 109.338033, + -0.0143404 + ], + [ + 109.3379753, + -0.0143673 + ], + [ + 109.3379451, + -0.014386 + ], + [ + 109.3379277, + -0.0143954 + ], + [ + 109.3379062, + -0.0144209 + ], + [ + 109.3378781, + -0.0144491 + ], + [ + 109.3378513, + -0.0144786 + ], + [ + 109.3378191, + -0.0145188 + ], + [ + 109.3377762, + -0.0145765 + ], + [ + 109.3377735, + -0.0145952 + ], + [ + 109.3377789, + -0.0146207 + ], + [ + 109.3378043, + -0.0146448 + ], + [ + 109.337864, + -0.0146858 + ], + [ + 109.3379096, + -0.0147213 + ] + ] + }, + "id": "way/643284570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284573", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361635, + -0.011909 + ], + [ + 109.336082, + -0.011966 + ], + [ + 109.3360709, + -0.011969 + ], + [ + 109.3360575, + -0.011968 + ], + [ + 109.3360468, + -0.0119633 + ], + [ + 109.3359529, + -0.0118762 + ] + ] + }, + "id": "way/643284573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284575", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335676, + -0.011555 + ], + [ + 109.3359529, + -0.0118762 + ] + ] + }, + "id": "way/643284575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284577", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3357551, + -0.0114758 + ], + [ + 109.335676, + -0.011555 + ], + [ + 109.3353809, + -0.0112747 + ] + ] + }, + "id": "way/643284577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284578", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365256, + -0.0125709 + ], + [ + 109.3366121, + -0.012664 + ], + [ + 109.3366858, + -0.0127418 + ], + [ + 109.3367086, + -0.0127794 + ], + [ + 109.336706, + -0.0128196 + ], + [ + 109.3366845, + -0.0128545 + ], + [ + 109.3366188, + -0.0129189 + ], + [ + 109.3365262, + -0.013006 + ], + [ + 109.3364364, + -0.0130959 + ], + [ + 109.3362916, + -0.0132474 + ] + ] + }, + "id": "way/643284578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284581", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366738, + -0.0124441 + ], + [ + 109.3365256, + -0.0125709 + ], + [ + 109.3362352, + -0.0128572 + ] + ] + }, + "id": "way/643284581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284582", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347143, + -0.0110734 + ], + [ + 109.3344944, + -0.0108415 + ], + [ + 109.3344811, + -0.0108388 + ], + [ + 109.3344683, + -0.0108415 + ], + [ + 109.3344516, + -0.0108509 + ], + [ + 109.3342893, + -0.0110292 + ] + ] + }, + "id": "way/643284582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284584", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344222, + -0.0102782 + ], + [ + 109.3343013, + -0.0104204 + ], + [ + 109.3342235, + -0.0105304 + ], + [ + 109.3341659, + -0.0106711 + ], + [ + 109.3341297, + -0.0107986 + ], + [ + 109.3340747, + -0.0109259 + ], + [ + 109.3340184, + -0.010993 + ], + [ + 109.3339486, + -0.0110588 + ], + [ + 109.3338345, + -0.0111565 + ] + ] + }, + "id": "way/643284584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284586", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3349639, + -0.0108214 + ], + [ + 109.3347143, + -0.0110734 + ], + [ + 109.3345924, + -0.0112116 + ] + ] + }, + "id": "way/643284586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284588", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350597, + -0.0107228 + ], + [ + 109.3349639, + -0.0108214 + ], + [ + 109.3344222, + -0.0102782 + ], + [ + 109.3343523, + -0.0102045 + ] + ] + }, + "id": "way/643284588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402252, + -0.0130854 + ], + [ + 109.3403095, + -0.013179 + ] + ] + }, + "id": "way/643284592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284594", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413654, + -0.0131649 + ], + [ + 109.341107, + -0.0129056 + ], + [ + 109.3408563, + -0.0126619 + ], + [ + 109.3407792, + -0.0125854 + ] + ] + }, + "id": "way/643284594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284597", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401901, + -0.0135277 + ], + [ + 109.3404389, + -0.0133017 + ] + ] + }, + "id": "way/643284597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284599", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403289, + -0.0136954 + ], + [ + 109.3403041, + -0.0136618 + ], + [ + 109.3401901, + -0.0135277 + ], + [ + 109.3401023, + -0.0135978 + ], + [ + 109.3400971, + -0.0135993 + ], + [ + 109.3400926, + -0.0135986 + ], + [ + 109.3400869, + -0.0135953 + ], + [ + 109.3398797, + -0.0133654 + ], + [ + 109.3398787, + -0.0133581 + ], + [ + 109.3398797, + -0.0133507 + ], + [ + 109.3398837, + -0.013342 + ], + [ + 109.3401365, + -0.0131495 + ], + [ + 109.3401787, + -0.0131177 + ], + [ + 109.3402252, + -0.0130854 + ], + [ + 109.3402484, + -0.0130687 + ], + [ + 109.340445, + -0.0129028 + ], + [ + 109.3407792, + -0.0125854 + ], + [ + 109.3409459, + -0.012428 + ], + [ + 109.3409593, + -0.0124216 + ], + [ + 109.3409703, + -0.0124237 + ], + [ + 109.3409831, + -0.0124297 + ] + ] + }, + "id": "way/643284599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284601", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340666, + -0.0140387 + ], + [ + 109.3403289, + -0.0136954 + ] + ] + }, + "id": "way/643284601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284603", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335326, + -0.0110158 + ], + [ + 109.3356044, + -0.0107149 + ], + [ + 109.33578, + -0.0105201 + ], + [ + 109.3359487, + -0.0103363 + ], + [ + 109.3360667, + -0.0101772 + ], + [ + 109.3361139, + -0.0101059 + ], + [ + 109.3362052, + -0.0099906 + ], + [ + 109.3363136, + -0.0098672 + ], + [ + 109.3364302, + -0.0097492 + ], + [ + 109.3365491, + -0.009637 + ] + ] + }, + "id": "way/643284603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284605", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429699, + -0.0123888 + ], + [ + 109.3430698, + -0.0122828 + ], + [ + 109.3431466, + -0.012199 + ], + [ + 109.343154, + -0.012196 + ], + [ + 109.343162, + -0.0121967 + ], + [ + 109.3432291, + -0.0122724 + ] + ] + }, + "id": "way/643284605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284607", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428207, + -0.0124763 + ], + [ + 109.3429139, + -0.0123851 + ], + [ + 109.3429314, + -0.0123774 + ], + [ + 109.3429448, + -0.0123767 + ], + [ + 109.3429699, + -0.0123888 + ], + [ + 109.3430205, + -0.0124401 + ], + [ + 109.3430809, + -0.0125018 + ], + [ + 109.3431661, + -0.0125869 + ], + [ + 109.3432452, + -0.0126654 + ], + [ + 109.3432886, + -0.0127052 + ] + ] + }, + "id": "way/643284607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284609", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430023, + -0.0109277 + ], + [ + 109.3431539, + -0.0106649 + ] + ] + }, + "id": "way/643284609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643284611", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350007, + -0.0114255 + ], + [ + 109.3349813, + -0.0114222 + ], + [ + 109.3349183, + -0.0113605 + ], + [ + 109.3349116, + -0.0113323 + ] + ] + }, + "id": "way/643284611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643306700", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343512, + -0.0483221 + ], + [ + 109.3343317, + -0.0483404 + ] + ] + }, + "id": "way/643306700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643306701", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339609, + -0.0466179 + ], + [ + 109.3338373, + -0.0464411 + ] + ] + }, + "id": "way/643306701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643306702", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322538, + -0.0509838 + ], + [ + 109.3322568, + -0.0510123 + ], + [ + 109.3322562, + -0.0510183 + ], + [ + 109.3322518, + -0.051024 + ], + [ + 109.3321879, + -0.0510527 + ], + [ + 109.3321844, + -0.0510581 + ], + [ + 109.3321827, + -0.0510649 + ], + [ + 109.3321837, + -0.0511004 + ] + ] + }, + "id": "way/643306702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643306703", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322064, + -0.0508638 + ], + [ + 109.3322197, + -0.0508973 + ] + ] + }, + "id": "way/643306703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643306704", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369441, + -0.0496718 + ], + [ + 109.3370942, + -0.0501667 + ], + [ + 109.3372464, + -0.0507313 + ], + [ + 109.3373064, + -0.0509817 + ], + [ + 109.3373098, + -0.0510102 + ], + [ + 109.3373074, + -0.0510374 + ], + [ + 109.3372991, + -0.0510659 + ], + [ + 109.3372595, + -0.0511594 + ], + [ + 109.3372531, + -0.0511916 + ], + [ + 109.3372528, + -0.0512198 + ], + [ + 109.3372571, + -0.0512429 + ], + [ + 109.3374369, + -0.0519102 + ] + ] + }, + "id": "way/643306704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643306705", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383753, + -0.0523598 + ], + [ + 109.3383334, + -0.0522173 + ], + [ + 109.3382328, + -0.051898 + ], + [ + 109.3380062, + -0.0512752 + ], + [ + 109.3378526, + -0.0508178 + ] + ] + }, + "id": "way/643306705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643306706", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325378, + -0.0508802 + ], + [ + 109.3326035, + -0.0510612 + ] + ] + }, + "id": "way/643306706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643306708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324902, + -0.0507568 + ], + [ + 109.3325047, + -0.0507908 + ] + ] + }, + "id": "way/643306708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643306709", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336875, + -0.0545216 + ], + [ + 109.3336945, + -0.054478 + ], + [ + 109.3337082, + -0.0544472 + ], + [ + 109.333721, + -0.054423 + ], + [ + 109.3337384, + -0.0544062 + ], + [ + 109.3337954, + -0.0543801 + ], + [ + 109.333841, + -0.0543661 + ], + [ + 109.3338819, + -0.054354 + ], + [ + 109.3339134, + -0.0543452 + ], + [ + 109.3339399, + -0.0543442 + ], + [ + 109.3339678, + -0.0543512 + ], + [ + 109.3339926, + -0.0544032 + ], + [ + 109.3340097, + -0.0544361 + ] + ] + }, + "id": "way/643306709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643307982", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264666, + -0.0025441 + ], + [ + 109.3266061, + -0.0026487 + ], + [ + 109.3266919, + -0.0027318 + ], + [ + 109.3267469, + -0.0027922 + ], + [ + 109.326767, + -0.0028317 + ], + [ + 109.3267684, + -0.0028753 + ], + [ + 109.326763, + -0.0029082 + ], + [ + 109.3267596, + -0.0029498 + ], + [ + 109.3267724, + -0.0030034 + ], + [ + 109.3268213, + -0.0030443 + ], + [ + 109.3268998, + -0.0030805 + ] + ] + }, + "id": "way/643307982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643307983", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273623, + -0.0033966 + ], + [ + 109.3274496, + -0.003279 + ], + [ + 109.3274555, + -0.0032418 + ], + [ + 109.3274389, + -0.0031999 + ], + [ + 109.3269803, + -0.0028914 + ] + ] + }, + "id": "way/643307983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643307984", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268998, + -0.0030805 + ], + [ + 109.3273623, + -0.0033966 + ], + [ + 109.32751, + -0.0034976 + ] + ] + }, + "id": "way/643307984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643307985", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223481, + -0.0011172 + ], + [ + 109.3225533, + -0.0007081 + ] + ] + }, + "id": "way/643307985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643307986", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322623, + -0.0012902 + ], + [ + 109.3223481, + -0.0011172 + ], + [ + 109.3222743, + -0.0010783 + ], + [ + 109.3221792, + -0.0010273 + ], + [ + 109.322088, + -0.000975 + ], + [ + 109.3220786, + -0.0009408 + ], + [ + 109.3220839, + -0.0009052 + ], + [ + 109.3221068, + -0.0008341 + ], + [ + 109.322159, + -0.0007523 + ], + [ + 109.3221912, + -0.0006598 + ], + [ + 109.3222636, + -0.0005391 + ], + [ + 109.3223655, + -0.000456 + ], + [ + 109.3225104, + -0.0004613 + ], + [ + 109.3226418, + -0.0004908 + ], + [ + 109.322741, + -0.0004426 + ], + [ + 109.3228456, + -0.0002924 + ], + [ + 109.3229207, + -0.0002199 + ], + [ + 109.323079, + -0.0001314 + ], + [ + 109.3232399, + -0.0000617 + ], + [ + 109.3233928, + 0.0000359 + ] + ] + }, + "id": "way/643307986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643307987", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231407, + -0.001663 + ], + [ + 109.3228642, + -0.0014608 + ], + [ + 109.322682, + -0.0013277 + ], + [ + 109.322623, + -0.0012902 + ], + [ + 109.3227571, + -0.0011238 + ], + [ + 109.3229476, + -0.0008181 + ] + ] + }, + "id": "way/643307987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643307988", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263409, + -0.00216 + ], + [ + 109.3255654, + -0.0032964 + ] + ] + }, + "id": "way/643307988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643307989", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326145, + -0.0020084 + ], + [ + 109.3259034, + -0.0023308 + ] + ] + }, + "id": "way/643307989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308244", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34108, + 0.0081973 + ], + [ + 109.3419621, + 0.0080888 + ] + ] + }, + "id": "way/643308244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308247", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621439, + 0.0058346 + ], + [ + 109.3620154, + 0.0048816 + ] + ] + }, + "id": "way/643308247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308251", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359252, + 0.0183931 + ], + [ + 109.3597249, + 0.0182935 + ] + ] + }, + "id": "way/643308251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308254", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460168, + 0.0075302 + ], + [ + 109.345955, + 0.0058909 + ] + ] + }, + "id": "way/643308254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308259", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3692584, + 0.0007203 + ], + [ + 109.3693821, + 0.0012529 + ] + ] + }, + "id": "way/643308259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308264", + "highway": "residential", + "import": "yes", + "lanes": "1", + "motorcar": "destination", + "source": "digitalglobe", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397367, + 0.0076309 + ], + [ + 109.3412422, + 0.0075217 + ], + [ + 109.3417897, + 0.0074678 + ], + [ + 109.3422127, + 0.0074554 + ] + ] + }, + "id": "way/643308264" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308266", + "highway": "residential", + "import": "yes", + "name": "Gang Praja Jaya 2", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3625496, + 0.0087001 + ], + [ + 109.3624833, + 0.0082083 + ] + ] + }, + "id": "way/643308266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308269", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413512, + 0.003842 + ], + [ + 109.3413454, + 0.003514 + ] + ] + }, + "id": "way/643308269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308271", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392132, + 0.0057024 + ], + [ + 109.339447, + 0.0047527 + ], + [ + 109.3395449, + 0.0042132 + ], + [ + 109.3396041, + 0.0039 + ], + [ + 109.3396759, + 0.0035948 + ], + [ + 109.3397341, + 0.0033862 + ], + [ + 109.3397918, + 0.0031462 + ], + [ + 109.3397967, + 0.0030358 + ], + [ + 109.3397725, + 0.0028254 + ], + [ + 109.3397745, + 0.0026493 + ], + [ + 109.3397815, + 0.0025259 + ], + [ + 109.3397824, + 0.0024475 + ], + [ + 109.3397657, + 0.0024267 + ], + [ + 109.3397433, + 0.0024164 + ], + [ + 109.3393483, + 0.0024279 + ] + ] + }, + "id": "way/643308271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308274", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688804, + 0.0021136 + ], + [ + 109.3678743, + 0.0020681 + ], + [ + 109.3673886, + 0.0020554 + ], + [ + 109.3671142, + 0.0020425 + ], + [ + 109.3667933, + 0.0020305 + ], + [ + 109.3665654, + 0.0020285 + ] + ] + }, + "id": "way/643308274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308276", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591353, + 0.0209808 + ], + [ + 109.3597726, + 0.0207699 + ] + ] + }, + "id": "way/643308276" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308278", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456379, + 0.0058921 + ], + [ + 109.3456686, + 0.0075316 + ] + ] + }, + "id": "way/643308278" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308281", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3677431, + 0.0149177 + ], + [ + 109.3677476, + 0.0153261 + ] + ] + }, + "id": "way/643308281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308283", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3647394, + 0.0087212 + ], + [ + 109.3638431, + 0.0088232 + ], + [ + 109.3632148, + 0.0089219 + ] + ] + }, + "id": "way/643308283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308286", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614341, + 0.0189143 + ], + [ + 109.3614153, + 0.0188196 + ], + [ + 109.3614019, + 0.0187356 + ], + [ + 109.3613648, + 0.0184833 + ] + ] + }, + "id": "way/643308286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308288", + "highway": "residential", + "import": "yes", + "name": "Gang Dwi Praja", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619627, + 0.0069472 + ], + [ + 109.3620031, + 0.0072524 + ], + [ + 109.3620704, + 0.0076114 + ] + ] + }, + "id": "way/643308288" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308290", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3721276, + 0.0018135 + ], + [ + 109.3720696, + 0.0022145 + ], + [ + 109.372029, + 0.0025446 + ], + [ + 109.3719393, + 0.0031056 + ], + [ + 109.3718091, + 0.0035275 + ], + [ + 109.3716388, + 0.0038637 + ] + ] + }, + "id": "way/643308290" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308293", + "highway": "residential", + "import": "yes", + "name": "Gang Bhakti Praja 5", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615184, + 0.008343 + ], + [ + 109.3615904, + 0.0088335 + ] + ] + }, + "id": "way/643308293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308295", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3679854, + 0.0011848 + ], + [ + 109.367954, + 0.000561 + ] + ] + }, + "id": "way/643308295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308298", + "highway": "residential", + "import": "yes", + "name": "Gang Tri Praja", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616416, + 0.0069921 + ], + [ + 109.3617361, + 0.0076538 + ] + ] + }, + "id": "way/643308298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308300", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681517, + 0.0194399 + ], + [ + 109.3681535, + 0.0192589 + ], + [ + 109.368121, + 0.0186602 + ], + [ + 109.3681127, + 0.0184418 + ], + [ + 109.3681012, + 0.018131 + ], + [ + 109.3681039, + 0.0180108 + ], + [ + 109.3681021, + 0.0178393 + ], + [ + 109.3680976, + 0.0176778 + ], + [ + 109.3680814, + 0.0174675 + ], + [ + 109.3680797, + 0.0173771 + ], + [ + 109.3680382, + 0.01577 + ], + [ + 109.3680342, + 0.0156333 + ], + [ + 109.3680127, + 0.0154817 + ], + [ + 109.3679827, + 0.015288 + ] + ] + }, + "id": "way/643308300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308305", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615857, + 0.0076743 + ], + [ + 109.3616333, + 0.0079921 + ], + [ + 109.3616414, + 0.0080459 + ], + [ + 109.36168, + 0.0083205 + ] + ] + }, + "id": "way/643308305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308307", + "highway": "residential", + "import": "yes", + "name": "Gang Catur Raja", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3613927, + 0.0076976 + ], + [ + 109.3613165, + 0.007037 + ] + ] + }, + "id": "way/643308307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308310", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3676309, + 0.0186965 + ], + [ + 109.368121, + 0.0186602 + ] + ] + }, + "id": "way/643308310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308312", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.369161, + 0.0177183 + ], + [ + 109.3686003, + 0.0178887 + ], + [ + 109.3683127, + 0.0179625 + ] + ] + }, + "id": "way/643308312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308314", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627212, + 0.0195312 + ], + [ + 109.3625686, + 0.0190466 + ], + [ + 109.3624581, + 0.0187352 + ], + [ + 109.3622786, + 0.0181454 + ] + ] + }, + "id": "way/643308314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308320", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417864, + 0.0085397 + ], + [ + 109.3412685, + 0.0085809 + ] + ] + }, + "id": "way/643308320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308322", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588366, + 0.0160257 + ], + [ + 109.3603885, + 0.0156433 + ] + ] + }, + "id": "way/643308322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308325", + "highway": "residential", + "import": "yes", + "name": "KOMPLEK ALOEVERA PERMAI I", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643727, + 0.0041917 + ], + [ + 109.3626135, + 0.0042999 + ] + ] + }, + "id": "way/643308325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308327", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389309, + 0.0107215 + ], + [ + 109.3410776, + 0.0103675 + ] + ] + }, + "id": "way/643308327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308330", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3603995, + 0.0056408 + ], + [ + 109.3603917, + 0.0055226 + ], + [ + 109.3603858, + 0.0054456 + ], + [ + 109.3603894, + 0.0054363 + ], + [ + 109.3603986, + 0.0054306 + ], + [ + 109.3609942, + 0.0053453 + ] + ] + }, + "id": "way/643308330" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308332", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3687395, + 0.0065129 + ], + [ + 109.368068, + 0.0064465 + ], + [ + 109.3676892, + 0.0064083 + ] + ] + }, + "id": "way/643308332" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308334", + "highway": "residential", + "import": "yes", + "name": "Gang Praja Jaya 3", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3622278, + 0.0087591 + ], + [ + 109.3621512, + 0.0082532 + ] + ] + }, + "id": "way/643308334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308337", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599333, + 0.0017732 + ], + [ + 109.3599186, + 0.0016677 + ], + [ + 109.3598708, + 0.0012344 + ] + ] + }, + "id": "way/643308337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308339", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445363, + 0.0064625 + ], + [ + 109.343842, + 0.0064668 + ], + [ + 109.3431972, + 0.0064594 + ], + [ + 109.3427895, + 0.0064449 + ] + ] + }, + "id": "way/643308339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308342", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688927, + 0.0043732 + ], + [ + 109.368912, + 0.0039887 + ] + ] + }, + "id": "way/643308342" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308344", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505743, + 0.0013908 + ], + [ + 109.3510062, + 0.0011448 + ], + [ + 109.3510296, + 0.0011314 + ] + ] + }, + "id": "way/643308344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308346", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361925, + 0.0006091 + ], + [ + 109.3619402, + 0.0007175 + ], + [ + 109.3619791, + 0.000975 + ], + [ + 109.3620538, + 0.0015164 + ] + ] + }, + "id": "way/643308346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308349", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550743, + 0.0023931 + ], + [ + 109.3551417, + 0.0029635 + ], + [ + 109.3551062, + 0.0029726 + ], + [ + 109.3550067, + 0.0029887 + ], + [ + 109.3546996, + 0.0030229 + ], + [ + 109.3543924, + 0.0030698 + ], + [ + 109.3543824, + 0.0030765 + ], + [ + 109.354379, + 0.0030986 + ], + [ + 109.354658, + 0.0045598 + ], + [ + 109.3546754, + 0.0045946 + ], + [ + 109.3547089, + 0.0045946 + ], + [ + 109.3549714, + 0.0044714 + ], + [ + 109.3555794, + 0.0041858 + ], + [ + 109.355877, + 0.0040421 + ], + [ + 109.3562002, + 0.0038932 + ], + [ + 109.3564752, + 0.0037739 + ], + [ + 109.3565047, + 0.0037497 + ] + ] + }, + "id": "way/643308349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308351", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502628, + 0.0020734 + ], + [ + 109.3509834, + 0.0016375 + ] + ] + }, + "id": "way/643308351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308353", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3678836, + 0.0135174 + ], + [ + 109.3650953, + 0.0138137 + ] + ] + }, + "id": "way/643308353" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308356", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409318, + 0.0097941 + ], + [ + 109.3411839, + 0.0097773 + ], + [ + 109.3413062, + 0.0097784 + ], + [ + 109.3413329, + 0.009791 + ] + ] + }, + "id": "way/643308356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308358", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3675168, + 0.0028897 + ], + [ + 109.3667711, + 0.002861 + ] + ] + }, + "id": "way/643308358" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308361", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342718, + 0.006281 + ], + [ + 109.3421938, + 0.0063008 + ] + ] + }, + "id": "way/643308361" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308363", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3399367, + 0.0028666 + ], + [ + 109.3418558, + 0.0028327 + ], + [ + 109.3427141, + 0.0028175 + ], + [ + 109.3432977, + 0.0028072 + ], + [ + 109.3437101, + 0.0027999 + ] + ] + }, + "id": "way/643308363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308366", + "highway": "residential", + "import": "yes", + "name": "Gang Eka Praja", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623711, + 0.0075666 + ], + [ + 109.3622679, + 0.0069024 + ] + ] + }, + "id": "way/643308366" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308368", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3647856, + 0.0096167 + ], + [ + 109.3653897, + 0.0095685 + ], + [ + 109.3670116, + 0.0093348 + ] + ] + }, + "id": "way/643308368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308369", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514786, + 0.0049923 + ], + [ + 109.3525741, + 0.0044071 + ], + [ + 109.3529655, + 0.0041837 + ] + ] + }, + "id": "way/643308369" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308370", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502174, + 0.0027897 + ], + [ + 109.3497247, + 0.0030872 + ], + [ + 109.349708, + 0.0031013 + ], + [ + 109.3497033, + 0.0031228 + ], + [ + 109.3499111, + 0.0035201 + ] + ] + }, + "id": "way/643308370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308371", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3579095, + 0.0254046 + ], + [ + 109.3577274, + 0.0254937 + ], + [ + 109.3575288, + 0.0255731 + ], + [ + 109.3574266, + 0.0256191 + ], + [ + 109.3572311, + 0.025687 + ], + [ + 109.3570659, + 0.0257444 + ], + [ + 109.3568645, + 0.0258143 + ] + ] + }, + "id": "way/643308371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308372", + "highway": "residential", + "import": "yes", + "source": "digitalglobe", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469366, + 0.0200509 + ], + [ + 109.3469292, + 0.0200649 + ], + [ + 109.3469305, + 0.0200884 + ], + [ + 109.3471464, + 0.0206295 + ], + [ + 109.3476916, + 0.0221774 + ] + ] + }, + "id": "way/643308372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308373", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578995, + 0.0156654 + ], + [ + 109.3573537, + 0.0163404 + ], + [ + 109.3573362, + 0.0163531 + ], + [ + 109.3573178, + 0.0163583 + ], + [ + 109.3573016, + 0.0163588 + ], + [ + 109.3572819, + 0.0163538 + ], + [ + 109.3571682, + 0.0162887 + ], + [ + 109.3571534, + 0.0162844 + ], + [ + 109.3571367, + 0.0162834 + ], + [ + 109.3570881, + 0.0162831 + ] + ] + }, + "id": "way/643308373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308374", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529353, + 0.004141 + ], + [ + 109.3529625, + 0.0041326 + ] + ] + }, + "id": "way/643308374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308375", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353238, + 0.0046103 + ], + [ + 109.3518073, + 0.0053532 + ] + ] + }, + "id": "way/643308375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308376", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640135, + 0.0003517 + ], + [ + 109.3638907, + 0.0003473 + ], + [ + 109.3635903, + 0.0003648 + ], + [ + 109.3619884, + 0.0004085 + ] + ] + }, + "id": "way/643308376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308377", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3620154, + 0.0048816 + ], + [ + 109.3616396, + 0.0049187 + ], + [ + 109.3612857, + 0.0049555 + ], + [ + 109.3609387, + 0.004991 + ] + ] + }, + "id": "way/643308377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308378", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.368912, + 0.0039887 + ], + [ + 109.3699646, + 0.0040481 + ] + ] + }, + "id": "way/643308378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308379", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688927, + 0.0043732 + ], + [ + 109.3700711, + 0.0044467 + ] + ] + }, + "id": "way/643308379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308381", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3670385, + 0.0005067 + ], + [ + 109.3670931, + 0.0008929 + ] + ] + }, + "id": "way/643308381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308382", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3705297, + 0.0083683 + ], + [ + 109.370577, + 0.0081635 + ], + [ + 109.3706522, + 0.0077622 + ], + [ + 109.3706961, + 0.0075083 + ] + ] + }, + "id": "way/643308382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308383", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414475, + 0.0098275 + ], + [ + 109.3416645, + 0.0098824 + ], + [ + 109.342357, + 0.0100739 + ] + ] + }, + "id": "way/643308383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308384", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413329, + 0.009791 + ], + [ + 109.3414475, + 0.0098275 + ] + ] + }, + "id": "way/643308384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308385", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427895, + 0.0064449 + ], + [ + 109.3426892, + 0.0064477 + ] + ] + }, + "id": "way/643308385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308386", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426892, + 0.0064477 + ], + [ + 109.3426434, + 0.0064445 + ] + ] + }, + "id": "way/643308386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308387", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529625, + 0.0041326 + ], + [ + 109.3530488, + 0.0041059 + ] + ] + }, + "id": "way/643308387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308388", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530488, + 0.0041059 + ], + [ + 109.3532376, + 0.0040476 + ], + [ + 109.3533451, + 0.0040244 + ], + [ + 109.3535411, + 0.0039968 + ] + ] + }, + "id": "way/643308388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308391", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683127, + 0.0179625 + ], + [ + 109.3681552, + 0.0180029 + ] + ] + }, + "id": "way/643308391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643308392", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681552, + 0.0180029 + ], + [ + 109.3681039, + 0.0180108 + ] + ] + }, + "id": "way/643308392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643309638", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208839, + -0.0563948 + ], + [ + 109.3208518, + -0.0564481 + ], + [ + 109.3208471, + -0.0564565 + ], + [ + 109.320842, + -0.0564689 + ], + [ + 109.320839, + -0.056483 + ], + [ + 109.32084, + -0.0564984 + ], + [ + 109.3208464, + -0.0565161 + ], + [ + 109.3210392, + -0.0568722 + ] + ] + }, + "id": "way/643309638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643319512", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061087, + 0.0123945 + ], + [ + 109.3057318, + 0.0111835 + ] + ] + }, + "id": "way/643319512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643324042", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Khatulistiwa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2952056, + 0.0101621 + ], + [ + 109.2952807, + 0.0101255 + ] + ] + }, + "id": "way/643324042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643332419", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3811244, + -0.0460424 + ], + [ + 109.3812606, + -0.0462521 + ], + [ + 109.3814067, + -0.0464572 + ] + ] + }, + "id": "way/643332419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643332424", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3803686, + -0.0469142 + ], + [ + 109.3792944, + -0.0478212 + ] + ] + }, + "id": "way/643332424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643332431", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3825369, + -0.0524709 + ], + [ + 109.3823287, + -0.052212 + ] + ] + }, + "id": "way/643332431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643332437", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3802099, + -0.0466927 + ], + [ + 109.3791077, + -0.0475809 + ] + ] + }, + "id": "way/643332437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643332445", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3813427, + -0.0458876 + ], + [ + 109.3811314, + -0.045579 + ], + [ + 109.380947, + -0.0453307 + ], + [ + 109.3807669, + -0.0450807 + ] + ] + }, + "id": "way/643332445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643332459", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3821251, + -0.0474434 + ], + [ + 109.3812333, + -0.0481032 + ] + ] + }, + "id": "way/643332459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643332492", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3827675, + -0.0465954 + ], + [ + 109.3829512, + -0.0468597 + ], + [ + 109.383154, + -0.0471062 + ], + [ + 109.383904, + -0.0465752 + ] + ] + }, + "id": "way/643332492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643332516", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793102, + -0.0573091 + ], + [ + 109.3800719, + -0.0567314 + ], + [ + 109.3808068, + -0.0561541 + ] + ] + }, + "id": "way/643332516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343775", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539961, + 0.0058801 + ], + [ + 109.3539769, + 0.0058844 + ] + ] + }, + "id": "way/643343775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343778", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585716, + 0.0149262 + ], + [ + 109.3586169, + 0.0149051 + ] + ] + }, + "id": "way/643343778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343779", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585106, + 0.014959 + ], + [ + 109.3585716, + 0.0149262 + ] + ] + }, + "id": "way/643343779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343780", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508828, + 0.0212599 + ], + [ + 109.3508734, + 0.021235 + ] + ] + }, + "id": "way/643343780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343781", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508909, + 0.021285 + ], + [ + 109.3508828, + 0.0212599 + ] + ] + }, + "id": "way/643343781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343782", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521417, + 0.0209236 + ], + [ + 109.3521273, + 0.0208874 + ] + ] + }, + "id": "way/643343782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343783", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521501, + 0.0209503 + ], + [ + 109.3521417, + 0.0209236 + ] + ] + }, + "id": "way/643343783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343784", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489127, + 0.0217889 + ], + [ + 109.3488939, + 0.0217339 + ] + ] + }, + "id": "way/643343784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343785", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489276, + 0.0218349 + ], + [ + 109.3489127, + 0.0217889 + ] + ] + }, + "id": "way/643343785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343786", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466212, + 0.0223989 + ], + [ + 109.3466046, + 0.0223348 + ] + ] + }, + "id": "way/643343786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643343787", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466307, + 0.0224627 + ], + [ + 109.3466212, + 0.0223989 + ] + ] + }, + "id": "way/643343787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643362595", + "bridge": "yes", + "highway": "unclassified", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3660815, + 0.0005579 + ], + [ + 109.3659416, + 0.0005779 + ] + ] + }, + "id": "way/643362595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643362596", + "highway": "tertiary", + "name": "Budi Utomo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568621, + 0.0021612 + ], + [ + 109.3569069, + 0.0021549 + ] + ] + }, + "id": "way/643362596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643362597", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Budi Utomo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567592, + 0.0021759 + ], + [ + 109.3568621, + 0.0021612 + ] + ] + }, + "id": "way/643362597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577377", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409713, + 0.0107081 + ], + [ + 109.3395142, + 0.0109676 + ] + ] + }, + "id": "way/643577377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577378", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407427, + 0.0090538 + ], + [ + 109.3415943, + 0.0089385 + ], + [ + 109.3416345, + 0.0089334 + ] + ] + }, + "id": "way/643577378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577379", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434986, + 0.0053081 + ], + [ + 109.3435697, + 0.0053684 + ], + [ + 109.3436354, + 0.0054422 + ], + [ + 109.3436676, + 0.0054837 + ] + ] + }, + "id": "way/643577379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577380", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480396, + 0.0039988 + ], + [ + 109.3479699, + 0.0032696 + ] + ] + }, + "id": "way/643577380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577381", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473279, + 0.0042014 + ], + [ + 109.3472484, + 0.0034279 + ] + ] + }, + "id": "way/643577381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577382", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465274, + 0.0043296 + ], + [ + 109.3465255, + 0.0042003 + ], + [ + 109.3465282, + 0.0041614 + ], + [ + 109.3465376, + 0.004144 + ], + [ + 109.346559, + 0.0041346 + ], + [ + 109.3468098, + 0.0040931 + ], + [ + 109.346834, + 0.0040783 + ], + [ + 109.3468554, + 0.0040555 + ], + [ + 109.3468635, + 0.0040247 + ], + [ + 109.3468474, + 0.0036947 + ], + [ + 109.3468407, + 0.0036532 + ], + [ + 109.3468058, + 0.0036344 + ], + [ + 109.3467334, + 0.003629 + ], + [ + 109.3466717, + 0.0036304 + ] + ] + }, + "id": "way/643577382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577384", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441769, + 0.0045979 + ], + [ + 109.3441639, + 0.0043184 + ], + [ + 109.3441585, + 0.0042178 + ], + [ + 109.3441638, + 0.0041655 + ] + ] + }, + "id": "way/643577384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577385", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454018, + 0.0038623 + ], + [ + 109.3450436, + 0.0038865 + ], + [ + 109.3450195, + 0.0039107 + ], + [ + 109.3450141, + 0.0039616 + ], + [ + 109.3450356, + 0.0043076 + ] + ] + }, + "id": "way/643577385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577386", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429226, + 0.0053268 + ], + [ + 109.34293, + 0.0053497 + ], + [ + 109.3430781, + 0.0054311 + ] + ] + }, + "id": "way/643577386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577387", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431633, + 0.0052041 + ], + [ + 109.3429649, + 0.0052182 + ], + [ + 109.3429501, + 0.0052276 + ], + [ + 109.3429314, + 0.0052665 + ], + [ + 109.3429226, + 0.0053268 + ] + ] + }, + "id": "way/643577387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577388", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342057, + 0.0049017 + ], + [ + 109.3421227, + 0.0050667 + ], + [ + 109.3421294, + 0.0050788 + ], + [ + 109.3421294, + 0.0051096 + ], + [ + 109.3421146, + 0.0052759 + ] + ] + }, + "id": "way/643577388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577389", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421117, + 0.0077243 + ], + [ + 109.3418773, + 0.0077368 + ] + ] + }, + "id": "way/643577389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577390", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340744, + 0.0118017 + ], + [ + 109.3408433, + 0.0118252 + ] + ] + }, + "id": "way/643577390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577391", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406907, + 0.0117876 + ], + [ + 109.340744, + 0.0118017 + ] + ] + }, + "id": "way/643577391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577392", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406676, + 0.0124998 + ], + [ + 109.3407708, + 0.0125152 + ] + ] + }, + "id": "way/643577392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577393", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405864, + 0.0124843 + ], + [ + 109.3406676, + 0.0124998 + ] + ] + }, + "id": "way/643577393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643577394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473918, + 0.0075571 + ], + [ + 109.3473396, + 0.0066143 + ] + ] + }, + "id": "way/643577394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643579249", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353632, + 0.0050063 + ], + [ + 109.3537755, + 0.0049379 + ] + ] + }, + "id": "way/643579249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643579250", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535462, + 0.0050506 + ], + [ + 109.353632, + 0.0050063 + ] + ] + }, + "id": "way/643579250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643579252", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535219, + 0.0050614 + ], + [ + 109.3535462, + 0.0050506 + ] + ] + }, + "id": "way/643579252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643579253", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493587, + 0.0036563 + ], + [ + 109.3492936, + 0.003169 + ] + ] + }, + "id": "way/643579253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643579254", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492936, + 0.003169 + ], + [ + 109.3492869, + 0.0031436 + ], + [ + 109.349252, + 0.0031301 + ], + [ + 109.3491662, + 0.0031368 + ], + [ + 109.3491487, + 0.0031623 + ], + [ + 109.3491474, + 0.0032079 + ], + [ + 109.3492179, + 0.0036921 + ] + ] + }, + "id": "way/643579254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643579256", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522598, + 0.0031259 + ], + [ + 109.351674, + 0.0034198 + ], + [ + 109.3505743, + 0.004034 + ] + ] + }, + "id": "way/643579256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580411", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306352, + -0.0026551 + ], + [ + 109.3063955, + -0.0024635 + ], + [ + 109.3064333, + -0.0022966 + ], + [ + 109.3065136, + -0.0019419 + ] + ] + }, + "id": "way/643580411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580412", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068284, + -0.0020164 + ], + [ + 109.3069126, + -0.0016695 + ] + ] + }, + "id": "way/643580412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580414", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116628, + -0.0031395 + ], + [ + 109.3121718, + -0.0033111 + ] + ] + }, + "id": "way/643580414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580415", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123823, + -0.0020921 + ], + [ + 109.3123153, + -0.0024381 + ], + [ + 109.3122439, + -0.0028795 + ] + ] + }, + "id": "way/643580415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580416", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083547, + -0.0035501 + ], + [ + 109.3081149, + -0.0034735 + ] + ] + }, + "id": "way/643580416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580417", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3065503, + -0.00095 + ], + [ + 109.3064922, + -0.0011138 + ], + [ + 109.3064859, + -0.0011332 + ] + ] + }, + "id": "way/643580417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580418", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071109, + -0.0010478 + ], + [ + 109.307043, + -0.0012601 + ] + ] + }, + "id": "way/643580418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580419", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068811, + -0.0010206 + ], + [ + 109.3068239, + -0.0011706 + ] + ] + }, + "id": "way/643580419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580420", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062213, + -0.0008798 + ], + [ + 109.3065503, + -0.00095 + ], + [ + 109.3065606, + -0.0009522 + ], + [ + 109.3068811, + -0.0010206 + ], + [ + 109.3071109, + -0.0010478 + ], + [ + 109.3074378, + -0.0011185 + ], + [ + 109.3077683, + -0.0012187 + ], + [ + 109.307774, + -0.0012201 + ], + [ + 109.3077797, + -0.0012228 + ], + [ + 109.3077852, + -0.0012315 + ] + ] + }, + "id": "way/643580420" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643580421", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097401, + -0.0032306 + ], + [ + 109.309853, + -0.0027279 + ], + [ + 109.3099975, + -0.0018728 + ] + ] + }, + "id": "way/643580421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581300", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297255, + -0.0446715 + ], + [ + 109.329824, + -0.0448431 + ], + [ + 109.329865, + -0.0448988 + ], + [ + 109.3298972, + -0.0449297 + ], + [ + 109.3299347, + -0.0449833 + ], + [ + 109.3299763, + -0.0450933 + ] + ] + }, + "id": "way/643581300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581302", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318699, + -0.0413945 + ], + [ + 109.3320107, + -0.0417419 + ], + [ + 109.3320429, + -0.0418143 + ], + [ + 109.3321623, + -0.0420463 + ] + ] + }, + "id": "way/643581302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581303", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323134, + -0.0401546 + ], + [ + 109.3321328, + -0.0398 + ] + ] + }, + "id": "way/643581303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581304", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322374, + -0.0401943 + ], + [ + 109.3323393, + -0.0404115 + ] + ] + }, + "id": "way/643581304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581305", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325096, + -0.040567 + ], + [ + 109.3326035, + -0.0405107 + ], + [ + 109.3327068, + -0.0404517 + ], + [ + 109.3327966, + -0.0404021 + ], + [ + 109.3332018, + -0.0401871 + ] + ] + }, + "id": "way/643581305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581306", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332084, + -0.0415246 + ], + [ + 109.3337772, + -0.0412414 + ] + ] + }, + "id": "way/643581306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581307", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331327, + -0.042009 + ], + [ + 109.3314408, + -0.0421657 + ], + [ + 109.3314703, + -0.0422086 + ], + [ + 109.3314817, + -0.0422183 + ], + [ + 109.3314922, + -0.0422233 + ], + [ + 109.3315025, + -0.042226 + ], + [ + 109.331532, + -0.0422166 + ], + [ + 109.3316855, + -0.0421362 + ] + ] + }, + "id": "way/643581307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581308", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302677, + -0.0417284 + ], + [ + 109.3303693, + -0.0417231 + ], + [ + 109.3304551, + -0.0417151 + ], + [ + 109.3305235, + -0.041699 + ], + [ + 109.3309942, + -0.0414562 + ] + ] + }, + "id": "way/643581308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581309", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302418, + -0.0404906 + ], + [ + 109.3305478, + -0.0411173 + ] + ] + }, + "id": "way/643581309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581310", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309399, + -0.0408972 + ], + [ + 109.3307179, + -0.0404678 + ], + [ + 109.3307085, + -0.0404383 + ], + [ + 109.3307112, + -0.0404061 + ], + [ + 109.3307246, + -0.0403807 + ], + [ + 109.3307394, + -0.0403632 + ], + [ + 109.3308698, + -0.0402942 + ] + ] + }, + "id": "way/643581310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581311", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331477, + -0.0397262 + ], + [ + 109.3318404, + -0.0404019 + ] + ] + }, + "id": "way/643581311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581313", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341855, + -0.0419715 + ], + [ + 109.3341142, + -0.0420047 + ], + [ + 109.3340828, + -0.0420208 + ], + [ + 109.3340707, + -0.0420383 + ], + [ + 109.334064, + -0.0420651 + ], + [ + 109.334072, + -0.0420986 + ], + [ + 109.3340841, + -0.0421335 + ], + [ + 109.3341029, + -0.0421818 + ], + [ + 109.3341176, + -0.042226 + ], + [ + 109.334135, + -0.0422582 + ] + ] + }, + "id": "way/643581313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581314", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352449, + -0.043875 + ], + [ + 109.3352629, + -0.0438313 + ], + [ + 109.3355593, + -0.0436261 + ] + ] + }, + "id": "way/643581314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581315", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352449, + -0.043875 + ], + [ + 109.335615, + -0.0444593 + ] + ] + }, + "id": "way/643581315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347186, + -0.043758 + ], + [ + 109.3353259, + -0.0433552 + ] + ] + }, + "id": "way/643581316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581317", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332393, + -0.0413918 + ], + [ + 109.332578, + -0.0413113 + ] + ] + }, + "id": "way/643581317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581318", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320071, + -0.0383175 + ], + [ + 109.3321998, + -0.0381953 + ], + [ + 109.3322589, + -0.0381595 + ], + [ + 109.3322632, + -0.0381447 + ], + [ + 109.3322588, + -0.0381249 + ], + [ + 109.3322146, + -0.0380659 + ], + [ + 109.3321751, + -0.0380075 + ], + [ + 109.3321576, + -0.0379794 + ], + [ + 109.3321536, + -0.0379412 + ], + [ + 109.332165, + -0.0379184 + ], + [ + 109.3323809, + -0.0377655 + ] + ] + }, + "id": "way/643581318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581319", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352418, + -0.0388174 + ], + [ + 109.3353587, + -0.0387133 + ], + [ + 109.3353988, + -0.0386776 + ] + ] + }, + "id": "way/643581319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581320", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351047, + -0.0386426 + ], + [ + 109.3352418, + -0.0388174 + ], + [ + 109.3353756, + -0.0389819 + ], + [ + 109.3353809, + -0.0389908 + ], + [ + 109.3353836, + -0.039002 + ], + [ + 109.3353841, + -0.0390146 + ], + [ + 109.3353809, + -0.0390275 + ], + [ + 109.3349478, + -0.0393882 + ] + ] + }, + "id": "way/643581320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581321", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3349208, + -0.0395872 + ], + [ + 109.3352941, + -0.0400422 + ] + ] + }, + "id": "way/643581321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581322", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334964, + -0.0414107 + ], + [ + 109.3352569, + -0.0412403 + ] + ] + }, + "id": "way/643581322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581323", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350457, + -0.0415608 + ], + [ + 109.334964, + -0.0414107 + ], + [ + 109.3348297, + -0.0411639 + ], + [ + 109.3347868, + -0.0410874 + ], + [ + 109.3347614, + -0.0410566 + ], + [ + 109.3347466, + -0.0410566 + ], + [ + 109.3347265, + -0.0410566 + ], + [ + 109.3345843, + -0.0411196 + ] + ] + }, + "id": "way/643581323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581324", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353561, + -0.0413469 + ], + [ + 109.3352569, + -0.0412403 + ], + [ + 109.335222, + -0.0411659 + ], + [ + 109.3351905, + -0.0410995 + ], + [ + 109.3351288, + -0.0410284 + ], + [ + 109.3351137, + -0.0410237 + ], + [ + 109.3350993, + -0.0410271 + ], + [ + 109.3350846, + -0.0410351 + ], + [ + 109.3348297, + -0.0411639 + ] + ] + }, + "id": "way/643581324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581325", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339593, + -0.0412954 + ], + [ + 109.3341022, + -0.0415682 + ] + ] + }, + "id": "way/643581325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581326", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338458, + -0.0413668 + ], + [ + 109.3339593, + -0.0412954 + ], + [ + 109.3340774, + -0.0412336 + ] + ] + }, + "id": "way/643581326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581327", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337589, + -0.0412067 + ], + [ + 109.3339802, + -0.0410928 + ], + [ + 109.3339979, + -0.0410843 + ], + [ + 109.33401, + -0.041077 + ], + [ + 109.3340261, + -0.0410676 + ], + [ + 109.3340592, + -0.0410479 + ], + [ + 109.3340747, + -0.0410404 + ] + ] + }, + "id": "way/643581327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581328", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339532, + -0.0403105 + ], + [ + 109.3340144, + -0.0404182 + ], + [ + 109.334072, + -0.0404745 + ], + [ + 109.334123, + -0.0405188 + ], + [ + 109.334292, + -0.0406556 + ], + [ + 109.3343255, + -0.0406811 + ], + [ + 109.3343925, + -0.0407642 + ] + ] + }, + "id": "way/643581328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581329", + "highway": "residential", + "name": "Jalan Kapten Tandean" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358386, + -0.0376381 + ], + [ + 109.3358128, + -0.0376106 + ], + [ + 109.3357886, + -0.0375965 + ], + [ + 109.3357591, + -0.0375871 + ], + [ + 109.3357256, + -0.0375831 + ], + [ + 109.335686, + -0.0375972 + ], + [ + 109.3351378, + -0.0380118 + ], + [ + 109.3350608, + -0.03807 + ] + ] + }, + "id": "way/643581329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581330", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340969, + -0.0368631 + ], + [ + 109.3341356, + -0.036822 + ], + [ + 109.3341657, + -0.0367944 + ], + [ + 109.3344797, + -0.0365062 + ], + [ + 109.3345071, + -0.036502 + ], + [ + 109.3345293, + -0.0364968 + ], + [ + 109.3345481, + -0.0364995 + ], + [ + 109.3346755, + -0.0366658 + ], + [ + 109.3346769, + -0.0366936 + ], + [ + 109.3346708, + -0.0367201 + ], + [ + 109.3346621, + -0.0367356 + ], + [ + 109.3346424, + -0.036755 + ], + [ + 109.3343432, + -0.0370052 + ], + [ + 109.3342654, + -0.0370702 + ] + ] + }, + "id": "way/643581330" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581331", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340288, + -0.0393204 + ], + [ + 109.3343134, + -0.0391281 + ] + ] + }, + "id": "way/643581331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581332", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338171, + -0.0389868 + ], + [ + 109.3337394, + -0.0390476 + ], + [ + 109.3337247, + -0.039061 + ], + [ + 109.3337193, + -0.0390788 + ], + [ + 109.33372, + -0.0390972 + ], + [ + 109.3337354, + -0.0391254 + ], + [ + 109.3337857, + -0.0391987 + ], + [ + 109.3339996, + -0.0395103 + ], + [ + 109.3340211, + -0.0395291 + ], + [ + 109.3340412, + -0.0395411 + ], + [ + 109.3340814, + -0.0395371 + ], + [ + 109.3341176, + -0.0395197 + ], + [ + 109.3341399, + -0.0394955 + ] + ] + }, + "id": "way/643581332" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581333", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332805, + -0.038163 + ], + [ + 109.3331806, + -0.0386217 + ] + ] + }, + "id": "way/643581333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581334", + "highway": "residential", + "name": "Jalan Komplek Ahmad Marzuki Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321993, + -0.0386267 + ], + [ + 109.3322599, + -0.0385832 + ], + [ + 109.3326853, + -0.0382778 + ], + [ + 109.332805, + -0.038163 + ], + [ + 109.3330354, + -0.0379438 + ] + ] + }, + "id": "way/643581334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581335", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300495, + -0.0372332 + ], + [ + 109.3303129, + -0.0370239 + ] + ] + }, + "id": "way/643581335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581336", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3283328, + -0.0373283 + ], + [ + 109.3285212, + -0.0375402 + ] + ] + }, + "id": "way/643581336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581337", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277785, + -0.0391229 + ], + [ + 109.3280049, + -0.0389765 + ] + ] + }, + "id": "way/643581337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581338", + "highway": "residential", + "name": "Jalan Komp. Tongie 67" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285011, + -0.0389712 + ], + [ + 109.3284005, + -0.038829 + ], + [ + 109.3283066, + -0.0386909 + ], + [ + 109.3281926, + -0.0384763 + ], + [ + 109.3280692, + -0.0381906 + ] + ] + }, + "id": "way/643581338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581339", + "highway": "residential", + "name": "Jalan Gusti Johan Idrus", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3283542, + -0.0382188 + ], + [ + 109.3285943, + -0.0386583 + ], + [ + 109.3286768, + -0.0388054 + ] + ] + }, + "id": "way/643581339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581341", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330274, + -0.0390047 + ], + [ + 109.3304256, + -0.0391924 + ], + [ + 109.3304551, + -0.0392166 + ], + [ + 109.3304819, + -0.0392152 + ], + [ + 109.3308882, + -0.0390011 + ] + ] + }, + "id": "way/643581341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581342", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296016, + -0.0382285 + ], + [ + 109.3300474, + -0.0387686 + ], + [ + 109.3301265, + -0.0388585 + ] + ] + }, + "id": "way/643581342" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581343", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292367, + -0.0398096 + ], + [ + 109.3293943, + -0.0397236 + ], + [ + 109.3300782, + -0.0393507 + ], + [ + 109.3301211, + -0.0393319 + ], + [ + 109.3301399, + -0.0393145 + ], + [ + 109.3301453, + -0.0392903 + ], + [ + 109.3301305, + -0.0392447 + ], + [ + 109.329987, + -0.0390167 + ], + [ + 109.3299541, + -0.0389628 + ], + [ + 109.3299387, + -0.0389453 + ], + [ + 109.32992, + -0.0389349 + ], + [ + 109.3298911, + -0.0389262 + ], + [ + 109.3298636, + -0.0389282 + ], + [ + 109.3297912, + -0.0389658 + ], + [ + 109.3291656, + -0.0393312 + ], + [ + 109.3290247, + -0.0394135 + ] + ] + }, + "id": "way/643581343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581345", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296146, + -0.0404992 + ], + [ + 109.3297847, + -0.0404067 + ], + [ + 109.3299213, + -0.0403324 + ], + [ + 109.3299454, + -0.0403069 + ], + [ + 109.3299656, + -0.0402586 + ], + [ + 109.3300179, + -0.040209 + ], + [ + 109.3304068, + -0.0399864 + ], + [ + 109.3304671, + -0.0399582 + ], + [ + 109.3301426, + -0.0393788 + ] + ] + }, + "id": "way/643581345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581346", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292022, + -0.0399657 + ], + [ + 109.3292965, + -0.0399213 + ], + [ + 109.3294526, + -0.0398417 + ], + [ + 109.3296701, + -0.0397307 + ], + [ + 109.3297421, + -0.039686 + ], + [ + 109.3298204, + -0.0396373 + ] + ] + }, + "id": "way/643581346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581347", + "highway": "residential", + "name": "Gang Bersama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285212, + -0.0375402 + ], + [ + 109.3288981, + -0.0381217 + ], + [ + 109.3291102, + -0.038461 + ] + ] + }, + "id": "way/643581347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581348", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278911, + -0.0369521 + ], + [ + 109.328088, + -0.0371446 + ] + ] + }, + "id": "way/643581348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581349", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291609, + -0.0438098 + ], + [ + 109.3291797, + -0.0438099 + ], + [ + 109.3292222, + -0.043822 + ], + [ + 109.3292548, + -0.0438259 + ], + [ + 109.3292825, + -0.0438141 + ], + [ + 109.3293647, + -0.0437576 + ], + [ + 109.3299047, + -0.043464 + ], + [ + 109.3299167, + -0.0434612 + ], + [ + 109.3299371, + -0.0434612 + ], + [ + 109.3299575, + -0.0434699 + ], + [ + 109.3299951, + -0.0435363 + ], + [ + 109.3300219, + -0.0435443 + ], + [ + 109.33005, + -0.0435403 + ], + [ + 109.3304765, + -0.0433311 + ], + [ + 109.3304832, + -0.0432935 + ], + [ + 109.3304524, + -0.0432157 + ], + [ + 109.3305114, + -0.0431849 + ], + [ + 109.3305288, + -0.0431728 + ] + ] + }, + "id": "way/643581349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581350", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302711, + -0.0423068 + ], + [ + 109.3302733, + -0.0422907 + ], + [ + 109.3302831, + -0.0422773 + ], + [ + 109.3302988, + -0.0422649 + ], + [ + 109.3303992, + -0.0421989 + ] + ] + }, + "id": "way/643581350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581351", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280736, + -0.0434536 + ], + [ + 109.3284552, + -0.0432046 + ], + [ + 109.3289074, + -0.0429287 + ] + ] + }, + "id": "way/643581351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581352", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279921, + -0.0438644 + ], + [ + 109.3282315, + -0.0442162 + ] + ] + }, + "id": "way/643581352" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581353", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3269964, + -0.0430471 + ], + [ + 109.3275515, + -0.0441389 + ] + ] + }, + "id": "way/643581353" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581354", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276387, + -0.044294 + ], + [ + 109.3279632, + -0.0448122 + ] + ] + }, + "id": "way/643581354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581355", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272834, + -0.0451161 + ], + [ + 109.327772, + -0.0447977 + ] + ] + }, + "id": "way/643581355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643581356", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278347, + -0.044903 + ], + [ + 109.327772, + -0.0447977 + ], + [ + 109.327679, + -0.0446413 + ] + ] + }, + "id": "way/643581356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643585009", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3641675, + 0.0019723 + ], + [ + 109.364047, + 0.0020357 + ], + [ + 109.3639652, + 0.0020787 + ], + [ + 109.3638177, + 0.002131 + ], + [ + 109.3635508, + 0.0021873 + ] + ] + }, + "id": "way/643585009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643585010", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642187, + 0.0025263 + ], + [ + 109.3641109, + 0.0025345 + ], + [ + 109.3636501, + 0.0025696 + ], + [ + 109.3633155, + 0.0026929 + ], + [ + 109.3630023, + 0.0028083 + ], + [ + 109.3628658, + 0.0028045 + ] + ] + }, + "id": "way/643585010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643585011", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601006, + 0.0030719 + ], + [ + 109.3598253, + 0.0031047 + ] + ] + }, + "id": "way/643585011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643585012", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640535, + 0.0007633 + ], + [ + 109.3639612, + 0.0007678 + ], + [ + 109.3638848, + 0.0007738 + ], + [ + 109.3638238, + 0.0007778 + ] + ] + }, + "id": "way/643585012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643585013", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646634, + 0.0077871 + ], + [ + 109.3654525, + 0.0076765 + ] + ] + }, + "id": "way/643585013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643585014", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364933, + 0.0059477 + ], + [ + 109.3649831, + 0.0063662 + ] + ] + }, + "id": "way/643585014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643585015", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645234, + 0.0060032 + ], + [ + 109.364933, + 0.0059477 + ], + [ + 109.3656845, + 0.0058459 + ], + [ + 109.3657087, + 0.0058539 + ], + [ + 109.3657248, + 0.0058714 + ], + [ + 109.3657757, + 0.0061771 + ] + ] + }, + "id": "way/643585015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643585016", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628736, + 0.0086958 + ], + [ + 109.3630479, + 0.008683 + ], + [ + 109.363062, + 0.008685 + ], + [ + 109.36307, + 0.0086984 + ], + [ + 109.3631807, + 0.0093944 + ] + ] + }, + "id": "way/643585016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643585017", + "highway": "residential", + "name": "GREEN SAFA - MARISSA 9" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628904, + 0.0088854 + ], + [ + 109.3604609, + 0.0092241 + ], + [ + 109.3604173, + 0.0092301 + ], + [ + 109.3579022, + 0.0095756 + ] + ] + }, + "id": "way/643585017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643588393", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023005, + -0.0024489 + ], + [ + 109.302405, + -0.0024612 + ], + [ + 109.3023859, + -0.002664 + ], + [ + 109.3027062, + -0.0027017 + ] + ] + }, + "id": "way/643588393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643588394", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059638, + -0.0006947 + ], + [ + 109.3058646, + -0.0011077 + ], + [ + 109.3056661, + -0.0014055 + ], + [ + 109.3053603, + -0.0013572 + ], + [ + 109.3051847, + -0.0020036 + ], + [ + 109.3049324, + -0.0032153 + ], + [ + 109.3047104, + -0.004196 + ], + [ + 109.3046654, + -0.0043949 + ], + [ + 109.3045341, + -0.0049753 + ] + ] + }, + "id": "way/643588394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643588396", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968886, + -0.0017045 + ], + [ + 109.2971171, + -0.0017234 + ], + [ + 109.297535, + -0.0017689 + ], + [ + 109.2979048, + -0.0018017 + ], + [ + 109.2982712, + -0.0018407 + ], + [ + 109.2987832, + -0.0018849 + ], + [ + 109.2987886, + -0.0018889 + ], + [ + 109.2987913, + -0.0018987 + ], + [ + 109.2987973, + -0.0019352 + ], + [ + 109.2988063, + -0.0019506 + ], + [ + 109.2988127, + -0.001955 + ], + [ + 109.2988211, + -0.0019567 + ], + [ + 109.2988311, + -0.0019553 + ], + [ + 109.2988392, + -0.0019493 + ], + [ + 109.2988482, + -0.0019362 + ], + [ + 109.2988536, + -0.0019124 + ], + [ + 109.2988586, + -0.0019027 + ], + [ + 109.298868, + -0.001898 + ], + [ + 109.2991143, + -0.0019153 + ] + ] + }, + "id": "way/643588396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643588397", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2989291, + -0.003271 + ], + [ + 109.2991711, + -0.0032207 + ], + [ + 109.2997478, + -0.0030946 + ], + [ + 109.3004231, + -0.0029307 + ] + ] + }, + "id": "way/643588397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643591514", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3861015, + -0.049356 + ], + [ + 109.3855242, + -0.049824 + ], + [ + 109.3851192, + -0.0501399 + ], + [ + 109.3848757, + -0.0503497 + ], + [ + 109.3843715, + -0.0507621 + ], + [ + 109.3836392, + -0.0513797 + ], + [ + 109.3836111, + -0.0514029 + ], + [ + 109.3835896, + -0.0514186 + ], + [ + 109.3835668, + -0.0513931 + ], + [ + 109.383499, + -0.0513169 + ] + ] + }, + "id": "way/643591514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643591515", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Jalan Tanjung Raya 2, Parit Mayor, Pontianak Timur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3800859, + -0.0548967 + ], + [ + 109.3800431, + -0.0549363 + ], + [ + 109.3800189, + -0.0549578 + ], + [ + 109.3799351, + -0.0550336 + ], + [ + 109.3797272, + -0.0552079 + ], + [ + 109.3794872, + -0.0553903 + ], + [ + 109.3791586, + -0.0556464 + ], + [ + 109.3789682, + -0.0557913 + ], + [ + 109.3787603, + -0.0559468 + ], + [ + 109.3785135, + -0.0561359 + ], + [ + 109.3783727, + -0.0562191 + ], + [ + 109.378138, + -0.0563673 + ], + [ + 109.378012, + -0.0564491 + ], + [ + 109.3777129, + -0.056655 + ], + [ + 109.3774138, + -0.0568803 + ], + [ + 109.3771657, + -0.0570506 + ], + [ + 109.3769894, + -0.0571673 + ], + [ + 109.3767419, + -0.0573235 + ], + [ + 109.3765622, + -0.0574301 + ], + [ + 109.3762256, + -0.0576447 + ], + [ + 109.375944, + -0.0578063 + ] + ] + }, + "id": "way/643591515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643591516", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3815653, + -0.046679 + ], + [ + 109.3806695, + -0.0473148 + ] + ] + }, + "id": "way/643591516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643598042", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3799822, + -0.0440079 + ], + [ + 109.3791628, + -0.0445972 + ], + [ + 109.3791412, + -0.044585 + ], + [ + 109.379115, + -0.0445508 + ], + [ + 109.3789984, + -0.0443657 + ], + [ + 109.3790004, + -0.044345 + ], + [ + 109.3790346, + -0.0443128 + ], + [ + 109.3797594, + -0.043795 + ], + [ + 109.3799229, + -0.0436757 + ] + ] + }, + "id": "way/643598042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643598043", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3799936, + -0.0304018 + ], + [ + 109.3806143, + -0.0305221 + ] + ] + }, + "id": "way/643598043" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643598059", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3802104, + -0.0263842 + ], + [ + 109.380059, + -0.0268606 + ] + ] + }, + "id": "way/643598059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643598074", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3800264, + -0.030742 + ], + [ + 109.3805557, + -0.0308553 + ], + [ + 109.3812561, + -0.0309933 + ] + ] + }, + "id": "way/643598074" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643598102", + "highway": "residential", + "import": "yes", + "name": "KOMPLEK VILLA KOTA INTAN", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3799905, + -0.0300015 + ], + [ + 109.380318, + -0.0300728 + ], + [ + 109.38069, + -0.0301534 + ], + [ + 109.3813748, + -0.0303062 + ], + [ + 109.3816444, + -0.0303579 + ], + [ + 109.3816685, + -0.0303445 + ], + [ + 109.3816806, + -0.0303123 + ], + [ + 109.3818337, + -0.0294812 + ] + ] + }, + "id": "way/643598102" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643598129", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3802015, + -0.0353196 + ], + [ + 109.3797628, + -0.0354518 + ] + ] + }, + "id": "way/643598129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643598142", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3806143, + -0.0305221 + ], + [ + 109.3814552, + -0.0307034 + ], + [ + 109.3815394, + -0.0307244 + ] + ] + }, + "id": "way/643598142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643598143", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3803398, + -0.0318321 + ], + [ + 109.3804036, + -0.0315055 + ], + [ + 109.3804059, + -0.0314936 + ], + [ + 109.3804901, + -0.0311776 + ], + [ + 109.3805557, + -0.0308553 + ], + [ + 109.3806143, + -0.0305221 + ], + [ + 109.38069, + -0.0301534 + ] + ] + }, + "id": "way/643598143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600766", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446488, + -0.0539132 + ], + [ + 109.3443904, + -0.0537166 + ], + [ + 109.3434429, + -0.0530179 + ] + ] + }, + "id": "way/643600766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600767", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427412, + -0.0537157 + ], + [ + 109.3414977, + -0.0527268 + ], + [ + 109.3413542, + -0.0528811 + ] + ] + }, + "id": "way/643600767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600768", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440916, + -0.0547466 + ], + [ + 109.3440612, + -0.0547224 + ] + ] + }, + "id": "way/643600768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600769", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453285, + -0.0485286 + ], + [ + 109.3455097, + -0.0482945 + ], + [ + 109.3456704, + -0.048101 + ] + ] + }, + "id": "way/643600769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600770", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448774, + -0.0480524 + ], + [ + 109.3453285, + -0.0485286 + ] + ] + }, + "id": "way/643600770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600771", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434356, + -0.0480694 + ], + [ + 109.3435108, + -0.0480075 + ], + [ + 109.3440586, + -0.0475569 + ], + [ + 109.3441585, + -0.0474228 + ], + [ + 109.3440659, + -0.0473255 + ], + [ + 109.3439641, + -0.0472004 + ], + [ + 109.3439004, + -0.0471251 + ], + [ + 109.3438445, + -0.0470423 + ] + ] + }, + "id": "way/643600771" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600772", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406279, + -0.0511236 + ], + [ + 109.3407038, + -0.0513243 + ], + [ + 109.3407478, + -0.0514274 + ], + [ + 109.3411973, + -0.0526564 + ] + ] + }, + "id": "way/643600772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600773", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401204, + -0.0470686 + ], + [ + 109.3401236, + -0.047081 + ], + [ + 109.3401343, + -0.0470996 + ], + [ + 109.3401561, + -0.0471333 + ], + [ + 109.3401888, + -0.0471834 + ], + [ + 109.3403055, + -0.0474929 + ] + ] + }, + "id": "way/643600773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600774", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400946, + -0.0469439 + ], + [ + 109.3401204, + -0.0470686 + ] + ] + }, + "id": "way/643600774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600775", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401891, + -0.0464443 + ], + [ + 109.3401157, + -0.0465645 + ], + [ + 109.3400922, + -0.0466228 + ], + [ + 109.3400815, + -0.0466959 + ], + [ + 109.3400848, + -0.0468388 + ], + [ + 109.3400946, + -0.0469439 + ] + ] + }, + "id": "way/643600775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600776", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407135, + -0.0466905 + ], + [ + 109.34074, + -0.0467073 + ], + [ + 109.3407638, + -0.0467301 + ], + [ + 109.3407822, + -0.0467596 + ], + [ + 109.3408198, + -0.0468535 + ] + ] + }, + "id": "way/643600776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600777", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405865, + -0.0466167 + ], + [ + 109.3407135, + -0.0466905 + ] + ] + }, + "id": "way/643600777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600778", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340004, + -0.0463005 + ], + [ + 109.3401891, + -0.0464443 + ], + [ + 109.3405102, + -0.0465836 + ], + [ + 109.3405388, + -0.046596 + ], + [ + 109.3405865, + -0.0466167 + ] + ] + }, + "id": "way/643600778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600780", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404553, + -0.0498321 + ], + [ + 109.3402842, + -0.0499003 + ], + [ + 109.3401549, + -0.0499518 + ] + ] + }, + "id": "way/643600780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643600781", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402046, + -0.0512347 + ], + [ + 109.3402547, + -0.0513462 + ], + [ + 109.3403524, + -0.0515721 + ] + ] + }, + "id": "way/643600781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643601983", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2878076, + 0.0011852 + ], + [ + 109.2878143, + 0.0011886 + ], + [ + 109.2878177, + 0.0011986 + ], + [ + 109.2878723, + 0.0014316 + ] + ] + }, + "id": "way/643601983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643601984", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2873974, + 0.0016225 + ], + [ + 109.2873861, + 0.0015493 + ], + [ + 109.2873714, + 0.0014539 + ], + [ + 109.2873219, + 0.0011329 + ] + ] + }, + "id": "way/643601984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643601985", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2870516, + 0.0011792 + ], + [ + 109.2870586, + 0.0011725 + ], + [ + 109.2873117, + 0.0011332 + ], + [ + 109.2873219, + 0.0011329 + ], + [ + 109.2874901, + 0.0011265 + ] + ] + }, + "id": "way/643601985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643601986", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.287124, + 0.0017005 + ], + [ + 109.2871062, + 0.0015774 + ], + [ + 109.2870688, + 0.0013183 + ], + [ + 109.2870533, + 0.001211 + ], + [ + 109.2870492, + 0.0011896 + ], + [ + 109.2870516, + 0.0011792 + ] + ] + }, + "id": "way/643601986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643601987", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2874901, + 0.0011265 + ], + [ + 109.2874931, + 0.00113 + ], + [ + 109.2874955, + 0.0011386 + ], + [ + 109.2875142, + 0.0012274 + ], + [ + 109.2875716, + 0.0015379 + ] + ] + }, + "id": "way/643601987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643601988", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2875142, + 0.0012274 + ], + [ + 109.2875511, + 0.0012214 + ], + [ + 109.2877194, + 0.0011989 + ], + [ + 109.2878076, + 0.0011852 + ] + ] + }, + "id": "way/643601988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643601989", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2873219, + 0.0011329 + ], + [ + 109.2873151, + 0.001087 + ], + [ + 109.287305, + 0.0010125 + ], + [ + 109.2872956, + 0.0009803 + ], + [ + 109.2872795, + 0.0009549 + ], + [ + 109.2872635, + 0.0009374 + ], + [ + 109.2872447, + 0.0009227 + ], + [ + 109.2872085, + 0.000924 + ], + [ + 109.2871535, + 0.0009294 + ], + [ + 109.2871213, + 0.0009348 + ], + [ + 109.2870948, + 0.0009247 + ], + [ + 109.2870717, + 0.0009052 + ], + [ + 109.2870603, + 0.0008922 + ], + [ + 109.2870502, + 0.000869 + ], + [ + 109.2870404, + 0.0005564 + ] + ] + }, + "id": "way/643601989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643601990", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2875716, + 0.0015379 + ], + [ + 109.2875679, + 0.001549 + ], + [ + 109.2875518, + 0.001557 + ], + [ + 109.2873974, + 0.0016225 + ], + [ + 109.2871846, + 0.0017142 + ], + [ + 109.2871622, + 0.0017246 + ], + [ + 109.2871485, + 0.0017267 + ], + [ + 109.2871364, + 0.0017223 + ], + [ + 109.287124, + 0.0017005 + ] + ] + }, + "id": "way/643601990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643601991", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2879662, + 0.0009334 + ], + [ + 109.2879213, + 0.0006538 + ], + [ + 109.2878911, + 0.0005277 + ], + [ + 109.2878639, + 0.0003711 + ] + ] + }, + "id": "way/643601991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643606233", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303983, + -0.0561713 + ], + [ + 109.3306959, + -0.0569138 + ], + [ + 109.3307202, + -0.0569773 + ], + [ + 109.3309095, + -0.0574699 + ], + [ + 109.330931, + -0.0575259 + ], + [ + 109.3310183, + -0.0577533 + ] + ] + }, + "id": "way/643606233" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612689", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354272, + -0.0385186 + ], + [ + 109.3354792, + -0.0384788 + ], + [ + 109.3358892, + -0.0381651 + ] + ] + }, + "id": "way/643612689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612690", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424086, + -0.0406758 + ], + [ + 109.3427999, + -0.0414642 + ] + ] + }, + "id": "way/643612690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612691", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439233, + -0.0368553 + ], + [ + 109.3442644, + -0.0377186 + ] + ] + }, + "id": "way/643612691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612692", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444977, + -0.0372854 + ], + [ + 109.3446484, + -0.0375968 + ], + [ + 109.3448156, + -0.0379425 + ], + [ + 109.3448606, + -0.0380361 + ], + [ + 109.3449779, + -0.0382805 + ], + [ + 109.3450651, + -0.0384414 + ], + [ + 109.3451442, + -0.0385795 + ] + ] + }, + "id": "way/643612692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416438, + -0.0445041 + ], + [ + 109.3416389, + -0.0444947 + ], + [ + 109.3416375, + -0.0444859 + ], + [ + 109.3416375, + -0.0444755 + ], + [ + 109.3416405, + -0.0444658 + ], + [ + 109.3417995, + -0.0441874 + ], + [ + 109.3418598, + -0.0440874 + ] + ] + }, + "id": "way/643612696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612697", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417366, + -0.0445847 + ], + [ + 109.3416438, + -0.0445041 + ] + ] + }, + "id": "way/643612697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612698", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377588, + -0.0436581 + ], + [ + 109.3378435, + -0.0437461 + ] + ] + }, + "id": "way/643612698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612700", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411356, + -0.0438957 + ], + [ + 109.341204, + -0.0438474 + ], + [ + 109.3412322, + -0.0438327 + ], + [ + 109.3412496, + -0.0438259 + ], + [ + 109.3412711, + -0.0438273 + ], + [ + 109.3412992, + -0.0438434 + ], + [ + 109.3414675, + -0.0440176 + ], + [ + 109.3414897, + -0.0440432 + ], + [ + 109.3414974, + -0.0440566 + ], + [ + 109.3415002, + -0.0440687 + ], + [ + 109.3414976, + -0.0440829 + ], + [ + 109.3414865, + -0.044096 + ], + [ + 109.3412624, + -0.0443041 + ], + [ + 109.3410065, + -0.0445243 + ], + [ + 109.3409899, + -0.0445337 + ], + [ + 109.3409737, + -0.0445364 + ], + [ + 109.3409611, + -0.0445351 + ], + [ + 109.3409516, + -0.044528 + ], + [ + 109.3409398, + -0.0445139 + ], + [ + 109.3406377, + -0.0441514 + ] + ] + }, + "id": "way/643612700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612702", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369637, + -0.0430883 + ], + [ + 109.3369874, + -0.043065 + ], + [ + 109.3370097, + -0.0430456 + ], + [ + 109.3370294, + -0.0430308 + ], + [ + 109.3370524, + -0.0430158 + ], + [ + 109.3370758, + -0.0430015 + ], + [ + 109.337112, + -0.0429806 + ], + [ + 109.3371656, + -0.0429428 + ], + [ + 109.3372115, + -0.04291 + ], + [ + 109.3373823, + -0.0427736 + ], + [ + 109.3377165, + -0.0425304 + ], + [ + 109.3377822, + -0.0424748 + ], + [ + 109.3378392, + -0.0424104 + ], + [ + 109.3378714, + -0.0423527 + ], + [ + 109.337904, + -0.0422798 + ], + [ + 109.337927, + -0.0422253 + ] + ] + }, + "id": "way/643612702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612703", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405908, + -0.0385367 + ], + [ + 109.3408835, + -0.0382456 + ], + [ + 109.3411349, + -0.0379955 + ], + [ + 109.3412876, + -0.0378248 + ] + ] + }, + "id": "way/643612703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612704", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400153, + -0.0391027 + ], + [ + 109.3404762, + -0.0386848 + ] + ] + }, + "id": "way/643612704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612705", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3399112, + -0.0389671 + ], + [ + 109.3400153, + -0.0391027 + ], + [ + 109.340052, + -0.0391455 + ], + [ + 109.3408523, + -0.040127 + ] + ] + }, + "id": "way/643612705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612706", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402887, + -0.0383251 + ], + [ + 109.3404893, + -0.0385583 + ] + ] + }, + "id": "way/643612706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612710", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432733, + -0.0406086 + ], + [ + 109.3435764, + -0.040319 + ], + [ + 109.3438621, + -0.0400038 + ], + [ + 109.3441065, + -0.0397632 + ] + ] + }, + "id": "way/643612710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612711", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392316, + -0.0430554 + ], + [ + 109.3392672, + -0.0430271 + ], + [ + 109.3399072, + -0.0425184 + ] + ] + }, + "id": "way/643612711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612712", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388819, + -0.0426318 + ], + [ + 109.3389162, + -0.0426018 + ], + [ + 109.339588, + -0.0420128 + ] + ] + }, + "id": "way/643612712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612713", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428945, + -0.0443637 + ], + [ + 109.34304, + -0.0441612 + ], + [ + 109.3433896, + -0.0437333 + ] + ] + }, + "id": "way/643612713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612715", + "highway": "service", + "junction": "roundabout" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340644, + -0.0385825 + ], + [ + 109.3406517, + -0.0386021 + ], + [ + 109.3406551, + -0.0386228 + ], + [ + 109.3406541, + -0.0386438 + ], + [ + 109.3406486, + -0.0386641 + ], + [ + 109.340639, + -0.0386828 + ], + [ + 109.3406256, + -0.038699 + ], + [ + 109.3406121, + -0.03871 + ], + [ + 109.340597, + -0.0387184 + ], + [ + 109.3405805, + -0.0387241 + ], + [ + 109.3405634, + -0.0387268 + ], + [ + 109.340546, + -0.0387264 + ], + [ + 109.340529, + -0.038723 + ], + [ + 109.3405128, + -0.0387166 + ], + [ + 109.3405022, + -0.0387104 + ], + [ + 109.3404925, + -0.038703 + ], + [ + 109.3404837, + -0.0386944 + ], + [ + 109.3404762, + -0.0386848 + ] + ] + }, + "id": "way/643612715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612716", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406256, + -0.038699 + ], + [ + 109.3407478, + -0.0388464 + ], + [ + 109.3409425, + -0.0390681 + ], + [ + 109.3409649, + -0.0390834 + ], + [ + 109.3409884, + -0.0390858 + ], + [ + 109.3410086, + -0.0390791 + ], + [ + 109.341033, + -0.0390684 + ], + [ + 109.341081, + -0.0390442 + ], + [ + 109.3411172, + -0.0390161 + ], + [ + 109.341139, + -0.0389933 + ], + [ + 109.3411527, + -0.0389705 + ], + [ + 109.3411624, + -0.0389427 + ], + [ + 109.3411655, + -0.0389108 + ], + [ + 109.3411678, + -0.0385098 + ], + [ + 109.3411611, + -0.0381719 + ], + [ + 109.3411553, + -0.0380688 + ] + ] + }, + "id": "way/643612716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612717", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405128, + -0.0387166 + ], + [ + 109.340052, + -0.0391455 + ] + ] + }, + "id": "way/643612717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612718", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413001, + -0.0379158 + ], + [ + 109.3411553, + -0.0380688 + ], + [ + 109.3407957, + -0.0384301 + ], + [ + 109.340644, + -0.0385825 + ] + ] + }, + "id": "way/643612718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612719", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392205, + -0.039009 + ], + [ + 109.339592, + -0.0384964 + ], + [ + 109.3396698, + -0.0383851 + ], + [ + 109.3396882, + -0.0383593 + ], + [ + 109.3397111, + -0.0383241 + ], + [ + 109.3396805, + -0.0382939 + ], + [ + 109.33948, + -0.0381075 + ], + [ + 109.3394579, + -0.038074 + ], + [ + 109.3394492, + -0.0380552 + ], + [ + 109.3394476, + -0.0380441 + ], + [ + 109.3394478, + -0.0380351 + ], + [ + 109.3394532, + -0.0380133 + ], + [ + 109.3394673, + -0.0379945 + ], + [ + 109.3395263, + -0.0379439 + ] + ] + }, + "id": "way/643612719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612720", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3384864, + -0.0382783 + ], + [ + 109.3384078, + -0.0381303 + ], + [ + 109.3383448, + -0.0379962 + ], + [ + 109.3382804, + -0.0378419 + ], + [ + 109.3382522, + -0.0377373 + ], + [ + 109.3382442, + -0.0376824 + ], + [ + 109.3382415, + -0.0376528 + ], + [ + 109.3382455, + -0.0376233 + ], + [ + 109.3382576, + -0.0375858 + ], + [ + 109.3382758, + -0.037561 + ], + [ + 109.3383045, + -0.0375389 + ] + ] + }, + "id": "way/643612720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612721", + "highway": "residential", + "name": "Jalan Ade Irma Suryani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3378165, + -0.0385978 + ], + [ + 109.3373296, + -0.037732 + ] + ] + }, + "id": "way/643612721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612722", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386398, + -0.0404678 + ], + [ + 109.3388925, + -0.0407739 + ] + ] + }, + "id": "way/643612722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612723", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362275, + -0.0381026 + ], + [ + 109.3364853, + -0.0379264 + ], + [ + 109.3365209, + -0.0379023 + ], + [ + 109.3365571, + -0.0378768 + ], + [ + 109.3365879, + -0.037917 + ], + [ + 109.3366268, + -0.0379707 + ], + [ + 109.3366751, + -0.0380793 + ] + ] + }, + "id": "way/643612723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612724", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361022, + -0.0393435 + ], + [ + 109.3361385, + -0.0393166 + ], + [ + 109.3362046, + -0.0392675 + ], + [ + 109.3362119, + -0.0392641 + ], + [ + 109.3362185, + -0.0392629 + ], + [ + 109.3362274, + -0.0392626 + ], + [ + 109.3362358, + -0.0392647 + ], + [ + 109.336309, + -0.0393346 + ], + [ + 109.3363459, + -0.0393852 + ], + [ + 109.3363476, + -0.0394006 + ], + [ + 109.3363439, + -0.0394224 + ], + [ + 109.3363291, + -0.0394432 + ], + [ + 109.3362789, + -0.039485 + ], + [ + 109.3362419, + -0.0395158 + ] + ] + }, + "id": "way/643612724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612725", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3357032, + -0.0388559 + ], + [ + 109.3357486, + -0.038819 + ], + [ + 109.3360206, + -0.0385983 + ] + ] + }, + "id": "way/643612725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612726", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361586, + -0.0401991 + ], + [ + 109.3362082, + -0.0402485 + ] + ] + }, + "id": "way/643612726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612727", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359745, + -0.0399806 + ], + [ + 109.335896, + -0.0398875 + ], + [ + 109.3358928, + -0.0398696 + ], + [ + 109.3358953, + -0.0398553 + ], + [ + 109.3359037, + -0.0398396 + ], + [ + 109.3361408, + -0.0396439 + ], + [ + 109.3361705, + -0.0396193 + ] + ] + }, + "id": "way/643612727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612728", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359139, + -0.0405049 + ], + [ + 109.3361038, + -0.0403404 + ], + [ + 109.3362082, + -0.0402485 + ], + [ + 109.3363744, + -0.0401022 + ], + [ + 109.3363841, + -0.0400937 + ], + [ + 109.3363848, + -0.0400836 + ], + [ + 109.3363719, + -0.040069 + ], + [ + 109.3363468, + -0.0400405 + ] + ] + }, + "id": "way/643612728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612729", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360384, + -0.0406297 + ], + [ + 109.3359139, + -0.0405049 + ], + [ + 109.335733, + -0.0403089 + ] + ] + }, + "id": "way/643612729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612730", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.338085, + -0.0416905 + ], + [ + 109.3381198, + -0.0416638 + ], + [ + 109.3384695, + -0.0413959 + ], + [ + 109.3386143, + -0.0412899 + ], + [ + 109.3386324, + -0.0412745 + ], + [ + 109.3386479, + -0.0412524 + ], + [ + 109.3386532, + -0.0412349 + ], + [ + 109.3386541, + -0.0412167 + ], + [ + 109.3386511, + -0.0412051 + ], + [ + 109.3386462, + -0.0411947 + ], + [ + 109.3385862, + -0.0411169 + ] + ] + }, + "id": "way/643612730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612731", + "highway": "residential", + "name": "Jalan Ade Irma Suryani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3378447, + -0.0385838 + ], + [ + 109.3379064, + -0.0386609 + ], + [ + 109.3388578, + -0.0398496 + ], + [ + 109.3391535, + -0.040209 + ] + ] + }, + "id": "way/643612731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612732", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366877, + -0.0400456 + ], + [ + 109.3367208, + -0.0400203 + ], + [ + 109.3369648, + -0.0398335 + ], + [ + 109.3372464, + -0.0396323 + ], + [ + 109.3374048, + -0.0395203 + ], + [ + 109.3375951, + -0.039407 + ] + ] + }, + "id": "way/643612732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643612733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385031, + -0.0408753 + ], + [ + 109.3385823, + -0.0409357 + ], + [ + 109.3385989, + -0.0409459 + ], + [ + 109.338615, + -0.0409513 + ], + [ + 109.3386318, + -0.0409513 + ], + [ + 109.3386462, + -0.0409466 + ], + [ + 109.3386606, + -0.0409392 + ], + [ + 109.3388925, + -0.0407739 + ], + [ + 109.3389196, + -0.0407562 + ] + ] + }, + "id": "way/643612733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643617135", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2965012, + -0.007878 + ], + [ + 109.2965278, + -0.0075625 + ], + [ + 109.2965493, + -0.0070582 + ], + [ + 109.296565, + -0.0064766 + ] + ] + }, + "id": "way/643617135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643617136", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2902868, + -0.0031819 + ], + [ + 109.2902836, + -0.0035097 + ], + [ + 109.2902836, + -0.0040045 + ], + [ + 109.2902823, + -0.0041668 + ], + [ + 109.2902863, + -0.0043519 + ], + [ + 109.2902917, + -0.0045101 + ], + [ + 109.2902997, + -0.0050171 + ], + [ + 109.2902997, + -0.0050868 + ], + [ + 109.2902984, + -0.0051928 + ], + [ + 109.2903078, + -0.0052652 + ], + [ + 109.2903118, + -0.0053403 + ], + [ + 109.2903118, + -0.005402 + ], + [ + 109.2903145, + -0.0054784 + ], + [ + 109.2903145, + -0.0055736 + ], + [ + 109.2903151, + -0.0056357 + ], + [ + 109.2903158, + -0.0056873 + ], + [ + 109.2903148, + -0.0057631 + ], + [ + 109.2903155, + -0.005806 + ], + [ + 109.2903168, + -0.0058341 + ], + [ + 109.2903235, + -0.0058536 + ], + [ + 109.2903369, + -0.005867 + ], + [ + 109.2903705, + -0.0058807 + ], + [ + 109.2904127, + -0.0058901 + ], + [ + 109.290433, + -0.0058946 + ] + ] + }, + "id": "way/643617136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643617137", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296565, + -0.0064766 + ], + [ + 109.2965693, + -0.006259 + ], + [ + 109.2965807, + -0.0059552 + ], + [ + 109.2965747, + -0.005917 + ], + [ + 109.2965633, + -0.0058922 + ], + [ + 109.2965237, + -0.0058814 + ], + [ + 109.2963189, + -0.0059122 + ], + [ + 109.2960795, + -0.0059482 + ], + [ + 109.2960626, + -0.0059507 + ], + [ + 109.2958451, + -0.0059834 + ], + [ + 109.2956332, + -0.0060102 + ], + [ + 109.2953382, + -0.0060316 + ], + [ + 109.2952001, + -0.0060451 + ], + [ + 109.295129, + -0.0060477 + ], + [ + 109.2948661, + -0.0060665 + ] + ] + }, + "id": "way/643617137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643617138", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2936739, + -0.0042164 + ], + [ + 109.2936605, + -0.004423 + ], + [ + 109.2936417, + -0.0047529 + ], + [ + 109.2936283, + -0.0050908 + ], + [ + 109.2936015, + -0.0054342 + ], + [ + 109.2935505, + -0.0058955 + ], + [ + 109.2935298, + -0.0060472 + ], + [ + 109.2935282, + -0.006073 + ], + [ + 109.2935277, + -0.0060877 + ], + [ + 109.2935281, + -0.0060953 + ], + [ + 109.2935313, + -0.0060987 + ], + [ + 109.293973, + -0.0061262 + ], + [ + 109.2939998, + -0.0061342 + ], + [ + 109.2940112, + -0.0061473 + ], + [ + 109.2940119, + -0.006161 + ], + [ + 109.2939971, + -0.0062871 + ], + [ + 109.2939582, + -0.0066183 + ], + [ + 109.2939462, + -0.0067426 + ] + ] + }, + "id": "way/643617138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643617139", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182059, + 0.0085829 + ], + [ + 109.3182886, + 0.0099939 + ] + ] + }, + "id": "way/643617139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643617140", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135611, + 0.0115067 + ], + [ + 109.3147303, + 0.0111602 + ] + ] + }, + "id": "way/643617140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643617141", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208077, + 0.001221 + ], + [ + 109.3203753, + 0.0005955 + ], + [ + 109.3202868, + 0.0004184 + ], + [ + 109.3202627, + 0.0002334 + ], + [ + 109.3203056, + 0.0001127 + ], + [ + 109.3206677, + -0.0001609 + ] + ] + }, + "id": "way/643617141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643619145", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530388, + -0.0502133 + ], + [ + 109.353252, + -0.0503953 + ], + [ + 109.353261, + -0.0504093 + ], + [ + 109.3532644, + -0.0504247 + ], + [ + 109.3532632, + -0.0504418 + ], + [ + 109.3531754, + -0.0505811 + ], + [ + 109.3529729, + -0.0508902 + ], + [ + 109.3528267, + -0.0511423 + ], + [ + 109.352645, + -0.0514696 + ], + [ + 109.3525498, + -0.0516406 + ] + ] + }, + "id": "way/643619145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643619147", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347342, + -0.0509905 + ], + [ + 109.3480745, + -0.05152 + ] + ] + }, + "id": "way/643619147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643619148", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516616, + -0.0523022 + ], + [ + 109.3519329, + -0.0524727 + ], + [ + 109.3519523, + -0.0525022 + ], + [ + 109.3519563, + -0.0525344 + ], + [ + 109.3519143, + -0.0526198 + ] + ] + }, + "id": "way/643619148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643619149", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523781, + -0.051922 + ], + [ + 109.352193, + -0.0521998 + ] + ] + }, + "id": "way/643619149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643619150", + "highway": "residential", + "name": "Jalan Karangan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523489, + -0.0490356 + ], + [ + 109.3523466, + -0.0490537 + ], + [ + 109.3523461, + -0.0490682 + ], + [ + 109.3523474, + -0.0490784 + ], + [ + 109.3523513, + -0.0490925 + ], + [ + 109.3523645, + -0.0491129 + ], + [ + 109.3524143, + -0.0491689 + ], + [ + 109.3525757, + -0.0492926 + ] + ] + }, + "id": "way/643619150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643619151", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522221, + -0.0447475 + ], + [ + 109.3520797, + -0.044587 + ], + [ + 109.3519563, + -0.0444315 + ] + ] + }, + "id": "way/643619151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643619152", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346458, + -0.0453059 + ], + [ + 109.3465392, + -0.0451909 + ], + [ + 109.346683, + -0.0450137 + ], + [ + 109.3467191, + -0.0449703 + ] + ] + }, + "id": "way/643619152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643623756", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542302, + 0.0203667 + ], + [ + 109.354194, + 0.0203251 + ] + ] + }, + "id": "way/643623756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643623757", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542698, + 0.0204139 + ], + [ + 109.3542302, + 0.0203667 + ] + ] + }, + "id": "way/643623757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643623768", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3717088, + 0.0038865 + ], + [ + 109.3718913, + 0.0039346 + ] + ] + }, + "id": "way/643623768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625522", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478653, + -0.0404296 + ], + [ + 109.3476708, + -0.040264 + ] + ] + }, + "id": "way/643625522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625523", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490669, + -0.0375308 + ], + [ + 109.3492071, + -0.0377708 + ] + ] + }, + "id": "way/643625523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447623, + -0.0401227 + ], + [ + 109.3446074, + -0.0402427 + ] + ] + }, + "id": "way/643625524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625525", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441077, + -0.0434509 + ], + [ + 109.3444361, + -0.0431715 + ], + [ + 109.3451336, + -0.0426118 + ] + ] + }, + "id": "way/643625525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625526", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463914, + -0.0398348 + ], + [ + 109.3469428, + -0.0393772 + ] + ] + }, + "id": "way/643625526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625527", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461558, + -0.0403282 + ], + [ + 109.3463518, + -0.040187 + ], + [ + 109.3466154, + -0.0399971 + ] + ] + }, + "id": "way/643625527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625529", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459287, + -0.0367597 + ], + [ + 109.3465295, + -0.0365558 + ], + [ + 109.346724, + -0.0364861 + ] + ] + }, + "id": "way/643625529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625530", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454867, + -0.037007 + ], + [ + 109.3457721, + -0.0368764 + ] + ] + }, + "id": "way/643625530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625531", + "highway": "living_street", + "motorcar": "destination", + "name": "Gang Suez" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456994, + -0.0366648 + ], + [ + 109.3457551, + -0.0368361 + ], + [ + 109.3457721, + -0.0368764 + ], + [ + 109.3459374, + -0.0372679 + ], + [ + 109.3460773, + -0.0375886 + ] + ] + }, + "id": "way/643625531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625532", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454017, + -0.0367959 + ], + [ + 109.3454867, + -0.037007 + ], + [ + 109.345568, + -0.0372089 + ], + [ + 109.3457629, + -0.037678 + ] + ] + }, + "id": "way/643625532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625533", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457316, + -0.0384173 + ], + [ + 109.3457926, + -0.0383898 + ], + [ + 109.3458389, + -0.0383717 + ], + [ + 109.3458751, + -0.03837 + ], + [ + 109.3458962, + -0.0383703 + ], + [ + 109.3459156, + -0.0383622 + ], + [ + 109.3459488, + -0.0383382 + ], + [ + 109.3462035, + -0.0381961 + ] + ] + }, + "id": "way/643625533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625534", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450692, + -0.0392805 + ], + [ + 109.3453914, + -0.0396024 + ] + ] + }, + "id": "way/643625534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625535", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447193, + -0.0393208 + ], + [ + 109.3447972, + -0.039412 + ], + [ + 109.3448227, + -0.0394345 + ], + [ + 109.3448434, + -0.0394426 + ], + [ + 109.3448595, + -0.0394419 + ], + [ + 109.3448813, + -0.0394311 + ], + [ + 109.3449672, + -0.0393641 + ], + [ + 109.3450692, + -0.0392805 + ], + [ + 109.3454368, + -0.0389793 + ], + [ + 109.345576, + -0.0388652 + ] + ] + }, + "id": "way/643625535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625536", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457167, + -0.0398372 + ], + [ + 109.3466502, + -0.0391111 + ] + ] + }, + "id": "way/643625536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625537", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466147, + -0.0421207 + ], + [ + 109.3464266, + -0.0423789 + ], + [ + 109.3457001, + -0.0433066 + ], + [ + 109.345682, + -0.0433418 + ], + [ + 109.3456784, + -0.0433594 + ], + [ + 109.3456793, + -0.0433794 + ], + [ + 109.3456847, + -0.043395 + ], + [ + 109.3456934, + -0.0434095 + ], + [ + 109.3457195, + -0.0434424 + ], + [ + 109.346087, + -0.0437227 + ], + [ + 109.3461111, + -0.0437374 + ], + [ + 109.3461262, + -0.0437421 + ], + [ + 109.346154, + -0.0437441 + ], + [ + 109.3461731, + -0.0437398 + ], + [ + 109.3462, + -0.043726 + ], + [ + 109.3462238, + -0.0437039 + ], + [ + 109.3471009, + -0.042517 + ] + ] + }, + "id": "way/643625537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625538", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475429, + -0.0428611 + ], + [ + 109.3470848, + -0.0434746 + ], + [ + 109.346661, + -0.0440472 + ] + ] + }, + "id": "way/643625538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625539", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479435, + -0.0431747 + ], + [ + 109.3470874, + -0.0443289 + ] + ] + }, + "id": "way/643625539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625540", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487048, + -0.0400534 + ], + [ + 109.3487222, + -0.0399971 + ], + [ + 109.3487464, + -0.0399555 + ], + [ + 109.3487853, + -0.0399032 + ], + [ + 109.3488336, + -0.0398643 + ], + [ + 109.3488832, + -0.0398321 + ], + [ + 109.3489315, + -0.039804 + ] + ] + }, + "id": "way/643625540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625541", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485034, + -0.0401958 + ], + [ + 109.348678, + -0.0400615 + ], + [ + 109.3487048, + -0.0400534 + ], + [ + 109.348737, + -0.0400601 + ], + [ + 109.3487652, + -0.0400843 + ], + [ + 109.3487933, + -0.0401138 + ], + [ + 109.3488054, + -0.0401446 + ], + [ + 109.3488054, + -0.0401714 + ], + [ + 109.3488014, + -0.0401929 + ], + [ + 109.3487813, + -0.0402251 + ], + [ + 109.3487437, + -0.0402667 + ], + [ + 109.3486954, + -0.0402962 + ], + [ + 109.3486834, + -0.0403029 + ], + [ + 109.3486033, + -0.0403576 + ] + ] + }, + "id": "way/643625541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476762, + -0.0414938 + ], + [ + 109.3475904, + -0.0416011 + ] + ] + }, + "id": "way/643625542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625543", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474886, + -0.0424475 + ], + [ + 109.3478706, + -0.0420114 + ] + ] + }, + "id": "way/643625543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625544", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484554, + -0.0424594 + ], + [ + 109.349284, + -0.042957 + ] + ] + }, + "id": "way/643625544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625545", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498683, + -0.04362 + ], + [ + 109.3496785, + -0.043842 + ], + [ + 109.3496693, + -0.0438472 + ], + [ + 109.3496614, + -0.0438498 + ], + [ + 109.349653, + -0.0438514 + ], + [ + 109.349644, + -0.0438484 + ], + [ + 109.3496315, + -0.0438428 + ], + [ + 109.3496168, + -0.0438327 + ], + [ + 109.349476, + -0.0437119 + ], + [ + 109.3494236, + -0.043657 + ], + [ + 109.3494141, + -0.0436471 + ], + [ + 109.3494102, + -0.0436382 + ], + [ + 109.3494086, + -0.0436267 + ], + [ + 109.3494099, + -0.0436171 + ], + [ + 109.3494156, + -0.043606 + ], + [ + 109.3494199, + -0.0435999 + ], + [ + 109.3496093, + -0.0433964 + ], + [ + 109.3496113, + -0.0433962 + ], + [ + 109.3496156, + -0.0433965 + ] + ] + }, + "id": "way/643625545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625547", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507889, + -0.0435269 + ], + [ + 109.3511377, + -0.0431341 + ] + ] + }, + "id": "way/643625547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625548", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351161, + -0.0440459 + ], + [ + 109.3508922, + -0.0437958 + ], + [ + 109.3511242, + -0.0435416 + ], + [ + 109.3513455, + -0.0432929 + ] + ] + }, + "id": "way/643625548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625549", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512797, + -0.0441512 + ], + [ + 109.3514708, + -0.0439756 + ], + [ + 109.3516867, + -0.0437924 + ], + [ + 109.3518674, + -0.0436393 + ] + ] + }, + "id": "way/643625549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625551", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Jalan Imam Bonjol", + "ref": "001.1", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522779, + -0.0439045 + ], + [ + 109.3524064, + -0.0440119 + ] + ] + }, + "id": "way/643625551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625552", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352881, + -0.0418961 + ], + [ + 109.3529595, + -0.0420678 + ] + ] + }, + "id": "way/643625552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625553", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518888, + -0.0412727 + ], + [ + 109.3521814, + -0.0416162 + ] + ] + }, + "id": "way/643625553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625554", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523251, + -0.0416822 + ], + [ + 109.352484, + -0.0415397 + ], + [ + 109.3525367, + -0.0414954 + ], + [ + 109.352559, + -0.0414785 + ], + [ + 109.3525846, + -0.0414629 + ], + [ + 109.3525995, + -0.0414547 + ], + [ + 109.3526151, + -0.0414488 + ], + [ + 109.3526255, + -0.041446 + ], + [ + 109.3526386, + -0.0414458 + ], + [ + 109.352649, + -0.0414487 + ], + [ + 109.3526631, + -0.0414539 + ], + [ + 109.3526899, + -0.0414693 + ], + [ + 109.3527479, + -0.0415291 + ], + [ + 109.3528582, + -0.0416627 + ], + [ + 109.3529816, + -0.0418022 + ] + ] + }, + "id": "way/643625554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625555", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472739, + -0.0380572 + ], + [ + 109.3477271, + -0.0377655 + ] + ] + }, + "id": "way/643625555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643625556", + "highway": "residential", + "name": "Gang Martapura III", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471018, + -0.0376898 + ], + [ + 109.347129, + -0.03763 + ], + [ + 109.3471572, + -0.0375657 + ], + [ + 109.3471679, + -0.0375435 + ], + [ + 109.347188, + -0.0375268 + ], + [ + 109.3473101, + -0.0374839 + ], + [ + 109.3475501, + -0.0374114 + ], + [ + 109.3476278, + -0.0373914 + ], + [ + 109.3477741, + -0.0373538 + ], + [ + 109.3480852, + -0.0372666 + ], + [ + 109.3481469, + -0.0372395 + ], + [ + 109.3483406, + -0.03716 + ], + [ + 109.3484272, + -0.0371164 + ], + [ + 109.3485613, + -0.0370616 + ], + [ + 109.3488805, + -0.0368817 + ], + [ + 109.3490213, + -0.0369541 + ], + [ + 109.3491165, + -0.0369126 + ] + ] + }, + "id": "way/643625556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643626395", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971254, + -0.0050272 + ], + [ + 109.2971233, + -0.0052028 + ], + [ + 109.2971233, + -0.0052879 + ], + [ + 109.2971249, + -0.0053399 + ], + [ + 109.2971233, + -0.0053732 + ], + [ + 109.2971252, + -0.0054334 + ], + [ + 109.2971226, + -0.0054865 + ], + [ + 109.2971299, + -0.0055053 + ], + [ + 109.2971384, + -0.0055226 + ], + [ + 109.2971413, + -0.0055448 + ], + [ + 109.2971427, + -0.0055629 + ], + [ + 109.2971386, + -0.0055777 + ], + [ + 109.2971313, + -0.0055918 + ], + [ + 109.2971193, + -0.0056045 + ], + [ + 109.2971085, + -0.0056206 + ], + [ + 109.2971071, + -0.005634 + ], + [ + 109.2971136, + -0.0058183 + ] + ] + }, + "id": "way/643626395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643626396", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999288, + -0.0036391 + ], + [ + 109.2999892, + -0.0036364 + ], + [ + 109.3000616, + -0.0036324 + ], + [ + 109.300122, + -0.0036243 + ], + [ + 109.3002695, + -0.0036109 + ], + [ + 109.3003553, + -0.0036002 + ], + [ + 109.300476, + -0.0035925 + ] + ] + }, + "id": "way/643626396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643626397", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2978417, + -0.0030964 + ], + [ + 109.2976853, + -0.0030829 + ], + [ + 109.2973921, + -0.0030576 + ], + [ + 109.2971774, + -0.0030391 + ] + ] + }, + "id": "way/643626397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643626398", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022385, + -0.0038606 + ], + [ + 109.3024064, + -0.003884 + ], + [ + 109.3025117, + -0.0038986 + ], + [ + 109.3025903, + -0.0039096 + ] + ] + }, + "id": "way/643626398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643626399", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023185, + -0.0032865 + ], + [ + 109.3026467, + -0.0033323 + ] + ] + }, + "id": "way/643626399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643626400", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2989639, + -0.0041225 + ], + [ + 109.2993605, + -0.0040966 + ] + ] + }, + "id": "way/643626400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643626401", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2987547, + -0.0048289 + ], + [ + 109.2993025, + -0.0047361 + ], + [ + 109.2995547, + -0.0046905 + ] + ] + }, + "id": "way/643626401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629480", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344264, + -0.0617311 + ], + [ + 109.3438004, + -0.0612549 + ], + [ + 109.343791, + -0.0612241 + ], + [ + 109.3441119, + -0.060902 + ] + ] + }, + "id": "way/643629480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629481", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446032, + -0.0613731 + ], + [ + 109.344264, + -0.0617311 + ], + [ + 109.3440896, + -0.0619006 + ], + [ + 109.3438238, + -0.0620986 + ], + [ + 109.3438185, + -0.0621025 + ], + [ + 109.3436515, + -0.0622889 + ] + ] + }, + "id": "way/643629481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629482", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421696, + -0.0605153 + ], + [ + 109.3421592, + -0.0605099 + ], + [ + 109.3421458, + -0.0605072 + ], + [ + 109.3421301, + -0.0605113 + ], + [ + 109.3419738, + -0.0606139 + ], + [ + 109.3418692, + -0.060703 + ], + [ + 109.3418618, + -0.0607118 + ], + [ + 109.3418612, + -0.0607258 + ], + [ + 109.3418685, + -0.0607386 + ], + [ + 109.3421837, + -0.0611275 + ], + [ + 109.3422843, + -0.0613099 + ], + [ + 109.3422943, + -0.0613421 + ], + [ + 109.3422829, + -0.0613797 + ], + [ + 109.3422722, + -0.0614326 + ], + [ + 109.3422977, + -0.0614823 + ], + [ + 109.3423326, + -0.0615144 + ], + [ + 109.3423768, + -0.0615332 + ], + [ + 109.3424398, + -0.0615272 + ], + [ + 109.3425478, + -0.0614997 + ], + [ + 109.3426122, + -0.0614635 + ], + [ + 109.3426578, + -0.0614172 + ], + [ + 109.3427087, + -0.0613515 + ], + [ + 109.3427429, + -0.0612918 + ], + [ + 109.3427845, + -0.0612362 + ] + ] + }, + "id": "way/643629482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629483", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452764, + -0.0533625 + ], + [ + 109.3452992, + -0.0533778 + ] + ] + }, + "id": "way/643629483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629485", + "highway": "residential", + "lanes": "1", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388102, + -0.0608328 + ], + [ + 109.3387698, + -0.0607953 + ] + ] + }, + "id": "way/643629485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629486", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391352, + -0.060461 + ], + [ + 109.3390907, + -0.0604218 + ] + ] + }, + "id": "way/643629486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629487", + "highway": "residential", + "name": "Jalan Perdana Komp Bali Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402958, + -0.0591383 + ], + [ + 109.3402623, + -0.0591121 + ] + ] + }, + "id": "way/643629487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629488", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405541, + -0.0588385 + ], + [ + 109.3405185, + -0.0588123 + ] + ] + }, + "id": "way/643629488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629489", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408492, + -0.0584987 + ], + [ + 109.340815, + -0.0584634 + ] + ] + }, + "id": "way/643629489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629492", + "highway": "living_street", + "lanes": "1", + "motorcar": "destination", + "name": "Gang Sejahtera", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428779, + -0.0561414 + ], + [ + 109.3428425, + -0.0561101 + ] + ] + }, + "id": "way/643629492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629493", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34224, + -0.0568702 + ], + [ + 109.3421965, + -0.056844 + ] + ] + }, + "id": "way/643629493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643629494", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34196, + -0.0572007 + ], + [ + 109.3419265, + -0.057174 + ] + ] + }, + "id": "way/643629494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638675", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532426, + -0.0429764 + ], + [ + 109.3532815, + -0.043016 + ] + ] + }, + "id": "way/643638675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638676", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353402, + -0.0431514 + ], + [ + 109.3533785, + -0.0431225 + ] + ] + }, + "id": "way/643638676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638679", + "highway": "residential", + "name": "Jalan Haji Yusuf Karim Dalam*" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3595885, + -0.0440125 + ], + [ + 109.3604375, + -0.0431477 + ] + ] + }, + "id": "way/643638679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638680", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530836, + -0.0375257 + ], + [ + 109.3537219, + -0.0371513 + ], + [ + 109.3536575, + -0.0370192 + ], + [ + 109.3538117, + -0.0369045 + ], + [ + 109.3542141, + -0.0366698 + ], + [ + 109.3544944, + -0.0364901 + ] + ] + }, + "id": "way/643638680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638681", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353632, + -0.0365934 + ], + [ + 109.35374, + -0.0365203 + ], + [ + 109.3541175, + -0.0362876 + ], + [ + 109.35433, + -0.0361535 + ] + ] + }, + "id": "way/643638681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638682", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586732, + -0.0390194 + ], + [ + 109.358802, + -0.0389175 + ], + [ + 109.3590085, + -0.0387096 + ], + [ + 109.3590609, + -0.038658 + ], + [ + 109.3591064, + -0.0386131 + ], + [ + 109.3591433, + -0.0385789 + ], + [ + 109.3591871, + -0.0385433 + ], + [ + 109.3592174, + -0.0385212 + ], + [ + 109.3592526, + -0.0384967 + ], + [ + 109.3592801, + -0.0384776 + ], + [ + 109.3593151, + -0.0384526 + ], + [ + 109.3593482, + -0.0384267 + ], + [ + 109.3594316, + -0.0383623 + ] + ] + }, + "id": "way/643638682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638683", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601993, + -0.0401539 + ], + [ + 109.360308, + -0.0399931 + ] + ] + }, + "id": "way/643638683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638684", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597126, + -0.0401742 + ], + [ + 109.359899, + -0.0398911 + ], + [ + 109.3599983, + -0.0397477 + ], + [ + 109.3600935, + -0.039627 + ], + [ + 109.3601941, + -0.0395076 + ], + [ + 109.3603878, + -0.0393024 + ] + ] + }, + "id": "way/643638684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638685", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594015, + -0.0406207 + ], + [ + 109.3597126, + -0.0401742 + ] + ] + }, + "id": "way/643638685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643638686", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539807, + -0.0442672 + ], + [ + 109.3543195, + -0.0440058 + ], + [ + 109.3544429, + -0.0439025 + ] + ] + }, + "id": "way/643638686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643649495", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551897, + -0.0588946 + ], + [ + 109.3546646, + -0.0583595 + ] + ] + }, + "id": "way/643649495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643649497", + "highway": "residential", + "name": "Blk. Naisyah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549137, + -0.0592224 + ], + [ + 109.3526829, + -0.056997 + ] + ] + }, + "id": "way/643649497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643649498", + "highway": "service", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534217, + -0.0600338 + ], + [ + 109.3533841, + -0.0600649 + ], + [ + 109.3533311, + -0.0601089 + ] + ] + }, + "id": "way/643649498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653454", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089369, + -0.0062931 + ], + [ + 109.3087909, + -0.0068316 + ] + ] + }, + "id": "way/643653454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653455", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094275, + -0.0064127 + ], + [ + 109.3093407, + -0.0067216 + ], + [ + 109.3092663, + -0.006952 + ], + [ + 109.3092566, + -0.006967 + ], + [ + 109.3092354, + -0.0069774 + ], + [ + 109.309215, + -0.0069781 + ], + [ + 109.3090941, + -0.0069489 + ], + [ + 109.3090864, + -0.0069503 + ], + [ + 109.3090779, + -0.0069535 + ], + [ + 109.309073, + -0.006962 + ], + [ + 109.3090337, + -0.0071456 + ], + [ + 109.3090145, + -0.0072402 + ] + ] + }, + "id": "way/643653455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653456", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070557, + -0.0076646 + ], + [ + 109.3068677, + -0.0076054 + ], + [ + 109.306688, + -0.0075424 + ], + [ + 109.3064131, + -0.0074552 + ] + ] + }, + "id": "way/643653456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653457", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31075, + -0.0044016 + ], + [ + 109.3104082, + -0.0056648 + ], + [ + 109.3101486, + -0.0066062 + ] + ] + }, + "id": "way/643653457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653744", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Selamat Dalam", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212504, + -0.0165565 + ], + [ + 109.3212115, + -0.016524 + ] + ] + }, + "id": "way/643653744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653747", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Gusti Situt Mahmud", + "name:id": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239094, + -0.0003631 + ], + [ + 109.3241411, + -0.0005391 + ] + ] + }, + "id": "way/643653747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653748", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051217, + -0.012727 + ], + [ + 109.30517, + -0.0127337 + ] + ] + }, + "id": "way/643653748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653749", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050939, + -0.0127241 + ], + [ + 109.3051217, + -0.012727 + ] + ] + }, + "id": "way/643653749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653750", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331034, + -0.0085375 + ], + [ + 109.3332733, + -0.0087312 + ] + ] + }, + "id": "way/643653750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653751", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308918, + -0.0062521 + ], + [ + 109.3309904, + -0.0063557 + ], + [ + 109.3312781, + -0.0066582 + ], + [ + 109.3314716, + -0.0068617 + ], + [ + 109.3315368, + -0.0069302 + ], + [ + 109.3317144, + -0.0071169 + ], + [ + 109.3317801, + -0.007186 + ], + [ + 109.3319202, + -0.0073285 + ], + [ + 109.3319675, + -0.0073766 + ], + [ + 109.3320335, + -0.0074468 + ], + [ + 109.3322678, + -0.0076873 + ], + [ + 109.3324138, + -0.0078366 + ], + [ + 109.3324226, + -0.0078485 + ], + [ + 109.3329052, + -0.0083337 + ], + [ + 109.3329433, + -0.0083721 + ], + [ + 109.3330536, + -0.008483 + ], + [ + 109.3330707, + -0.0085002 + ], + [ + 109.3331034, + -0.0085375 + ] + ] + }, + "id": "way/643653751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653772", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262221, + -0.0020687 + ], + [ + 109.3263409, + -0.00216 + ] + ] + }, + "id": "way/643653772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653773", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Pipit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297721, + -0.0248053 + ], + [ + 109.3297036, + -0.0248916 + ] + ] + }, + "id": "way/643653773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653774", + "highway": "residential", + "name": "Gang Pipit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297996, + -0.0247633 + ], + [ + 109.3297721, + -0.0248053 + ] + ] + }, + "id": "way/643653774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653775", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336425, + -0.0345799 + ], + [ + 109.3336078, + -0.0345431 + ] + ] + }, + "id": "way/643653775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653776", + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336078, + -0.0345431 + ], + [ + 109.333528, + -0.0344583 + ] + ] + }, + "id": "way/643653776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653779", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2997737, + -0.04169 + ], + [ + 109.2997429, + -0.0417011 + ] + ] + }, + "id": "way/643653779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653782", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051695, + -0.0117328 + ], + [ + 109.3061238, + -0.0118997 + ] + ] + }, + "id": "way/643653782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653783", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051222, + -0.0117245 + ], + [ + 109.3051695, + -0.0117328 + ] + ] + }, + "id": "way/643653783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653788", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010958, + -0.0440029 + ], + [ + 109.3038516, + -0.0422515 + ] + ] + }, + "id": "way/643653788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653789", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010198, + -0.0440466 + ], + [ + 109.3010958, + -0.0440029 + ] + ] + }, + "id": "way/643653789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653790", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008212, + -0.043652 + ], + [ + 109.3007895, + -0.0436741 + ] + ] + }, + "id": "way/643653790" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653791", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008864, + -0.0436073 + ], + [ + 109.3008212, + -0.043652 + ] + ] + }, + "id": "way/643653791" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653792", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3003572, + -0.0426849 + ], + [ + 109.3017447, + -0.0418103 + ], + [ + 109.3023909, + -0.0414133 + ], + [ + 109.3024904, + -0.0414076 + ], + [ + 109.3032016, + -0.0409831 + ] + ] + }, + "id": "way/643653792" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653793", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300308, + -0.042712 + ], + [ + 109.3003572, + -0.0426849 + ] + ] + }, + "id": "way/643653793" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653796", + "highway": "residential", + "lanes": "1", + "name": "Gang Usaha Bersama", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225716, + -0.0599766 + ], + [ + 109.3229717, + -0.0607641 + ], + [ + 109.3234009, + -0.0616447 + ] + ] + }, + "id": "way/643653796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653797", + "highway": "residential", + "lanes": "1", + "name": "Gang Usaha Bersama", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225053, + -0.0598666 + ], + [ + 109.3225349, + -0.0599133 + ] + ] + }, + "id": "way/643653797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653798", + "highway": "residential", + "lanes": "1", + "name": "Gang Selamat Dalam", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212678, + -0.0165712 + ], + [ + 109.3212504, + -0.0165565 + ] + ] + }, + "id": "way/643653798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653801", + "highway": "residential", + "name": "Gang Purnama Indah 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324271, + -0.0579046 + ], + [ + 109.3242395, + -0.0578338 + ] + ] + }, + "id": "way/643653801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653802", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Purnama Indah 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243016, + -0.0579895 + ], + [ + 109.324271, + -0.0579046 + ] + ] + }, + "id": "way/643653802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653806", + "highway": "residential", + "name": "Gang Eka Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233984, + -0.0587663 + ], + [ + 109.3234079, + -0.0587759 + ] + ] + }, + "id": "way/643653806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653807", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Amal - Gang Pergam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330005, + -0.0250327 + ], + [ + 109.3299382, + -0.0251161 + ] + ] + }, + "id": "way/643653807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643653808", + "highway": "residential", + "name": "Gang Amal - Gang Pergam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300589, + -0.0249734 + ], + [ + 109.330005, + -0.0250327 + ] + ] + }, + "id": "way/643653808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659305", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628234, + -0.0384445 + ], + [ + 109.3629138, + -0.0386091 + ], + [ + 109.3629903, + -0.0387378 + ] + ] + }, + "id": "way/643659305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659306", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610021, + -0.0398885 + ], + [ + 109.3613823, + -0.0396216 + ], + [ + 109.3618208, + -0.0393051 + ], + [ + 109.362376, + -0.0389323 + ], + [ + 109.3629138, + -0.0386091 + ], + [ + 109.3637949, + -0.0380766 + ], + [ + 109.3649013, + -0.037394 + ] + ] + }, + "id": "way/643659306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659307", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650338, + -0.0370483 + ], + [ + 109.3650406, + -0.0370425 + ], + [ + 109.3650519, + -0.0370348 + ], + [ + 109.3650676, + -0.0370379 + ], + [ + 109.3650768, + -0.0370439 + ], + [ + 109.3651836, + -0.0371599 + ], + [ + 109.3652533, + -0.0372237 + ] + ] + }, + "id": "way/643659307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659308", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649959, + -0.0370742 + ], + [ + 109.3650338, + -0.0370483 + ] + ] + }, + "id": "way/643659308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659309", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636078, + -0.044809 + ], + [ + 109.3638298, + -0.0445649 + ], + [ + 109.3640323, + -0.044345 + ], + [ + 109.3642757, + -0.0440727 + ], + [ + 109.3645251, + -0.0438105 + ], + [ + 109.3646917, + -0.0436399 + ] + ] + }, + "id": "way/643659309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659310", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3676432, + -0.0397327 + ], + [ + 109.3683359, + -0.0392085 + ] + ] + }, + "id": "way/643659310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659311", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3677622, + -0.0398572 + ], + [ + 109.3680489, + -0.0396498 + ], + [ + 109.368706, + -0.039167 + ], + [ + 109.3689246, + -0.0389899 + ], + [ + 109.3691902, + -0.0387861 + ], + [ + 109.3694369, + -0.0385849 + ], + [ + 109.3696837, + -0.0384226 + ], + [ + 109.36974, + -0.0383918 + ], + [ + 109.3698031, + -0.0383609 + ], + [ + 109.3698406, + -0.0383395 + ] + ] + }, + "id": "way/643659311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659312", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3613515, + -0.0416976 + ], + [ + 109.3617363, + -0.0412121 + ], + [ + 109.3619261, + -0.0409681 + ] + ] + }, + "id": "way/643659312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659313", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362022, + -0.042222 + ], + [ + 109.3626899, + -0.0415568 + ] + ] + }, + "id": "way/643659313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659314", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3732144, + -0.041524 + ], + [ + 109.3733208, + -0.0416592 + ], + [ + 109.3734348, + -0.0418183 + ] + ] + }, + "id": "way/643659314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659315", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3754075, + -0.040637 + ], + [ + 109.3768847, + -0.0395158 + ], + [ + 109.3770316, + -0.0394043 + ], + [ + 109.3779302, + -0.0387338 + ] + ] + }, + "id": "way/643659315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751999, + -0.0404237 + ], + [ + 109.3762645, + -0.0396028 + ], + [ + 109.3765984, + -0.0393547 + ], + [ + 109.3766948, + -0.039282 + ], + [ + 109.3776593, + -0.0385541 + ] + ] + }, + "id": "way/643659316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659317", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3732562, + -0.0419522 + ], + [ + 109.3733444, + -0.0420792 + ], + [ + 109.3734501, + -0.0422314 + ], + [ + 109.3736461, + -0.042436 + ] + ] + }, + "id": "way/643659317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659318", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3729241, + -0.0417337 + ], + [ + 109.3730354, + -0.0418823 + ], + [ + 109.37315, + -0.0420247 + ] + ] + }, + "id": "way/643659318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659319", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709013, + -0.0431498 + ], + [ + 109.3709168, + -0.0431389 + ], + [ + 109.3717289, + -0.0425693 + ], + [ + 109.3729241, + -0.0417337 + ], + [ + 109.3729413, + -0.0417218 + ], + [ + 109.3730712, + -0.0416276 + ], + [ + 109.3732144, + -0.041524 + ], + [ + 109.3740678, + -0.0409064 + ], + [ + 109.3749268, + -0.0402982 + ] + ] + }, + "id": "way/643659319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659320", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3755162, + -0.0407494 + ], + [ + 109.3742448, + -0.0416735 + ], + [ + 109.3734501, + -0.0422314 + ], + [ + 109.3734214, + -0.0422515 + ], + [ + 109.3729761, + -0.0425814 + ], + [ + 109.3726703, + -0.0428 + ] + ] + }, + "id": "way/643659320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659321", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3712894, + -0.0433267 + ], + [ + 109.3725014, + -0.0424674 + ], + [ + 109.37315, + -0.0420247 + ], + [ + 109.3732562, + -0.0419522 + ], + [ + 109.3734348, + -0.0418183 + ], + [ + 109.3749127, + -0.0407535 + ], + [ + 109.3751791, + -0.0405597 + ] + ] + }, + "id": "way/643659321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643659322", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688843, + -0.0410882 + ], + [ + 109.3692277, + -0.0408326 + ], + [ + 109.369614, + -0.0405537 + ], + [ + 109.3700337, + -0.0402546 + ], + [ + 109.3705688, + -0.0398724 + ], + [ + 109.3713266, + -0.0393614 + ], + [ + 109.3730886, + -0.0381861 + ] + ] + }, + "id": "way/643659322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663309", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473141, + -0.0185193 + ], + [ + 109.3473617, + -0.0185288 + ], + [ + 109.3474417, + -0.0185447 + ] + ] + }, + "id": "way/643663309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663310", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425056, + -0.0177261 + ], + [ + 109.342635, + -0.0177811 + ], + [ + 109.3428076, + -0.017838 + ], + [ + 109.343015, + -0.0178909 + ], + [ + 109.3431233, + -0.0179185 + ], + [ + 109.3433188, + -0.0179714 + ], + [ + 109.3434647, + -0.0180132 + ], + [ + 109.3440406, + -0.0181505 + ], + [ + 109.3443892, + -0.0182444 + ], + [ + 109.3447503, + -0.0183203 + ], + [ + 109.3447848, + -0.0183275 + ], + [ + 109.3449886, + -0.0183463 + ], + [ + 109.3451361, + -0.0183615 + ], + [ + 109.3452354, + -0.0183718 + ], + [ + 109.3453693, + -0.0183759 + ], + [ + 109.3455802, + -0.0183823 + ], + [ + 109.3456967, + -0.0183863 + ], + [ + 109.3458424, + -0.0183913 + ], + [ + 109.3460576, + -0.0183917 + ], + [ + 109.3463754, + -0.0184095 + ], + [ + 109.3466891, + -0.0184254 + ], + [ + 109.3469014, + -0.018448 + ], + [ + 109.3469292, + -0.0184509 + ], + [ + 109.3471438, + -0.0184858 + ], + [ + 109.3473141, + -0.0185193 + ] + ] + }, + "id": "way/643663310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663311", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452023, + -0.0104578 + ], + [ + 109.3451501, + -0.0104405 + ] + ] + }, + "id": "way/643663311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663312", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484524, + -0.0144042 + ], + [ + 109.3483306, + -0.0145349 + ], + [ + 109.3482307, + -0.0146489 + ], + [ + 109.3481898, + -0.0146536 + ], + [ + 109.3481089, + -0.0146053 + ] + ] + }, + "id": "way/643663312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663313", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486465, + -0.0110109 + ], + [ + 109.3490759, + -0.0115455 + ] + ] + }, + "id": "way/643663313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663314", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalan Sealat Sumba" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497198, + -0.0130074 + ], + [ + 109.3496783, + -0.0129587 + ] + ] + }, + "id": "way/643663314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663315", + "highway": "residential", + "name": "Jalan Sealat Sumba" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496704, + -0.0129434 + ], + [ + 109.3496779, + -0.0129267 + ], + [ + 109.3497019, + -0.0128759 + ] + ] + }, + "id": "way/643663315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352882, + -0.0151893 + ], + [ + 109.3525491, + -0.0149681 + ], + [ + 109.3523875, + -0.0148648 + ], + [ + 109.3523687, + -0.0148427 + ], + [ + 109.3523694, + -0.0148219 + ], + [ + 109.3524063, + -0.0146871 + ], + [ + 109.3524787, + -0.0144725 + ], + [ + 109.3524874, + -0.0144538 + ], + [ + 109.3524854, + -0.014437 + ], + [ + 109.352474, + -0.0144283 + ] + ] + }, + "id": "way/643663316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663318", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512029, + -0.0109481 + ], + [ + 109.351217, + -0.0109587 + ] + ] + }, + "id": "way/643663318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663319", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490964, + -0.0143128 + ], + [ + 109.349156, + -0.0143435 + ] + ] + }, + "id": "way/643663319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346726, + -0.0139934 + ], + [ + 109.3466801, + -0.0139736 + ], + [ + 109.3465963, + -0.0139378 + ], + [ + 109.3465165, + -0.0139066 + ], + [ + 109.3464997, + -0.0139052 + ], + [ + 109.3464895, + -0.0139127 + ], + [ + 109.3464501, + -0.0140124 + ] + ] + }, + "id": "way/643663321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663322", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460512, + -0.0141668 + ], + [ + 109.3465704, + -0.0143752 + ] + ] + }, + "id": "way/643663322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663323", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458778, + -0.0142801 + ], + [ + 109.3459262, + -0.0143095 + ], + [ + 109.3459504, + -0.0143248 + ], + [ + 109.3459757, + -0.0143202 + ], + [ + 109.3460032, + -0.0142757 + ], + [ + 109.3460245, + -0.0142252 + ], + [ + 109.3460512, + -0.0141668 + ], + [ + 109.3460711, + -0.0141214 + ], + [ + 109.3461122, + -0.0140235 + ], + [ + 109.3461737, + -0.0138668 + ], + [ + 109.3462361, + -0.0137349 + ], + [ + 109.3463131, + -0.0135545 + ], + [ + 109.3463486, + -0.013489 + ] + ] + }, + "id": "way/643663323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663324", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478794, + -0.0125229 + ], + [ + 109.3479165, + -0.0125831 + ], + [ + 109.3479497, + -0.0126348 + ], + [ + 109.3480096, + -0.0127133 + ], + [ + 109.3480691, + -0.0127984 + ], + [ + 109.3481079, + -0.0128414 + ], + [ + 109.3481673, + -0.0129045 + ], + [ + 109.348249, + -0.013008 + ], + [ + 109.3483011, + -0.0130767 + ], + [ + 109.3483948, + -0.0132043 + ], + [ + 109.3484905, + -0.0133219 + ] + ] + }, + "id": "way/643663324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663325", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513397, + -0.0144739 + ], + [ + 109.3517164, + -0.0145255 + ] + ] + }, + "id": "way/643663325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663326", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512518, + -0.0109851 + ], + [ + 109.3513442, + -0.0110635 + ], + [ + 109.3514919, + -0.0111811 + ] + ] + }, + "id": "way/643663326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663327", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495551, + -0.0131783 + ], + [ + 109.3495024, + -0.0131405 + ], + [ + 109.3494323, + -0.0130887 + ], + [ + 109.3493625, + -0.0130374 + ], + [ + 109.349306, + -0.0129972 + ], + [ + 109.349263, + -0.0129699 + ], + [ + 109.3492185, + -0.0130272 + ] + ] + }, + "id": "way/643663327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663328", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492098, + -0.0141722 + ], + [ + 109.3491552, + -0.0141561 + ] + ] + }, + "id": "way/643663328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663329", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491552, + -0.0141561 + ], + [ + 109.3491445, + -0.0141546 + ], + [ + 109.349084, + -0.0141334 + ], + [ + 109.3490459, + -0.0141206 + ], + [ + 109.3489939, + -0.0141014 + ], + [ + 109.3489321, + -0.0140731 + ], + [ + 109.3488647, + -0.0140377 + ], + [ + 109.3488048, + -0.0140102 + ], + [ + 109.3487483, + -0.0139823 + ], + [ + 109.3487, + -0.0139575 + ], + [ + 109.3486526, + -0.0139337 + ], + [ + 109.348613, + -0.0139021 + ], + [ + 109.3485765, + -0.0138618 + ], + [ + 109.3485418, + -0.0138301 + ], + [ + 109.3485022, + -0.0137913 + ], + [ + 109.3484728, + -0.0137642 + ], + [ + 109.3484355, + -0.0137374 + ], + [ + 109.3483937, + -0.0137035 + ], + [ + 109.3483613, + -0.01367 + ], + [ + 109.3483263, + -0.0136286 + ], + [ + 109.3482882, + -0.0135743 + ], + [ + 109.3482656, + -0.0135427 + ], + [ + 109.3480618, + -0.0132541 + ] + ] + }, + "id": "way/643663329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663330", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488151, + -0.0118057 + ], + [ + 109.3484259, + -0.0113662 + ], + [ + 109.348341, + -0.011267 + ], + [ + 109.3482666, + -0.0111942 + ], + [ + 109.3481965, + -0.0111221 + ], + [ + 109.3481214, + -0.0110363 + ], + [ + 109.3480812, + -0.0109944 + ], + [ + 109.3480007, + -0.0109069 + ], + [ + 109.3479414, + -0.0108469 + ], + [ + 109.3478928, + -0.0107969 + ], + [ + 109.3478321, + -0.0107315 + ], + [ + 109.3477992, + -0.0107 + ], + [ + 109.3477406, + -0.0106542 + ], + [ + 109.3469091, + -0.0103024 + ] + ] + }, + "id": "way/643663330" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663331", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473644, + -0.0115375 + ], + [ + 109.347294, + -0.0115127 + ], + [ + 109.3471914, + -0.0114758 + ], + [ + 109.3471337, + -0.0114571 + ], + [ + 109.3470667, + -0.0114376 + ], + [ + 109.3469513, + -0.0114068 + ], + [ + 109.3468561, + -0.01139 + ], + [ + 109.346786, + -0.0113829 + ] + ] + }, + "id": "way/643663331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663332", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347056, + -0.0107218 + ], + [ + 109.3468088, + -0.0106051 + ] + ] + }, + "id": "way/643663332" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663333", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346606, + -0.011109 + ], + [ + 109.3463968, + -0.0110071 + ], + [ + 109.3462819, + -0.0109532 + ], + [ + 109.3461835, + -0.0108992 + ], + [ + 109.3460058, + -0.0108194 + ], + [ + 109.3458744, + -0.0107649 + ], + [ + 109.3459247, + -0.0106584 + ], + [ + 109.3459586, + -0.0105857 + ], + [ + 109.3459961, + -0.0104992 + ] + ] + }, + "id": "way/643663333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663334", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345697, + -0.0111444 + ], + [ + 109.3458744, + -0.0107649 + ], + [ + 109.3452023, + -0.0104578 + ] + ] + }, + "id": "way/643663334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663335", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438643, + -0.0139355 + ], + [ + 109.3438736, + -0.013939 + ] + ] + }, + "id": "way/643663335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663336", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345097, + -0.0104274 + ], + [ + 109.3450584, + -0.0104164 + ], + [ + 109.3450195, + -0.0104036 + ], + [ + 109.3449484, + -0.0103838 + ], + [ + 109.344826, + -0.0103315 + ], + [ + 109.3447486, + -0.0102997 + ], + [ + 109.344727, + -0.0102902 + ], + [ + 109.3446992, + -0.010282 + ], + [ + 109.3440331, + -0.0099718 + ] + ] + }, + "id": "way/643663336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643663337", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449581, + -0.0108747 + ], + [ + 109.3446416, + -0.0107466 + ], + [ + 109.3446018, + -0.010698 + ] + ] + }, + "id": "way/643663337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643685080", + "highway": "residential", + "name": "Jalan Karangan Blok C" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506371, + -0.049417 + ], + [ + 109.3509901, + -0.0496732 + ], + [ + 109.3514859, + -0.0500105 + ] + ] + }, + "id": "way/643685080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643685081", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546809, + -0.0483375 + ], + [ + 109.3541966, + -0.0477641 + ] + ] + }, + "id": "way/643685081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643685082", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545884, + -0.0452403 + ], + [ + 109.3544488, + -0.0450289 + ] + ] + }, + "id": "way/643685082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643685083", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537927, + -0.0467271 + ], + [ + 109.3540444, + -0.0470064 + ], + [ + 109.3540655, + -0.0470184 + ], + [ + 109.354091, + -0.0470208 + ], + [ + 109.3541192, + -0.0470151 + ], + [ + 109.3543398, + -0.0468444 + ] + ] + }, + "id": "way/643685083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643685084", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552703, + -0.0451441 + ], + [ + 109.3552608, + -0.0451225 + ], + [ + 109.3552628, + -0.0451117 + ], + [ + 109.3552702, + -0.0450977 + ], + [ + 109.3553617, + -0.0450205 + ], + [ + 109.3554194, + -0.0449776 + ], + [ + 109.3554382, + -0.0449729 + ], + [ + 109.3554549, + -0.0449759 + ], + [ + 109.3554724, + -0.0449884 + ], + [ + 109.3555378, + -0.0451185 + ], + [ + 109.355924, + -0.0448854 + ], + [ + 109.3563507, + -0.044518 + ] + ] + }, + "id": "way/643685084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643685085", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550396, + -0.0532656 + ], + [ + 109.3551121, + -0.0533125 + ] + ] + }, + "id": "way/643685085" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643685086", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543468, + -0.0527725 + ], + [ + 109.3550396, + -0.0532656 + ] + ] + }, + "id": "way/643685086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690842", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2997049, + -0.0080708 + ], + [ + 109.2996868, + -0.0080124 + ], + [ + 109.2996781, + -0.0079621 + ], + [ + 109.2996693, + -0.0078803 + ], + [ + 109.2996375, + -0.0076731 + ] + ] + }, + "id": "way/643690842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690848", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354702, + -0.0498746 + ], + [ + 109.335502, + -0.0499454 + ] + ] + }, + "id": "way/643690848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690850", + "colour": "#606060", + "highway": "residential", + "name": "Purnama 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351188, + -0.050063 + ], + [ + 109.3351024, + -0.0500085 + ] + ] + }, + "id": "way/643690850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690852", + "colour": "#606060", + "highway": "residential", + "name": "Pelangi Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346368, + -0.0502109 + ], + [ + 109.3346233, + -0.050162 + ] + ] + }, + "id": "way/643690852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690855", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Anggrek 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343054, + -0.0503113 + ], + [ + 109.3342853, + -0.050247 + ] + ] + }, + "id": "way/643690855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690857", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Anggrek 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338403, + -0.0504175 + ], + [ + 109.3338303, + -0.0503783 + ] + ] + }, + "id": "way/643690857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690860", + "colour": "#606060", + "highway": "residential", + "name": "Anggrek 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334941, + -0.0504928 + ], + [ + 109.3334783, + -0.0504631 + ] + ] + }, + "id": "way/643690860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690863", + "colour": "#606060", + "highway": "living_street", + "name": "Purnama Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331955, + -0.0505687 + ], + [ + 109.3331832, + -0.0505238 + ] + ] + }, + "id": "way/643690863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690865", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Anggrek 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33287, + -0.0506591 + ], + [ + 109.3328485, + -0.0506191 + ] + ] + }, + "id": "way/643690865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690868", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325047, + -0.0507908 + ], + [ + 109.3325378, + -0.0508802 + ] + ] + }, + "id": "way/643690868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690869", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322197, + -0.0508973 + ], + [ + 109.3322538, + -0.0509838 + ] + ] + }, + "id": "way/643690869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690870", + "colour": "#606060", + "highway": "residential", + "name": "Purnama 8" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317634, + -0.0510627 + ], + [ + 109.3317586, + -0.0510511 + ] + ] + }, + "id": "way/643690870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690871", + "colour": "#606060", + "highway": "residential", + "name": "Permata Purnama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331388, + -0.051301 + ], + [ + 109.3313616, + -0.0512748 + ] + ] + }, + "id": "way/643690871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690873", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama Agung 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309825, + -0.0516797 + ], + [ + 109.3310284, + -0.0517513 + ] + ] + }, + "id": "way/643690873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690876", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307207, + -0.0519174 + ], + [ + 109.3307682, + -0.0519799 + ] + ] + }, + "id": "way/643690876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690878", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Agung 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290938, + -0.0532955 + ], + [ + 109.3290784, + -0.0532747 + ] + ] + }, + "id": "way/643690878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690879", + "colour": "#606060", + "highway": "residential", + "name": "Purnama Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287961, + -0.0535909 + ], + [ + 109.3287731, + -0.053557 + ] + ] + }, + "id": "way/643690879" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690880", + "highway": "residential", + "name": "Purnama Prima" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284681, + -0.0538781 + ], + [ + 109.3284442, + -0.0538374 + ] + ] + }, + "id": "way/643690880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690881", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama Agung 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32778, + -0.054472 + ], + [ + 109.3278359, + -0.0545582 + ] + ] + }, + "id": "way/643690881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690882", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273518, + -0.0548439 + ], + [ + 109.3273283, + -0.0548056 + ] + ] + }, + "id": "way/643690882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690883", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271407, + -0.0550643 + ], + [ + 109.3271038, + -0.0550143 + ] + ] + }, + "id": "way/643690883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690884", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3269277, + -0.0552757 + ], + [ + 109.3268909, + -0.0552171 + ] + ] + }, + "id": "way/643690884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690885", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267043, + -0.0554022 + ], + [ + 109.3267405, + -0.0554659 + ] + ] + }, + "id": "way/643690885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690886", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264415, + -0.0557811 + ], + [ + 109.3263989, + -0.0557314 + ] + ] + }, + "id": "way/643690886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690887", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3261387, + -0.0560665 + ], + [ + 109.3261072, + -0.0560149 + ] + ] + }, + "id": "way/643690887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690888", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257386, + -0.0564534 + ], + [ + 109.3257128, + -0.0564185 + ] + ] + }, + "id": "way/643690888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690889", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254045, + -0.0567561 + ], + [ + 109.3253839, + -0.0567266 + ] + ] + }, + "id": "way/643690889" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690890", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325001, + -0.057192 + ], + [ + 109.3250431, + -0.0572678 + ] + ] + }, + "id": "way/643690890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690891", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246076, + -0.057565 + ], + [ + 109.3245831, + -0.0575162 + ] + ] + }, + "id": "way/643690891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690892", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323951, + -0.0581885 + ], + [ + 109.3240238, + -0.058285 + ] + ] + }, + "id": "way/643690892" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643690893", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221715, + -0.0605414 + ], + [ + 109.3221448, + -0.0605138 + ] + ] + }, + "id": "way/643690893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643701300", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640551, + -0.0473243 + ], + [ + 109.3642608, + -0.0471866 + ], + [ + 109.3644333, + -0.0470594 + ], + [ + 109.3647109, + -0.046885 + ], + [ + 109.3646452, + -0.0468045 + ], + [ + 109.3647453, + -0.0467425 + ] + ] + }, + "id": "way/643701300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643701301", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3676135, + -0.0510404 + ], + [ + 109.3674179, + -0.0511826 + ], + [ + 109.3672315, + -0.0513207 + ], + [ + 109.3669479, + -0.0515293 + ], + [ + 109.3667588, + -0.0516553 + ], + [ + 109.3666622, + -0.0515588 + ], + [ + 109.3666241, + -0.0514232 + ] + ] + }, + "id": "way/643701301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643701302", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624841, + -0.0454976 + ], + [ + 109.3626758, + -0.0453427 + ], + [ + 109.3628025, + -0.0452328 + ], + [ + 109.3629346, + -0.0451268 + ], + [ + 109.3631686, + -0.0449391 + ], + [ + 109.3633175, + -0.044813 + ], + [ + 109.363406, + -0.0447222 + ] + ] + }, + "id": "way/643701302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702943", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318213, + -0.0071825 + ], + [ + 109.3182906, + -0.0070924 + ], + [ + 109.3183858, + -0.0069778 + ], + [ + 109.3184461, + -0.0069033 + ], + [ + 109.3185246, + -0.0068148 + ], + [ + 109.3185367, + -0.0067853 + ], + [ + 109.3185447, + -0.0067458 + ], + [ + 109.3185494, + -0.006725 + ], + [ + 109.318646, + -0.0065942 + ], + [ + 109.3187003, + -0.0065171 + ], + [ + 109.3187774, + -0.0064319 + ], + [ + 109.3189725, + -0.0061925 + ], + [ + 109.3190517, + -0.006106 + ] + ] + }, + "id": "way/643702943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702945", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3158755, + -0.0060085 + ], + [ + 109.3159014, + -0.0061208 + ], + [ + 109.3158987, + -0.0061744 + ], + [ + 109.3158571, + -0.0063649 + ], + [ + 109.3158625, + -0.0064279 + ], + [ + 109.3158799, + -0.0064976 + ] + ] + }, + "id": "way/643702945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702947", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136705, + -0.0061696 + ], + [ + 109.3137476, + -0.0060537 + ], + [ + 109.3138066, + -0.0059867 + ], + [ + 109.3138629, + -0.0059867 + ], + [ + 109.3138897, + -0.0059921 + ], + [ + 109.3139655, + -0.0060249 + ], + [ + 109.3139843, + -0.0060457 + ] + ] + }, + "id": "way/643702947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702949", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163612, + -0.0085603 + ], + [ + 109.3160409, + -0.0083323 + ], + [ + 109.3157947, + -0.0081571 + ] + ] + }, + "id": "way/643702949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702952", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143837, + -0.0054442 + ], + [ + 109.3146437, + -0.005579 + ], + [ + 109.314862, + -0.0056823 + ] + ] + }, + "id": "way/643702952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702954", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155473, + -0.0034788 + ], + [ + 109.3151588, + -0.004135 + ], + [ + 109.3150299, + -0.0043636 + ], + [ + 109.3149953, + -0.0044112 + ], + [ + 109.3149689, + -0.0044558 + ], + [ + 109.3148906, + -0.0045881 + ], + [ + 109.3148629, + -0.0046349 + ], + [ + 109.3148048, + -0.004733 + ], + [ + 109.314528, + -0.0052005 + ], + [ + 109.3143837, + -0.0054442 + ], + [ + 109.314215, + -0.0057292 + ] + ] + }, + "id": "way/643702954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702956", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144287, + -0.0062623 + ], + [ + 109.3144798, + -0.0060779 + ], + [ + 109.3144946, + -0.0059827 + ], + [ + 109.3145201, + -0.0058432 + ], + [ + 109.3145496, + -0.00576 + ], + [ + 109.3145978, + -0.0056608 + ], + [ + 109.3146437, + -0.005579 + ], + [ + 109.3147239, + -0.0054355 + ], + [ + 109.3147977, + -0.0053081 + ], + [ + 109.3148875, + -0.0051418 + ], + [ + 109.3149962, + -0.0049581 + ], + [ + 109.3150847, + -0.0048052 + ], + [ + 109.3151043, + -0.0047733 + ], + [ + 109.3151423, + -0.0047113 + ], + [ + 109.315265, + -0.0044931 + ], + [ + 109.3150299, + -0.0043636 + ] + ] + }, + "id": "way/643702956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702958", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149818, + -0.0067701 + ], + [ + 109.3152536, + -0.0069657 + ], + [ + 109.3153086, + -0.0070167 + ], + [ + 109.3153153, + -0.0070462 + ], + [ + 109.315314, + -0.007077 + ], + [ + 109.3153046, + -0.0071092 + ], + [ + 109.3152094, + -0.0072822 + ] + ] + }, + "id": "way/643702958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702959", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3167154, + -0.0070602 + ], + [ + 109.3168945, + -0.0071658 + ], + [ + 109.3170103, + -0.0072461 + ], + [ + 109.3171808, + -0.0073642 + ], + [ + 109.3173544, + -0.0074844 + ], + [ + 109.3174716, + -0.0075656 + ], + [ + 109.3176788, + -0.007721 + ] + ] + }, + "id": "way/643702959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702961", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170895, + -0.006492 + ], + [ + 109.3170703, + -0.006518 + ], + [ + 109.316988, + -0.0066425 + ], + [ + 109.3169031, + -0.0067707 + ], + [ + 109.316804, + -0.0069205 + ], + [ + 109.3167154, + -0.0070602 + ], + [ + 109.3166001, + -0.0072607 + ] + ] + }, + "id": "way/643702961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702963", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3173705, + -0.0080867 + ], + [ + 109.3173598, + -0.0080872 + ], + [ + 109.3173464, + -0.0080872 + ], + [ + 109.3173233, + -0.0080791 + ], + [ + 109.3171894, + -0.0079778 + ], + [ + 109.3165599, + -0.007529 + ], + [ + 109.3165404, + -0.0074998 + ], + [ + 109.3165317, + -0.0074733 + ], + [ + 109.3165324, + -0.0074351 + ], + [ + 109.3165485, + -0.0073828 + ], + [ + 109.3166001, + -0.0072607 + ] + ] + }, + "id": "way/643702963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702965", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188234, + -0.0076213 + ], + [ + 109.3190396, + -0.0073412 + ], + [ + 109.3198925, + -0.0063944 + ] + ] + }, + "id": "way/643702965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702966", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3174455, + -0.0053479 + ], + [ + 109.3175657, + -0.0054364 + ], + [ + 109.3177309, + -0.0055581 + ], + [ + 109.3178771, + -0.0056658 + ], + [ + 109.3181598, + -0.005874 + ] + ] + }, + "id": "way/643702966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702968", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171739, + -0.0056866 + ], + [ + 109.3173618, + -0.0058242 + ], + [ + 109.3175845, + -0.0059874 + ], + [ + 109.3178856, + -0.006208 + ] + ] + }, + "id": "way/643702968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702970", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176582, + -0.0050828 + ], + [ + 109.3174455, + -0.0053479 + ], + [ + 109.3172643, + -0.0055739 + ], + [ + 109.3171739, + -0.0056866 + ], + [ + 109.3170494, + -0.0058418 + ], + [ + 109.3168022, + -0.0061493 + ] + ] + }, + "id": "way/643702970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643702973", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185434, + -0.0057319 + ], + [ + 109.3184237, + -0.0058834 + ], + [ + 109.3183016, + -0.0060379 + ], + [ + 109.3182027, + -0.0061631 + ], + [ + 109.3179788, + -0.0064465 + ], + [ + 109.3179137, + -0.006529 + ], + [ + 109.317824, + -0.0066425 + ], + [ + 109.3177706, + -0.00671 + ], + [ + 109.3176975, + -0.0068026 + ] + ] + }, + "id": "way/643702973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3766625, + -0.0287217 + ], + [ + 109.3768571, + -0.0287117 + ], + [ + 109.3771967, + -0.0287066 + ] + ] + }, + "id": "way/643709584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709586", + "highway": "residential", + "name": "Gang Keladan 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709953, + -0.0314882 + ], + [ + 109.371289, + -0.0315119 + ], + [ + 109.3713969, + -0.0315206 + ] + ] + }, + "id": "way/643709586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709588", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373887, + -0.02858 + ], + [ + 109.3742084, + -0.0285723 + ] + ] + }, + "id": "way/643709588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709591", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3742626, + -0.0296038 + ], + [ + 109.3738969, + -0.0296167 + ] + ] + }, + "id": "way/643709591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709594", + "highway": "residential", + "name": "Gang Nangka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3734925, + -0.0265692 + ], + [ + 109.3735322, + -0.026572 + ], + [ + 109.3735342, + -0.0265435 + ], + [ + 109.3735358, + -0.0265203 + ], + [ + 109.3735366, + -0.0265085 + ], + [ + 109.373558, + -0.0261984 + ], + [ + 109.373567, + -0.0260685 + ], + [ + 109.3735802, + -0.0258776 + ], + [ + 109.373586, + -0.0257933 + ], + [ + 109.3735936, + -0.025682 + ] + ] + }, + "id": "way/643709594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709597", + "highway": "residential", + "name": "Gang Nangka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3734979, + -0.0274142 + ], + [ + 109.3735055, + -0.0271197 + ], + [ + 109.3735093, + -0.0269724 + ], + [ + 109.3735115, + -0.0268865 + ], + [ + 109.3735129, + -0.0268326 + ], + [ + 109.3735178, + -0.0266425 + ], + [ + 109.3735187, + -0.0266114 + ] + ] + }, + "id": "way/643709597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709602", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.378354, + -0.0286654 + ], + [ + 109.378691, + -0.0287876 + ] + ] + }, + "id": "way/643709602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709605", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3702816, + -0.0316616 + ], + [ + 109.3703253, + -0.0313286 + ] + ] + }, + "id": "way/643709605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709607", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3696396, + -0.0318026 + ], + [ + 109.3702816, + -0.0316616 + ], + [ + 109.3702246, + -0.0320369 + ] + ] + }, + "id": "way/643709607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709610", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3697742, + -0.030823 + ], + [ + 109.3701638, + -0.0307341 + ] + ] + }, + "id": "way/643709610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3702554, + -0.0310356 + ], + [ + 109.3702, + -0.0307602 + ], + [ + 109.37019, + -0.0307441 + ], + [ + 109.3701786, + -0.0307361 + ], + [ + 109.3701638, + -0.0307341 + ] + ] + }, + "id": "way/643709612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709615", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3698405, + -0.0311312 + ], + [ + 109.3702554, + -0.0310356 + ], + [ + 109.3703253, + -0.0313286 + ] + ] + }, + "id": "way/643709615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3697007, + -0.0305022 + ], + [ + 109.3697742, + -0.030823 + ], + [ + 109.3698405, + -0.0311312 + ], + [ + 109.3699155, + -0.031429 + ] + ] + }, + "id": "way/643709618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3698335, + -0.0294288 + ], + [ + 109.3695483, + -0.0297162 + ] + ] + }, + "id": "way/643709620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709623", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701115, + -0.027435 + ], + [ + 109.3699355, + -0.0277126 + ], + [ + 109.3699231, + -0.027732 + ], + [ + 109.3699077, + -0.0277381 + ], + [ + 109.3698943, + -0.0277357 + ], + [ + 109.3698809, + -0.027734 + ], + [ + 109.3698473, + -0.0277153 + ], + [ + 109.3697615, + -0.0276723 + ], + [ + 109.3696462, + -0.0276026 + ], + [ + 109.3695523, + -0.027553 + ], + [ + 109.3694852, + -0.0275114 + ], + [ + 109.3694289, + -0.0274819 + ], + [ + 109.3693699, + -0.0274631 + ], + [ + 109.3693176, + -0.0274524 + ], + [ + 109.3692959, + -0.0274511 + ] + ] + }, + "id": "way/643709623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709627", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3697312, + -0.0271065 + ], + [ + 109.369777, + -0.0270284 + ], + [ + 109.3697938, + -0.0269314 + ], + [ + 109.369798, + -0.026838 + ], + [ + 109.3698066, + -0.0267967 + ], + [ + 109.3698133, + -0.026776 + ], + [ + 109.3698188, + -0.0267491 + ], + [ + 109.3698249, + -0.0267189 + ], + [ + 109.3698274, + -0.0266869 + ], + [ + 109.3698256, + -0.0266497 + ], + [ + 109.3698311, + -0.0265808 + ], + [ + 109.3698383, + -0.0264892 + ], + [ + 109.3698571, + -0.0264059 + ], + [ + 109.3698669, + -0.0262949 + ], + [ + 109.3698873, + -0.0262127 + ], + [ + 109.3698894, + -0.0261066 + ], + [ + 109.3699385, + -0.0255408 + ] + ] + }, + "id": "way/643709627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709631", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704133, + -0.0262325 + ], + [ + 109.3702124, + -0.0262125 + ] + ] + }, + "id": "way/643709631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709634", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703744, + -0.0265244 + ], + [ + 109.37018, + -0.0265118 + ] + ] + }, + "id": "way/643709634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709637", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3705244, + -0.0276008 + ], + [ + 109.3704716, + -0.0276314 + ] + ] + }, + "id": "way/643709637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709640", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704716, + -0.0276314 + ], + [ + 109.3703603, + -0.0275858 + ], + [ + 109.3702269, + -0.027498 + ], + [ + 109.3701115, + -0.027435 + ], + [ + 109.3700297, + -0.0273934 + ], + [ + 109.3698272, + -0.0272834 + ], + [ + 109.3696723, + -0.0271909 + ], + [ + 109.369557, + -0.0271352 + ], + [ + 109.3694913, + -0.0271178 + ], + [ + 109.3693484, + -0.027097 + ], + [ + 109.3691647, + -0.0270722 + ], + [ + 109.3689649, + -0.0270407 + ], + [ + 109.3688039, + -0.0270145 + ], + [ + 109.3686664, + -0.0269883 + ] + ] + }, + "id": "way/643709640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709644", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3711962, + -0.0268828 + ], + [ + 109.3716645, + -0.0269211 + ] + ] + }, + "id": "way/643709644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709647", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3699567, + -0.0287862 + ], + [ + 109.370322, + -0.0285031 + ] + ] + }, + "id": "way/643709647" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709649", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.374692, + -0.032016 + ], + [ + 109.3745861, + -0.0318912 + ], + [ + 109.3744845, + -0.0317731 + ], + [ + 109.3743134, + -0.0315926 + ] + ] + }, + "id": "way/643709649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709652", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3746818, + -0.0279162 + ], + [ + 109.3746921, + -0.0280412 + ], + [ + 109.3746994, + -0.0282155 + ], + [ + 109.3747119, + -0.0284946 + ], + [ + 109.3747375, + -0.0289406 + ], + [ + 109.3747704, + -0.0293809 + ], + [ + 109.3747866, + -0.0296975 + ], + [ + 109.3748011, + -0.0299606 + ], + [ + 109.3748113, + -0.0302013 + ], + [ + 109.3748247, + -0.0304302 + ], + [ + 109.3748295, + -0.0304538 + ], + [ + 109.3748382, + -0.0304605 + ], + [ + 109.374858, + -0.0304645 + ], + [ + 109.3749293, + -0.0304553 + ], + [ + 109.3751279, + -0.0304153 + ] + ] + }, + "id": "way/643709652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709655", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3792015, + -0.0286493 + ], + [ + 109.3793195, + -0.0287037 + ], + [ + 109.3794342, + -0.0287486 + ], + [ + 109.3794831, + -0.0287687 + ] + ] + }, + "id": "way/643709655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709658", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793056, + -0.0283648 + ], + [ + 109.3793859, + -0.0283932 + ], + [ + 109.3794483, + -0.0284207 + ], + [ + 109.3795462, + -0.0284582 + ], + [ + 109.3796669, + -0.0284971 + ] + ] + }, + "id": "way/643709658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709661", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3805406, + -0.027521 + ], + [ + 109.38043, + -0.0275114 + ], + [ + 109.3803455, + -0.0275034 + ], + [ + 109.380323, + -0.0275047 + ], + [ + 109.3803116, + -0.0275118 + ], + [ + 109.3803032, + -0.0275208 + ], + [ + 109.3802935, + -0.0275577 + ], + [ + 109.3802667, + -0.0276462 + ], + [ + 109.3802369, + -0.0277233 + ], + [ + 109.3802013, + -0.0278199 + ], + [ + 109.3801758, + -0.027897 + ], + [ + 109.3801484, + -0.0279697 + ], + [ + 109.3801276, + -0.028018 + ], + [ + 109.3801074, + -0.0280666 + ], + [ + 109.3800793, + -0.0281427 + ], + [ + 109.3800578, + -0.028195 + ], + [ + 109.380036, + -0.0282584 + ], + [ + 109.379974, + -0.0284368 + ], + [ + 109.3797916, + -0.0289276 + ], + [ + 109.3797715, + -0.0289813 + ], + [ + 109.3797608, + -0.0290081 + ], + [ + 109.379691, + -0.0290751 + ], + [ + 109.3796884, + -0.0291999 + ] + ] + }, + "id": "way/643709661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709666", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3804865, + -0.0270003 + ], + [ + 109.3805024, + -0.0268851 + ], + [ + 109.3804957, + -0.0268503 + ], + [ + 109.3804756, + -0.0268275 + ], + [ + 109.3804622, + -0.0268033 + ], + [ + 109.3804233, + -0.0267644 + ], + [ + 109.3803978, + -0.0267054 + ], + [ + 109.3804058, + -0.0265981 + ], + [ + 109.3804313, + -0.0265338 + ], + [ + 109.380485, + -0.0263607 + ], + [ + 109.3805037, + -0.0262937 + ], + [ + 109.38054, + -0.0261368 + ], + [ + 109.3805614, + -0.0260389 + ] + ] + }, + "id": "way/643709666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709670", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3805671, + -0.0278307 + ], + [ + 109.3807197, + -0.02785 + ], + [ + 109.3808494, + -0.0278675 + ], + [ + 109.381004, + -0.0278869 + ] + ] + }, + "id": "way/643709670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709850", + "highway": "residential", + "name": "Jalan Hasyim Ahmad" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022592, + -0.0061598 + ], + [ + 109.3022485, + -0.0054072 + ], + [ + 109.3022533, + -0.0049667 + ] + ] + }, + "id": "way/643709850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039962, + -0.0058925 + ], + [ + 109.3039937, + -0.0054388 + ] + ] + }, + "id": "way/643709851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039881, + -0.0062134 + ], + [ + 109.3046889, + -0.0062337 + ] + ] + }, + "id": "way/643709852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709853", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982545, + -0.0023091 + ], + [ + 109.2982712, + -0.0018407 + ] + ] + }, + "id": "way/643709853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643709854", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102275, + -0.0230822 + ], + [ + 109.3103109, + -0.0232236 + ] + ] + }, + "id": "way/643709854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643721850", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300665, + -0.0094228 + ], + [ + 109.2994296, + -0.0096526 + ] + ] + }, + "id": "way/643721850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643722917", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049969, + -0.0101648 + ], + [ + 109.3046985, + -0.0101648 + ], + [ + 109.3035351, + -0.0101244 + ], + [ + 109.3015202, + -0.0100747 + ] + ] + }, + "id": "way/643722917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643722918", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014433, + -0.0096636 + ], + [ + 109.303075, + -0.0097204 + ], + [ + 109.3035563, + -0.0097372 + ], + [ + 109.3049475, + -0.0097729 + ] + ] + }, + "id": "way/643722918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/643732688", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048346, + -0.0292176 + ], + [ + 109.3045765, + -0.029378 + ], + [ + 109.3044241, + -0.0294811 + ], + [ + 109.304206, + -0.0296114 + ], + [ + 109.3041329, + -0.0296475 + ], + [ + 109.3039563, + -0.0297324 + ] + ] + }, + "id": "way/643732688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644040859", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718876, + -0.0521177 + ], + [ + 109.3722814, + -0.0518243 + ], + [ + 109.3724866, + -0.0516808 + ], + [ + 109.3725366, + -0.0516482 + ], + [ + 109.3726844, + -0.051552 + ], + [ + 109.3727821, + -0.0514873 + ], + [ + 109.373526, + -0.0509941 + ] + ] + }, + "id": "way/644040859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644040861", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3708917, + -0.0507033 + ], + [ + 109.3711885, + -0.0504872 + ], + [ + 109.3710892, + -0.0503229 + ], + [ + 109.3712313, + -0.0502324 + ] + ] + }, + "id": "way/644040861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644040862", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3705605, + -0.0503664 + ], + [ + 109.3705696, + -0.0503603 + ], + [ + 109.3709535, + -0.0501066 + ], + [ + 109.3716457, + -0.049649 + ], + [ + 109.3718375, + -0.049525 + ], + [ + 109.3721829, + -0.0493064 + ], + [ + 109.3725503, + -0.0490636 + ], + [ + 109.3729084, + -0.048837 + ], + [ + 109.3733411, + -0.0485636 + ], + [ + 109.3734583, + -0.0484896 + ], + [ + 109.3740054, + -0.048149 + ], + [ + 109.3745519, + -0.0477983 + ], + [ + 109.3745908, + -0.0477782 + ], + [ + 109.3746351, + -0.0477849 + ], + [ + 109.374737, + -0.0479123 + ], + [ + 109.3749623, + -0.0481644 + ], + [ + 109.3734804, + -0.0491273 + ], + [ + 109.3712317, + -0.0505463 + ], + [ + 109.3711885, + -0.0504872 + ] + ] + }, + "id": "way/644040862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644040864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3687229, + -0.0527403 + ], + [ + 109.3688676, + -0.0526357 + ], + [ + 109.3690098, + -0.0525431 + ], + [ + 109.3691198, + -0.05246 + ], + [ + 109.3692961, + -0.0523031 + ], + [ + 109.3694316, + -0.0521851 + ], + [ + 109.3695885, + -0.0520322 + ], + [ + 109.3700458, + -0.051603 + ], + [ + 109.3702671, + -0.0513992 + ], + [ + 109.3708468, + -0.0508805 + ] + ] + }, + "id": "way/644040864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644040866", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3711833, + -0.0512677 + ], + [ + 109.3723331, + -0.0505254 + ] + ] + }, + "id": "way/644040866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644040867", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703651, + -0.0502689 + ], + [ + 109.3704921, + -0.0501855 + ], + [ + 109.3706835, + -0.0500581 + ], + [ + 109.3708136, + -0.0499769 + ], + [ + 109.371006, + -0.0498602 + ], + [ + 109.3712615, + -0.0496986 + ], + [ + 109.3714573, + -0.0495779 + ], + [ + 109.3716397, + -0.0494593 + ], + [ + 109.3719086, + -0.0492862 + ], + [ + 109.3724249, + -0.048949 + ], + [ + 109.3727864, + -0.0487203 + ], + [ + 109.3729506, + -0.0486204 + ], + [ + 109.3732376, + -0.0484467 + ], + [ + 109.373532, + -0.0482549 + ], + [ + 109.3737493, + -0.0481215 + ], + [ + 109.3739786, + -0.047974 + ], + [ + 109.3745689, + -0.047557 + ] + ] + }, + "id": "way/644040867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644040869", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3692224, + -0.0461682 + ], + [ + 109.36938, + -0.046364 + ], + [ + 109.3693873, + -0.0463968 + ], + [ + 109.3693846, + -0.0464264 + ] + ] + }, + "id": "way/644040869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644040870", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709488, + -0.0434109 + ], + [ + 109.3698004, + -0.0439694 + ] + ] + }, + "id": "way/644040870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644051972", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207284, + -0.0089971 + ], + [ + 109.3208221, + -0.0088633 + ], + [ + 109.3211229, + -0.0084705 + ], + [ + 109.3213865, + -0.0081311 + ] + ] + }, + "id": "way/644051972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644051974", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206309, + -0.0089192 + ], + [ + 109.321357, + -0.0079474 + ], + [ + 109.3214053, + -0.0078828 + ], + [ + 109.3214774, + -0.0079367 + ], + [ + 109.3217059, + -0.0076309 + ] + ] + }, + "id": "way/644051974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644051975", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3201636, + -0.0085872 + ], + [ + 109.3208328, + -0.0077379 + ], + [ + 109.3210217, + -0.0074834 + ] + ] + }, + "id": "way/644051975" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061800", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3637855, + -0.0607124 + ], + [ + 109.3638871, + -0.0604878 + ] + ] + }, + "id": "way/644061800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061801", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363221, + -0.0599488 + ], + [ + 109.3630459, + -0.0598844 + ] + ] + }, + "id": "way/644061801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061802", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3641159, + -0.0608518 + ], + [ + 109.3643937, + -0.0602739 + ] + ] + }, + "id": "way/644061802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630333, + -0.0604016 + ], + [ + 109.363221, + -0.0599488 + ], + [ + 109.3633592, + -0.0595749 + ] + ] + }, + "id": "way/644061803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061804", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651621, + -0.0590566 + ], + [ + 109.3647364, + -0.0594378 + ], + [ + 109.3648121, + -0.0595356 + ], + [ + 109.364493, + -0.0597294 + ], + [ + 109.3642449, + -0.0593445 + ], + [ + 109.3645265, + -0.0591507 + ] + ] + }, + "id": "way/644061804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061805", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645993, + -0.058294 + ], + [ + 109.3642653, + -0.0585216 + ], + [ + 109.3638539, + -0.0588047 + ] + ] + }, + "id": "way/644061805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061806", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621658, + -0.0554261 + ], + [ + 109.3621393, + -0.0553951 + ] + ] + }, + "id": "way/644061806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061807", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361796, + -0.055619 + ], + [ + 109.3617682, + -0.0555915 + ] + ] + }, + "id": "way/644061807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061808", + "highway": "living_street", + "name": "Gang Muslimin Tengah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624176, + -0.0578257 + ], + [ + 109.3613045, + -0.0566127 + ], + [ + 109.3612783, + -0.0566221 + ], + [ + 109.3611161, + -0.0564318 + ], + [ + 109.361116, + -0.0564318 + ] + ] + }, + "id": "way/644061808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061809", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606284, + -0.057101 + ], + [ + 109.3605885, + -0.0570633 + ] + ] + }, + "id": "way/644061809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061810", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605198, + -0.057253 + ], + [ + 109.3604792, + -0.0572125 + ] + ] + }, + "id": "way/644061810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061811", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3596722, + -0.0584231 + ], + [ + 109.359654, + -0.0584057 + ] + ] + }, + "id": "way/644061811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061812", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594382, + -0.058736 + ], + [ + 109.3593819, + -0.0586921 + ] + ] + }, + "id": "way/644061812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644061813", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586956, + -0.0597638 + ], + [ + 109.3586654, + -0.0597227 + ] + ] + }, + "id": "way/644061813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070442", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634878, + -0.0296834 + ], + [ + 109.3634049, + -0.0295498 + ] + ] + }, + "id": "way/644070442" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070443", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619088, + -0.0267162 + ], + [ + 109.3619449, + -0.0267698 + ], + [ + 109.3619488, + -0.0268254 + ] + ] + }, + "id": "way/644070443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070444", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618156, + -0.026582 + ], + [ + 109.3618671, + -0.0266558 + ], + [ + 109.3619088, + -0.0267162 + ] + ] + }, + "id": "way/644070444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070445", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682313, + -0.0289008 + ], + [ + 109.3683399, + -0.0290363 + ], + [ + 109.3684083, + -0.0291221 + ], + [ + 109.3684848, + -0.0292186 + ], + [ + 109.3685675, + -0.02932 + ] + ] + }, + "id": "way/644070445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070446", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614963, + -0.0286326 + ], + [ + 109.3616733, + -0.0286782 + ] + ] + }, + "id": "way/644070446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070447", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616733, + -0.0286782 + ], + [ + 109.3620059, + -0.0287493 + ] + ] + }, + "id": "way/644070447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070448", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3684494, + -0.0299909 + ], + [ + 109.3685639, + -0.0301467 + ], + [ + 109.3686255, + -0.0302258 + ], + [ + 109.3686913, + -0.0302928 + ] + ] + }, + "id": "way/644070448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070449", + "highway": "residential", + "name": "Gang Mentibu 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693183, + -0.0332417 + ], + [ + 109.3697756, + -0.0328074 + ] + ] + }, + "id": "way/644070449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070450", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3695849, + -0.0325746 + ], + [ + 109.3697528, + -0.0327545 + ], + [ + 109.3697769, + -0.0327779 + ], + [ + 109.3697796, + -0.0327947 + ], + [ + 109.3697756, + -0.0328074 + ] + ] + }, + "id": "way/644070450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070451", + "highway": "residential", + "name": "Gang Jelutung 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3687139, + -0.0337902 + ], + [ + 109.3690645, + -0.0334585 + ] + ] + }, + "id": "way/644070451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070452", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688555, + -0.0332416 + ], + [ + 109.3690645, + -0.0334585 + ], + [ + 109.3691684, + -0.0335655 + ], + [ + 109.3692777, + -0.0336751 + ], + [ + 109.3694296, + -0.0338366 + ], + [ + 109.369637, + -0.0340571 + ] + ] + }, + "id": "way/644070452" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070453", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3689324, + -0.0340181 + ], + [ + 109.3692777, + -0.0336751 + ], + [ + 109.3695126, + -0.0334411 + ] + ] + }, + "id": "way/644070453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070454", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680276, + -0.0336044 + ], + [ + 109.3683359, + -0.0339407 + ] + ] + }, + "id": "way/644070454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070455", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652862, + -0.0326953 + ], + [ + 109.3657234, + -0.0333908 + ] + ] + }, + "id": "way/644070455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070456", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632853, + -0.0268409 + ], + [ + 109.3633507, + -0.0265908 + ] + ] + }, + "id": "way/644070456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070457", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614454, + -0.0286201 + ], + [ + 109.3614963, + -0.0286326 + ] + ] + }, + "id": "way/644070457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644070458", + "highway": "track", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651779, + -0.0270296 + ], + [ + 109.3651722, + -0.0272271 + ], + [ + 109.3651696, + -0.0273626 + ], + [ + 109.3651682, + -0.027439 + ], + [ + 109.3651682, + -0.0274765 + ], + [ + 109.3651535, + -0.027502 + ], + [ + 109.3651186, + -0.0275356 + ], + [ + 109.3645996, + -0.0279767 + ] + ] + }, + "id": "way/644070458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644105405", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317144, + -0.0071169 + ], + [ + 109.3315782, + -0.0072265 + ], + [ + 109.3315392, + -0.007258 + ], + [ + 109.3314627, + -0.0073195 + ], + [ + 109.3313839, + -0.0073829 + ] + ] + }, + "id": "way/644105405" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644105407", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319088, + -0.0086246 + ], + [ + 109.3321475, + -0.0083644 + ], + [ + 109.3322135, + -0.0082821 + ], + [ + 109.3322597, + -0.0082045 + ], + [ + 109.3322883, + -0.0081565 + ], + [ + 109.3323447, + -0.00807 + ], + [ + 109.3323462, + -0.0080614 + ], + [ + 109.332344, + -0.0080553 + ], + [ + 109.3323178, + -0.0080358 + ], + [ + 109.3323044, + -0.0080258 + ], + [ + 109.3323031, + -0.0080198 + ], + [ + 109.3323041, + -0.0080141 + ], + [ + 109.3323255, + -0.0079666 + ], + [ + 109.3323458, + -0.0079247 + ], + [ + 109.3324138, + -0.0078366 + ] + ] + }, + "id": "way/644105407" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644105408", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308157, + -0.0061798 + ], + [ + 109.3307863, + -0.0062402 + ], + [ + 109.3307689, + -0.00633 + ], + [ + 109.3305047, + -0.0066827 + ], + [ + 109.330278, + -0.0069201 + ], + [ + 109.3302003, + -0.0069818 + ], + [ + 109.3301332, + -0.0070167 + ], + [ + 109.3300796, + -0.0070274 + ], + [ + 109.3299749, + -0.0070327 + ], + [ + 109.3299133, + -0.007022 + ], + [ + 109.3298551, + -0.0069735 + ], + [ + 109.3298167, + -0.0069416 + ] + ] + }, + "id": "way/644105408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644105409", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305527, + -0.0059262 + ], + [ + 109.3304376, + -0.0059585 + ], + [ + 109.3303987, + -0.0059545 + ], + [ + 109.3303504, + -0.0059398 + ], + [ + 109.3299066, + -0.0055736 + ] + ] + }, + "id": "way/644105409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644105410", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315368, + -0.0069302 + ], + [ + 109.3314383, + -0.0070238 + ], + [ + 109.3313751, + -0.0070837 + ], + [ + 109.3311913, + -0.0072728 + ], + [ + 109.3310358, + -0.0074445 + ], + [ + 109.3308896, + -0.007588 + ], + [ + 109.330797, + -0.007655 + ], + [ + 109.3307635, + -0.0076617 + ], + [ + 109.3307126, + -0.0076497 + ], + [ + 109.3303518, + -0.0072876 + ], + [ + 109.3303531, + -0.0072594 + ], + [ + 109.3303598, + -0.0072339 + ], + [ + 109.3303759, + -0.0072044 + ], + [ + 109.3305516, + -0.0070113 + ], + [ + 109.3306562, + -0.0069013 + ], + [ + 109.3307957, + -0.0067323 + ], + [ + 109.330844, + -0.0066733 + ], + [ + 109.3308969, + -0.0066184 + ], + [ + 109.3309365, + -0.0065842 + ], + [ + 109.33096, + -0.0065701 + ], + [ + 109.3309803, + -0.0065689 + ], + [ + 109.3310002, + -0.0065795 + ], + [ + 109.3314383, + -0.0070238 + ] + ] + }, + "id": "way/644105410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644105411", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312517, + -0.0082424 + ], + [ + 109.3314797, + -0.0079099 + ], + [ + 109.3316969, + -0.0076121 + ], + [ + 109.3318123, + -0.0074572 + ], + [ + 109.3318304, + -0.0074356 + ], + [ + 109.3319202, + -0.0073285 + ] + ] + }, + "id": "way/644105411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644105412", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332124, + -0.0056232 + ], + [ + 109.3322649, + -0.0056963 + ], + [ + 109.3323561, + -0.0057413 + ], + [ + 109.3324647, + -0.0057837 + ] + ] + }, + "id": "way/644105412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644129398", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3273815, + -0.0397935 + ], + [ + 109.3274151, + -0.0397614 + ], + [ + 109.3274356, + -0.0397523 + ], + [ + 109.3274557, + -0.0397567 + ], + [ + 109.3275784, + -0.0399019 + ] + ] + }, + "id": "way/644129398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644129400", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.327313, + -0.0398588 + ], + [ + 109.3273815, + -0.0397935 + ] + ] + }, + "id": "way/644129400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644129402", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274098, + -0.0400524 + ], + [ + 109.327288, + -0.0399217 + ], + [ + 109.3272837, + -0.0399113 + ], + [ + 109.3272844, + -0.0398989 + ], + [ + 109.3272901, + -0.0398808 + ], + [ + 109.327313, + -0.0398588 + ] + ] + }, + "id": "way/644129402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644129404", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309637, + -0.0402445 + ], + [ + 109.3312664, + -0.0400843 + ], + [ + 109.3312872, + -0.0400776 + ], + [ + 109.331304, + -0.0400762 + ], + [ + 109.3313456, + -0.0400923 + ], + [ + 109.3313714, + -0.0401171 + ], + [ + 109.3313952, + -0.04015 + ], + [ + 109.3315739, + -0.0405413 + ] + ] + }, + "id": "way/644129404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644129406", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308698, + -0.0402942 + ], + [ + 109.3309637, + -0.0402445 + ] + ] + }, + "id": "way/644129406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644129412", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305452, + -0.0424635 + ], + [ + 109.3303836, + -0.0425385 + ], + [ + 109.3302298, + -0.042627 + ], + [ + 109.3300119, + -0.042749 + ] + ] + }, + "id": "way/644129412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644178395", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335743, + -0.0394751 + ], + [ + 109.3355908, + -0.0393131 + ] + ] + }, + "id": "way/644178395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644178397", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359228, + -0.0393168 + ], + [ + 109.3358903, + -0.039345 + ], + [ + 109.3357611, + -0.0394573 + ], + [ + 109.335743, + -0.0394751 + ], + [ + 109.3357605, + -0.0395009 + ], + [ + 109.3358986, + -0.0396907 + ] + ] + }, + "id": "way/644178397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644178399", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360616, + -0.0400839 + ], + [ + 109.3359745, + -0.0399806 + ] + ] + }, + "id": "way/644178399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644178401", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364473, + -0.0399546 + ], + [ + 109.3364144, + -0.0399827 + ], + [ + 109.3363468, + -0.0400405 + ], + [ + 109.3361586, + -0.0401991 + ], + [ + 109.3360616, + -0.0400839 + ] + ] + }, + "id": "way/644178401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644178402", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423009, + -0.0398945 + ], + [ + 109.3420556, + -0.0396055 + ] + ] + }, + "id": "way/644178402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644178404", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395263, + -0.0379439 + ], + [ + 109.3395421, + -0.0379395 + ], + [ + 109.3395558, + -0.0379395 + ], + [ + 109.3395668, + -0.0379422 + ], + [ + 109.3395766, + -0.037946 + ], + [ + 109.3397861, + -0.0381591 + ], + [ + 109.3397912, + -0.0381712 + ], + [ + 109.3397938, + -0.0381893 + ], + [ + 109.3397922, + -0.0382044 + ], + [ + 109.3397881, + -0.0382188 + ], + [ + 109.3397111, + -0.0383241 + ] + ] + }, + "id": "way/644178404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644178406", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362788, + -0.0446055 + ], + [ + 109.336364, + -0.0447084 + ], + [ + 109.336411, + -0.0447676 + ] + ] + }, + "id": "way/644178406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644193185", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3764489, + -0.0584752 + ], + [ + 109.3769766, + -0.0581322 + ], + [ + 109.3772891, + -0.0579324 + ], + [ + 109.3774031, + -0.0578546 + ], + [ + 109.3774728, + -0.0577989 + ], + [ + 109.3775225, + -0.0577607 + ], + [ + 109.377607, + -0.0577044 + ], + [ + 109.3776874, + -0.0576487 + ] + ] + }, + "id": "way/644193185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644193187", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718445, + -0.0552508 + ], + [ + 109.372052, + -0.0551323 + ], + [ + 109.3722325, + -0.0550208 + ], + [ + 109.3726469, + -0.0548123 + ], + [ + 109.3728092, + -0.0547217 + ], + [ + 109.3729667, + -0.0546272 + ], + [ + 109.3729825, + -0.0546222 + ], + [ + 109.3729979, + -0.0546259 + ], + [ + 109.3730371, + -0.0546845 + ], + [ + 109.3731616, + -0.0548894 + ] + ] + }, + "id": "way/644193187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644193189", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683536, + -0.0521406 + ], + [ + 109.368233, + -0.0522246 + ], + [ + 109.3681357, + -0.0523007 + ], + [ + 109.3680342, + -0.0523815 + ], + [ + 109.3679905, + -0.0524158 + ], + [ + 109.3678873, + -0.0524969 + ], + [ + 109.3677177, + -0.0526196 + ], + [ + 109.3676077, + -0.0527054 + ], + [ + 109.3675031, + -0.0527718 + ], + [ + 109.367428, + -0.0528154 + ], + [ + 109.3673656, + -0.0528469 + ] + ] + }, + "id": "way/644193189" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243069", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350206, + -0.00781 + ], + [ + 109.335096, + -0.0078709 + ], + [ + 109.335169, + -0.0079259 + ], + [ + 109.335212, + -0.0079474 + ], + [ + 109.3352428, + -0.0079501 + ], + [ + 109.3352777, + -0.0079286 + ], + [ + 109.3353608, + -0.0078361 + ], + [ + 109.3354332, + -0.0077918 + ], + [ + 109.3354855, + -0.0077865 + ], + [ + 109.3355788, + -0.0077858 + ], + [ + 109.33569, + -0.0077865 + ], + [ + 109.3357806, + -0.0077885 + ], + [ + 109.3358034, + -0.0077885 + ], + [ + 109.3358479, + -0.0077991 + ] + ] + }, + "id": "way/644243069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243070", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386167, + -0.0070355 + ], + [ + 109.3387317, + -0.0070442 + ], + [ + 109.3387773, + -0.0070488 + ] + ] + }, + "id": "way/644243070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243071", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389534, + -0.0069921 + ], + [ + 109.3388189, + -0.0070435 + ], + [ + 109.3387773, + -0.0070488 + ] + ] + }, + "id": "way/644243071" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243072", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339902, + -0.0083899 + ], + [ + 109.3342144, + -0.0086463 + ] + ] + }, + "id": "way/644243072" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243073", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391395, + -0.009431 + ], + [ + 109.3392661, + -0.0095513 + ], + [ + 109.3393064, + -0.0095721 + ], + [ + 109.3393546, + -0.0095808 + ], + [ + 109.3394385, + -0.0095748 + ], + [ + 109.3394599, + -0.0095788 + ], + [ + 109.3394753, + -0.0095862 + ], + [ + 109.3395156, + -0.0096425 + ] + ] + }, + "id": "way/644243073" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243074", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344972, + -0.0088084 + ], + [ + 109.3342826, + -0.0090042 + ], + [ + 109.333958, + -0.0093287 + ], + [ + 109.333879, + -0.0094049 + ] + ] + }, + "id": "way/644243074" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243078", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326886, + -0.0086818 + ], + [ + 109.3328409, + -0.0086045 + ], + [ + 109.3329079, + -0.008567 + ], + [ + 109.3329844, + -0.0085241 + ], + [ + 109.3330536, + -0.008483 + ] + ] + }, + "id": "way/644243078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243079", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3349102, + -0.006904 + ], + [ + 109.335047, + -0.006959 + ], + [ + 109.3352836, + -0.0070687 + ], + [ + 109.3354292, + -0.0071347 + ], + [ + 109.335671, + -0.007248 + ] + ] + }, + "id": "way/644243079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243080", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383763, + -0.006623 + ], + [ + 109.3386506, + -0.0066023 + ], + [ + 109.3388135, + -0.0065761 + ], + [ + 109.3388252, + -0.0065778 + ], + [ + 109.3388319, + -0.0065852 + ], + [ + 109.3388538, + -0.0067012 + ] + ] + }, + "id": "way/644243080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243081", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376451, + -0.0081506 + ], + [ + 109.3377416, + -0.008684 + ] + ] + }, + "id": "way/644243081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243082", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367815, + -0.0066794 + ], + [ + 109.3369199, + -0.0066787 + ], + [ + 109.3370111, + -0.0066787 + ], + [ + 109.337166, + -0.0066774 + ], + [ + 109.3374301, + -0.006674 + ] + ] + }, + "id": "way/644243082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243083", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332499, + -0.0083591 + ], + [ + 109.3332875, + -0.0083685 + ] + ] + }, + "id": "way/644243083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243084", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331909, + -0.0083376 + ], + [ + 109.3332499, + -0.0083591 + ] + ] + }, + "id": "way/644243084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243085", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331528, + -0.0083106 + ], + [ + 109.3331909, + -0.0083376 + ] + ] + }, + "id": "way/644243085" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243086", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369353, + -0.0076121 + ], + [ + 109.3365973, + -0.0076684 + ], + [ + 109.3365678, + -0.0076698 + ], + [ + 109.336539, + -0.0076718 + ], + [ + 109.3365056, + -0.0076727 + ] + ] + }, + "id": "way/644243086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243087", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361295, + -0.0089293 + ], + [ + 109.3362594, + -0.0091007 + ], + [ + 109.3363921, + -0.0092429 + ] + ] + }, + "id": "way/644243087" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243088", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358946, + -0.0096948 + ], + [ + 109.3361561, + -0.0094561 + ] + ] + }, + "id": "way/644243088" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243089", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340349, + -0.0095868 + ], + [ + 109.3342048, + -0.0094427 + ] + ] + }, + "id": "way/644243089" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243090", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329052, + -0.0083337 + ], + [ + 109.3328221, + -0.008394 + ], + [ + 109.3327524, + -0.0084503 + ], + [ + 109.3327068, + -0.0085053 + ], + [ + 109.3322348, + -0.0091853 + ] + ] + }, + "id": "way/644243090" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243091", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346963, + -0.0071501 + ], + [ + 109.3348174, + -0.0071937 + ], + [ + 109.3348412, + -0.0072084 + ], + [ + 109.3348492, + -0.0072225 + ], + [ + 109.3348505, + -0.0072446 + ], + [ + 109.3348458, + -0.0072668 + ], + [ + 109.3347935, + -0.0073875 + ], + [ + 109.3347895, + -0.0074123 + ], + [ + 109.3347902, + -0.0074294 + ], + [ + 109.3348002, + -0.0074411 + ], + [ + 109.3351218, + -0.0075504 + ], + [ + 109.3352076, + -0.0076092 + ] + ] + }, + "id": "way/644243091" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243092", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348124, + -0.0080333 + ], + [ + 109.3347667, + -0.0079923 + ], + [ + 109.3346621, + -0.0079118 + ] + ] + }, + "id": "way/644243092" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243093", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343952, + -0.0079983 + ], + [ + 109.3346252, + -0.0082144 + ] + ] + }, + "id": "way/644243093" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243094", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336259, + -0.0091144 + ], + [ + 109.3335678, + -0.0091678 + ], + [ + 109.3335088, + -0.0092201 + ], + [ + 109.3334471, + -0.009259 + ] + ] + }, + "id": "way/644243094" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243095", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329433, + -0.0083721 + ], + [ + 109.3328691, + -0.0084543 + ], + [ + 109.3327805, + -0.0085589 + ], + [ + 109.3327242, + -0.008634 + ], + [ + 109.3326886, + -0.0086818 + ], + [ + 109.3325821, + -0.0088245 + ], + [ + 109.3325338, + -0.0089425 + ], + [ + 109.3325177, + -0.0090055 + ], + [ + 109.3325137, + -0.0090578 + ], + [ + 109.3325257, + -0.0090967 + ], + [ + 109.3325485, + -0.0091356 + ], + [ + 109.3325975, + -0.0092295 + ], + [ + 109.3326243, + -0.0093267 + ], + [ + 109.3326263, + -0.0093529 + ], + [ + 109.3326256, + -0.0093676 + ], + [ + 109.3325338, + -0.0096479 + ] + ] + }, + "id": "way/644243095" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243117", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332008, + -0.0060484 + ], + [ + 109.3332969, + -0.0060506 + ] + ] + }, + "id": "way/644243117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243118", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331579, + -0.0060478 + ], + [ + 109.3332008, + -0.0060484 + ] + ] + }, + "id": "way/644243118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644243119", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332969, + -0.0060506 + ], + [ + 109.3337724, + -0.0060612 + ], + [ + 109.3340146, + -0.0060961 + ], + [ + 109.3342569, + -0.0061506 + ], + [ + 109.3344958, + -0.0062133 + ], + [ + 109.334742, + -0.0062703 + ], + [ + 109.3349089, + -0.0063062 + ], + [ + 109.334994, + -0.0063139 + ], + [ + 109.3351883, + -0.006368 + ], + [ + 109.3351993, + -0.0063748 + ], + [ + 109.3352036, + -0.0063876 + ], + [ + 109.3351653, + -0.0065168 + ] + ] + }, + "id": "way/644243119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250509", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565225, + -0.0318971 + ], + [ + 109.3565316, + -0.0319079 + ], + [ + 109.3565363, + -0.0319145 + ] + ] + }, + "id": "way/644250509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250510", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564886, + -0.0318475 + ], + [ + 109.3565225, + -0.0318971 + ] + ] + }, + "id": "way/644250510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250511", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535421, + -0.0313301 + ], + [ + 109.3535501, + -0.0313399 + ], + [ + 109.3537674, + -0.0316087 + ] + ] + }, + "id": "way/644250511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250512", + "bridge": "yes", + "highway": "tertiary", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535171, + -0.0313124 + ], + [ + 109.3535421, + -0.0313301 + ] + ] + }, + "id": "way/644250512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250513", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559434, + -0.0345455 + ], + [ + 109.3559776, + -0.0345797 + ] + ] + }, + "id": "way/644250513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250514", + "bridge": "yes", + "highway": "tertiary", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558703, + -0.0344637 + ], + [ + 109.3559434, + -0.0345455 + ] + ] + }, + "id": "way/644250514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250517", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583065, + -0.0324572 + ], + [ + 109.3584445, + -0.0328609 + ] + ] + }, + "id": "way/644250517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250518", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582416, + -0.0283883 + ], + [ + 109.3587792, + -0.0283885 + ] + ] + }, + "id": "way/644250518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250522", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588729, + -0.0330685 + ], + [ + 109.3588118, + -0.032989 + ] + ] + }, + "id": "way/644250522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250523", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588118, + -0.032989 + ], + [ + 109.3587817, + -0.0329406 + ] + ] + }, + "id": "way/644250523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565288, + -0.0330864 + ], + [ + 109.3563726, + -0.0331756 + ], + [ + 109.3562412, + -0.0332627 + ], + [ + 109.3561298, + -0.0333352 + ] + ] + }, + "id": "way/644250524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250525", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563625, + -0.0328617 + ], + [ + 109.3565288, + -0.0330864 + ], + [ + 109.3566851, + -0.0329818 + ], + [ + 109.3573314, + -0.0325699 + ] + ] + }, + "id": "way/644250525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250526", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520355, + -0.0295751 + ], + [ + 109.3522064, + -0.029448 + ], + [ + 109.3523003, + -0.0293581 + ], + [ + 109.3524197, + -0.0292495 + ], + [ + 109.3525551, + -0.0291248 + ], + [ + 109.3526906, + -0.0290041 + ] + ] + }, + "id": "way/644250526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250527", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575871, + -0.0280008 + ], + [ + 109.3575711, + -0.0274687 + ] + ] + }, + "id": "way/644250527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250528", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576613, + -0.0283892 + ], + [ + 109.3576594, + -0.028194 + ], + [ + 109.3576621, + -0.0280485 + ], + [ + 109.35766, + -0.0280247 + ], + [ + 109.357653, + -0.0280076 + ], + [ + 109.3576416, + -0.0279999 + ], + [ + 109.3576272, + -0.0279966 + ], + [ + 109.3575871, + -0.0280008 + ], + [ + 109.3571725, + -0.028009 + ] + ] + }, + "id": "way/644250528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250530", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352708, + -0.0268844 + ], + [ + 109.3527053, + -0.026924 + ] + ] + }, + "id": "way/644250530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250531", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527124, + -0.0265219 + ], + [ + 109.3527147, + -0.0266471 + ], + [ + 109.3527154, + -0.0267483 + ], + [ + 109.3527114, + -0.0268335 + ], + [ + 109.352708, + -0.0268844 + ] + ] + }, + "id": "way/644250531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250533", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527053, + -0.026924 + ], + [ + 109.3526999, + -0.0269405 + ], + [ + 109.3526943, + -0.0269787 + ], + [ + 109.3526926, + -0.027045 + ], + [ + 109.3526876, + -0.0270792 + ], + [ + 109.3526835, + -0.0271138 + ], + [ + 109.3526819, + -0.0271577 + ], + [ + 109.3526798, + -0.0271949 + ], + [ + 109.3526725, + -0.0272254 + ], + [ + 109.3526721, + -0.0272502 + ], + [ + 109.3526751, + -0.0272981 + ] + ] + }, + "id": "way/644250533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250534", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534655, + -0.0269776 + ], + [ + 109.3534718, + -0.0268824 + ], + [ + 109.3534832, + -0.0267175 + ], + [ + 109.3534866, + -0.0266673 + ] + ] + }, + "id": "way/644250534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250535", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606207, + -0.0311335 + ], + [ + 109.3605181, + -0.0310609 + ] + ] + }, + "id": "way/644250535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250536", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605181, + -0.0310609 + ], + [ + 109.3604947, + -0.031043 + ] + ] + }, + "id": "way/644250536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250537", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584171, + -0.0347829 + ], + [ + 109.3583574, + -0.0347242 + ], + [ + 109.3583068, + -0.0346753 + ], + [ + 109.3582659, + -0.0346352 + ], + [ + 109.3582112, + -0.0345817 + ], + [ + 109.35812, + -0.0344945 + ] + ] + }, + "id": "way/644250537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250538", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593317, + -0.0351993 + ], + [ + 109.3592674, + -0.0351182 + ], + [ + 109.3591393, + -0.03498 + ], + [ + 109.3590434, + -0.0348768 + ], + [ + 109.3589495, + -0.0347748 + ], + [ + 109.3588308, + -0.0346561 + ], + [ + 109.358739, + -0.034569 + ], + [ + 109.3586572, + -0.0344885 + ], + [ + 109.3585787, + -0.0344101 + ], + [ + 109.3584895, + -0.0343128 + ], + [ + 109.3584023, + -0.0342102 + ] + ] + }, + "id": "way/644250538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250539", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575487, + -0.0263125 + ], + [ + 109.3576772, + -0.0263144 + ], + [ + 109.3577965, + -0.026304 + ], + [ + 109.3579423, + -0.0262924 + ], + [ + 109.358169, + -0.0262709 + ], + [ + 109.3584187, + -0.0262468 + ] + ] + }, + "id": "way/644250539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250540", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576046, + -0.0274694 + ], + [ + 109.3576165, + -0.0271909 + ], + [ + 109.3576124, + -0.026975 + ], + [ + 109.357595, + -0.0267644 + ], + [ + 109.3575641, + -0.0265217 + ], + [ + 109.3575487, + -0.0263125 + ], + [ + 109.3575346, + -0.0260885 + ], + [ + 109.3575065, + -0.0257951 + ] + ] + }, + "id": "way/644250540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250541", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586759, + -0.0257391 + ], + [ + 109.35868, + -0.0258143 + ], + [ + 109.3586836, + -0.0258337 + ], + [ + 109.3586867, + -0.0258659 + ], + [ + 109.358684, + -0.0259235 + ], + [ + 109.3586746, + -0.0260107 + ], + [ + 109.3586639, + -0.0261167 + ], + [ + 109.3586545, + -0.0262172 + ], + [ + 109.3586478, + -0.0263245 + ], + [ + 109.3586344, + -0.0264278 + ], + [ + 109.3586263, + -0.0265753 + ] + ] + }, + "id": "way/644250541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250542", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3595973, + -0.0314476 + ], + [ + 109.3595208, + -0.0315481 + ], + [ + 109.3594377, + -0.0316595 + ] + ] + }, + "id": "way/644250542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250543", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599164, + -0.0313966 + ], + [ + 109.3597984, + -0.0313054 + ], + [ + 109.3597729, + -0.0312974 + ], + [ + 109.3597593, + -0.031296 + ], + [ + 109.3597502, + -0.0312974 + ], + [ + 109.3597366, + -0.031302 + ], + [ + 109.3597287, + -0.0313094 + ], + [ + 109.3597059, + -0.0313349 + ], + [ + 109.3595973, + -0.0314476 + ], + [ + 109.359547, + -0.0314361 + ], + [ + 109.3595155, + -0.0314288 + ], + [ + 109.3594229, + -0.031406 + ], + [ + 109.3593123, + -0.0313785 + ], + [ + 109.3592925, + -0.0313649 + ], + [ + 109.3592806, + -0.0313542 + ], + [ + 109.3592704, + -0.0313431 + ], + [ + 109.3592573, + -0.0313242 + ], + [ + 109.3592365, + -0.0312732 + ], + [ + 109.3591855, + -0.0311646 + ], + [ + 109.3590957, + -0.031009 + ], + [ + 109.3590327, + -0.0308776 + ], + [ + 109.3590019, + -0.0308346 + ] + ] + }, + "id": "way/644250543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250545", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599818, + -0.0288162 + ], + [ + 109.3599513, + -0.0284676 + ] + ] + }, + "id": "way/644250545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250546", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3596771, + -0.0289172 + ], + [ + 109.3596509, + -0.0284676 + ] + ] + }, + "id": "way/644250546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250547", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582066, + -0.0310627 + ], + [ + 109.3581863, + -0.0310189 + ] + ] + }, + "id": "way/644250547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250548", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3581863, + -0.0310189 + ], + [ + 109.3581254, + -0.0308964 + ], + [ + 109.3579196, + -0.0304269 + ] + ] + }, + "id": "way/644250548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250549", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578501, + -0.0312696 + ], + [ + 109.3581757, + -0.0311094 + ], + [ + 109.3581931, + -0.0310959 + ], + [ + 109.358201, + -0.0310845 + ], + [ + 109.3582055, + -0.0310749 + ], + [ + 109.3582066, + -0.0310627 + ] + ] + }, + "id": "way/644250549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250550", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600535, + -0.0314537 + ], + [ + 109.3601266, + -0.0315511 + ] + ] + }, + "id": "way/644250550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644250551", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599821, + -0.0313587 + ], + [ + 109.3600535, + -0.0314537 + ] + ] + }, + "id": "way/644250551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254137", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3045188, + -0.0483596 + ], + [ + 109.3045891, + -0.0482434 + ] + ] + }, + "id": "way/644254137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254138", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042411, + -0.0480109 + ], + [ + 109.3044323, + -0.0477165 + ] + ] + }, + "id": "way/644254138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254140", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3055038, + -0.0477701 + ], + [ + 109.305683, + -0.0474866 + ] + ] + }, + "id": "way/644254140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254143", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063074, + -0.0493799 + ], + [ + 109.3064855, + -0.0491153 + ] + ] + }, + "id": "way/644254143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254146", + "highway": "residential", + "name": "Jalan Komplek Villa Mutiara Mas 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008453, + -0.0531275 + ], + [ + 109.3009078, + -0.0530785 + ] + ] + }, + "id": "way/644254146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254147", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalan Komplek Villa Mutiara Mas 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300808, + -0.0531662 + ], + [ + 109.3008138, + -0.0531612 + ], + [ + 109.3008453, + -0.0531275 + ] + ] + }, + "id": "way/644254147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254148", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3012019, + -0.0536691 + ], + [ + 109.3011791, + -0.0536996 + ], + [ + 109.2999891, + -0.0550143 + ], + [ + 109.2990736, + -0.0560041 + ] + ] + }, + "id": "way/644254148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254149", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3012688, + -0.053595 + ], + [ + 109.301313, + -0.05355 + ] + ] + }, + "id": "way/644254149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254150", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019096, + -0.0544046 + ], + [ + 109.3019218, + -0.0543943 + ] + ] + }, + "id": "way/644254150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254151", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020007, + -0.0543218 + ], + [ + 109.3019893, + -0.0543372 + ] + ] + }, + "id": "way/644254151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254152", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302235, + -0.0547734 + ], + [ + 109.3021905, + -0.0547338 + ] + ] + }, + "id": "way/644254152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254153", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022734, + -0.054654 + ], + [ + 109.3022942, + -0.0546336 + ] + ] + }, + "id": "way/644254153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254154", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028672, + -0.0554499 + ], + [ + 109.302882, + -0.0554333 + ] + ] + }, + "id": "way/644254154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254155", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040854, + -0.0565728 + ], + [ + 109.3040666, + -0.0565884 + ] + ] + }, + "id": "way/644254155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254156", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040666, + -0.0565884 + ], + [ + 109.3040194, + -0.0566307 + ] + ] + }, + "id": "way/644254156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644254157", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302882, + -0.0554333 + ], + [ + 109.3029343, + -0.0553846 + ] + ] + }, + "id": "way/644254157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644262684", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102384, + -0.0695587 + ], + [ + 109.3109769, + -0.068741 + ] + ] + }, + "id": "way/644262684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644262685", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249385, + -0.0657101 + ], + [ + 109.3256311, + -0.0666743 + ], + [ + 109.3261903, + -0.067538 + ] + ] + }, + "id": "way/644262685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644262691", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142767, + -0.0694618 + ], + [ + 109.3141472, + -0.0696543 + ] + ] + }, + "id": "way/644262691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644262697", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127176, + -0.0677277 + ], + [ + 109.3131226, + -0.0670311 + ] + ] + }, + "id": "way/644262697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644262698", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131226, + -0.0670311 + ], + [ + 109.3132414, + -0.0667823 + ] + ] + }, + "id": "way/644262698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644262701", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053275, + -0.0689697 + ], + [ + 109.3069375, + -0.0700995 + ], + [ + 109.3078548, + -0.0707352 + ] + ] + }, + "id": "way/644262701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644276614", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188049, + -0.0482114 + ], + [ + 109.3187777, + -0.0481668 + ], + [ + 109.3187744, + -0.048153 + ], + [ + 109.3187724, + -0.0481383 + ], + [ + 109.3187747, + -0.0481235 + ], + [ + 109.3187791, + -0.048113 + ], + [ + 109.318787, + -0.0481021 + ], + [ + 109.3188156, + -0.0480813 + ], + [ + 109.3188505, + -0.0480545 + ], + [ + 109.3188847, + -0.0480323 + ], + [ + 109.3189182, + -0.0480089 + ], + [ + 109.3189517, + -0.0479817 + ], + [ + 109.3189705, + -0.0479626 + ], + [ + 109.3189796, + -0.0479509 + ], + [ + 109.3189883, + -0.0479327 + ], + [ + 109.3189967, + -0.0479073 + ], + [ + 109.3190077, + -0.0478724 + ], + [ + 109.3190235, + -0.0478405 + ], + [ + 109.3190822, + -0.0477527 + ] + ] + }, + "id": "way/644276614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644276617", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134472, + -0.0500146 + ], + [ + 109.313244, + -0.0498579 + ], + [ + 109.3128759, + -0.0495746 + ] + ] + }, + "id": "way/644276617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644276620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189542, + -0.0557588 + ], + [ + 109.3185219, + -0.0555539 + ], + [ + 109.3182322, + -0.0554547 + ] + ] + }, + "id": "way/644276620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279885", + "highway": "residential", + "name": "Gang Kelantan 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464795, + -0.0352107 + ], + [ + 109.3462598, + -0.0353301 + ], + [ + 109.34604, + -0.0354494 + ], + [ + 109.3459438, + -0.035498 + ], + [ + 109.3459291, + -0.0354997 + ], + [ + 109.34592, + -0.0354944 + ] + ] + }, + "id": "way/644279885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279886", + "highway": "residential", + "name": "Gang Kelantan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464075, + -0.0348701 + ], + [ + 109.3461661, + -0.0349854 + ], + [ + 109.3458107, + -0.0351758 + ] + ] + }, + "id": "way/644279886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279888", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447849, + -0.0321775 + ], + [ + 109.3445769, + -0.0322938 + ], + [ + 109.3444508, + -0.0323649 + ], + [ + 109.3438607, + -0.0326747 + ] + ] + }, + "id": "way/644279888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279890", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445943, + -0.0319126 + ], + [ + 109.3444374, + -0.0319988 + ], + [ + 109.3436971, + -0.0324265 + ] + ] + }, + "id": "way/644279890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279892", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457348, + -0.0355723 + ], + [ + 109.3448528, + -0.035801 + ] + ] + }, + "id": "way/644279892" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279894", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455133, + -0.0348598 + ], + [ + 109.3456302, + -0.0352359 + ], + [ + 109.3457348, + -0.0355723 + ], + [ + 109.3458467, + -0.0359704 + ] + ] + }, + "id": "way/644279894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279895", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352476, + -0.0331467 + ], + [ + 109.3524022, + -0.0330247 + ] + ] + }, + "id": "way/644279895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279897", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527069, + -0.0330186 + ], + [ + 109.352476, + -0.0331467 + ], + [ + 109.35224, + -0.0332728 + ] + ] + }, + "id": "way/644279897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279898", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351375, + -0.0325446 + ], + [ + 109.3514943, + -0.0326331 + ], + [ + 109.3516139, + -0.0327394 + ] + ] + }, + "id": "way/644279898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279899", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516139, + -0.0327394 + ], + [ + 109.3516941, + -0.0328959 + ] + ] + }, + "id": "way/644279899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279900", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344455, + -0.0296283 + ], + [ + 109.344715, + -0.0294855 + ], + [ + 109.3450543, + -0.0293005 + ] + ] + }, + "id": "way/644279900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279901", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446603, + -0.0299606 + ], + [ + 109.344829, + -0.029861 + ], + [ + 109.3449564, + -0.029802 + ], + [ + 109.3451361, + -0.0296974 + ] + ] + }, + "id": "way/644279901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644279902", + "highway": "residential", + "name": "Gang malaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452883, + -0.0310622 + ], + [ + 109.3453869, + -0.0310385 + ], + [ + 109.3454513, + -0.0310224 + ], + [ + 109.3455231, + -0.0310311 + ], + [ + 109.3455586, + -0.0310191 + ], + [ + 109.3456444, + -0.0309768 + ], + [ + 109.3458751, + -0.030832 + ], + [ + 109.3460521, + -0.030714 + ], + [ + 109.346256, + -0.0305933 + ], + [ + 109.3463601, + -0.0305507 + ], + [ + 109.3463978, + -0.0305506 + ], + [ + 109.3464424, + -0.0305437 + ], + [ + 109.3465612, + -0.0304833 + ] + ] + }, + "id": "way/644279902" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285829", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446322, + -0.0095815 + ], + [ + 109.3446725, + -0.0096009 + ], + [ + 109.3447697, + -0.0096462 + ], + [ + 109.3448605, + -0.0096878 + ] + ] + }, + "id": "way/644285829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285830", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3419349, + -0.006788 + ], + [ + 109.3421029, + -0.0066465 + ], + [ + 109.3421076, + -0.0066364 + ], + [ + 109.3421073, + -0.006625 + ], + [ + 109.3421009, + -0.0066129 + ] + ] + }, + "id": "way/644285830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285831", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442107, + -0.0085417 + ], + [ + 109.3443147, + -0.0085884 + ], + [ + 109.3443985, + -0.0086273 + ], + [ + 109.344487, + -0.0086609 + ] + ] + }, + "id": "way/644285831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285832", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429328, + -0.0089362 + ], + [ + 109.3432633, + -0.0091249 + ], + [ + 109.3434209, + -0.0092154 + ], + [ + 109.3435704, + -0.0093006 + ], + [ + 109.3438337, + -0.0094391 + ] + ] + }, + "id": "way/644285832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285833", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343115, + -0.0095701 + ], + [ + 109.3430333, + -0.0097002 + ] + ] + }, + "id": "way/644285833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285844", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398608, + -0.0080893 + ], + [ + 109.3398877, + -0.0081291 + ] + ] + }, + "id": "way/644285844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285845", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398438, + -0.0080641 + ], + [ + 109.3398608, + -0.0080893 + ] + ] + }, + "id": "way/644285845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285849", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420689, + -0.0065662 + ], + [ + 109.3421009, + -0.0066129 + ] + ] + }, + "id": "way/644285849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285850", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420383, + -0.0065242 + ], + [ + 109.3420689, + -0.0065662 + ] + ] + }, + "id": "way/644285850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420124, + -0.0064888 + ], + [ + 109.3420383, + -0.0065242 + ] + ] + }, + "id": "way/644285851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285858", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456139, + -0.0091091 + ], + [ + 109.3456511, + -0.0091266 + ] + ] + }, + "id": "way/644285858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285859", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455918, + -0.0090967 + ], + [ + 109.3456139, + -0.0091091 + ] + ] + }, + "id": "way/644285859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456511, + -0.0091266 + ], + [ + 109.3457685, + -0.0091799 + ], + [ + 109.34591, + -0.0092523 + ], + [ + 109.3460407, + -0.0093093 + ], + [ + 109.3462224, + -0.0093971 + ], + [ + 109.3464243, + -0.0094984 + ], + [ + 109.3466516, + -0.0095996 + ], + [ + 109.3468353, + -0.0096841 + ], + [ + 109.3469855, + -0.0097545 + ], + [ + 109.3471062, + -0.0098102 + ] + ] + }, + "id": "way/644285860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285861", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458613, + -0.0089349 + ], + [ + 109.3458357, + -0.0089939 + ], + [ + 109.3457973, + -0.0091021 + ], + [ + 109.3457685, + -0.0091799 + ] + ] + }, + "id": "way/644285861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285877", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417284, + -0.0067779 + ], + [ + 109.3419322, + -0.0070582 + ] + ] + }, + "id": "way/644285877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285878", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416989, + -0.0067095 + ], + [ + 109.3417284, + -0.0067779 + ] + ] + }, + "id": "way/644285878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285879", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416829, + -0.0066801 + ], + [ + 109.3416989, + -0.0067095 + ] + ] + }, + "id": "way/644285879" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285883", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404087, + -0.0087487 + ], + [ + 109.3404416, + -0.008795 + ], + [ + 109.3405301, + -0.0089063 + ], + [ + 109.3406465, + -0.0090538 + ], + [ + 109.3407058, + -0.0091286 + ] + ] + }, + "id": "way/644285883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285887", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403299, + -0.008014 + ], + [ + 109.3402277, + -0.0080936 + ] + ] + }, + "id": "way/644285887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285889", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3399085, + -0.0093562 + ], + [ + 109.3400104, + -0.0092885 + ], + [ + 109.3400808, + -0.0092302 + ], + [ + 109.3401727, + -0.0091664 + ] + ] + }, + "id": "way/644285889" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285898", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385265, + -0.0092382 + ], + [ + 109.3385869, + -0.0092962 + ] + ] + }, + "id": "way/644285898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285899", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.338499, + -0.009212 + ], + [ + 109.3385265, + -0.0092382 + ] + ] + }, + "id": "way/644285899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285900", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3384625, + -0.0091737 + ], + [ + 109.338499, + -0.009212 + ] + ] + }, + "id": "way/644285900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285925", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410296, + -0.0078228 + ], + [ + 109.3409224, + -0.0079125 + ] + ] + }, + "id": "way/644285925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285926", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408751, + -0.0076345 + ], + [ + 109.3407903, + -0.0077114 + ] + ] + }, + "id": "way/644285926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285927", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407845, + -0.0075242 + ], + [ + 109.3407286, + -0.0075699 + ] + ] + }, + "id": "way/644285927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285928", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411516, + -0.0071286 + ], + [ + 109.3411785, + -0.0071615 + ] + ] + }, + "id": "way/644285928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285929", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411303, + -0.0071025 + ], + [ + 109.3411516, + -0.0071286 + ] + ] + }, + "id": "way/644285929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285930", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341104, + -0.00707 + ], + [ + 109.3411303, + -0.0071025 + ] + ] + }, + "id": "way/644285930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285931", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404074, + -0.0099407 + ], + [ + 109.3405724, + -0.0098652 + ], + [ + 109.3406863, + -0.0098249 + ], + [ + 109.3407172, + -0.0098112 + ] + ] + }, + "id": "way/644285931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285932", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407172, + -0.0098112 + ], + [ + 109.3409244, + -0.0097137 + ], + [ + 109.3409495, + -0.0097036 + ], + [ + 109.3409707, + -0.0096962 + ] + ] + }, + "id": "way/644285932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285933", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409707, + -0.0096962 + ], + [ + 109.3411195, + -0.0096104 + ] + ] + }, + "id": "way/644285933" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285935", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398877, + -0.0081291 + ], + [ + 109.3401977, + -0.0084858 + ], + [ + 109.3402666, + -0.0085643 + ], + [ + 109.3403967, + -0.0087306 + ], + [ + 109.3404087, + -0.0087487 + ], + [ + 109.3404081, + -0.0087544 + ], + [ + 109.340395, + -0.0087691 + ], + [ + 109.3403189, + -0.0088419 + ] + ] + }, + "id": "way/644285935" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644285936", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402291, + -0.0097238 + ], + [ + 109.3406112, + -0.009542 + ] + ] + }, + "id": "way/644285936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644301539", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251937, + -0.0462397 + ], + [ + 109.3252268, + -0.046221 + ], + [ + 109.3252474, + -0.0462067 + ], + [ + 109.3252692, + -0.0461907 + ], + [ + 109.325275, + -0.0461843 + ], + [ + 109.3252779, + -0.0461798 + ], + [ + 109.3252797, + -0.0461733 + ], + [ + 109.3252802, + -0.0461684 + ], + [ + 109.3252792, + -0.0461592 + ], + [ + 109.3252761, + -0.0461479 + ], + [ + 109.3252546, + -0.0461042 + ], + [ + 109.3252315, + -0.0460604 + ], + [ + 109.3252184, + -0.0460366 + ], + [ + 109.3252092, + -0.0460244 + ], + [ + 109.325202, + -0.046018 + ], + [ + 109.3251897, + -0.0460136 + ], + [ + 109.325178, + -0.0460138 + ], + [ + 109.3251326, + -0.0460334 + ], + [ + 109.3250953, + -0.0460517 + ] + ] + }, + "id": "way/644301539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644301540", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241629, + -0.0496763 + ], + [ + 109.3243175, + -0.0494049 + ] + ] + }, + "id": "way/644301540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644301542", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323556, + -0.0548774 + ], + [ + 109.3234451, + -0.0547975 + ] + ] + }, + "id": "way/644301542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644301543", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3235449, + -0.0552959 + ], + [ + 109.3237643, + -0.0550697 + ], + [ + 109.3238085, + -0.0550188 + ], + [ + 109.3238407, + -0.0549799 + ], + [ + 109.3238649, + -0.054941 + ], + [ + 109.3238931, + -0.0548887 + ] + ] + }, + "id": "way/644301543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644301544", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326091, + -0.0546326 + ], + [ + 109.3261256, + -0.054587 + ], + [ + 109.3261662, + -0.0545387 + ] + ] + }, + "id": "way/644301544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644301545", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264419, + -0.054092 + ], + [ + 109.3265739, + -0.053962 + ] + ] + }, + "id": "way/644301545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306272", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553044, + -0.0099083 + ], + [ + 109.355339, + -0.0099223 + ] + ] + }, + "id": "way/644306272" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306273", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552363, + -0.0098772 + ], + [ + 109.3553044, + -0.0099083 + ] + ] + }, + "id": "way/644306273" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306275", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347956, + -0.007589 + ], + [ + 109.3483031, + -0.007789 + ], + [ + 109.3484406, + -0.0078566 + ], + [ + 109.3489261, + -0.0081164 + ] + ] + }, + "id": "way/644306275" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306276", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528033, + -0.010009 + ], + [ + 109.3530152, + -0.0096993 + ] + ] + }, + "id": "way/644306276" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306277", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.355352, + -0.0098226 + ], + [ + 109.3556853, + -0.0098711 + ] + ] + }, + "id": "way/644306277" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306278", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550527, + -0.0097967 + ], + [ + 109.3551368, + -0.0098336 + ], + [ + 109.3552363, + -0.0098772 + ] + ] + }, + "id": "way/644306278" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306279", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475615, + -0.0095061 + ], + [ + 109.3476786, + -0.0095893 + ], + [ + 109.3477962, + -0.0096446 + ], + [ + 109.3479102, + -0.0097042 + ], + [ + 109.3479994, + -0.0097565 + ], + [ + 109.3480756, + -0.0098064 + ] + ] + }, + "id": "way/644306279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306280", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504251, + -0.009894 + ], + [ + 109.3507618, + -0.0101735 + ] + ] + }, + "id": "way/644306280" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306281", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479493, + -0.0102187 + ], + [ + 109.3478264, + -0.0100889 + ] + ] + }, + "id": "way/644306281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306282", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488802, + -0.0088643 + ], + [ + 109.3489299, + -0.0088068 + ], + [ + 109.3490105, + -0.0087114 + ], + [ + 109.3490542, + -0.0086539 + ], + [ + 109.3491198, + -0.0085634 + ] + ] + }, + "id": "way/644306282" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306283", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478149, + -0.0079551 + ], + [ + 109.3480003, + -0.0080638 + ], + [ + 109.3480751, + -0.0081034 + ], + [ + 109.3482041, + -0.0081681 + ] + ] + }, + "id": "way/644306283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306284", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512264, + -0.0096339 + ], + [ + 109.351341, + -0.0097623 + ], + [ + 109.3517937, + -0.0102366 + ] + ] + }, + "id": "way/644306284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306285", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483876, + -0.0093643 + ], + [ + 109.3484131, + -0.0093177 + ], + [ + 109.3484349, + -0.009281 + ], + [ + 109.3484612, + -0.0092426 + ], + [ + 109.3484727, + -0.0092346 + ], + [ + 109.348483, + -0.0092323 + ], + [ + 109.3484985, + -0.0092248 + ], + [ + 109.3485076, + -0.0092128 + ], + [ + 109.3485117, + -0.0091899 + ], + [ + 109.3485168, + -0.0091693 + ], + [ + 109.3485793, + -0.0090782 + ], + [ + 109.3485908, + -0.0090565 + ], + [ + 109.3487655, + -0.0088017 + ], + [ + 109.3487762, + -0.0087919 + ], + [ + 109.3487849, + -0.0087896 + ], + [ + 109.3488002, + -0.0087961 + ] + ] + }, + "id": "way/644306285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306286", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491319, + -0.0091149 + ], + [ + 109.3495235, + -0.0085762 + ], + [ + 109.3496764, + -0.0083524 + ], + [ + 109.3496805, + -0.0083407 + ], + [ + 109.3496821, + -0.008333 + ], + [ + 109.3496503, + -0.0083024 + ], + [ + 109.3496258, + -0.008281 + ], + [ + 109.3495869, + -0.0082431 + ], + [ + 109.3495871, + -0.0082284 + ], + [ + 109.3495917, + -0.0082176 + ], + [ + 109.3496272, + -0.0081673 + ], + [ + 109.3496919, + -0.0080721 + ] + ] + }, + "id": "way/644306286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644306287", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492485, + -0.0092316 + ], + [ + 109.3496192, + -0.0087348 + ], + [ + 109.3496975, + -0.0086203 + ], + [ + 109.3498111, + -0.0084554 + ] + ] + }, + "id": "way/644306287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644634497", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342483, + -0.0484114 + ], + [ + 109.3340439, + -0.0485855 + ] + ] + }, + "id": "way/644634497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644634498", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343317, + -0.0483404 + ], + [ + 109.3342483, + -0.0484114 + ] + ] + }, + "id": "way/644634498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644634500", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281846, + -0.0542504 + ], + [ + 109.3281329, + -0.0541746 + ] + ] + }, + "id": "way/644634500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644634501", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353031, + -0.0456104 + ], + [ + 109.3352314, + -0.0454956 + ] + ] + }, + "id": "way/644634501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644634502", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329064, + -0.0465077 + ], + [ + 109.3332493, + -0.0463533 + ] + ] + }, + "id": "way/644634502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667684", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391347, + -0.0729708 + ], + [ + 109.3398696, + -0.0740316 + ], + [ + 109.3407454, + -0.0752754 + ] + ] + }, + "id": "way/644667684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667686", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321623, + -0.0797286 + ], + [ + 109.3320824, + -0.0796696 + ], + [ + 109.3314944, + -0.0792351 + ], + [ + 109.3308896, + -0.0787966 + ], + [ + 109.3296343, + -0.0779342 + ] + ] + }, + "id": "way/644667686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667688", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332542, + -0.0792287 + ], + [ + 109.3324808, + -0.0791843 + ], + [ + 109.3318485, + -0.0787255 + ], + [ + 109.3300796, + -0.0774179 + ] + ] + }, + "id": "way/644667688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667689", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342619, + -0.0772804 + ], + [ + 109.3357364, + -0.0795596 + ] + ] + }, + "id": "way/644667689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667702", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388383, + -0.0732639 + ], + [ + 109.3390851, + -0.0736199 + ] + ] + }, + "id": "way/644667702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667704", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3374196, + -0.0623991 + ], + [ + 109.337378, + -0.062358 + ] + ] + }, + "id": "way/644667704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667706", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372892, + -0.0622774 + ], + [ + 109.337378, + -0.062358 + ] + ] + }, + "id": "way/644667706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667707", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369465, + -0.0629187 + ], + [ + 109.3369032, + -0.0628862 + ] + ] + }, + "id": "way/644667707" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667709", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371096, + -0.0642925 + ], + [ + 109.3362942, + -0.0652259 + ] + ] + }, + "id": "way/644667709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644667721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229741, + -0.0682435 + ], + [ + 109.3249404, + -0.0707567 + ] + ] + }, + "id": "way/644667721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674296", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376792, + -0.0535271 + ], + [ + 109.3379498, + -0.0534242 + ] + ] + }, + "id": "way/644674296" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674298", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376864, + -0.0535492 + ], + [ + 109.3373282, + -0.0536831 + ] + ] + }, + "id": "way/644674298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674299", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342365, + -0.0541847 + ], + [ + 109.3427412, + -0.0537157 + ] + ] + }, + "id": "way/644674299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674300", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436868, + -0.055195 + ], + [ + 109.3436596, + -0.0551724 + ] + ] + }, + "id": "way/644674300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674302", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436083, + -0.0551278 + ], + [ + 109.343593, + -0.0551163 + ], + [ + 109.342365, + -0.0541847 + ] + ] + }, + "id": "way/644674302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674303", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410296, + -0.0510826 + ], + [ + 109.3416252, + -0.0508406 + ] + ] + }, + "id": "way/644674303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674304", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408166, + -0.0510141 + ], + [ + 109.3410296, + -0.0510826 + ], + [ + 109.3411672, + -0.0514178 + ], + [ + 109.34131, + -0.0517814 + ], + [ + 109.3414454, + -0.0521609 + ], + [ + 109.3419322, + -0.0519745 + ] + ] + }, + "id": "way/644674304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674305", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447231, + -0.0539763 + ], + [ + 109.3446488, + -0.0539132 + ] + ] + }, + "id": "way/644674305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674306", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447484, + -0.0539944 + ], + [ + 109.3447231, + -0.0539763 + ] + ] + }, + "id": "way/644674306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674307", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425772, + -0.0492171 + ], + [ + 109.3421334, + -0.0486884 + ], + [ + 109.342012, + -0.0485641 + ], + [ + 109.3419283, + -0.0484681 + ] + ] + }, + "id": "way/644674307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674308", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426595, + -0.0480851 + ], + [ + 109.3425432, + -0.0481825 + ], + [ + 109.3424832, + -0.0482408 + ], + [ + 109.3424739, + -0.0482516 + ], + [ + 109.3424689, + -0.0482622 + ], + [ + 109.3424682, + -0.048275 + ], + [ + 109.3424697, + -0.0482888 + ], + [ + 109.3424816, + -0.0483212 + ], + [ + 109.342487, + -0.0483337 + ], + [ + 109.3424891, + -0.0483488 + ], + [ + 109.3424885, + -0.0483619 + ], + [ + 109.3424816, + -0.048377 + ], + [ + 109.3421334, + -0.0486884 + ] + ] + }, + "id": "way/644674308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674309", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425593, + -0.0479654 + ], + [ + 109.342442, + -0.0478382 + ], + [ + 109.342417, + -0.047825 + ], + [ + 109.3423867, + -0.0478198 + ], + [ + 109.3423619, + -0.0478223 + ], + [ + 109.3423359, + -0.0478347 + ], + [ + 109.3417747, + -0.0482744 + ] + ] + }, + "id": "way/644674309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674663", + "highway": "residential", + "name": "Gang Mandor" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343272, + -0.0278413 + ], + [ + 109.3430856, + -0.027958 + ], + [ + 109.3429501, + -0.0280398 + ], + [ + 109.3427637, + -0.0281471 + ], + [ + 109.3426564, + -0.0282115 + ], + [ + 109.3425223, + -0.0282759 + ], + [ + 109.3424633, + -0.028308 + ], + [ + 109.3422206, + -0.0284288 + ] + ] + }, + "id": "way/644674663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674664", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395484, + -0.0345818 + ], + [ + 109.3396443, + -0.0344362 + ], + [ + 109.339708, + -0.0343497 + ], + [ + 109.3397395, + -0.0343088 + ], + [ + 109.3397858, + -0.0342606 + ], + [ + 109.3398374, + -0.0342089 + ] + ] + }, + "id": "way/644674664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674665", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369877, + -0.0285205 + ], + [ + 109.337083, + -0.028976 + ] + ] + }, + "id": "way/644674665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674666", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Waru 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368481, + -0.0335941 + ], + [ + 109.3367699, + -0.0336689 + ], + [ + 109.3365513, + -0.0338783 + ], + [ + 109.33632, + -0.0340243 + ], + [ + 109.3358368, + -0.0342244 + ], + [ + 109.3358288, + -0.0343129 + ], + [ + 109.3355794, + -0.0344846 + ], + [ + 109.3357388, + -0.0347207 + ], + [ + 109.3358018, + -0.0348126 + ] + ] + }, + "id": "way/644674666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674667", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348593, + -0.0289708 + ], + [ + 109.3349384, + -0.0289156 + ], + [ + 109.3350792, + -0.0288485 + ], + [ + 109.3351932, + -0.0287895 + ], + [ + 109.3354252, + -0.0286715 + ] + ] + }, + "id": "way/644674667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674668", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397759, + -0.0360166 + ], + [ + 109.3394572, + -0.0361468 + ], + [ + 109.3390918, + -0.0362876 + ], + [ + 109.3388639, + -0.036372 + ], + [ + 109.3388021, + -0.0363949 + ], + [ + 109.3386056, + -0.0364988 + ], + [ + 109.3384454, + -0.0365967 + ], + [ + 109.3384346, + -0.0366021 + ], + [ + 109.3384206, + -0.0366021 + ], + [ + 109.338409, + -0.0365963 + ], + [ + 109.3384001, + -0.0365843 + ], + [ + 109.3383401, + -0.0364318 + ], + [ + 109.3382764, + -0.036234 + ], + [ + 109.3382281, + -0.0360677 + ], + [ + 109.338208, + -0.0359926 + ], + [ + 109.338153, + -0.035837 + ], + [ + 109.3381061, + -0.0357377 + ], + [ + 109.338035, + -0.0356358 + ], + [ + 109.3378955, + -0.0354588 + ], + [ + 109.3376702, + -0.0351691 + ], + [ + 109.3375417, + -0.034987 + ] + ] + }, + "id": "way/644674668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674669", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355062, + -0.036763 + ], + [ + 109.3348324, + -0.0359751 + ] + ] + }, + "id": "way/644674669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674670", + "highway": "residential", + "name": "Jalan S. Parman Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358065, + -0.0365135 + ], + [ + 109.3353803, + -0.0359782 + ], + [ + 109.3359295, + -0.035499 + ], + [ + 109.3362138, + -0.0352737 + ], + [ + 109.3365933, + -0.0349566 + ], + [ + 109.3366031, + -0.0349468 + ], + [ + 109.3366163, + -0.0349346 + ], + [ + 109.3366265, + -0.0349241 + ], + [ + 109.3366075, + -0.0349009 + ], + [ + 109.3365789, + -0.0348684 + ], + [ + 109.3363586, + -0.0345857 + ] + ] + }, + "id": "way/644674670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674671", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362175, + -0.0301795 + ], + [ + 109.3367382, + -0.0297381 + ] + ] + }, + "id": "way/644674671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674672", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371178, + -0.0264067 + ], + [ + 109.336883, + -0.0265431 + ], + [ + 109.3367113, + -0.0266437 + ], + [ + 109.3365397, + -0.0267443 + ], + [ + 109.3363425, + -0.0268489 + ], + [ + 109.3361641, + -0.0269495 + ], + [ + 109.336026, + -0.0270233 + ] + ] + }, + "id": "way/644674672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674673", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361108, + -0.0312353 + ], + [ + 109.3364686, + -0.0308843 + ] + ] + }, + "id": "way/644674673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426883, + -0.0291214 + ], + [ + 109.3428576, + -0.0290322 + ] + ] + }, + "id": "way/644674674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644674675", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343715, + -0.0286013 + ], + [ + 109.3431638, + -0.0288936 + ] + ] + }, + "id": "way/644674675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644677360", + "highway": "residential", + "lanes": "2", + "width": "5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413393, + -0.0705309 + ], + [ + 109.341656, + -0.0701787 + ], + [ + 109.342793, + -0.0688882 + ], + [ + 109.3431098, + -0.0685286 + ], + [ + 109.3436795, + -0.0679339 + ], + [ + 109.3439568, + -0.0676444 + ], + [ + 109.3442367, + -0.067357 + ], + [ + 109.344523, + -0.0670583 + ], + [ + 109.3448146, + -0.0667438 + ], + [ + 109.3456719, + -0.065837 + ], + [ + 109.3468401, + -0.0645965 + ], + [ + 109.3472567, + -0.0641541 + ], + [ + 109.3474509, + -0.0639604 + ] + ] + }, + "id": "way/644677360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644678569", + "highway": "residential", + "name": "Gang Haji Abubakar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450473, + -0.0536605 + ], + [ + 109.3451717, + -0.0537813 + ], + [ + 109.345415, + -0.054019 + ] + ] + }, + "id": "way/644678569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644678570", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346531, + -0.0522107 + ], + [ + 109.3467902, + -0.0524364 + ] + ] + }, + "id": "way/644678570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644678571", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464585, + -0.052283 + ], + [ + 109.3467132, + -0.0525085 + ] + ] + }, + "id": "way/644678571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644678572", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466667, + -0.0520829 + ], + [ + 109.346643, + -0.0521052 + ], + [ + 109.346531, + -0.0522107 + ], + [ + 109.3464585, + -0.052283 + ], + [ + 109.3461165, + -0.0526799 + ] + ] + }, + "id": "way/644678572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644678573", + "highway": "service", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467777, + -0.0524834 + ], + [ + 109.3467341, + -0.052527 + ], + [ + 109.3466509, + -0.0526129 + ], + [ + 109.3462721, + -0.0530332 + ], + [ + 109.3462037, + -0.0531091 + ], + [ + 109.3461929, + -0.0531346 + ], + [ + 109.3461996, + -0.0531654 + ], + [ + 109.3462291, + -0.0531989 + ] + ] + }, + "id": "way/644678573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644678574", + "highway": "service", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470532, + -0.0527684 + ], + [ + 109.34695, + -0.0526605 + ], + [ + 109.3467777, + -0.0524834 + ], + [ + 109.3468105, + -0.052454 + ], + [ + 109.3468937, + -0.05239 + ] + ] + }, + "id": "way/644678574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644678575", + "highway": "service", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471199, + -0.0526808 + ], + [ + 109.3470532, + -0.0527684 + ], + [ + 109.3469647, + -0.0528717 + ], + [ + 109.3468481, + -0.0529931 + ], + [ + 109.3464658, + -0.0533987 + ], + [ + 109.346443, + -0.0534108 + ], + [ + 109.3464149, + -0.0534162 + ], + [ + 109.3463559, + -0.0534061 + ] + ] + }, + "id": "way/644678575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644678576", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493346, + -0.0526994 + ], + [ + 109.3484446, + -0.0520818 + ] + ] + }, + "id": "way/644678576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644678577", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488724, + -0.0536275 + ], + [ + 109.3488649, + -0.0533771 + ], + [ + 109.3488644, + -0.0531781 + ], + [ + 109.3488684, + -0.0531493 + ], + [ + 109.3488778, + -0.0531258 + ], + [ + 109.3489026, + -0.0530983 + ], + [ + 109.3493346, + -0.0526994 + ], + [ + 109.3494035, + -0.0526464 + ], + [ + 109.3494438, + -0.0525941 + ], + [ + 109.3494585, + -0.0525552 + ], + [ + 109.3494929, + -0.0521368 + ], + [ + 109.3494961, + -0.0520979 + ], + [ + 109.3495445, + -0.0518084 + ], + [ + 109.3495631, + -0.0516969 + ], + [ + 109.3496878, + -0.0512208 + ], + [ + 109.349718, + -0.0511638 + ], + [ + 109.3497562, + -0.0511256 + ], + [ + 109.3498139, + -0.0510927 + ], + [ + 109.3499299, + -0.0510357 + ], + [ + 109.3500949, + -0.0509304 + ] + ] + }, + "id": "way/644678577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681725", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292357, + -0.0258635 + ], + [ + 109.3293322, + -0.0259467 + ], + [ + 109.329384, + -0.0260008 + ], + [ + 109.3294385, + -0.0260553 + ], + [ + 109.3294675, + -0.0260761 + ], + [ + 109.3295093, + -0.0260977 + ], + [ + 109.32955, + -0.0261188 + ], + [ + 109.3295974, + -0.0261475 + ], + [ + 109.32964, + -0.0261789 + ], + [ + 109.3296625, + -0.0261906 + ], + [ + 109.3296869, + -0.0262035 + ], + [ + 109.3297299, + -0.0262226 + ], + [ + 109.3297684, + -0.0262481 + ], + [ + 109.3298324, + -0.0262978 + ] + ] + }, + "id": "way/644681725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681726", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271439, + -0.031229 + ], + [ + 109.3273598, + -0.031068 + ], + [ + 109.3272686, + -0.030942 + ], + [ + 109.3272653, + -0.0309105 + ] + ] + }, + "id": "way/644681726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681727", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270267, + -0.0324094 + ], + [ + 109.327215, + -0.0322334 + ], + [ + 109.3273987, + -0.0320671 + ], + [ + 109.3275797, + -0.0319169 + ], + [ + 109.3276508, + -0.0318693 + ] + ] + }, + "id": "way/644681727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681728", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270669, + -0.0299571 + ], + [ + 109.3270075, + -0.0298815 + ], + [ + 109.3266907, + -0.0294779 + ] + ] + }, + "id": "way/644681728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301419, + -0.027156 + ], + [ + 109.3301467, + -0.0271414 + ], + [ + 109.3301483, + -0.0271353 + ], + [ + 109.3301485, + -0.02713 + ], + [ + 109.330148, + -0.0271247 + ], + [ + 109.3301464, + -0.027119 + ], + [ + 109.330097, + -0.0270192 + ] + ] + }, + "id": "way/644681729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681730", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303278, + -0.0273887 + ], + [ + 109.3301419, + -0.027156 + ], + [ + 109.3301178, + -0.0271621 + ], + [ + 109.3301077, + -0.0271674 + ], + [ + 109.3300842, + -0.0271822 + ], + [ + 109.3300252, + -0.0272278 + ], + [ + 109.3299749, + -0.0272613 + ] + ] + }, + "id": "way/644681730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681731", + "access": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308162, + -0.0290202 + ], + [ + 109.3311116, + -0.0294577 + ] + ] + }, + "id": "way/644681731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305372, + -0.0287588 + ], + [ + 109.3307105, + -0.0290755 + ], + [ + 109.3303695, + -0.0292683 + ] + ] + }, + "id": "way/644681733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681734", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305958, + -0.0287194 + ], + [ + 109.3305372, + -0.0287588 + ], + [ + 109.3300125, + -0.0291114 + ], + [ + 109.3299454, + -0.0291596 + ] + ] + }, + "id": "way/644681734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681735", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332219, + -0.0279314 + ], + [ + 109.3322435, + -0.0280016 + ], + [ + 109.3322453, + -0.0280094 + ], + [ + 109.3322441, + -0.0280173 + ], + [ + 109.332241, + -0.0280267 + ], + [ + 109.3321462, + -0.0281136 + ], + [ + 109.3320577, + -0.0281873 + ], + [ + 109.3319678, + -0.0282544 + ] + ] + }, + "id": "way/644681735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681736", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321079, + -0.0266951 + ], + [ + 109.3319947, + -0.026802 + ], + [ + 109.3318847, + -0.0268999 + ], + [ + 109.3317559, + -0.0270085 + ], + [ + 109.3316205, + -0.0271144 + ], + [ + 109.3313312, + -0.0273011 + ] + ] + }, + "id": "way/644681736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644681737", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331899, + -0.0265271 + ], + [ + 109.3316279, + -0.0268 + ], + [ + 109.3315658, + -0.0268392 + ], + [ + 109.3314951, + -0.0268858 + ], + [ + 109.3314176, + -0.0269468 + ], + [ + 109.3313432, + -0.0270005 + ], + [ + 109.3312433, + -0.0270779 + ], + [ + 109.3311903, + -0.0271231 + ], + [ + 109.3312235, + -0.0271721 + ], + [ + 109.3312664, + -0.0272217 + ], + [ + 109.3313312, + -0.0273011 + ], + [ + 109.3313724, + -0.0273505 + ], + [ + 109.3314176, + -0.0274088 + ], + [ + 109.3314193, + -0.0274189 + ], + [ + 109.3314113, + -0.0274336 + ], + [ + 109.3313885, + -0.0274551 + ], + [ + 109.3313523, + -0.0274819 + ], + [ + 109.3313019, + -0.0275195 + ] + ] + }, + "id": "way/644681737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644687678", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Jalan Imbon / Jalan Adis", + "oneway": "no", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573164, + -0.0496983 + ], + [ + 109.3574284, + -0.0497995 + ] + ] + }, + "id": "way/644687678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644687679", + "highway": "secondary", + "name": "Jalan Imam Bonjol", + "oneway": "no", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569082, + -0.0493275 + ], + [ + 109.3572, + -0.0495919 + ], + [ + 109.3573164, + -0.0496983 + ] + ] + }, + "id": "way/644687679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644687680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565149, + -0.051955 + ], + [ + 109.3576768, + -0.0529843 + ] + ] + }, + "id": "way/644687680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644687681", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553057, + -0.0529972 + ], + [ + 109.3553617, + -0.0530318 + ] + ] + }, + "id": "way/644687681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644687682", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551121, + -0.0533125 + ], + [ + 109.3551483, + -0.053335 + ] + ] + }, + "id": "way/644687682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644687683", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534946, + -0.048128 + ], + [ + 109.3533001, + -0.0483616 + ], + [ + 109.3530952, + -0.0486324 + ] + ] + }, + "id": "way/644687683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696489", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3675205, + -0.0467809 + ], + [ + 109.3673954, + -0.0468808 + ], + [ + 109.3671437, + -0.047058 + ] + ] + }, + "id": "way/644696489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696490", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364256, + -0.0475409 + ], + [ + 109.3643814, + -0.0474657 + ], + [ + 109.3644637, + -0.04741 + ], + [ + 109.364735, + -0.0472364 + ], + [ + 109.3650931, + -0.0470312 + ], + [ + 109.3655732, + -0.0467455 + ], + [ + 109.3658321, + -0.0466047 + ], + [ + 109.3660064, + -0.0465028 + ], + [ + 109.3664275, + -0.0462627 + ], + [ + 109.3666756, + -0.0461219 + ], + [ + 109.3668744, + -0.0460079 + ] + ] + }, + "id": "way/644696490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696491", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3714879, + -0.0440263 + ], + [ + 109.3718683, + -0.0437576 + ] + ] + }, + "id": "way/644696491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696492", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636226, + -0.0468649 + ], + [ + 109.3635917, + -0.0468964 + ], + [ + 109.3635274, + -0.0469615 + ], + [ + 109.3633584, + -0.047119 + ], + [ + 109.3632142, + -0.0472531 + ], + [ + 109.3631016, + -0.047349 + ], + [ + 109.3627347, + -0.0476618 + ] + ] + }, + "id": "way/644696492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696493", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646926, + -0.0479967 + ], + [ + 109.3644413, + -0.0482188 + ] + ] + }, + "id": "way/644696493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696495", + "highway": "residential", + "name": "Gang Al Hamidin Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3687926, + -0.052863 + ], + [ + 109.3688459, + -0.0528251 + ], + [ + 109.3689246, + -0.0527718 + ], + [ + 109.368981, + -0.0527356 + ], + [ + 109.3690174, + -0.0527104 + ], + [ + 109.3691235, + -0.0526291 + ], + [ + 109.3692075, + -0.0525617 + ], + [ + 109.3692985, + -0.0524962 + ], + [ + 109.3694078, + -0.0524087 + ] + ] + }, + "id": "way/644696495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696497", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.370901, + -0.0509373 + ], + [ + 109.3707847, + -0.051023 + ], + [ + 109.3707499, + -0.0510747 + ], + [ + 109.3707352, + -0.0511283 + ], + [ + 109.3707224, + -0.0511564 + ], + [ + 109.3707043, + -0.0511759 + ], + [ + 109.3705051, + -0.0513542 + ], + [ + 109.3703147, + -0.0515232 + ] + ] + }, + "id": "way/644696497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696498", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.371444, + -0.0515782 + ], + [ + 109.3718301, + -0.0513093 + ] + ] + }, + "id": "way/644696498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696499", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.371014, + -0.0510671 + ], + [ + 109.3716297, + -0.0506642 + ] + ] + }, + "id": "way/644696499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696633", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350926, + -0.0321582 + ], + [ + 109.3346702, + -0.0326009 + ], + [ + 109.3345977, + -0.0327364 + ], + [ + 109.334929, + -0.0330555 + ] + ] + }, + "id": "way/644696633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696634", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334397, + -0.0263188 + ], + [ + 109.3332647, + -0.026468 + ] + ] + }, + "id": "way/644696634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696635", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337552, + -0.0266963 + ], + [ + 109.3339413, + -0.0265545 + ] + ] + }, + "id": "way/644696635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696636", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339562, + -0.0291018 + ], + [ + 109.3340385, + -0.029216 + ], + [ + 109.3341377, + -0.0293501 + ], + [ + 109.3342209, + -0.029456 + ], + [ + 109.3342745, + -0.0295385 + ], + [ + 109.3342946, + -0.0295821 + ], + [ + 109.3343134, + -0.0296143 + ], + [ + 109.3343577, + -0.02968 + ], + [ + 109.3344596, + -0.0297954 + ], + [ + 109.3344613, + -0.0298005 + ], + [ + 109.3344618, + -0.0298061 + ], + [ + 109.3344612, + -0.0298106 + ], + [ + 109.3344583, + -0.0298161 + ], + [ + 109.3343342, + -0.0299106 + ], + [ + 109.3343293, + -0.0299164 + ], + [ + 109.3343255, + -0.0299234 + ], + [ + 109.3343244, + -0.0299311 + ], + [ + 109.3343255, + -0.0299378 + ], + [ + 109.3343939, + -0.030026 + ], + [ + 109.3344422, + -0.0300997 + ], + [ + 109.3344676, + -0.030144 + ], + [ + 109.3344958, + -0.0302057 + ] + ] + }, + "id": "way/644696636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696637", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33434, + -0.032091 + ], + [ + 109.3341004, + -0.0318388 + ], + [ + 109.3340969, + -0.0318309 + ], + [ + 109.3340955, + -0.0318239 + ], + [ + 109.3340958, + -0.0318184 + ], + [ + 109.3340991, + -0.0318113 + ], + [ + 109.3342615, + -0.0316595 + ] + ] + }, + "id": "way/644696637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696638", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337007, + -0.0311152 + ], + [ + 109.3338501, + -0.0313255 + ], + [ + 109.3338789, + -0.0313624 + ], + [ + 109.3339238, + -0.0314207 + ], + [ + 109.3339306, + -0.0314252 + ], + [ + 109.3339335, + -0.0314261 + ], + [ + 109.3339375, + -0.0314262 + ], + [ + 109.3339411, + -0.0314256 + ], + [ + 109.3339457, + -0.0314238 + ], + [ + 109.3341974, + -0.0311989 + ], + [ + 109.334267, + -0.0311462 + ] + ] + }, + "id": "way/644696638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696639", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331297, + -0.0332534 + ], + [ + 109.3311739, + -0.0333855 + ], + [ + 109.3310264, + -0.0335491 + ] + ] + }, + "id": "way/644696639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696640", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3299474, + -0.0310711 + ], + [ + 109.3301412, + -0.0309446 + ], + [ + 109.3303391, + -0.0308206 + ], + [ + 109.3304531, + -0.0307381 + ], + [ + 109.3306175, + -0.0306305 + ], + [ + 109.3306207, + -0.0306298 + ], + [ + 109.330623, + -0.0306299 + ], + [ + 109.3306252, + -0.0306312 + ], + [ + 109.3306287, + -0.0306337 + ], + [ + 109.3306782, + -0.0307063 + ], + [ + 109.3308105, + -0.0309199 + ], + [ + 109.3311182, + -0.0314147 + ] + ] + }, + "id": "way/644696640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696641", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3313308, + -0.0313037 + ], + [ + 109.3311954, + -0.0310908 + ], + [ + 109.3311203, + -0.0309299 + ], + [ + 109.3311191, + -0.0309212 + ], + [ + 109.3311202, + -0.0309147 + ], + [ + 109.3311233, + -0.0309089 + ], + [ + 109.3312017, + -0.030825 + ], + [ + 109.3312028, + -0.0308177 + ], + [ + 109.3312026, + -0.0308101 + ], + [ + 109.3311999, + -0.0308006 + ], + [ + 109.3311874, + -0.0307809 + ], + [ + 109.3311196, + -0.0307073 + ], + [ + 109.3310344, + -0.0306281 + ], + [ + 109.3309446, + -0.0305463 + ], + [ + 109.3308668, + -0.0304592 + ], + [ + 109.3307783, + -0.03038 + ] + ] + }, + "id": "way/644696641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696642", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318128, + -0.0310376 + ], + [ + 109.3316815, + -0.030836 + ], + [ + 109.3316725, + -0.0308161 + ], + [ + 109.3316725, + -0.0308101 + ], + [ + 109.3316741, + -0.0308063 + ], + [ + 109.3316757, + -0.0308029 + ], + [ + 109.3317291, + -0.0307507 + ], + [ + 109.3317304, + -0.0307449 + ], + [ + 109.331731, + -0.0307406 + ], + [ + 109.3317307, + -0.0307357 + ], + [ + 109.3317281, + -0.0307285 + ], + [ + 109.3316996, + -0.0306991 + ], + [ + 109.3314331, + -0.0304511 + ], + [ + 109.3313016, + -0.0303238 + ], + [ + 109.3312997, + -0.0303146 + ], + [ + 109.331299, + -0.0303066 + ], + [ + 109.3313526, + -0.0302378 + ], + [ + 109.3313528, + -0.0302273 + ], + [ + 109.3313469, + -0.0302151 + ] + ] + }, + "id": "way/644696642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696643", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315098, + -0.0291595 + ], + [ + 109.3320379, + -0.0298679 + ] + ] + }, + "id": "way/644696643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696644", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315682, + -0.0296424 + ], + [ + 109.3311524, + -0.030022 + ] + ] + }, + "id": "way/644696644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696645", + "highway": "residential", + "name": "Gang Cendana 6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312906, + -0.0293237 + ], + [ + 109.3314676, + -0.0295284 + ], + [ + 109.3315682, + -0.0296424 + ], + [ + 109.3317023, + -0.0298168 + ], + [ + 109.3318123, + -0.0299488 + ], + [ + 109.3318746, + -0.0299978 + ], + [ + 109.3319026, + -0.0300114 + ] + ] + }, + "id": "way/644696645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696646", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328693, + -0.0354648 + ], + [ + 109.3328181, + -0.0355419 + ], + [ + 109.3327562, + -0.03561 + ], + [ + 109.3327383, + -0.0356297 + ], + [ + 109.3326437, + -0.0357096 + ], + [ + 109.3325585, + -0.0357685 + ], + [ + 109.3324587, + -0.0358417 + ], + [ + 109.3323809, + -0.0358605 + ] + ] + }, + "id": "way/644696646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696648", + "access": "yes", + "highway": "tertiary", + "motor_vehicle": "yes", + "name": "Jalan Teuku Umar", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331916, + -0.0341386 + ], + [ + 109.3319545, + -0.0341519 + ], + [ + 109.3319939, + -0.0341452 + ], + [ + 109.3321119, + -0.0340828 + ], + [ + 109.3322803, + -0.0339829 + ], + [ + 109.3323798, + -0.0339391 + ] + ] + }, + "id": "way/644696648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644696649", + "access": "yes", + "highway": "tertiary", + "motor_vehicle": "yes", + "name": "Jalan Teuku Umar", + "name:id": "Jalan Teuku Umar", + "name:ms": "Jalan Teuku Umar", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320608, + -0.0342856 + ], + [ + 109.3321663, + -0.03417 + ], + [ + 109.3323185, + -0.034003 + ], + [ + 109.3323798, + -0.0339391 + ] + ] + }, + "id": "way/644696649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703009", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang A.R. Saleh V" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3581355, + -0.0602062 + ], + [ + 109.3582603, + -0.0603302 + ] + ] + }, + "id": "way/644703009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703010", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621422, + -0.0606571 + ], + [ + 109.361969, + -0.0608244 + ] + ] + }, + "id": "way/644703010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703011", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550916, + -0.0657625 + ], + [ + 109.3550429, + -0.0657323 + ] + ] + }, + "id": "way/644703011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703012", + "highway": "tertiary", + "name": "Jalan Parit Haji Husein 2", + "oneway": "yes", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563637, + -0.0637431 + ], + [ + 109.3562715, + -0.0638023 + ], + [ + 109.3561754, + -0.063864 + ] + ] + }, + "id": "way/644703012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703013", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561754, + -0.063864 + ], + [ + 109.356239, + -0.0637304 + ], + [ + 109.3562777, + -0.0636491 + ] + ] + }, + "id": "way/644703013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703014", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533415, + -0.0689487 + ], + [ + 109.3533207, + -0.0689344 + ] + ] + }, + "id": "way/644703014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703015", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533207, + -0.0689344 + ], + [ + 109.3531814, + -0.0688402 + ] + ] + }, + "id": "way/644703015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703016", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531814, + -0.0688402 + ], + [ + 109.3521783, + -0.068057 + ], + [ + 109.3509606, + -0.0670928 + ], + [ + 109.3506038, + -0.066787 + ] + ] + }, + "id": "way/644703016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703018", + "highway": "residential", + "name": "Gang Abadi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593002, + -0.0589093 + ], + [ + 109.3606299, + -0.0603685 + ] + ] + }, + "id": "way/644703018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703019", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545436, + -0.0597791 + ], + [ + 109.3561023, + -0.0611798 + ] + ] + }, + "id": "way/644703019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703020", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354874, + -0.0661506 + ], + [ + 109.3548261, + -0.0661168 + ] + ] + }, + "id": "way/644703020" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703021", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354678, + -0.066478 + ], + [ + 109.3546358, + -0.0664552 + ] + ] + }, + "id": "way/644703021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703022", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542555, + -0.0672189 + ], + [ + 109.3542341, + -0.0672028 + ] + ] + }, + "id": "way/644703022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703023", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3538701, + -0.067946 + ], + [ + 109.3538465, + -0.0679265 + ] + ] + }, + "id": "way/644703023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703024", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537002, + -0.0682594 + ], + [ + 109.3536716, + -0.0682411 + ] + ] + }, + "id": "way/644703024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703025", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Komplek Casa De Paris" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536716, + -0.0682411 + ], + [ + 109.3535878, + -0.0681919 + ] + ] + }, + "id": "way/644703025" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703026", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534981, + -0.0686257 + ], + [ + 109.3534758, + -0.0686088 + ] + ] + }, + "id": "way/644703026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644703027", + "access": "no", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545843, + -0.0613864 + ], + [ + 109.3545421, + -0.0614182 + ], + [ + 109.3544583, + -0.0614814 + ] + ] + }, + "id": "way/644703027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710134", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444496, + -0.073068 + ], + [ + 109.3426256, + -0.0707191 + ] + ] + }, + "id": "way/644710134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710135", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348285, + -0.0672792 + ], + [ + 109.3487477, + -0.0677258 + ], + [ + 109.3494076, + -0.0681844 + ], + [ + 109.3498088, + -0.068425 + ] + ] + }, + "id": "way/644710135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710137", + "highway": "living_street", + "lanes": "1", + "motorcar": "destination", + "motorcycle": "yes", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516467, + -0.0719758 + ], + [ + 109.3516088, + -0.0719489 + ] + ] + }, + "id": "way/644710137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710138", + "bridge": "yes", + "highway": "living_street", + "lanes": "1", + "layer": "1", + "motorcar": "destination", + "motorcycle": "yes", + "name": "Gang Tegal Sari", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516088, + -0.0719489 + ], + [ + 109.3515401, + -0.0719017 + ] + ] + }, + "id": "way/644710138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710139", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485206, + -0.077608 + ], + [ + 109.3484731, + -0.077582 + ] + ] + }, + "id": "way/644710139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710140", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484731, + -0.077582 + ], + [ + 109.3483971, + -0.0775383 + ] + ] + }, + "id": "way/644710140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710141", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483971, + -0.0775383 + ], + [ + 109.3472289, + -0.076864 + ], + [ + 109.3468782, + -0.0766615 + ] + ] + }, + "id": "way/644710141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710142", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400252, + -0.0721701 + ], + [ + 109.3410739, + -0.0734764 + ] + ] + }, + "id": "way/644710142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710143", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447942, + -0.0727616 + ], + [ + 109.3443677, + -0.0723217 + ] + ] + }, + "id": "way/644710143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710144", + "highway": "tertiary", + "name": "Jalan Padat Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437643, + -0.0736548 + ], + [ + 109.3426175, + -0.072134 + ], + [ + 109.3420677, + -0.0714057 + ], + [ + 109.3414897, + -0.0706775 + ] + ] + }, + "id": "way/644710144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710145", + "highway": "tertiary", + "name": "Jalan Padat Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438002, + -0.0737148 + ], + [ + 109.3437643, + -0.0736548 + ] + ] + }, + "id": "way/644710145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644710147", + "highway": "residential", + "name": "Jalan Aloe Vera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401513, + -0.0775453 + ], + [ + 109.340288, + -0.077379 + ], + [ + 109.3407212, + -0.0769338 + ], + [ + 109.3408786, + -0.076776 + ], + [ + 109.3412231, + -0.0764329 + ], + [ + 109.3415007, + -0.0761165 + ], + [ + 109.3417122, + -0.0758759 + ], + [ + 109.3417463, + -0.0758411 + ], + [ + 109.3418101, + -0.0757562 + ], + [ + 109.3418552, + -0.0757085 + ], + [ + 109.3419443, + -0.0756142 + ], + [ + 109.3420234, + -0.0755261 + ], + [ + 109.3422152, + -0.0753285 + ], + [ + 109.3422876, + -0.0752547 + ], + [ + 109.3424082, + -0.0751271 + ], + [ + 109.3424727, + -0.0750589 + ], + [ + 109.3425947, + -0.074906 + ], + [ + 109.3426455, + -0.0748161 + ], + [ + 109.3427074, + -0.0747196 + ], + [ + 109.3428214, + -0.0745922 + ], + [ + 109.3428989, + -0.0745075 + ], + [ + 109.3429595, + -0.0744608 + ], + [ + 109.3430024, + -0.0744125 + ], + [ + 109.3431084, + -0.0742918 + ], + [ + 109.3432264, + -0.0741724 + ], + [ + 109.3433317, + -0.0740887 + ], + [ + 109.3433981, + -0.0740343 + ], + [ + 109.3434906, + -0.0739459 + ], + [ + 109.3436287, + -0.0738399 + ], + [ + 109.3438002, + -0.0737148 + ] + ] + }, + "id": "way/644710147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715457", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345758, + -0.0822378 + ], + [ + 109.3454412, + -0.0820347 + ], + [ + 109.3430614, + -0.080603 + ] + ] + }, + "id": "way/644715457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715459", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505421, + -0.0769499 + ], + [ + 109.3507835, + -0.0767004 + ] + ] + }, + "id": "way/644715459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715706", + "highway": "living_street", + "name": "Gang Beringin 12" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317793, + -0.0327844 + ], + [ + 109.3315668, + -0.0325218 + ], + [ + 109.3313791, + -0.0322938 + ] + ] + }, + "id": "way/644715706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715708", + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "motor_vehicle": "no", + "motorcar": "no", + "motorcycle": "destination", + "name": "Gang Satu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317607, + -0.0328004 + ], + [ + 109.3320014, + -0.0330542 + ], + [ + 109.3321958, + -0.033254 + ], + [ + 109.3326612, + -0.0336952 + ] + ] + }, + "id": "way/644715708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715709", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317035, + -0.0310986 + ], + [ + 109.3318592, + -0.03141 + ], + [ + 109.3319097, + -0.0315189 + ], + [ + 109.3319692, + -0.0316474 + ] + ] + }, + "id": "way/644715709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715711", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308255, + -0.0301883 + ], + [ + 109.3309218, + -0.0301158 + ] + ] + }, + "id": "way/644715711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715713", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330542, + -0.0298545 + ], + [ + 109.3307162, + -0.0300619 + ], + [ + 109.3307736, + -0.0301296 + ], + [ + 109.3308255, + -0.0301883 + ], + [ + 109.330787, + -0.0302241 + ] + ] + }, + "id": "way/644715713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715715", + "highway": "residential", + "name": "Gang Cendana 9" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318181, + -0.0289287 + ], + [ + 109.3315776, + -0.0286004 + ] + ] + }, + "id": "way/644715715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715716", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328631, + -0.0273286 + ], + [ + 109.3331413, + -0.0270514 + ] + ] + }, + "id": "way/644715716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715718", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328331, + -0.0335318 + ], + [ + 109.3321998, + -0.0328665 + ] + ] + }, + "id": "way/644715718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715719", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290751, + -0.0342921 + ], + [ + 109.3288404, + -0.0345495 + ] + ] + }, + "id": "way/644715719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715722", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288561, + -0.0293005 + ], + [ + 109.3291421, + -0.0291342 + ] + ] + }, + "id": "way/644715722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715724", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294734, + -0.0292803 + ], + [ + 109.329574, + -0.0294372 + ], + [ + 109.3296424, + -0.0295432 + ] + ] + }, + "id": "way/644715724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715725", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291351, + -0.0297615 + ], + [ + 109.329574, + -0.0294372 + ] + ] + }, + "id": "way/644715725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715726", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284538, + -0.0286129 + ], + [ + 109.3288524, + -0.0282544 + ] + ] + }, + "id": "way/644715726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715727", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292943, + -0.0283154 + ], + [ + 109.3290677, + -0.0280761 + ], + [ + 109.3290509, + -0.0280535 + ], + [ + 109.3290395, + -0.0280345 + ], + [ + 109.3290254, + -0.02801 + ], + [ + 109.3290067, + -0.0279862 + ], + [ + 109.3289101, + -0.0278708 + ] + ] + }, + "id": "way/644715727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715730", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292221, + -0.029903 + ], + [ + 109.3280357, + -0.0309044 + ] + ] + }, + "id": "way/644715730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644715734", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329313, + -0.0353455 + ], + [ + 109.3328693, + -0.0354648 + ] + ] + }, + "id": "way/644715734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782313", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229382, + -0.0296129 + ], + [ + 109.322817, + -0.0294659 + ], + [ + 109.3227972, + -0.0294525 + ], + [ + 109.3227813, + -0.029449 + ], + [ + 109.3227672, + -0.02945 + ], + [ + 109.3227533, + -0.029455 + ], + [ + 109.3226713, + -0.0295137 + ], + [ + 109.3224735, + -0.0296371 + ], + [ + 109.3223333, + -0.0297323 + ], + [ + 109.322222, + -0.0298027 + ] + ] + }, + "id": "way/644782313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782314", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258202, + -0.0299804 + ], + [ + 109.3257357, + -0.0299375 + ] + ] + }, + "id": "way/644782314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782315", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257357, + -0.0299375 + ], + [ + 109.3256941, + -0.0299147 + ] + ] + }, + "id": "way/644782315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326271, + -0.0334703 + ], + [ + 109.3260643, + -0.0331642 + ] + ] + }, + "id": "way/644782316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782317", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236664, + -0.0336724 + ], + [ + 109.3233016, + -0.033891 + ] + ] + }, + "id": "way/644782317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782318", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239252, + -0.034693 + ], + [ + 109.3237187, + -0.0344074 + ] + ] + }, + "id": "way/644782318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241941, + -0.0344778 + ], + [ + 109.3239252, + -0.034693 + ], + [ + 109.3236342, + -0.0349197 + ], + [ + 109.3231863, + -0.035255 + ], + [ + 109.3229516, + -0.0354467 + ], + [ + 109.3225881, + -0.035727 + ], + [ + 109.3223253, + -0.0359148 + ], + [ + 109.3216789, + -0.0364405 + ] + ] + }, + "id": "way/644782319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782320", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243806, + -0.0347641 + ], + [ + 109.3236154, + -0.0353622 + ], + [ + 109.3225479, + -0.0362138 + ] + ] + }, + "id": "way/644782320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238434, + -0.036814 + ], + [ + 109.3243727, + -0.0375037 + ] + ] + }, + "id": "way/644782321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782323", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244647, + -0.0295707 + ], + [ + 109.3240097, + -0.0298637 + ], + [ + 109.3230267, + -0.0305208 + ] + ] + }, + "id": "way/644782323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782324", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324727, + -0.0287311 + ], + [ + 109.3241597, + -0.0290727 + ], + [ + 109.3237348, + -0.0293031 + ], + [ + 109.3234827, + -0.0294453 + ], + [ + 109.3233445, + -0.0295311 + ], + [ + 109.323252, + -0.029397 + ] + ] + }, + "id": "way/644782324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782325", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241822, + -0.0286906 + ], + [ + 109.3240915, + -0.0285414 + ], + [ + 109.3240795, + -0.0285347 + ], + [ + 109.324064, + -0.0285374 + ], + [ + 109.3240144, + -0.0285675 + ], + [ + 109.323887, + -0.028642 + ], + [ + 109.3236872, + -0.0287667 + ] + ] + }, + "id": "way/644782325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782326", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205231, + -0.0273447 + ], + [ + 109.320779, + -0.0272848 + ], + [ + 109.3210097, + -0.0272425 + ] + ] + }, + "id": "way/644782326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644782327", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204441, + -0.0270242 + ], + [ + 109.3209265, + -0.026928 + ] + ] + }, + "id": "way/644782327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644786457", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531172, + -0.0693418 + ], + [ + 109.3530951, + -0.0693222 + ] + ] + }, + "id": "way/644786457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644786458", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530951, + -0.0693222 + ], + [ + 109.3529467, + -0.0692023 + ] + ] + }, + "id": "way/644786458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644786459", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352518, + -0.0704269 + ], + [ + 109.3524788, + -0.0704001 + ] + ] + }, + "id": "way/644786459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644786460", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3524788, + -0.0704001 + ], + [ + 109.3524208, + -0.0703586 + ] + ] + }, + "id": "way/644786460" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644786461", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522258, + -0.0709371 + ], + [ + 109.3522087, + -0.0709217 + ] + ] + }, + "id": "way/644786461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/644786462", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522087, + -0.0709217 + ], + [ + 109.352119, + -0.0708574 + ] + ] + }, + "id": "way/644786462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645144236", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520346, + -0.0826689 + ], + [ + 109.3527105, + -0.0831578 + ], + [ + 109.352785, + -0.083204 + ] + ] + }, + "id": "way/645144236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158982", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263762, + -0.0288838 + ], + [ + 109.3264465, + -0.0289035 + ] + ] + }, + "id": "way/645158982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158984", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262929, + -0.0288429 + ], + [ + 109.326369, + -0.0288738 + ], + [ + 109.3263762, + -0.0288838 + ], + [ + 109.3263841, + -0.0289094 + ], + [ + 109.3263831, + -0.0289266 + ], + [ + 109.3263512, + -0.0290103 + ], + [ + 109.3262283, + -0.029215 + ], + [ + 109.3261432, + -0.0293342 + ], + [ + 109.3261294, + -0.0293465 + ], + [ + 109.3261095, + -0.0293512 + ], + [ + 109.3260769, + -0.0293423 + ] + ] + }, + "id": "way/645158984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158985", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222794, + -0.0327811 + ], + [ + 109.3223213, + -0.0328376 + ], + [ + 109.3223367, + -0.0328602 + ] + ] + }, + "id": "way/645158985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158986", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222538, + -0.0327465 + ], + [ + 109.3222794, + -0.0327811 + ] + ] + }, + "id": "way/645158986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158988", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200885, + -0.0244775 + ], + [ + 109.3198596, + -0.0245363 + ], + [ + 109.3193574, + -0.0246508 + ] + ] + }, + "id": "way/645158988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158989", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205926, + -0.0276265 + ], + [ + 109.3198973, + -0.0280011 + ] + ] + }, + "id": "way/645158989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158990", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191676, + -0.0294681 + ], + [ + 109.3190825, + -0.0295338 + ], + [ + 109.3190134, + -0.0295881 + ], + [ + 109.3189558, + -0.0296377 + ], + [ + 109.3188934, + -0.0297015 + ], + [ + 109.3188337, + -0.0297618 + ], + [ + 109.3185803, + -0.0299717 + ] + ] + }, + "id": "way/645158990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158992", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221885, + -0.0343001 + ], + [ + 109.3224051, + -0.034687 + ] + ] + }, + "id": "way/645158992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158993", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324337, + -0.0322412 + ], + [ + 109.3243221, + -0.0323129 + ], + [ + 109.3243124, + -0.0323329 + ], + [ + 109.3242944, + -0.0323552 + ], + [ + 109.3242697, + -0.0323733 + ], + [ + 109.3242223, + -0.0323971 + ], + [ + 109.324209, + -0.0324132 + ], + [ + 109.3242038, + -0.0324266 + ], + [ + 109.3242021, + -0.0324413 + ], + [ + 109.324205, + -0.032458 + ], + [ + 109.3242275, + -0.0325393 + ], + [ + 109.324228, + -0.0325527 + ], + [ + 109.3242254, + -0.0325613 + ], + [ + 109.3242176, + -0.0325721 + ], + [ + 109.3241116, + -0.0326304 + ] + ] + }, + "id": "way/645158993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158994", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259662, + -0.0292403 + ], + [ + 109.3257652, + -0.0290483 + ] + ] + }, + "id": "way/645158994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158996", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253879, + -0.0298007 + ], + [ + 109.3250397, + -0.0300327 + ] + ] + }, + "id": "way/645158996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158997", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225847, + -0.0334491 + ], + [ + 109.3228416, + -0.0337999 + ] + ] + }, + "id": "way/645158997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645158998", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223367, + -0.0328602 + ], + [ + 109.322556, + -0.0331803 + ], + [ + 109.3226511, + -0.033309 + ], + [ + 109.3226606, + -0.0333278 + ], + [ + 109.3226636, + -0.0333473 + ], + [ + 109.3226552, + -0.0333674 + ], + [ + 109.3225847, + -0.0334491 + ], + [ + 109.3224245, + -0.0335719 + ], + [ + 109.322269, + -0.0336778 + ], + [ + 109.32221, + -0.0337274 + ], + [ + 109.3220879, + -0.0338186 + ], + [ + 109.3219605, + -0.0339248 + ], + [ + 109.3218546, + -0.0340131 + ], + [ + 109.3218452, + -0.0340131 + ], + [ + 109.3215979, + -0.0342507 + ], + [ + 109.321595, + -0.0342719 + ], + [ + 109.3215983, + -0.0343018 + ], + [ + 109.3216064, + -0.0343229 + ], + [ + 109.321762, + -0.0345696 + ], + [ + 109.3217942, + -0.0346085 + ], + [ + 109.3219343, + -0.0345186 + ], + [ + 109.3221885, + -0.0343001 + ], + [ + 109.3222108, + -0.0342828 + ], + [ + 109.3224366, + -0.0341083 + ], + [ + 109.3227189, + -0.0338964 + ], + [ + 109.3228416, + -0.0337999 + ], + [ + 109.3231621, + -0.0335625 + ], + [ + 109.3234786, + -0.033313 + ] + ] + }, + "id": "way/645158998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159001", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212943, + -0.029787 + ], + [ + 109.321074, + -0.0299683 + ] + ] + }, + "id": "way/645159001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159002", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196448, + -0.0306766 + ], + [ + 109.3199153, + -0.0310559 + ] + ] + }, + "id": "way/645159002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159003", + "highway": "residential", + "name": "Gang Pancasila IV B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208071, + -0.0291382 + ], + [ + 109.3202747, + -0.0295459 + ], + [ + 109.3200816, + -0.029688 + ], + [ + 109.3198268, + -0.0298865 + ], + [ + 109.3189859, + -0.0305504 + ] + ] + }, + "id": "way/645159003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159004", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205296, + -0.0310596 + ], + [ + 109.3209681, + -0.0307455 + ] + ] + }, + "id": "way/645159004" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159005", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208128, + -0.0314426 + ], + [ + 109.320671, + -0.0312424 + ], + [ + 109.3205527, + -0.0310861 + ], + [ + 109.3205296, + -0.0310596 + ], + [ + 109.3202446, + -0.0312497 + ] + ] + }, + "id": "way/645159005" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159006", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194341, + -0.0308415 + ], + [ + 109.3198898, + -0.031469 + ] + ] + }, + "id": "way/645159006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159007", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3197536, + -0.0322514 + ], + [ + 109.3195438, + -0.0319753 + ], + [ + 109.3193742, + -0.0317245 + ] + ] + }, + "id": "way/645159007" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159008", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320673, + -0.0319411 + ], + [ + 109.3208259, + -0.0321664 + ], + [ + 109.3208903, + -0.0322616 + ], + [ + 109.3210445, + -0.0324748 + ], + [ + 109.3211894, + -0.032676 + ], + [ + 109.3213825, + -0.032959 + ] + ] + }, + "id": "way/645159008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159009", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220629, + -0.0322063 + ], + [ + 109.3218835, + -0.0323277 + ], + [ + 109.3217593, + -0.0324118 + ] + ] + }, + "id": "way/645159009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159010", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222073, + -0.0323313 + ], + [ + 109.3223635, + -0.032214 + ], + [ + 109.322395, + -0.0321892 + ], + [ + 109.3223957, + -0.0321664 + ], + [ + 109.3223883, + -0.0321476 + ], + [ + 109.3223528, + -0.032092 + ], + [ + 109.3222093, + -0.0318888 + ], + [ + 109.3220973, + -0.0317325 + ], + [ + 109.3219545, + -0.0315267 + ], + [ + 109.3218056, + -0.0313161 + ], + [ + 109.3216453, + -0.0310962 + ] + ] + }, + "id": "way/645159010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159011", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3209037, + -0.0317708 + ], + [ + 109.321074, + -0.0316353 + ], + [ + 109.3212417, + -0.031513 + ], + [ + 109.3213242, + -0.0314529 + ], + [ + 109.3214381, + -0.0313631 + ], + [ + 109.3214603, + -0.0313544 + ], + [ + 109.3214844, + -0.0313597 + ], + [ + 109.3214992, + -0.0313758 + ], + [ + 109.3217111, + -0.031689 + ], + [ + 109.3217406, + -0.0317238 + ], + [ + 109.3219813, + -0.0320839 + ], + [ + 109.3220629, + -0.0322063 + ], + [ + 109.3220711, + -0.0322187 + ], + [ + 109.3221382, + -0.0323173 + ], + [ + 109.322163, + -0.0323267 + ], + [ + 109.3221778, + -0.0323273 + ], + [ + 109.3221918, + -0.0323273 + ], + [ + 109.3222073, + -0.0323313 + ], + [ + 109.3222227, + -0.0323528 + ], + [ + 109.3222482, + -0.0323897 + ], + [ + 109.3224225, + -0.0326212 + ] + ] + }, + "id": "way/645159011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159012", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211371, + -0.032106 + ], + [ + 109.3214823, + -0.0318552 + ], + [ + 109.3217111, + -0.031689 + ], + [ + 109.3219545, + -0.0315267 + ] + ] + }, + "id": "way/645159012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159013", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3215975, + -0.0332566 + ], + [ + 109.3213825, + -0.032959 + ], + [ + 109.3213516, + -0.0329509 + ], + [ + 109.3213235, + -0.0329523 + ], + [ + 109.3212698, + -0.0329711 + ], + [ + 109.3212009, + -0.032991 + ], + [ + 109.3211384, + -0.0330059 + ], + [ + 109.3210999, + -0.0330133 + ], + [ + 109.3210887, + -0.0330155 + ], + [ + 109.3210718, + -0.0330187 + ], + [ + 109.3210477, + -0.0330025 + ], + [ + 109.3210083, + -0.0329617 + ], + [ + 109.3209024, + -0.0328222 + ], + [ + 109.3207766, + -0.0326551 + ], + [ + 109.3206838, + -0.0325231 + ], + [ + 109.3205751, + -0.0323729 + ], + [ + 109.3204692, + -0.0322267 + ], + [ + 109.3204437, + -0.0321959 + ], + [ + 109.320433, + -0.0321704 + ], + [ + 109.3204477, + -0.0321369 + ], + [ + 109.3204893, + -0.0320967 + ], + [ + 109.320673, + -0.0319411 + ], + [ + 109.3208125, + -0.0318365 + ], + [ + 109.3208662, + -0.0317976 + ], + [ + 109.3209037, + -0.0317708 + ], + [ + 109.3209507, + -0.0318472 + ], + [ + 109.3211371, + -0.032106 + ], + [ + 109.3212792, + -0.0322978 + ], + [ + 109.3215528, + -0.0326733 + ], + [ + 109.3215729, + -0.0327095 + ], + [ + 109.3215729, + -0.032731 + ], + [ + 109.3215622, + -0.0327551 + ], + [ + 109.3215448, + -0.032782 + ], + [ + 109.3215327, + -0.0328007 + ], + [ + 109.3215327, + -0.0328262 + ], + [ + 109.3215689, + -0.0328785 + ], + [ + 109.3217532, + -0.0331274 + ] + ] + }, + "id": "way/645159013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159014", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198136, + -0.0322008 + ], + [ + 109.3200952, + -0.0325416 + ], + [ + 109.3201487, + -0.0326063 + ], + [ + 109.3203633, + -0.0328946 + ], + [ + 109.320614, + -0.0332098 + ], + [ + 109.3210186, + -0.0337254 + ] + ] + }, + "id": "way/645159014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159015", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191538, + -0.0327005 + ], + [ + 109.3193776, + -0.0330363 + ], + [ + 109.3194784, + -0.0331879 + ], + [ + 109.3196028, + -0.0333747 + ], + [ + 109.3199139, + -0.0338914 + ], + [ + 109.3202426, + -0.034343 + ] + ] + }, + "id": "way/645159015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159016", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259757, + -0.0278542 + ], + [ + 109.3260871, + -0.0280244 + ], + [ + 109.3262252, + -0.0282068 + ], + [ + 109.3263822, + -0.0284281 + ] + ] + }, + "id": "way/645159016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645159017", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322731, + -0.0274308 + ], + [ + 109.3227638, + -0.0274112 + ], + [ + 109.3227789, + -0.0274018 + ], + [ + 109.3227933, + -0.027389 + ], + [ + 109.3227973, + -0.027373 + ], + [ + 109.3227957, + -0.0273588 + ], + [ + 109.322784, + -0.0273302 + ] + ] + }, + "id": "way/645159017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645169633", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127734, + -0.0278322 + ], + [ + 109.3126568, + -0.0278672 + ] + ] + }, + "id": "way/645169633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645169634", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179268, + -0.0255024 + ], + [ + 109.3173081, + -0.0255932 + ] + ] + }, + "id": "way/645169634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645169635", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110412, + -0.0264426 + ], + [ + 109.3110706, + -0.0266479 + ], + [ + 109.3111177, + -0.0272526 + ], + [ + 109.3111083, + -0.0272794 + ], + [ + 109.3110882, + -0.0272995 + ], + [ + 109.3109477, + -0.0273271 + ] + ] + }, + "id": "way/645169635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645169636", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311927, + -0.0277953 + ], + [ + 109.3116641, + -0.0277935 + ] + ] + }, + "id": "way/645169636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645169638", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119356, + -0.0273304 + ], + [ + 109.3113817, + -0.0273475 + ] + ] + }, + "id": "way/645169638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645169639", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119392, + -0.0268241 + ], + [ + 109.3114357, + -0.0268331 + ] + ] + }, + "id": "way/645169639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645169640", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156104, + -0.0255025 + ], + [ + 109.315432, + -0.0255889 + ], + [ + 109.3152704, + -0.0256359 + ], + [ + 109.314791, + -0.0257834 + ], + [ + 109.3138516, + -0.0260754 + ] + ] + }, + "id": "way/645169640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645176711", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377445, + 0.0248785 + ], + [ + 109.337758, + 0.0249492 + ] + ] + }, + "id": "way/645176711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645176712", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377301, + 0.024803 + ], + [ + 109.3377445, + 0.0248785 + ] + ] + }, + "id": "way/645176712" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645176713", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464115, + 0.0225869 + ], + [ + 109.3464269, + 0.0226504 + ] + ] + }, + "id": "way/645176713" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645176714", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463948, + 0.0225239 + ], + [ + 109.3464115, + 0.0225869 + ] + ] + }, + "id": "way/645176714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645176715", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388442, + 0.0245953 + ], + [ + 109.3388667, + 0.0246526 + ] + ] + }, + "id": "way/645176715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645176716", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.338814, + 0.0245183 + ], + [ + 109.3388442, + 0.0245953 + ] + ] + }, + "id": "way/645176716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645176717", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434262, + 0.0234237 + ], + [ + 109.3439332, + 0.0254622 + ] + ] + }, + "id": "way/645176717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645176718", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434182, + 0.0233937 + ], + [ + 109.3434262, + 0.0234237 + ] + ] + }, + "id": "way/645176718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207693", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117187, + -0.037519 + ], + [ + 109.3118823, + -0.0376752 + ] + ] + }, + "id": "way/645207693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207694", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160073, + -0.0330965 + ], + [ + 109.316187, + -0.0329653 + ] + ] + }, + "id": "way/645207694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207695", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.314966, + -0.0371626 + ], + [ + 109.315215, + -0.0373628 + ] + ] + }, + "id": "way/645207695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311803, + -0.0331266 + ], + [ + 109.311622, + -0.03331 + ] + ] + }, + "id": "way/645207696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207697", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143626, + -0.0330318 + ], + [ + 109.3144524, + -0.0333151 + ] + ] + }, + "id": "way/645207697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207698", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3181197, + -0.0333943 + ], + [ + 109.31767, + -0.0327997 + ] + ] + }, + "id": "way/645207698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207699", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134792, + -0.036811 + ], + [ + 109.3139811, + -0.0362604 + ] + ] + }, + "id": "way/645207699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207700", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110909, + -0.0362568 + ], + [ + 109.3114788, + -0.0365877 + ], + [ + 109.3115974, + -0.0366992 + ], + [ + 109.311651, + -0.0367496 + ], + [ + 109.3118039, + -0.0368934 + ], + [ + 109.3119072, + -0.0369907 + ], + [ + 109.3120604, + -0.0371348 + ] + ] + }, + "id": "way/645207700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207701", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123628, + -0.0367926 + ], + [ + 109.3120733, + -0.0365257 + ], + [ + 109.3118415, + -0.0363291 + ], + [ + 109.3117573, + -0.0362561 + ], + [ + 109.3114664, + -0.036006 + ], + [ + 109.3113977, + -0.0359414 + ] + ] + }, + "id": "way/645207701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207702", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127112, + -0.0364058 + ], + [ + 109.3131723, + -0.0368368 + ] + ] + }, + "id": "way/645207702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645207703", + "highway": "residential", + "name": "Jalan Komplek Sepakat Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120155, + -0.0371855 + ], + [ + 109.3128036, + -0.0378487 + ] + ] + }, + "id": "way/645207703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645214563", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312731, + -0.0319074 + ], + [ + 109.31254, + -0.0319535 + ] + ] + }, + "id": "way/645214563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645214564", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312731, + -0.0319074 + ], + [ + 109.312771, + -0.0320643 + ], + [ + 109.3127968, + -0.0321192 + ], + [ + 109.3128483, + -0.0321398 + ], + [ + 109.3129032, + -0.0321295 + ], + [ + 109.3133065, + -0.0320265 + ], + [ + 109.3133168, + -0.0319939 + ], + [ + 109.31331, + -0.0319579 + ], + [ + 109.3132688, + -0.0318137 + ], + [ + 109.3132447, + -0.0317879 + ], + [ + 109.3131898, + -0.0317965 + ], + [ + 109.312731, + -0.0319074 + ] + ] + }, + "id": "way/645214564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645214566", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143791, + -0.0322328 + ], + [ + 109.314472, + -0.0325123 + ] + ] + }, + "id": "way/645214566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645214567", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176021, + -0.031813 + ], + [ + 109.3178585, + -0.0316609 + ] + ] + }, + "id": "way/645214567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645214569", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170144, + -0.029552 + ], + [ + 109.3170728, + -0.0295408 + ], + [ + 109.3171421, + -0.029522 + ], + [ + 109.3171891, + -0.0294931 + ], + [ + 109.3172303, + -0.0294467 + ], + [ + 109.317243, + -0.0293971 + ], + [ + 109.317258, + -0.0293718 + ], + [ + 109.3172834, + -0.0293614 + ], + [ + 109.3176061, + -0.0292991 + ], + [ + 109.3179168, + -0.0292579 + ] + ] + }, + "id": "way/645214569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645214570", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169864, + -0.0315227 + ], + [ + 109.317383, + -0.0310979 + ] + ] + }, + "id": "way/645214570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645214572", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171824, + -0.0317472 + ], + [ + 109.3169864, + -0.0315227 + ], + [ + 109.3168549, + -0.0315843 + ], + [ + 109.3166518, + -0.0316317 + ] + ] + }, + "id": "way/645214572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645214573", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175222, + -0.0303178 + ], + [ + 109.3170947, + -0.0305882 + ], + [ + 109.3169247, + -0.0307247 + ], + [ + 109.3167074, + -0.0308615 + ], + [ + 109.3163842, + -0.0310358 + ], + [ + 109.3161066, + -0.0311901 + ], + [ + 109.3156707, + -0.0313913 + ] + ] + }, + "id": "way/645214573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/645214575", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130761, + -0.0311811 + ], + [ + 109.3130611, + -0.0308027 + ] + ] + }, + "id": "way/645214575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/646798789", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119432, + -0.0291234 + ], + [ + 109.3118255, + -0.0299342 + ], + [ + 109.3117745, + -0.0302851 + ] + ] + }, + "id": "way/646798789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647097521", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313644, + -0.0464562 + ], + [ + 109.3138332, + -0.0462625 + ] + ] + }, + "id": "way/647097521" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647097523", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134182, + -0.0462099 + ], + [ + 109.3136119, + -0.0460227 + ] + ] + }, + "id": "way/647097523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647097524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141344, + -0.0469815 + ], + [ + 109.313644, + -0.0464562 + ], + [ + 109.3134182, + -0.0462099 + ], + [ + 109.3133808, + -0.0461736 + ] + ] + }, + "id": "way/647097524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647097525", + "highway": "residential", + "name": "Jalan Komplek Villa Mutiara Mas 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984047, + -0.0555761 + ], + [ + 109.2996385, + -0.0543262 + ], + [ + 109.2998512, + -0.0541066 + ], + [ + 109.3007861, + -0.0531885 + ], + [ + 109.3008032, + -0.053172 + ], + [ + 109.300808, + -0.0531662 + ] + ] + }, + "id": "way/647097525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647097527", + "highway": "residential", + "name": "Jalan Danau Sentarum", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029343, + -0.0553846 + ], + [ + 109.3029749, + -0.0553473 + ] + ] + }, + "id": "way/647097527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647108305", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408695, + -0.0481387 + ], + [ + 109.3408942, + -0.0482285 + ], + [ + 109.3408977, + -0.0482509 + ], + [ + 109.3408983, + -0.0482602 + ], + [ + 109.3408967, + -0.0482707 + ], + [ + 109.3408927, + -0.0482782 + ], + [ + 109.3408862, + -0.0482841 + ], + [ + 109.340507, + -0.048444 + ], + [ + 109.3404808, + -0.0484434 + ], + [ + 109.3404634, + -0.0484373 + ], + [ + 109.3404439, + -0.0484229 + ], + [ + 109.3403881, + -0.0483292 + ] + ] + }, + "id": "way/647108305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647108307", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437381, + -0.0469233 + ], + [ + 109.3436465, + -0.0468303 + ], + [ + 109.3435231, + -0.0466879 + ], + [ + 109.3434071, + -0.0465702 + ] + ] + }, + "id": "way/647108307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647108309", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438445, + -0.0470423 + ], + [ + 109.3437381, + -0.0469233 + ] + ] + }, + "id": "way/647108309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647108311", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355218, + -0.0454554 + ], + [ + 109.3355758, + -0.0455208 + ] + ] + }, + "id": "way/647108311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647108312", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3345423, + -0.0461837 + ], + [ + 109.3345958, + -0.0462492 + ] + ] + }, + "id": "way/647108312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647108314", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333762, + -0.0467718 + ], + [ + 109.3338008, + -0.0468507 + ] + ] + }, + "id": "way/647108314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647113099", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455793, + -0.0530012 + ], + [ + 109.3456079, + -0.0530256 + ] + ] + }, + "id": "way/647113099" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647113100", + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455018, + -0.0529219 + ], + [ + 109.3455793, + -0.0530012 + ] + ] + }, + "id": "way/647113100" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647145104", + "highway": "residential", + "name": "Blok H" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350469, + -0.0601869 + ], + [ + 109.3504893, + -0.0602029 + ] + ] + }, + "id": "way/647145104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647145105", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Blok H" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504058, + -0.0601373 + ], + [ + 109.350469, + -0.0601869 + ] + ] + }, + "id": "way/647145105" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647145106", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475526, + -0.0640525 + ], + [ + 109.3474688, + -0.0639787 + ] + ] + }, + "id": "way/647145106" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160645", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548625, + -0.014656 + ], + [ + 109.3548898, + -0.0146557 + ] + ] + }, + "id": "way/647160645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160647", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369125, + -0.0127153 + ], + [ + 109.3370411, + -0.0128519 + ] + ] + }, + "id": "way/647160647" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160650", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365464, + -0.0122879 + ], + [ + 109.3366738, + -0.0124441 + ], + [ + 109.3369125, + -0.0127153 + ] + ] + }, + "id": "way/647160650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160652", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Raya Desa Kapur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3770972, + -0.0593341 + ], + [ + 109.3771787, + -0.0594284 + ] + ] + }, + "id": "way/647160652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160654", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545871, + -0.0169638 + ], + [ + 109.3547651, + -0.0168813 + ] + ] + }, + "id": "way/647160654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160657", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474417, + -0.0185447 + ], + [ + 109.3474648, + -0.0185489 + ], + [ + 109.3474806, + -0.0185518 + ], + [ + 109.3477107, + -0.0185937 + ], + [ + 109.3478586, + -0.0186206 + ], + [ + 109.3480591, + -0.0186567 + ], + [ + 109.3482728, + -0.0186951 + ], + [ + 109.3487169, + -0.018754 + ], + [ + 109.3489067, + -0.0187708 + ], + [ + 109.3490911, + -0.0187701 + ], + [ + 109.3494511, + -0.0187614 + ], + [ + 109.3496932, + -0.0187453 + ], + [ + 109.3498736, + -0.0187325 + ], + [ + 109.349883, + -0.0187305 + ], + [ + 109.3503211, + -0.0186844 + ], + [ + 109.3505167, + -0.0186638 + ], + [ + 109.3508614, + -0.0186274 + ], + [ + 109.3511496, + -0.0185971 + ], + [ + 109.3516054, + -0.0185407 + ], + [ + 109.3516646, + -0.0185334 + ], + [ + 109.3520439, + -0.0184486 + ], + [ + 109.352098, + -0.0184332 + ], + [ + 109.3522606, + -0.0183486 + ], + [ + 109.3522754, + -0.0183369 + ], + [ + 109.3522909, + -0.0183275 + ], + [ + 109.3523713, + -0.0182732 + ], + [ + 109.352683, + -0.0180626 + ], + [ + 109.3528669, + -0.0179473 + ], + [ + 109.3530571, + -0.017822 + ], + [ + 109.3531377, + -0.0177709 + ], + [ + 109.3533665, + -0.0176369 + ], + [ + 109.3535136, + -0.0175578 + ], + [ + 109.3537511, + -0.0174236 + ], + [ + 109.353973, + -0.0173036 + ], + [ + 109.3540058, + -0.0172833 + ], + [ + 109.3542036, + -0.0171552 + ], + [ + 109.3543864, + -0.0170616 + ], + [ + 109.3545871, + -0.0169638 + ] + ] + }, + "id": "way/647160657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160660", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361729, + -0.040667 + ], + [ + 109.3616763, + -0.040725 + ] + ] + }, + "id": "way/647160660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160664", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619868, + -0.0408913 + ], + [ + 109.3620092, + -0.0408614 + ] + ] + }, + "id": "way/647160664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160666", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619261, + -0.0409681 + ], + [ + 109.3619868, + -0.0408913 + ] + ] + }, + "id": "way/647160666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160668", + "highway": "secondary", + "name": "Jalan Adisucipto", + "ref": "001.2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626569, + -0.0550415 + ], + [ + 109.3624906, + -0.0547973 + ], + [ + 109.3622968, + -0.0545512 + ], + [ + 109.3620701, + -0.0542635 + ] + ] + }, + "id": "way/647160668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160670", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Jalan Adi Sucipto", + "ref": "001.2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362745, + -0.0551659 + ], + [ + 109.3626569, + -0.0550415 + ] + ] + }, + "id": "way/647160670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160673", + "highway": "secondary", + "name": "Jalan Adisucipto", + "ref": "001.2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3660077, + -0.0601317 + ], + [ + 109.3659994, + -0.0601224 + ], + [ + 109.365807, + -0.0598478 + ], + [ + 109.3653101, + -0.0592198 + ], + [ + 109.3651621, + -0.0590566 + ], + [ + 109.3650832, + -0.058954 + ], + [ + 109.3649791, + -0.0588188 + ], + [ + 109.3649538, + -0.0587859 + ], + [ + 109.3648728, + -0.0586807 + ], + [ + 109.364712, + -0.058461 + ], + [ + 109.3646555, + -0.0583786 + ], + [ + 109.3645993, + -0.058294 + ], + [ + 109.3644557, + -0.0580547 + ], + [ + 109.3642644, + -0.0577715 + ], + [ + 109.3641327, + -0.0575722 + ], + [ + 109.3640864, + -0.0574858 + ], + [ + 109.3639265, + -0.0571876 + ], + [ + 109.3638375, + -0.0570244 + ], + [ + 109.3637225, + -0.0568318 + ], + [ + 109.3636789, + -0.0567488 + ], + [ + 109.3633689, + -0.0561848 + ], + [ + 109.3631575, + -0.055836 + ], + [ + 109.3629863, + -0.0555585 + ], + [ + 109.3629244, + -0.0554557 + ], + [ + 109.3628247, + -0.0552898 + ], + [ + 109.3628002, + -0.0552479 + ], + [ + 109.3627529, + -0.0551744 + ], + [ + 109.362745, + -0.0551659 + ] + ] + }, + "id": "way/647160673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160675", + "bridge": "yes", + "highway": "secondary", + "layer": "1", + "name": "Jalan Adi Sucipto" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3660579, + -0.0601966 + ], + [ + 109.3660077, + -0.0601317 + ] + ] + }, + "id": "way/647160675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160680", + "bridge": "yes", + "highway": "primary", + "layer": "1", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3625223, + -0.025611 + ], + [ + 109.3626166, + -0.0256079 + ] + ] + }, + "id": "way/647160680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647160681", + "highway": "primary", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623509, + -0.0256286 + ], + [ + 109.3624254, + -0.0256237 + ], + [ + 109.3625223, + -0.025611 + ] + ] + }, + "id": "way/647160681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647566163", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499066, + -0.0006105 + ], + [ + 109.3499427, + -0.000631 + ] + ] + }, + "id": "way/647566163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647566164", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342665, + -0.0005123 + ], + [ + 109.3342237, + -0.0005113 + ] + ] + }, + "id": "way/647566164" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647566165", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147332, + 0.0060936 + ], + [ + 109.3148171, + 0.0062603 + ], + [ + 109.3148513, + 0.0063501 + ], + [ + 109.3148734, + 0.0064272 + ], + [ + 109.3149385, + 0.0065842 + ], + [ + 109.3149613, + 0.0066572 + ], + [ + 109.3150672, + 0.0068879 + ], + [ + 109.3151356, + 0.0070442 + ], + [ + 109.3151631, + 0.0071313 + ], + [ + 109.3152436, + 0.0073171 + ], + [ + 109.3152711, + 0.0073975 + ], + [ + 109.315322, + 0.0075383 + ], + [ + 109.3154468, + 0.0078294 + ], + [ + 109.3155393, + 0.0080513 + ], + [ + 109.3156359, + 0.0082746 + ], + [ + 109.3156801, + 0.0083953 + ], + [ + 109.3158585, + 0.0088513 + ] + ] + }, + "id": "way/647566165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/647578718", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178567, + -0.0069248 + ], + [ + 109.3180257, + -0.0067055 + ], + [ + 109.31831, + -0.0063582 + ], + [ + 109.3184022, + -0.0062267 + ], + [ + 109.3186842, + -0.0058566 + ], + [ + 109.3187595, + -0.0057616 + ], + [ + 109.3188272, + -0.0056758 + ], + [ + 109.3189118, + -0.0055854 + ] + ] + }, + "id": "way/647578718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648004099", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535335, + -0.0110755 + ], + [ + 109.354318, + -0.0116223 + ] + ] + }, + "id": "way/648004099" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648004101", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593956, + -0.0144164 + ], + [ + 109.3589031, + -0.014393 + ], + [ + 109.358458, + -0.0143719 + ] + ] + }, + "id": "way/648004101" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648004102", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543864, + -0.0170616 + ], + [ + 109.3543763, + -0.0168456 + ], + [ + 109.354371, + -0.0167497 + ], + [ + 109.354366, + -0.0166059 + ], + [ + 109.3543705, + -0.0165652 + ], + [ + 109.3543783, + -0.0165224 + ], + [ + 109.3543828, + -0.0164887 + ], + [ + 109.3543933, + -0.0164021 + ], + [ + 109.3543994, + -0.0163334 + ], + [ + 109.354396, + -0.016225 + ], + [ + 109.3543967, + -0.0161042 + ], + [ + 109.3544031, + -0.0159618 + ] + ] + }, + "id": "way/648004102" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648020739", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635307, + -0.0118808 + ], + [ + 109.3631083, + -0.0118949 + ], + [ + 109.3629601, + -0.0118989 + ], + [ + 109.3627831, + -0.0119204 + ], + [ + 109.3627455, + -0.0119325 + ], + [ + 109.3627314, + -0.0119452 + ], + [ + 109.3627241, + -0.0119593 + ], + [ + 109.36272, + -0.0121316 + ], + [ + 109.3627167, + -0.0123046 + ], + [ + 109.3627073, + -0.0123429 + ], + [ + 109.3626798, + -0.0123516 + ], + [ + 109.3626375, + -0.0123556 + ], + [ + 109.3625383, + -0.0123496 + ], + [ + 109.3623948, + -0.0123449 + ], + [ + 109.3621393, + -0.0123502 + ], + [ + 109.3619307, + -0.0123599 + ] + ] + }, + "id": "way/648020739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648020740", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618628, + -0.0123485 + ], + [ + 109.3617484, + -0.0123583 + ], + [ + 109.3615191, + -0.0123657 + ], + [ + 109.3612596, + -0.0123771 + ], + [ + 109.3611087, + -0.0123838 + ] + ] + }, + "id": "way/648020740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648020741", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3613419, + -0.0138602 + ], + [ + 109.3613353, + -0.0145309 + ] + ] + }, + "id": "way/648020741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648020742", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3658839, + -0.0148904 + ], + [ + 109.3659742, + -0.0143833 + ], + [ + 109.3660292, + -0.0141138 + ], + [ + 109.3660681, + -0.01391 + ] + ] + }, + "id": "way/648020742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648020743", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651435, + -0.0116441 + ], + [ + 109.3652534, + -0.0116354 + ], + [ + 109.36548, + -0.011626 + ], + [ + 109.365765, + -0.0116059 + ], + [ + 109.3661331, + -0.0115851 + ], + [ + 109.3665522, + -0.0115529 + ], + [ + 109.366976, + -0.011512 + ] + ] + }, + "id": "way/648020743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648022048", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496979, + -0.0434691 + ], + [ + 109.349476, + -0.0437119 + ] + ] + }, + "id": "way/648022048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648022049", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365571, + -0.0378768 + ], + [ + 109.3368307, + -0.0377051 + ] + ] + }, + "id": "way/648022049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648024058", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3712075, + -0.0155266 + ], + [ + 109.3711784, + -0.015646 + ], + [ + 109.3711246, + -0.0159514 + ], + [ + 109.3711204, + -0.0159652 + ], + [ + 109.3711183, + -0.0159699 + ], + [ + 109.3711134, + -0.0159783 + ], + [ + 109.371107, + -0.015984 + ], + [ + 109.3710952, + -0.0159903 + ], + [ + 109.3710833, + -0.0159942 + ], + [ + 109.3710689, + -0.016003 + ], + [ + 109.3710595, + -0.0160126 + ], + [ + 109.3710514, + -0.0160262 + ], + [ + 109.3710315, + -0.0160839 + ], + [ + 109.3709886, + -0.0162046 + ], + [ + 109.3708961, + -0.016446 + ], + [ + 109.3708384, + -0.0166364 + ], + [ + 109.3707566, + -0.0169073 + ], + [ + 109.3707257, + -0.0170213 + ], + [ + 109.37066, + -0.0172023 + ], + [ + 109.3705501, + -0.017543 + ] + ] + }, + "id": "way/648024058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648915821", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640431, + -0.024936 + ], + [ + 109.3640658, + -0.0236276 + ], + [ + 109.3640511, + -0.0235686 + ], + [ + 109.3640283, + -0.0235525 + ], + [ + 109.3636045, + -0.0235619 + ] + ] + }, + "id": "way/648915821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648915822", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636286, + -0.0253804 + ], + [ + 109.3636259, + -0.0249231 + ], + [ + 109.3640431, + -0.024936 + ], + [ + 109.3641946, + -0.0249298 + ], + [ + 109.3642361, + -0.0249419 + ], + [ + 109.3642522, + -0.0249794 + ], + [ + 109.3642491, + -0.0253616 + ], + [ + 109.3642589, + -0.0255829 + ] + ] + }, + "id": "way/648915822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648915823", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362751, + -0.0243766 + ], + [ + 109.3631325, + -0.0243553 + ], + [ + 109.363614, + -0.0243337 + ] + ] + }, + "id": "way/648915823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648915824", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628973, + -0.0236045 + ], + [ + 109.363127, + -0.0235846 + ], + [ + 109.3634556, + -0.0235699 + ], + [ + 109.3636045, + -0.0235619 + ], + [ + 109.3636005, + -0.0236155 + ], + [ + 109.363614, + -0.0243337 + ], + [ + 109.3636259, + -0.0249231 + ], + [ + 109.3631594, + -0.0249526 + ], + [ + 109.362883, + -0.0249579 + ], + [ + 109.3628427, + -0.0249968 + ], + [ + 109.362832, + -0.0250478 + ], + [ + 109.3628521, + -0.0253764 + ], + [ + 109.3628722, + -0.0253898 + ], + [ + 109.362887, + -0.0253938 + ], + [ + 109.3636286, + -0.0253804 + ] + ] + }, + "id": "way/648915824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648917340", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604287, + -0.0234337 + ], + [ + 109.3603653, + -0.0234401 + ], + [ + 109.3597609, + -0.0235069 + ] + ] + }, + "id": "way/648917340" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648917341", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604175, + -0.0228302 + ], + [ + 109.3596885, + -0.0228819 + ], + [ + 109.3592754, + -0.0230227 + ], + [ + 109.3588664, + -0.0229973 + ], + [ + 109.3584909, + -0.0229557 + ], + [ + 109.3585552, + -0.0241049 + ], + [ + 109.358637, + -0.0241063 + ], + [ + 109.3604677, + -0.0239664 + ] + ] + }, + "id": "way/648917341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648921024", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510397, + -0.0205249 + ], + [ + 109.3512107, + -0.0205189 + ], + [ + 109.3513589, + -0.0205196 + ], + [ + 109.3515345, + -0.0205075 + ], + [ + 109.3517739, + -0.020482 + ], + [ + 109.3519121, + -0.0204632 + ], + [ + 109.3520549, + -0.0204344 + ], + [ + 109.3525994, + -0.0203244 + ], + [ + 109.3524384, + -0.0187258 + ], + [ + 109.3524182, + -0.0185895 + ], + [ + 109.3523713, + -0.0182732 + ] + ] + }, + "id": "way/648921024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648921025", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482728, + -0.0186951 + ], + [ + 109.3482441, + -0.0188761 + ], + [ + 109.3482099, + -0.0190625 + ], + [ + 109.3481805, + -0.019214 + ], + [ + 109.3481281, + -0.0194728 + ] + ] + }, + "id": "way/648921025" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954816", + "access": "private", + "highway": "unclassified", + "name": "Jalan Sidas", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335684, + -0.0205444 + ], + [ + 109.335677, + -0.0205732 + ], + [ + 109.3356726, + -0.0206054 + ], + [ + 109.335671, + -0.0206369 + ], + [ + 109.3356694, + -0.0206995 + ] + ] + }, + "id": "way/648954816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954818", + "access": "private", + "highway": "unclassified", + "name": "Jalan Sidas", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356694, + -0.0206995 + ], + [ + 109.3356529, + -0.0206537 + ], + [ + 109.3356458, + -0.0206228 + ], + [ + 109.3356404, + -0.0205843 + ], + [ + 109.3356388, + -0.0205447 + ] + ] + }, + "id": "way/648954818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954820", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356806, + -0.0207723 + ], + [ + 109.3356324, + -0.0207482 + ], + [ + 109.3355989, + -0.0207328 + ], + [ + 109.335572, + -0.0207194 + ], + [ + 109.3355439, + -0.0207073 + ], + [ + 109.3355104, + -0.0206947 + ] + ] + }, + "id": "way/648954820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954822", + "access": "private", + "highway": "residential", + "name": "Jalan Rajawali" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335684, + -0.0205444 + ], + [ + 109.3356712, + -0.0205415 + ], + [ + 109.3356684, + -0.0205409 + ], + [ + 109.3356517, + -0.0205409 + ], + [ + 109.3356388, + -0.0205447 + ] + ] + }, + "id": "way/648954822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954824", + "access": "private", + "highway": "unclassified", + "name": "Jalan Rajawali", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359556, + -0.0201581 + ], + [ + 109.3358664, + -0.0202728 + ], + [ + 109.3357112, + -0.0204921 + ], + [ + 109.3356944, + -0.0205202 + ], + [ + 109.335684, + -0.0205444 + ] + ] + }, + "id": "way/648954824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954826", + "access": "private", + "highway": "unclassified", + "name": "Jalan Rajawali", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356388, + -0.0205447 + ], + [ + 109.3356455, + -0.0205149 + ], + [ + 109.3356606, + -0.0204854 + ], + [ + 109.3356948, + -0.0204351 + ], + [ + 109.3358282, + -0.0202493 + ], + [ + 109.335921, + -0.0201273 + ] + ] + }, + "id": "way/648954826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954829", + "highway": "unclassified", + "name": "Jalan Nurali" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358521, + -0.0246558 + ], + [ + 109.3357865, + -0.0245534 + ], + [ + 109.335649, + -0.0243389 + ], + [ + 109.3355047, + -0.0241137 + ], + [ + 109.3354416, + -0.0240153 + ], + [ + 109.3354017, + -0.0240001 + ] + ] + }, + "id": "way/648954829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954830", + "highway": "tertiary", + "name": "Jalan Zainuddin", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369232, + -0.021918 + ], + [ + 109.336885, + -0.0218587 + ], + [ + 109.3368468, + -0.0218164 + ], + [ + 109.3368065, + -0.0217836 + ], + [ + 109.3367415, + -0.0217467 + ], + [ + 109.3367158, + -0.0217276 + ], + [ + 109.3366691, + -0.021693 + ], + [ + 109.3366416, + -0.0216635 + ], + [ + 109.3366114, + -0.0216065 + ] + ] + }, + "id": "way/648954830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954833", + "highway": "tertiary", + "name": "Jalan Zainuddin", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370068, + -0.0216705 + ], + [ + 109.3369708, + -0.0217507 + ], + [ + 109.3369547, + -0.021795 + ], + [ + 109.3369393, + -0.0218459 + ], + [ + 109.3369232, + -0.021918 + ] + ] + }, + "id": "way/648954833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954835", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398098, + -0.0232658 + ], + [ + 109.3398504, + -0.0232463 + ], + [ + 109.3398987, + -0.0232232 + ] + ] + }, + "id": "way/648954835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954837", + "highway": "trunk", + "name": "Jalan Rahadi Usman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394861, + -0.0228819 + ], + [ + 109.3394061, + -0.0228032 + ], + [ + 109.3393487, + -0.0227468 + ], + [ + 109.3392881, + -0.0226872 + ], + [ + 109.3392234, + -0.0226236 + ] + ] + }, + "id": "way/648954837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954839", + "highway": "trunk", + "name": "Jalan Rahadi Usman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390492, + -0.0222814 + ], + [ + 109.3391987, + -0.022435 + ], + [ + 109.3394444, + -0.0226877 + ], + [ + 109.3395657, + -0.0228125 + ], + [ + 109.339661, + -0.0229105 + ] + ] + }, + "id": "way/648954839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954841", + "highway": "service", + "name": "Jalan Bardan", + "toll": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401357, + -0.0222703 + ], + [ + 109.3401335, + -0.0222958 + ], + [ + 109.3401065, + -0.0223308 + ], + [ + 109.339661, + -0.0229105 + ] + ] + }, + "id": "way/648954841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954843", + "highway": "service", + "name": "Jalan Bardan", + "toll": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395657, + -0.0228125 + ], + [ + 109.3396457, + -0.0227903 + ], + [ + 109.3396968, + -0.0227528 + ], + [ + 109.340107, + -0.0222677 + ], + [ + 109.3401357, + -0.0222703 + ] + ] + }, + "id": "way/648954843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648954848", + "highway": "trunk", + "name": "Jalan Rahadi Usman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379281, + -0.0212253 + ], + [ + 109.3380779, + -0.0213437 + ], + [ + 109.3384064, + -0.0216202 + ], + [ + 109.3385005, + -0.021717 + ], + [ + 109.3386742, + -0.0218956 + ], + [ + 109.3387289, + -0.021952 + ], + [ + 109.3388526, + -0.0220791 + ], + [ + 109.3390492, + -0.0222814 + ] + ] + }, + "id": "way/648954848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988489", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266485, + -0.019777 + ], + [ + 109.3266075, + -0.0197703 + ] + ] + }, + "id": "way/648988489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988490", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263955, + -0.0205834 + ], + [ + 109.326465, + -0.0205967 + ] + ] + }, + "id": "way/648988490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988491", + "highway": "tertiary", + "name": "Jalan Merdeka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329065, + -0.0189213 + ], + [ + 109.329063, + -0.0188848 + ] + ] + }, + "id": "way/648988491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988492", + "highway": "tertiary", + "name": "Jalan Merdeka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290382, + -0.0186554 + ], + [ + 109.3290462, + -0.0187279 + ] + ] + }, + "id": "way/648988492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988493", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326647, + -0.0193019 + ], + [ + 109.3270392, + -0.0192354 + ], + [ + 109.327459, + -0.0191621 + ], + [ + 109.3279539, + -0.0190794 + ], + [ + 109.3282677, + -0.0190262 + ], + [ + 109.329065, + -0.0189213 + ] + ] + }, + "id": "way/648988493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988494", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271787, + -0.0247139 + ], + [ + 109.3274362, + -0.0252892 + ], + [ + 109.3275632, + -0.0254892 + ], + [ + 109.3275789, + -0.02551 + ] + ] + }, + "id": "way/648988494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988495", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280368, + -0.0250673 + ], + [ + 109.3280519, + -0.0250842 + ] + ] + }, + "id": "way/648988495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988496", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262429, + -0.0206876 + ], + [ + 109.3262764, + -0.0206943 + ] + ] + }, + "id": "way/648988496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988497", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262678, + -0.0205607 + ], + [ + 109.326298, + -0.0205661 + ] + ] + }, + "id": "way/648988497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988498", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264568, + -0.0197551 + ], + [ + 109.3264997, + -0.0197651 + ] + ] + }, + "id": "way/648988498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988499", + "access": "yes", + "highway": "primary", + "name": "Jalan K.H. Wahid Hasyim", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265292, + -0.019289 + ], + [ + 109.326527, + -0.0193177 + ] + ] + }, + "id": "way/648988499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988500", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336944, + -0.0245876 + ], + [ + 109.3333076, + -0.0250263 + ] + ] + }, + "id": "way/648988500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988501", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329799, + -0.0241422 + ], + [ + 109.3325432, + -0.0247394 + ] + ] + }, + "id": "way/648988501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988502", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331856, + -0.0170025 + ], + [ + 109.3330541, + -0.0168899 + ] + ] + }, + "id": "way/648988502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988503", + "highway": "trunk", + "name": "Jalan Komodor Yos Sudarso", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323561, + -0.0172142 + ], + [ + 109.3322749, + -0.017147 + ], + [ + 109.3321938, + -0.0170907 + ], + [ + 109.3319175, + -0.0168852 + ], + [ + 109.3314579, + -0.0165341 + ], + [ + 109.3312155, + -0.0163501 + ], + [ + 109.3310693, + -0.0162354 + ], + [ + 109.3308274, + -0.0161129 + ], + [ + 109.3307291, + -0.0160507 + ], + [ + 109.3304509, + -0.0158634 + ], + [ + 109.3302915, + -0.0157505 + ], + [ + 109.3302361, + -0.0157134 + ], + [ + 109.3301438, + -0.0156463 + ], + [ + 109.3299763, + -0.0155246 + ], + [ + 109.3298182, + -0.0154194 + ], + [ + 109.3297138, + -0.0153467 + ], + [ + 109.3295374, + -0.0152248 + ], + [ + 109.3293792, + -0.0151018 + ], + [ + 109.3293337, + -0.0150067 + ] + ] + }, + "id": "way/648988503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988505", + "highway": "trunk", + "name": "Jalan Komodor Yos Sudarso", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326575, + -0.0174926 + ], + [ + 109.3325663, + -0.0174109 + ] + ] + }, + "id": "way/648988505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988506", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293337, + -0.0150067 + ], + [ + 109.3294352, + -0.0150231 + ], + [ + 109.3296058, + -0.0151538 + ], + [ + 109.3298692, + -0.0153457 + ], + [ + 109.3302938, + -0.0156477 + ], + [ + 109.3303459, + -0.0156838 + ], + [ + 109.3304791, + -0.0157762 + ], + [ + 109.3308306, + -0.0160235 + ], + [ + 109.3310954, + -0.0161972 + ], + [ + 109.3316431, + -0.0165921 + ], + [ + 109.3317953, + -0.0167083 + ], + [ + 109.3318442, + -0.0167466 + ], + [ + 109.3321606, + -0.0169941 + ], + [ + 109.3322629, + -0.0170728 + ], + [ + 109.3323891, + -0.0171727 + ] + ] + }, + "id": "way/648988506" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988507", + "access": "no", + "highway": "service", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361065, + -0.0191718 + ], + [ + 109.3362605, + -0.0189732 + ], + [ + 109.3363163, + -0.0189023 + ], + [ + 109.3363492, + -0.0188321 + ], + [ + 109.3336598, + -0.0165916 + ], + [ + 109.3336416, + -0.0165873 + ], + [ + 109.3336253, + -0.0165927 + ], + [ + 109.3335653, + -0.0166671 + ], + [ + 109.3333183, + -0.0169731 + ], + [ + 109.3332405, + -0.0170642 + ], + [ + 109.3331856, + -0.0170025 + ] + ] + }, + "id": "way/648988507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988508", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319638, + -0.0194514 + ], + [ + 109.3321402, + -0.0196566 + ], + [ + 109.3320369, + -0.0197451 + ], + [ + 109.3319537, + -0.0198242 + ], + [ + 109.3317769, + -0.0200009 + ], + [ + 109.3317301, + -0.0200388 + ], + [ + 109.3316594, + -0.020074 + ], + [ + 109.3315787, + -0.0201095 + ], + [ + 109.3315073, + -0.0201285 + ], + [ + 109.3314909, + -0.0201286 + ], + [ + 109.3314761, + -0.0201249 + ], + [ + 109.3314627, + -0.0201152 + ] + ] + }, + "id": "way/648988508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988509", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324996, + -0.0193696 + ], + [ + 109.332342, + -0.0194862 + ], + [ + 109.3322702, + -0.0195473 + ], + [ + 109.3321402, + -0.0196566 + ], + [ + 109.3322253, + -0.019739 + ], + [ + 109.3322931, + -0.0198128 + ], + [ + 109.3324295, + -0.0199492 + ] + ] + }, + "id": "way/648988509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648988510", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329823, + -0.0193031 + ], + [ + 109.3327331, + -0.0190988 + ], + [ + 109.3327243, + -0.0190973 + ], + [ + 109.3327132, + -0.0191003 + ], + [ + 109.332639, + -0.0191778 + ], + [ + 109.3325794, + -0.019265 + ], + [ + 109.3324996, + -0.0193696 + ], + [ + 109.3325807, + -0.0194366 + ], + [ + 109.3327587, + -0.0195762 + ] + ] + }, + "id": "way/648988510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/648996275", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3235967, + -0.0233795 + ], + [ + 109.3238863, + -0.0242646 + ] + ] + }, + "id": "way/648996275" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649016423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171084, + -0.024341 + ], + [ + 109.316757, + -0.0230697 + ], + [ + 109.3164486, + -0.0216749 + ], + [ + 109.3163737, + -0.021355 + ] + ] + }, + "id": "way/649016423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649016426", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3158531, + -0.0162274 + ], + [ + 109.3162835, + -0.0177328 + ] + ] + }, + "id": "way/649016426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649016429", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3138321, + -0.0166967 + ], + [ + 109.3142876, + -0.0179854 + ] + ] + }, + "id": "way/649016429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649016431", + "highway": "unclassified", + "name": "Jalan Raden Eddy Martadinata" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140714, + -0.0087349 + ], + [ + 109.314003, + -0.0088943 + ], + [ + 109.3138717, + -0.0092 + ], + [ + 109.3136353, + -0.0097503 + ], + [ + 109.3135799, + -0.009899 + ], + [ + 109.3135011, + -0.0100627 + ], + [ + 109.3133895, + -0.0103368 + ], + [ + 109.3132484, + -0.0106831 + ], + [ + 109.3131868, + -0.0108343 + ] + ] + }, + "id": "way/649016431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649016435", + "highway": "unclassified", + "name": "Jalan Raden Eddy Martadinata" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163761, + -0.0159421 + ], + [ + 109.3163243, + -0.0160227 + ], + [ + 109.316273, + -0.0160694 + ], + [ + 109.3158531, + -0.0162274 + ], + [ + 109.3153076, + -0.0164144 + ], + [ + 109.315167, + -0.016437 + ], + [ + 109.3149356, + -0.016482 + ], + [ + 109.3147038, + -0.016516 + ], + [ + 109.3146134, + -0.0165303 + ], + [ + 109.3142547, + -0.0166013 + ], + [ + 109.3138321, + -0.0166967 + ], + [ + 109.3133949, + -0.0167732 + ], + [ + 109.3129885, + -0.0168335 + ], + [ + 109.3128965, + -0.0168541 + ] + ] + }, + "id": "way/649016435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649016438", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110599, + -0.0172321 + ], + [ + 109.3110318, + -0.0170924 + ], + [ + 109.3110044, + -0.0170528 + ], + [ + 109.3109628, + -0.0170307 + ], + [ + 109.3100642, + -0.0167209 + ], + [ + 109.3095607, + -0.0165579 + ], + [ + 109.3090202, + -0.0163769 + ], + [ + 109.3090061, + -0.0163635 + ], + [ + 109.3090024, + -0.0163402 + ] + ] + }, + "id": "way/649016438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649016441", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114476, + -0.016847 + ], + [ + 109.3099616, + -0.0163333 + ], + [ + 109.3094051, + -0.0161362 + ], + [ + 109.3090658, + -0.0160235 + ], + [ + 109.3090281, + -0.0160117 + ] + ] + }, + "id": "way/649016441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649016444", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113765, + -0.0171527 + ], + [ + 109.3114476, + -0.016847 + ], + [ + 109.3115449, + -0.0165473 + ], + [ + 109.3115515, + -0.0165164 + ], + [ + 109.3115535, + -0.0164942 + ], + [ + 109.3115448, + -0.0164788 + ], + [ + 109.31152, + -0.0164695 + ], + [ + 109.3114858, + -0.0164647 + ], + [ + 109.3111445, + -0.0164117 + ], + [ + 109.3110466, + -0.016393 + ], + [ + 109.3109346, + -0.0163582 + ], + [ + 109.310734, + -0.0162772 + ], + [ + 109.3100863, + -0.0160155 + ], + [ + 109.3098731, + -0.0159364 + ], + [ + 109.3095097, + -0.0158129 + ], + [ + 109.3090645, + -0.0157066 + ], + [ + 109.3090482, + -0.0157025 + ] + ] + }, + "id": "way/649016444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649062530", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061633, + -0.0246743 + ], + [ + 109.305554, + -0.0231615 + ] + ] + }, + "id": "way/649062530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649062531", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066155, + -0.0186787 + ], + [ + 109.3062324, + -0.0178016 + ], + [ + 109.3060309, + -0.0178716 + ], + [ + 109.3058339, + -0.0179573 + ] + ] + }, + "id": "way/649062531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649062532", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048178, + -0.0167877 + ], + [ + 109.3051562, + -0.0166231 + ] + ] + }, + "id": "way/649062532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649334214", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025005, + -0.0208246 + ], + [ + 109.3018788, + -0.0194997 + ] + ] + }, + "id": "way/649334214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649334215", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2985848, + -0.0226939 + ], + [ + 109.2989767, + -0.0234157 + ], + [ + 109.2992288, + -0.0238851 + ], + [ + 109.2994755, + -0.024325 + ], + [ + 109.3004717, + -0.0261777 + ] + ] + }, + "id": "way/649334215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649338094", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305536, + -0.0302755 + ], + [ + 109.3054032, + -0.0296545 + ] + ] + }, + "id": "way/649338094" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649338095", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.30586, + -0.0302119 + ], + [ + 109.305731, + -0.0295139 + ] + ] + }, + "id": "way/649338095" + }, + { + "type": "Feature", + "properties": { + "@id": "way/649370314", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3716001, + -0.0296863 + ], + [ + 109.3714969, + -0.0295298 + ], + [ + 109.3713728, + -0.0293601 + ], + [ + 109.37123, + -0.0291724 + ], + [ + 109.3711167, + -0.0289927 + ], + [ + 109.3710637, + -0.0289122 + ], + [ + 109.3709799, + -0.0287519 + ], + [ + 109.3708914, + -0.0285555 + ], + [ + 109.3707192, + -0.0281564 + ], + [ + 109.3706828, + -0.028072 + ], + [ + 109.3705742, + -0.0278507 + ], + [ + 109.3704716, + -0.0276314 + ] + ] + }, + "id": "way/649370314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/652690610", + "highway": "unclassified", + "name": "Jalan Raden Eddy Martadinata" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141043, + -0.0086614 + ], + [ + 109.3140714, + -0.0087349 + ] + ] + }, + "id": "way/652690610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653062979", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.299493, + -0.0115457 + ], + [ + 109.2995493, + -0.0118231 + ] + ] + }, + "id": "way/653062979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653066639", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112367, + -0.0097533 + ], + [ + 109.3110077, + -0.0102742 + ], + [ + 109.3110025, + -0.010285 + ], + [ + 109.3108644, + -0.0105716 + ] + ] + }, + "id": "way/653066639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653070041", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33297, + -0.0168121 + ], + [ + 109.3330541, + -0.0168899 + ] + ] + }, + "id": "way/653070041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653070043", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328531, + -0.0169345 + ], + [ + 109.3329309, + -0.0168523 + ], + [ + 109.33297, + -0.0168121 + ], + [ + 109.3330803, + -0.0166827 + ], + [ + 109.3331416, + -0.0165992 + ], + [ + 109.3331859, + -0.0165398 + ], + [ + 109.3332369, + -0.0164718 + ] + ] + }, + "id": "way/653070043" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653073658", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372095, + -0.0130248 + ], + [ + 109.3373872, + -0.0128719 + ], + [ + 109.3375138, + -0.0127528 + ] + ] + }, + "id": "way/653073658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653074341", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433301, + -0.0157344 + ], + [ + 109.343582, + -0.0158318 + ], + [ + 109.3438546, + -0.0159373 + ], + [ + 109.3440721, + -0.0160214 + ], + [ + 109.3441081, + -0.0159285 + ], + [ + 109.3442805, + -0.0155447 + ], + [ + 109.3446356, + -0.0157203 + ] + ] + }, + "id": "way/653074341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653088589", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522701, + -0.0237167 + ], + [ + 109.3522353, + -0.0236711 + ] + ] + }, + "id": "way/653088589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653842881", + "highway": "residential", + "lanes": "1", + "motorcar": "destination", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525592, + -0.0238649 + ], + [ + 109.352429, + -0.0238214 + ], + [ + 109.3523278, + -0.0237905 + ], + [ + 109.3522879, + -0.0237516 + ], + [ + 109.3522701, + -0.0237167 + ] + ] + }, + "id": "way/653842881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653842882", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364853, + -0.0204914 + ], + [ + 109.336541, + -0.0204266 + ], + [ + 109.3368642, + -0.0200509 + ] + ] + }, + "id": "way/653842882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653842883", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3382704, + -0.023991 + ], + [ + 109.3384776, + -0.0244203 + ] + ] + }, + "id": "way/653842883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653842884", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498736, + -0.0187325 + ], + [ + 109.3498635, + -0.019169 + ] + ] + }, + "id": "way/653842884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653864085", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551367, + -0.0117169 + ], + [ + 109.3554033, + -0.0117125 + ], + [ + 109.3556119, + -0.011724 + ] + ] + }, + "id": "way/653864085" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653864585", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563826, + -0.0163132 + ], + [ + 109.3563974, + -0.0156574 + ], + [ + 109.3564558, + -0.014557 + ] + ] + }, + "id": "way/653864585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653866048", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628052, + -0.0177019 + ], + [ + 109.3627643, + -0.017716 + ], + [ + 109.3627408, + -0.0177374 + ], + [ + 109.362714, + -0.0177998 + ], + [ + 109.3626892, + -0.017832 + ], + [ + 109.3626416, + -0.0178857 + ], + [ + 109.3624726, + -0.0179252 + ], + [ + 109.3623144, + -0.0179467 + ], + [ + 109.3622744, + -0.017956 + ], + [ + 109.3622319, + -0.0179795 + ], + [ + 109.362203, + -0.018007 + ], + [ + 109.3621856, + -0.0180459 + ], + [ + 109.3621829, + -0.0181384 + ] + ] + }, + "id": "way/653866048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653867128", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361997, + -0.0133527 + ], + [ + 109.3615258, + -0.0133775 + ], + [ + 109.3614869, + -0.0133775 + ], + [ + 109.3614681, + -0.0133869 + ], + [ + 109.3614574, + -0.013407 + ], + [ + 109.3614547, + -0.0134553 + ] + ] + }, + "id": "way/653867128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653867721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624297, + -0.0154737 + ], + [ + 109.3624847, + -0.0153436 + ], + [ + 109.3625101, + -0.0153248 + ], + [ + 109.362545, + -0.0153141 + ], + [ + 109.3626174, + -0.0152966 + ], + [ + 109.3626295, + -0.0152846 + ], + [ + 109.3626356, + -0.0152598 + ], + [ + 109.3626536, + -0.0149788 + ], + [ + 109.3626563, + -0.0148749 + ], + [ + 109.3626603, + -0.0147723 + ], + [ + 109.3626651, + -0.0146716 + ] + ] + }, + "id": "way/653867721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653869134", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3690426, + -0.013806 + ], + [ + 109.3690883, + -0.013694 + ], + [ + 109.3691386, + -0.0135592 + ], + [ + 109.3691882, + -0.0134177 + ], + [ + 109.3692351, + -0.0132722 + ], + [ + 109.3692693, + -0.0131737 + ], + [ + 109.3695473, + -0.0123504 + ] + ] + }, + "id": "way/653869134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653870348", + "highway": "residential", + "name": "KOMPLEK PESONA JUWITA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3706922, + -0.0154872 + ], + [ + 109.3709484, + -0.0146569 + ], + [ + 109.3712393, + -0.0137248 + ] + ] + }, + "id": "way/653870348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653871610", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548229, + -0.0134989 + ], + [ + 109.3547944, + -0.013715 + ], + [ + 109.3547835, + -0.0138153 + ], + [ + 109.3547793, + -0.0142466 + ] + ] + }, + "id": "way/653871610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653875411", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627233, + -0.0225028 + ], + [ + 109.3626671, + -0.0224984 + ], + [ + 109.3622755, + -0.0224999 + ], + [ + 109.3619723, + -0.0225011 + ], + [ + 109.3613461, + -0.0227633 + ], + [ + 109.3611838, + -0.0228283 + ], + [ + 109.3609625, + -0.0228779 + ], + [ + 109.3605953, + -0.0229131 + ] + ] + }, + "id": "way/653875411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/653875913", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584909, + -0.0229557 + ], + [ + 109.3584815, + -0.0228685 + ], + [ + 109.3584493, + -0.0228229 + ], + [ + 109.3583849, + -0.0228041 + ], + [ + 109.3578592, + -0.0227934 + ], + [ + 109.3578163, + -0.0227599 + ], + [ + 109.3578096, + -0.0226875 + ], + [ + 109.3578082, + -0.0219244 + ], + [ + 109.3577439, + -0.0217983 + ], + [ + 109.3574287, + -0.0217903 + ], + [ + 109.3573871, + -0.021463 + ] + ] + }, + "id": "way/653875913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654085299", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3164686, + -0.0488376 + ], + [ + 109.3163084, + -0.0487113 + ], + [ + 109.3162447, + -0.0486563 + ], + [ + 109.3161814, + -0.0485909 + ], + [ + 109.3160767, + -0.0485027 + ] + ] + }, + "id": "way/654085299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654088775", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325055, + -0.0270128 + ], + [ + 109.3328649, + -0.0266618 + ] + ] + }, + "id": "way/654088775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654090005", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3007134, + -0.0216495 + ], + [ + 109.2999154, + -0.0201622 + ] + ] + }, + "id": "way/654090005" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654100921", + "highway": "tertiary", + "name": "Jalan Pattimura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385281, + -0.0268533 + ], + [ + 109.3384434, + -0.0267336 + ], + [ + 109.3383569, + -0.0265874 + ], + [ + 109.3383475, + -0.026513 + ] + ] + }, + "id": "way/654100921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654101765", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392266, + -0.0354083 + ], + [ + 109.3389486, + -0.0356251 + ], + [ + 109.3388785, + -0.0356781 + ], + [ + 109.3388651, + -0.0356854 + ], + [ + 109.338847, + -0.0356875 + ], + [ + 109.3388283, + -0.0356834 + ], + [ + 109.3388145, + -0.0356767 + ], + [ + 109.3386626, + -0.0354829 + ] + ] + }, + "id": "way/654101765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654102213", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334139, + -0.0301128 + ], + [ + 109.3332513, + -0.0302513 + ], + [ + 109.333093, + -0.0303733 + ] + ] + }, + "id": "way/654102213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654102788", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "motorcar": "destination", + "motorcycle": "yes", + "name": "Gang Dua", + "name:id": "Gang Dua" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330674, + -0.0333128 + ], + [ + 109.3328975, + -0.0331551 + ], + [ + 109.3327895, + -0.0330536 + ], + [ + 109.3326498, + -0.0329278 + ], + [ + 109.3326075, + -0.0329062 + ], + [ + 109.3325875, + -0.0328942 + ], + [ + 109.3325596, + -0.0328715 + ], + [ + 109.3325043, + -0.0328175 + ], + [ + 109.3324023, + -0.0327277 + ], + [ + 109.3323051, + -0.0326633 + ], + [ + 109.3321075, + -0.0325017 + ] + ] + }, + "id": "way/654102788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654108022", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437608, + -0.0172298 + ], + [ + 109.3437683, + -0.017208 + ], + [ + 109.3437692, + -0.017196 + ], + [ + 109.3437601, + -0.0171877 + ], + [ + 109.3435927, + -0.0171108 + ], + [ + 109.3434894, + -0.0170659 + ], + [ + 109.3433926, + -0.0170255 + ] + ] + }, + "id": "way/654108022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654108399", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461334, + -0.0169702 + ], + [ + 109.3460127, + -0.0169352 + ], + [ + 109.3459418, + -0.01692 + ], + [ + 109.3458588, + -0.01691 + ], + [ + 109.3456392, + -0.016872 + ] + ] + }, + "id": "way/654108399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654111854", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3698812, + -0.0349976 + ], + [ + 109.3715151, + -0.0333835 + ], + [ + 109.3715351, + -0.0333638 + ], + [ + 109.3720077, + -0.0328983 + ] + ] + }, + "id": "way/654111854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654112880", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.380318, + -0.0300728 + ], + [ + 109.3804163, + -0.0293031 + ] + ] + }, + "id": "way/654112880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654113140", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3797094, + -0.0297252 + ], + [ + 109.3797018, + -0.0295613 + ], + [ + 109.3796957, + -0.0293963 + ], + [ + 109.3796884, + -0.0291999 + ] + ] + }, + "id": "way/654113140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654116646", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571293, + -0.0316081 + ], + [ + 109.3571213, + -0.0315942 + ] + ] + }, + "id": "way/654116646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654127195", + "highway": "primary_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362475, + -0.0253716 + ], + [ + 109.3625296, + -0.0254321 + ], + [ + 109.3625571, + -0.0254623 + ], + [ + 109.3625808, + -0.0254845 + ], + [ + 109.3626164, + -0.0255216 + ], + [ + 109.3626806, + -0.0255572 + ], + [ + 109.3628245, + -0.0255943 + ] + ] + }, + "id": "way/654127195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654132711", + "highway": "trunk", + "maxweight": "5", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621302, + -0.0265194 + ], + [ + 109.3614454, + -0.0286201 + ], + [ + 109.3610447, + -0.0299037 + ], + [ + 109.3609359, + -0.0301556 + ], + [ + 109.3604947, + -0.031043 + ], + [ + 109.3602569, + -0.0314702 + ], + [ + 109.3601695, + -0.0316023 + ], + [ + 109.3599665, + -0.0318549 + ], + [ + 109.3594254, + -0.0323824 + ], + [ + 109.3587817, + -0.0329406 + ], + [ + 109.3567403, + -0.0342099 + ], + [ + 109.3566393, + -0.0342695 + ], + [ + 109.35651, + -0.0343464 + ], + [ + 109.3563591, + -0.0344417 + ], + [ + 109.3560881, + -0.0346032 + ], + [ + 109.356034, + -0.0346354 + ], + [ + 109.3554613, + -0.0349908 + ], + [ + 109.3553486, + -0.0350558 + ], + [ + 109.3550469, + -0.0352412 + ], + [ + 109.3547371, + -0.0354333 + ], + [ + 109.3546828, + -0.0354689 + ], + [ + 109.3545768, + -0.0355319 + ], + [ + 109.3544716, + -0.0355855 + ], + [ + 109.3544018, + -0.0356184 + ], + [ + 109.3542704, + -0.0356734 + ] + ] + }, + "id": "way/654132711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654145205", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434812, + -0.0601432 + ], + [ + 109.3436515, + -0.0599688 + ], + [ + 109.3440404, + -0.0595933 + ], + [ + 109.3439956, + -0.059549 + ], + [ + 109.3438587, + -0.0594491 + ], + [ + 109.3438427, + -0.0594458 + ], + [ + 109.343734, + -0.0594659 + ], + [ + 109.3437052, + -0.05948 + ], + [ + 109.3434462, + -0.0597631 + ] + ] + }, + "id": "way/654145205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654147702", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449904, + -0.0623165 + ], + [ + 109.3447711, + -0.0620015 + ] + ] + }, + "id": "way/654147702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654147703", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448515, + -0.062463 + ], + [ + 109.3446081, + -0.0623014 + ], + [ + 109.3445088, + -0.0622355 + ] + ] + }, + "id": "way/654147703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654147704", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453266, + -0.0620009 + ], + [ + 109.3452715, + -0.0620527 + ], + [ + 109.3452255, + -0.0620958 + ], + [ + 109.3450693, + -0.0622424 + ], + [ + 109.3450071, + -0.0623008 + ], + [ + 109.3449904, + -0.0623165 + ], + [ + 109.3448515, + -0.062463 + ], + [ + 109.3445234, + -0.062809 + ] + ] + }, + "id": "way/654147704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654153838", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555834, + -0.0585308 + ], + [ + 109.3555461, + -0.0584946 + ] + ] + }, + "id": "way/654153838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654153839", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354588, + -0.0596217 + ], + [ + 109.3546403, + -0.0596626 + ] + ] + }, + "id": "way/654153839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654153840", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542025, + -0.0601753 + ], + [ + 109.3541547, + -0.0601342 + ] + ] + }, + "id": "way/654153840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654154541", + "highway": "trunk_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521492, + -0.0586911 + ], + [ + 109.3522442, + -0.0586086 + ] + ] + }, + "id": "way/654154541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654154723", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358725, + -0.054578 + ], + [ + 109.3586672, + -0.0545361 + ] + ] + }, + "id": "way/654154723" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654155213", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605443, + -0.0531907 + ], + [ + 109.3605129, + -0.0531342 + ] + ] + }, + "id": "way/654155213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654158832", + "access": "yes", + "bicycle": "yes", + "cycleway": "no", + "foot": "yes", + "highway": "unclassified", + "horse": "no", + "maxspeed": "40", + "name": "Jalan Tebu", + "oneway": "yes", + "sidewalk": "no", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088253, + -0.018107 + ], + [ + 109.3088406, + -0.0178467 + ] + ] + }, + "id": "way/654158832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654180444", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051626, + -0.0110367 + ], + [ + 109.3051034, + -0.0110244 + ] + ] + }, + "id": "way/654180444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/654180448", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060061, + -0.0112114 + ], + [ + 109.3051626, + -0.0110367 + ] + ] + }, + "id": "way/654180448" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655625498", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476278, + -0.0174449 + ], + [ + 109.3476963, + -0.0174263 + ], + [ + 109.3477406, + -0.0173727 + ], + [ + 109.3478193, + -0.0172041 + ], + [ + 109.3478931, + -0.0170237 + ], + [ + 109.3479473, + -0.0169053 + ], + [ + 109.3479945, + -0.0168047 + ], + [ + 109.3480901, + -0.016621 + ], + [ + 109.3481175, + -0.0165546 + ], + [ + 109.3481496, + -0.0164755 + ], + [ + 109.3481805, + -0.016395 + ], + [ + 109.3482127, + -0.0163159 + ], + [ + 109.3482597, + -0.0162259 + ], + [ + 109.3483081, + -0.0161154 + ], + [ + 109.3483452, + -0.0160203 + ], + [ + 109.3483993, + -0.0158811 + ], + [ + 109.3484747, + -0.0157249 + ], + [ + 109.348581, + -0.0154757 + ], + [ + 109.3486515, + -0.0153348 + ], + [ + 109.3486958, + -0.0152158 + ], + [ + 109.3487682, + -0.0150765 + ], + [ + 109.3488265, + -0.014949 + ], + [ + 109.3488418, + -0.0149156 + ], + [ + 109.3488748, + -0.0148344 + ], + [ + 109.3489152, + -0.014734 + ], + [ + 109.348941, + -0.0146474 + ], + [ + 109.3490012, + -0.0144913 + ], + [ + 109.3490723, + -0.0143015 + ], + [ + 109.3491445, + -0.0141546 + ], + [ + 109.3492101, + -0.0140071 + ], + [ + 109.3493648, + -0.0136348 + ], + [ + 109.3493995, + -0.0135512 + ], + [ + 109.3494528, + -0.0134067 + ], + [ + 109.3495551, + -0.0131783 + ], + [ + 109.3496704, + -0.0129434 + ] + ] + }, + "id": "way/655625498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655625500", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3716446, + -0.0273768 + ], + [ + 109.3716592, + -0.0276643 + ], + [ + 109.3716866, + -0.0285962 + ], + [ + 109.3717088, + -0.0292776 + ], + [ + 109.3717182, + -0.0293367 + ], + [ + 109.3717343, + -0.0293735 + ], + [ + 109.3717866, + -0.0294567 + ], + [ + 109.3717886, + -0.0294741 + ], + [ + 109.3717765, + -0.0294929 + ], + [ + 109.3716383, + -0.029602 + ] + ] + }, + "id": "way/655625500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856508", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Usaha Bersama 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229335, + -0.0594612 + ], + [ + 109.3228906, + -0.0593774 + ] + ] + }, + "id": "way/655856508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856509", + "highway": "residential", + "name": "Gang Eka Putra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3234753, + -0.0588563 + ], + [ + 109.3238783, + -0.0597135 + ] + ] + }, + "id": "way/655856509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856510", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294622, + -0.066897 + ], + [ + 109.329175, + -0.0666233 + ], + [ + 109.3291369, + -0.0665739 + ] + ] + }, + "id": "way/655856510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856511", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338756, + -0.0590254 + ], + [ + 109.3345168, + -0.0585181 + ] + ] + }, + "id": "way/655856511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856513", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095642, + -0.0629279 + ], + [ + 109.3097437, + -0.0626061 + ], + [ + 109.3099181, + -0.0623352 + ] + ] + }, + "id": "way/655856513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856514", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079835, + -0.0632268 + ], + [ + 109.3082042, + -0.0628596 + ], + [ + 109.3084663, + -0.0624177 + ], + [ + 109.3084697, + -0.0623036 + ] + ] + }, + "id": "way/655856514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856515", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160217, + -0.0511845 + ], + [ + 109.3164251, + -0.0514293 + ], + [ + 109.3172271, + -0.0519765 + ] + ] + }, + "id": "way/655856515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856516", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253872, + -0.0543794 + ], + [ + 109.3255594, + -0.0541518 + ] + ] + }, + "id": "way/655856516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856517", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250763, + -0.0541189 + ], + [ + 109.3252032, + -0.053952 + ] + ] + }, + "id": "way/655856517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856518", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325607, + -0.0487418 + ], + [ + 109.3258101, + -0.048503 + ] + ] + }, + "id": "way/655856518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856519", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247329, + -0.0468076 + ], + [ + 109.3248593, + -0.0469366 + ], + [ + 109.3249207, + -0.0470201 + ], + [ + 109.3249502, + -0.047056 + ], + [ + 109.3249745, + -0.0470746 + ], + [ + 109.3249889, + -0.0470788 + ], + [ + 109.3250057, + -0.0470811 + ], + [ + 109.3250259, + -0.0470798 + ], + [ + 109.3250454, + -0.0470754 + ], + [ + 109.3250642, + -0.0470661 + ], + [ + 109.3250853, + -0.0470506 + ], + [ + 109.3251356, + -0.0470091 + ], + [ + 109.3252134, + -0.046942 + ] + ] + }, + "id": "way/655856519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856520", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3295938, + -0.0447406 + ], + [ + 109.3295062, + -0.044579 + ], + [ + 109.329411, + -0.0443778 + ], + [ + 109.3293621, + -0.0442115 + ], + [ + 109.3293473, + -0.0441116 + ] + ] + }, + "id": "way/655856520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856521", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3137793, + -0.0526672 + ], + [ + 109.3140808, + -0.0523654 + ] + ] + }, + "id": "way/655856521" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856522", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050975, + -0.0529981 + ], + [ + 109.3055033, + -0.0534466 + ] + ] + }, + "id": "way/655856522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856523", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111143, + -0.0549162 + ], + [ + 109.3109386, + -0.0552086 + ], + [ + 109.3108253, + -0.0553916 + ] + ] + }, + "id": "way/655856523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856524", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014688, + -0.053952 + ], + [ + 109.3015425, + -0.0538786 + ] + ] + }, + "id": "way/655856524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856525", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3002865, + -0.0632818 + ], + [ + 109.3006336, + -0.0630285 + ], + [ + 109.3009997, + -0.0627576 + ], + [ + 109.301685, + -0.0622695 + ], + [ + 109.3020766, + -0.0619892 + ], + [ + 109.3024575, + -0.0616982 + ], + [ + 109.3028183, + -0.0614393 + ], + [ + 109.3030111, + -0.0613003 + ], + [ + 109.303128, + -0.0612161 + ], + [ + 109.3033072, + -0.0610912 + ] + ] + }, + "id": "way/655856525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856535", + "highway": "residential", + "name": "Gang Rindang Papan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163849, + -0.0625055 + ], + [ + 109.3164046, + -0.0624764 + ] + ] + }, + "id": "way/655856535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856536", + "highway": "residential", + "name": "Gang Rindang Papan", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163674, + -0.0625283 + ], + [ + 109.3163849, + -0.0625055 + ] + ] + }, + "id": "way/655856536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856537", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156513, + -0.070256 + ], + [ + 109.3154313, + -0.0700948 + ], + [ + 109.3152476, + -0.0699728 + ] + ] + }, + "id": "way/655856537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856541", + "highway": "unclassified", + "name": "Jalan PGA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3162776, + -0.0506262 + ], + [ + 109.3156026, + -0.0500042 + ], + [ + 109.3155638, + -0.049961 + ], + [ + 109.3151157, + -0.0495108 + ], + [ + 109.3149634, + -0.0493577 + ], + [ + 109.3147693, + -0.0491557 + ], + [ + 109.3145501, + -0.0489276 + ] + ] + }, + "id": "way/655856541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2978065, + -0.0498763 + ], + [ + 109.297755, + -0.0499193 + ] + ] + }, + "id": "way/655856542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856543", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.294698, + -0.0463931 + ], + [ + 109.2946442, + -0.0464485 + ] + ] + }, + "id": "way/655856543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856544", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946442, + -0.0464485 + ], + [ + 109.2946402, + -0.0464793 + ], + [ + 109.2946436, + -0.0464961 + ], + [ + 109.2946657, + -0.0465578 + ], + [ + 109.2946583, + -0.0465886 + ], + [ + 109.2944082, + -0.0468495 + ], + [ + 109.2940541, + -0.0472236 + ] + ] + }, + "id": "way/655856544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856545", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2945611, + -0.0463707 + ], + [ + 109.2946233, + -0.0463033 + ] + ] + }, + "id": "way/655856545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856546", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.292536, + -0.0440275 + ], + [ + 109.292475, + -0.0440855 + ] + ] + }, + "id": "way/655856546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856548", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106618, + -0.0446065 + ], + [ + 109.3092661, + -0.0437792 + ], + [ + 109.3077858, + -0.0429164 + ] + ] + }, + "id": "way/655856548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856549", + "highway": "residential", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107092, + -0.0446307 + ], + [ + 109.3106618, + -0.0446065 + ] + ] + }, + "id": "way/655856549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856550", + "highway": "service", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984691, + -0.05109 + ], + [ + 109.2985388, + -0.0511544 + ] + ] + }, + "id": "way/655856550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856551", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2985388, + -0.0511544 + ], + [ + 109.298692, + -0.0513046 + ], + [ + 109.2987017, + -0.051309 + ], + [ + 109.2987172, + -0.0513096 + ], + [ + 109.2988875, + -0.0511437 + ] + ] + }, + "id": "way/655856551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856552", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2985875, + -0.0507228 + ], + [ + 109.2983832, + -0.050974 + ], + [ + 109.2983822, + -0.0509948 + ], + [ + 109.2983993, + -0.0510377 + ], + [ + 109.2984691, + -0.05109 + ] + ] + }, + "id": "way/655856552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856553", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2978669, + -0.0498225 + ], + [ + 109.2978065, + -0.0498763 + ] + ] + }, + "id": "way/655856553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856559", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3007861, + -0.0531885 + ], + [ + 109.3006202, + -0.0530118 + ], + [ + 109.3004988, + -0.0528819 + ], + [ + 109.300238, + -0.0526028 + ], + [ + 109.3001973, + -0.0525573 + ], + [ + 109.2999563, + -0.0522876 + ], + [ + 109.2996364, + -0.0519195 + ], + [ + 109.2995547, + -0.0518229 + ], + [ + 109.2993318, + -0.0515742 + ], + [ + 109.2990918, + -0.051352 + ] + ] + }, + "id": "way/655856559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856560", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014507, + -0.0539718 + ], + [ + 109.3017078, + -0.0542027 + ], + [ + 109.3019096, + -0.0544046 + ] + ] + }, + "id": "way/655856560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856561", + "highway": "residential", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023422, + -0.0545139 + ], + [ + 109.3023784, + -0.054483 + ] + ] + }, + "id": "way/655856561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856562", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022514, + -0.0545794 + ], + [ + 109.3023422, + -0.0545139 + ] + ] + }, + "id": "way/655856562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856563", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046254, + -0.0459952 + ], + [ + 109.3046269, + -0.0460029 + ], + [ + 109.3046257, + -0.0460076 + ], + [ + 109.3046187, + -0.0460153 + ], + [ + 109.3042613, + -0.0462889 + ], + [ + 109.3041447, + -0.0463747 + ], + [ + 109.3041, + -0.0464075 + ], + [ + 109.304027, + -0.0464602 + ], + [ + 109.3040186, + -0.0464665 + ], + [ + 109.3039965, + -0.0464808 + ], + [ + 109.3039822, + -0.0464937 + ], + [ + 109.3039653, + -0.0465095 + ], + [ + 109.3036871, + -0.0467094 + ], + [ + 109.3036749, + -0.0467205 + ], + [ + 109.3036721, + -0.0467378 + ], + [ + 109.3037875, + -0.046901 + ] + ] + }, + "id": "way/655856563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856565", + "highway": "residential", + "import": "yes", + "name": "Gang Mandiri", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995701, + -0.0480679 + ], + [ + 109.2996861, + -0.0479652 + ], + [ + 109.3001742, + -0.0476321 + ], + [ + 109.3021556, + -0.0462894 + ] + ] + }, + "id": "way/655856565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856567", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310456, + -0.0514228 + ], + [ + 109.3094758, + -0.0507505 + ] + ] + }, + "id": "way/655856567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856568", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136604, + -0.0487032 + ], + [ + 109.3138607, + -0.0489292 + ] + ] + }, + "id": "way/655856568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856569", + "highway": "service", + "import": "yes", + "name": "Gang Haji Ngadio", + "service": "alley", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083837, + -0.0510376 + ], + [ + 109.3088692, + -0.051377 + ], + [ + 109.3096551, + -0.0518992 + ] + ] + }, + "id": "way/655856569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856570", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3018245, + -0.0470064 + ], + [ + 109.3023409, + -0.0466503 + ] + ] + }, + "id": "way/655856570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856571", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994895, + -0.0518973 + ], + [ + 109.2995547, + -0.0518229 + ], + [ + 109.2995675, + -0.0518108 + ] + ] + }, + "id": "way/655856571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856572", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3181699, + -0.0592032 + ], + [ + 109.3181897, + -0.0592185 + ], + [ + 109.318198, + -0.0592292 + ], + [ + 109.3182041, + -0.0592399 + ], + [ + 109.3182068, + -0.0592475 + ], + [ + 109.3182076, + -0.0592539 + ], + [ + 109.3182071, + -0.0592627 + ], + [ + 109.3182014, + -0.0592738 + ], + [ + 109.318186, + -0.0593003 + ], + [ + 109.3181588, + -0.0593442 + ], + [ + 109.3179702, + -0.0596206 + ] + ] + }, + "id": "way/655856572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856574", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3043517, + -0.0535665 + ], + [ + 109.3050975, + -0.0529981 + ] + ] + }, + "id": "way/655856574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856575", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225406, + -0.067528 + ], + [ + 109.3230596, + -0.0681019 + ] + ] + }, + "id": "way/655856575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856576", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3139461, + -0.069209 + ], + [ + 109.3136294, + -0.0689787 + ], + [ + 109.3131898, + -0.0686769 + ] + ] + }, + "id": "way/655856576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856579", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316055, + -0.0741557 + ], + [ + 109.3165999, + -0.0746162 + ], + [ + 109.3168196, + -0.0747595 + ], + [ + 109.3173573, + -0.0752034 + ] + ] + }, + "id": "way/655856579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856581", + "highway": "service", + "import": "yes", + "name": "Gang Yauri", + "service": "alley", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101643, + -0.051737 + ], + [ + 109.3085173, + -0.0506195 + ], + [ + 109.3082025, + -0.0503921 + ] + ] + }, + "id": "way/655856581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856582", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105951, + -0.0713445 + ], + [ + 109.3108847, + -0.0709816 + ] + ] + }, + "id": "way/655856582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856583", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077616, + -0.0568842 + ], + [ + 109.3075171, + -0.0567529 + ] + ] + }, + "id": "way/655856583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856584", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334046, + -0.0593839 + ], + [ + 109.3340341, + -0.0593928 + ], + [ + 109.3338326, + -0.059545 + ], + [ + 109.3336763, + -0.0596626 + ], + [ + 109.3335256, + -0.0597672 + ] + ] + }, + "id": "way/655856584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856585", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068525, + -0.0637096 + ], + [ + 109.3070129, + -0.0638048 + ], + [ + 109.3074187, + -0.0640458 + ] + ] + }, + "id": "way/655856585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856586", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300159, + -0.0594545 + ], + [ + 109.3297794, + -0.0595812 + ], + [ + 109.3295344, + -0.0597267 + ], + [ + 109.3293668, + -0.0598015 + ] + ] + }, + "id": "way/655856586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856587", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3076068, + -0.0557583 + ], + [ + 109.3073787, + -0.0559582 + ], + [ + 109.3072714, + -0.0560494 + ], + [ + 109.307164, + -0.0561379 + ] + ] + }, + "id": "way/655856587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856588", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3016714, + -0.0453766 + ], + [ + 109.3025272, + -0.0448694 + ], + [ + 109.3029256, + -0.0446139 + ] + ] + }, + "id": "way/655856588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856589", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112356, + -0.046688 + ], + [ + 109.3115466, + -0.0469305 + ], + [ + 109.3118921, + -0.0471863 + ] + ] + }, + "id": "way/655856589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856590", + "highway": "residential", + "import": "yes", + "source": "digitalglobe", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968832, + -0.0435976 + ], + [ + 109.2959915, + -0.0444249 + ], + [ + 109.2958525, + -0.0445698 + ], + [ + 109.2956822, + -0.0447453 + ], + [ + 109.2954395, + -0.0449612 + ], + [ + 109.2950211, + -0.0454292 + ] + ] + }, + "id": "way/655856590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856591", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098644, + -0.0710189 + ], + [ + 109.3095764, + -0.0713939 + ] + ] + }, + "id": "way/655856591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856592", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302324, + -0.0494706 + ], + [ + 109.3027189, + -0.0492568 + ] + ] + }, + "id": "way/655856592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856593", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3018602, + -0.0550982 + ], + [ + 109.3016058, + -0.0553814 + ], + [ + 109.3011604, + -0.0558773 + ], + [ + 109.300685, + -0.0564067 + ] + ] + }, + "id": "way/655856593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856595", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014242, + -0.0549417 + ], + [ + 109.3010898, + -0.0553138 + ], + [ + 109.300012, + -0.0565088 + ] + ] + }, + "id": "way/655856595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856597", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111941, + -0.066618 + ], + [ + 109.3114478, + -0.0661027 + ], + [ + 109.311577, + -0.0658637 + ] + ] + }, + "id": "way/655856597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856598", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276273, + -0.058096 + ], + [ + 109.3277693, + -0.0583767 + ], + [ + 109.3279408, + -0.0587156 + ] + ] + }, + "id": "way/655856598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856599", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309028, + -0.0657257 + ], + [ + 109.3304717, + -0.0653605 + ] + ] + }, + "id": "way/655856599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856601", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060565, + -0.0491905 + ], + [ + 109.3062133, + -0.0489453 + ], + [ + 109.3062656, + -0.0488698 + ] + ] + }, + "id": "way/655856601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856603", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227149, + -0.0445025 + ], + [ + 109.3228213, + -0.0446136 + ], + [ + 109.3229268, + -0.0447238 + ] + ] + }, + "id": "way/655856603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856604", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317043, + -0.0568526 + ], + [ + 109.3168645, + -0.0567428 + ], + [ + 109.3162095, + -0.0563191 + ] + ] + }, + "id": "way/655856604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856605", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255413, + -0.0504282 + ], + [ + 109.3257911, + -0.0505611 + ] + ] + }, + "id": "way/655856605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856606", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313856, + -0.0668165 + ], + [ + 109.3136136, + -0.0672193 + ], + [ + 109.3131105, + -0.0680463 + ] + ] + }, + "id": "way/655856606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856607", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064673, + -0.044909 + ], + [ + 109.3062466, + -0.0447195 + ] + ] + }, + "id": "way/655856607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856609", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230939, + -0.0653487 + ], + [ + 109.3236549, + -0.0660578 + ], + [ + 109.3241396, + -0.0666322 + ] + ] + }, + "id": "way/655856609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856612", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212269, + -0.0571897 + ], + [ + 109.3214603, + -0.056925 + ] + ] + }, + "id": "way/655856612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856613", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192523, + -0.0567095 + ], + [ + 109.3194801, + -0.0568879 + ], + [ + 109.3196248, + -0.0570013 + ] + ] + }, + "id": "way/655856613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856614", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213926, + -0.0507829 + ], + [ + 109.3209083, + -0.0504175 + ] + ] + }, + "id": "way/655856614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856615", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3197247, + -0.064321 + ], + [ + 109.3200017, + -0.06468 + ] + ] + }, + "id": "way/655856615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856616", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178856, + -0.0518618 + ], + [ + 109.3182021, + -0.0520601 + ], + [ + 109.3184542, + -0.052232 + ] + ] + }, + "id": "way/655856616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856617", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317352, + -0.055022 + ], + [ + 109.3176039, + -0.0552227 + ], + [ + 109.3180046, + -0.0555158 + ] + ] + }, + "id": "way/655856617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856618", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266145, + -0.0542399 + ], + [ + 109.3264803, + -0.054393 + ] + ] + }, + "id": "way/655856618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856619", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2973539, + -0.0458624 + ], + [ + 109.2969879, + -0.046181 + ], + [ + 109.2966378, + -0.046531 + ], + [ + 109.2956994, + -0.0474156 + ] + ] + }, + "id": "way/655856619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856620", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281408, + -0.0581169 + ], + [ + 109.3283402, + -0.0579886 + ], + [ + 109.3286768, + -0.0578091 + ] + ] + }, + "id": "way/655856620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856621", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297, + -0.0536995 + ], + [ + 109.2968507, + -0.0538319 + ], + [ + 109.2968269, + -0.053853 + ], + [ + 109.296808, + -0.053879 + ], + [ + 109.296808, + -0.0539055 + ], + [ + 109.2969961, + -0.0540969 + ] + ] + }, + "id": "way/655856621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856622", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253099, + -0.0477252 + ], + [ + 109.3255667, + -0.0479088 + ] + ] + }, + "id": "way/655856622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856623", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059666, + -0.0562792 + ], + [ + 109.3061885, + -0.056479 + ], + [ + 109.3063935, + -0.0566598 + ] + ] + }, + "id": "way/655856623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856625", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131173, + -0.0755272 + ], + [ + 109.3127961, + -0.0752923 + ] + ] + }, + "id": "way/655856625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856626", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147273, + -0.0553366 + ], + [ + 109.3149406, + -0.0549588 + ] + ] + }, + "id": "way/655856626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856627", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146522, + -0.071174 + ], + [ + 109.3149924, + -0.0714019 + ] + ] + }, + "id": "way/655856627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856628", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059517, + -0.048729 + ], + [ + 109.3058857, + -0.0488399 + ], + [ + 109.3057827, + -0.0490137 + ] + ] + }, + "id": "way/655856628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856629", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240004, + -0.0635177 + ], + [ + 109.324177, + -0.0637277 + ] + ] + }, + "id": "way/655856629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856630", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326236, + -0.074267 + ], + [ + 109.3325257, + -0.0741604 + ], + [ + 109.3324339, + -0.0740719 + ], + [ + 109.3323822, + -0.0740564 + ], + [ + 109.3323568, + -0.0740672 + ], + [ + 109.3318049, + -0.0745713 + ], + [ + 109.3311284, + -0.0752333 + ] + ] + }, + "id": "way/655856630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856632", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155579, + -0.068823 + ], + [ + 109.3158042, + -0.0689942 + ], + [ + 109.3162648, + -0.069313 + ] + ] + }, + "id": "way/655856632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856633", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247065, + -0.0446958 + ], + [ + 109.3248365, + -0.0446769 + ], + [ + 109.324917, + -0.0446628 + ], + [ + 109.324986, + -0.0446413 + ], + [ + 109.3250199, + -0.0446242 + ], + [ + 109.3250471, + -0.0446085 + ], + [ + 109.3250645, + -0.04459 + ], + [ + 109.3250722, + -0.044575 + ], + [ + 109.3250759, + -0.0445572 + ], + [ + 109.3250769, + -0.0445354 + ], + [ + 109.3250712, + -0.0444901 + ], + [ + 109.3250571, + -0.0444465 + ], + [ + 109.3250357, + -0.0444006 + ], + [ + 109.3250105, + -0.0443657 + ], + [ + 109.3249941, + -0.0443493 + ], + [ + 109.3249746, + -0.0443366 + ], + [ + 109.3249542, + -0.0443329 + ], + [ + 109.3247024, + -0.044345 + ] + ] + }, + "id": "way/655856633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856634", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160705, + -0.0584319 + ], + [ + 109.3162132, + -0.0582314 + ], + [ + 109.3163055, + -0.0580694 + ] + ] + }, + "id": "way/655856634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856635", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112504, + -0.0470786 + ], + [ + 109.3110529, + -0.0473388 + ] + ] + }, + "id": "way/655856635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856636", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022302, + -0.0437562 + ], + [ + 109.3018761, + -0.0439843 + ], + [ + 109.3015693, + -0.0441913 + ], + [ + 109.3011844, + -0.044456 + ] + ] + }, + "id": "way/655856636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856637", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3180368, + -0.0569581 + ], + [ + 109.3184624, + -0.0571763 + ] + ] + }, + "id": "way/655856637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856638", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117037, + -0.0541694 + ], + [ + 109.3115017, + -0.0544117 + ] + ] + }, + "id": "way/655856638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856639", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135631, + -0.0514462 + ], + [ + 109.3133439, + -0.0516979 + ] + ] + }, + "id": "way/655856639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856640", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292737, + -0.0698007 + ], + [ + 109.3294854, + -0.0695671 + ] + ] + }, + "id": "way/655856640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856642", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051573, + -0.0556955 + ], + [ + 109.3053084, + -0.0559556 + ], + [ + 109.3054617, + -0.0561635 + ] + ] + }, + "id": "way/655856642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856643", + "highway": "residential", + "import": "yes", + "name": "Gang Kesehatan Dalam", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171115, + -0.055283 + ], + [ + 109.3177802, + -0.0557536 + ], + [ + 109.3178768, + -0.0558201 + ] + ] + }, + "id": "way/655856643" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856644", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148472, + -0.0497924 + ], + [ + 109.3150606, + -0.0500899 + ] + ] + }, + "id": "way/655856644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856646", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270242, + -0.054343 + ], + [ + 109.326874, + -0.0545006 + ], + [ + 109.3268248, + -0.05456 + ] + ] + }, + "id": "way/655856646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856647", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075435, + -0.054878 + ], + [ + 109.3080542, + -0.055233 + ], + [ + 109.3085487, + -0.0555831 + ] + ] + }, + "id": "way/655856647" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856649", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212314, + -0.052482 + ], + [ + 109.3214747, + -0.0521173 + ] + ] + }, + "id": "way/655856649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856650", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260812, + -0.0680275 + ], + [ + 109.3258034, + -0.0676171 + ], + [ + 109.3255573, + -0.0672573 + ], + [ + 109.3253143, + -0.0669135 + ], + [ + 109.3249874, + -0.0664631 + ], + [ + 109.3246767, + -0.0660339 + ] + ] + }, + "id": "way/655856650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856652", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317814, + -0.0671362 + ], + [ + 109.3178174, + -0.0671407 + ] + ] + }, + "id": "way/655856652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856653", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026606, + -0.0473209 + ], + [ + 109.3033248, + -0.0468631 + ] + ] + }, + "id": "way/655856653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856654", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318686, + -0.0539136 + ], + [ + 109.33211, + -0.0538149 + ] + ] + }, + "id": "way/655856654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856655", + "highway": "residential", + "import": "yes", + "name": "Gang purnama V", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326079, + -0.0507141 + ], + [ + 109.3323299, + -0.0505163 + ], + [ + 109.3312135, + -0.0495432 + ] + ] + }, + "id": "way/655856655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856656", + "highway": "residential", + "import": "yes", + "name": "Gang purnama III B", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341799, + -0.0502765 + ], + [ + 109.3340626, + -0.0501117 + ], + [ + 109.3339244, + -0.049951 + ], + [ + 109.3336422, + -0.049702 + ], + [ + 109.3333767, + -0.0494754 + ] + ] + }, + "id": "way/655856656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856657", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236088, + -0.0649414 + ], + [ + 109.3242787, + -0.0657571 + ], + [ + 109.3244509, + -0.0659609 + ], + [ + 109.3245951, + -0.0661183 + ] + ] + }, + "id": "way/655856657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856658", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343854, + -0.0588772 + ], + [ + 109.3347579, + -0.0592901 + ], + [ + 109.3350208, + -0.0595841 + ] + ] + }, + "id": "way/655856658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856659", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265887, + -0.060448 + ], + [ + 109.3266934, + -0.0604175 + ], + [ + 109.3268321, + -0.0603707 + ], + [ + 109.3270907, + -0.0602535 + ] + ] + }, + "id": "way/655856659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856661", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206549, + -0.0461347 + ], + [ + 109.320728, + -0.0460649 + ] + ] + }, + "id": "way/655856661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856662", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255302, + -0.0447195 + ], + [ + 109.3255228, + -0.0447433 + ], + [ + 109.3255208, + -0.0447573 + ], + [ + 109.3255232, + -0.0447755 + ], + [ + 109.3255272, + -0.0447922 + ], + [ + 109.3255332, + -0.0448147 + ], + [ + 109.3255354, + -0.0448264 + ], + [ + 109.3255372, + -0.0448373 + ], + [ + 109.3255371, + -0.0448459 + ], + [ + 109.3255346, + -0.0448584 + ], + [ + 109.3255289, + -0.0448685 + ], + [ + 109.3255185, + -0.0448794 + ], + [ + 109.325489, + -0.0448992 + ], + [ + 109.3254487, + -0.044925 + ], + [ + 109.3253361, + -0.0449873 + ], + [ + 109.3251718, + -0.0450705 + ], + [ + 109.3250819, + -0.0451074 + ], + [ + 109.3249921, + -0.0451335 + ], + [ + 109.3249103, + -0.0451523 + ], + [ + 109.3247198, + -0.0451825 + ] + ] + }, + "id": "way/655856662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856666", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079705, + -0.055491 + ], + [ + 109.3077153, + -0.0558436 + ] + ] + }, + "id": "way/655856666" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856667", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034952, + -0.0536621 + ], + [ + 109.3032433, + -0.053329 + ] + ] + }, + "id": "way/655856667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856668", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155365, + -0.0581123 + ], + [ + 109.3154226, + -0.0582884 + ], + [ + 109.3152959, + -0.0584299 + ] + ] + }, + "id": "way/655856668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856669", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114699, + -0.0651143 + ], + [ + 109.3107719, + -0.0663667 + ] + ] + }, + "id": "way/655856669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856670", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221476, + -0.0450685 + ], + [ + 109.3223602, + -0.0452864 + ], + [ + 109.3226404, + -0.0455546 + ], + [ + 109.3228671, + -0.0457706 + ] + ] + }, + "id": "way/655856670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856671", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039842, + -0.0478369 + ], + [ + 109.3041074, + -0.0476405 + ], + [ + 109.3041292, + -0.0476031 + ], + [ + 109.3041694, + -0.0475402 + ] + ] + }, + "id": "way/655856671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856672", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022603, + -0.0509439 + ], + [ + 109.3018641, + -0.0512731 + ], + [ + 109.3014141, + -0.0516734 + ], + [ + 109.3013699, + -0.0517392 + ], + [ + 109.3013511, + -0.0517901 + ], + [ + 109.3013317, + -0.0518585 + ], + [ + 109.3013237, + -0.0519008 + ], + [ + 109.3013048, + -0.0519383 + ], + [ + 109.3012076, + -0.0520114 + ], + [ + 109.3011493, + -0.0520577 + ], + [ + 109.301042, + -0.0521455 + ], + [ + 109.3009937, + -0.0521837 + ], + [ + 109.300879, + -0.0522769 + ], + [ + 109.3004595, + -0.0526007 + ] + ] + }, + "id": "way/655856672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856674", + "highway": "residential", + "import": "yes", + "name": "Gang surya Ungu", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33176, + -0.0505048 + ], + [ + 109.3306691, + -0.0495393 + ], + [ + 109.3298156, + -0.0487839 + ] + ] + }, + "id": "way/655856674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856675", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068183, + -0.0687138 + ], + [ + 109.3061415, + -0.0682414 + ], + [ + 109.3060579, + -0.0681447 + ] + ] + }, + "id": "way/655856675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856676", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156026, + -0.0500042 + ], + [ + 109.3159292, + -0.0494932 + ] + ] + }, + "id": "way/655856676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856677", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3345542, + -0.081115 + ], + [ + 109.3338896, + -0.0801712 + ], + [ + 109.3333402, + -0.0793642 + ], + [ + 109.3329223, + -0.0787899 + ] + ] + }, + "id": "way/655856677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856678", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323255, + -0.0540348 + ], + [ + 109.3319907, + -0.0541778 + ] + ] + }, + "id": "way/655856678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856680", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307892, + -0.0520101 + ], + [ + 109.3310519, + -0.0517855 + ] + ] + }, + "id": "way/655856680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856682", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308133, + -0.0668829 + ], + [ + 109.3302565, + -0.0663719 + ], + [ + 109.3299962, + -0.0661565 + ], + [ + 109.3297539, + -0.0659276 + ] + ] + }, + "id": "way/655856682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856683", + "highway": "residential", + "import": "yes", + "name": "Jalan Sentarum Harmony Residence", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3021556, + -0.0462894 + ], + [ + 109.3022188, + -0.0462298 + ], + [ + 109.3022796, + -0.0461922 + ], + [ + 109.3025353, + -0.0460238 + ], + [ + 109.3044918, + -0.0447982 + ] + ] + }, + "id": "way/655856683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856684", + "highway": "residential", + "import": "yes", + "source": "digitalglobe", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362284, + -0.0627519 + ], + [ + 109.3362004, + -0.0627462 + ], + [ + 109.3361762, + -0.0627261 + ], + [ + 109.3352954, + -0.0619716 + ] + ] + }, + "id": "way/655856684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856688", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134351, + -0.0617069 + ], + [ + 109.3136334, + -0.0614443 + ], + [ + 109.3137342, + -0.0613099 + ], + [ + 109.3137496, + -0.0612968 + ], + [ + 109.31377, + -0.0612982 + ], + [ + 109.3141781, + -0.0615761 + ] + ] + }, + "id": "way/655856688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856691", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154645, + -0.0642985 + ], + [ + 109.3151457, + -0.06408 + ] + ] + }, + "id": "way/655856691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856692", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203415, + -0.0456331 + ], + [ + 109.3203183, + -0.0456539 + ], + [ + 109.3202982, + -0.045672 + ], + [ + 109.3202888, + -0.0456825 + ], + [ + 109.3202841, + -0.0456918 + ], + [ + 109.3202808, + -0.0457011 + ], + [ + 109.3202801, + -0.0457094 + ], + [ + 109.3202823, + -0.0457198 + ], + [ + 109.3202883, + -0.0457295 + ], + [ + 109.3204015, + -0.0458685 + ], + [ + 109.3204786, + -0.0459563 + ], + [ + 109.3205698, + -0.0460502 + ], + [ + 109.3206549, + -0.0461347 + ], + [ + 109.3207398, + -0.0462254 + ], + [ + 109.3208494, + -0.0463425 + ] + ] + }, + "id": "way/655856692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856694", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305051, + -0.054509 + ], + [ + 109.3056561, + -0.0540938 + ] + ] + }, + "id": "way/655856694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856696", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148421, + -0.0716845 + ], + [ + 109.3144188, + -0.0714298 + ] + ] + }, + "id": "way/655856696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856701", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070521, + -0.0613154 + ], + [ + 109.3068657, + -0.0615879 + ], + [ + 109.3068401, + -0.0616335 + ], + [ + 109.3064734, + -0.0622854 + ] + ] + }, + "id": "way/655856701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856703", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247149, + -0.0628789 + ], + [ + 109.3244899, + -0.0624212 + ], + [ + 109.324396, + -0.0622433 + ] + ] + }, + "id": "way/655856703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856714", + "highway": "residential", + "import": "yes", + "name": "Jalan Komplek Anugrah Indah 3", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046548, + -0.0444307 + ], + [ + 109.3048977, + -0.0441869 + ], + [ + 109.3050643, + -0.0440194 + ], + [ + 109.3052237, + -0.0438661 + ], + [ + 109.3053909, + -0.0437083 + ], + [ + 109.3054566, + -0.0436442 + ], + [ + 109.3055503, + -0.0435526 + ], + [ + 109.3056613, + -0.0434412 + ], + [ + 109.3057748, + -0.0433317 + ], + [ + 109.306129, + -0.0429894 + ] + ] + }, + "id": "way/655856714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856715", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103248, + -0.0650014 + ], + [ + 109.3100441, + -0.0655082 + ], + [ + 109.3098143, + -0.0659232 + ], + [ + 109.3096221, + -0.0662427 + ] + ] + }, + "id": "way/655856715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856716", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148144, + -0.0598528 + ], + [ + 109.3142752, + -0.0594561 + ], + [ + 109.3141899, + -0.0593978 + ], + [ + 109.3139386, + -0.0592138 + ] + ] + }, + "id": "way/655856716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856722", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105631, + -0.055242 + ], + [ + 109.3102271, + -0.0555965 + ] + ] + }, + "id": "way/655856722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856725", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313593, + -0.0635895 + ], + [ + 109.3139925, + -0.0638767 + ] + ] + }, + "id": "way/655856725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856727", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193021, + -0.0492081 + ], + [ + 109.3190988, + -0.0494925 + ] + ] + }, + "id": "way/655856727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856730", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986798, + -0.0533035 + ], + [ + 109.2984345, + -0.0531019 + ], + [ + 109.2981879, + -0.0528822 + ] + ] + }, + "id": "way/655856730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856732", + "highway": "residential", + "import": "yes", + "name": "Gang Surya Lembayung", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320249, + -0.0480807 + ], + [ + 109.3321774, + -0.0482409 + ], + [ + 109.3324763, + -0.0485255 + ], + [ + 109.3329215, + -0.048971 + ], + [ + 109.3330977, + -0.0491548 + ], + [ + 109.3331674, + -0.0491837 + ], + [ + 109.333441, + -0.0490022 + ] + ] + }, + "id": "way/655856732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856735", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058394, + -0.0483127 + ], + [ + 109.3056833, + -0.0485416 + ], + [ + 109.3056641, + -0.0485768 + ], + [ + 109.3055009, + -0.0488364 + ] + ] + }, + "id": "way/655856735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856737", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060669, + -0.0496995 + ], + [ + 109.3063074, + -0.0493799 + ] + ] + }, + "id": "way/655856737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856740", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153778, + -0.0637918 + ], + [ + 109.3157427, + -0.0640517 + ] + ] + }, + "id": "way/655856740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856743", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241552, + -0.0490884 + ], + [ + 109.3245497, + -0.0493003 + ] + ] + }, + "id": "way/655856743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856745", + "highway": "residential", + "import": "yes", + "name": "Gang Widodo Jalur 3", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192971, + -0.0499463 + ], + [ + 109.3193916, + -0.0497878 + ], + [ + 109.3195861, + -0.0495189 + ] + ] + }, + "id": "way/655856745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856748", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200843, + -0.0459905 + ], + [ + 109.3202412, + -0.0461501 + ], + [ + 109.3203049, + -0.0462128 + ], + [ + 109.3203217, + -0.0462242 + ], + [ + 109.3203398, + -0.0462299 + ], + [ + 109.3203572, + -0.0462319 + ], + [ + 109.3203736, + -0.0462312 + ], + [ + 109.3203897, + -0.0462289 + ], + [ + 109.3204149, + -0.0462141 + ] + ] + }, + "id": "way/655856748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856751", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226986, + -0.0655397 + ], + [ + 109.3227245, + -0.0655757 + ], + [ + 109.3228452, + -0.0657436 + ], + [ + 109.3239099, + -0.066949 + ] + ] + }, + "id": "way/655856751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856754", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187047, + -0.0647877 + ], + [ + 109.3189785, + -0.0649538 + ], + [ + 109.3190758, + -0.0650181 + ], + [ + 109.3192011, + -0.0651212 + ] + ] + }, + "id": "way/655856754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856759", + "highway": "service", + "import": "yes", + "source": "digitalglobe", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2975049, + -0.0526281 + ], + [ + 109.2976821, + -0.0524324 + ], + [ + 109.2976973, + -0.0524157 + ], + [ + 109.2979363, + -0.0521516 + ], + [ + 109.2982383, + -0.0518179 + ] + ] + }, + "id": "way/655856759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856764", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131783, + -0.0515936 + ], + [ + 109.3132012, + -0.0515686 + ], + [ + 109.3134046, + -0.0513061 + ] + ] + }, + "id": "way/655856764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856772", + "highway": "residential", + "import": "yes", + "name": "Gang Nur", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2987525, + -0.0455975 + ], + [ + 109.3009805, + -0.0440788 + ] + ] + }, + "id": "way/655856772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856775", + "highway": "residential", + "import": "yes", + "name": "Jalan Parit Demang", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257135, + -0.0647812 + ], + [ + 109.3261456, + -0.0653173 + ], + [ + 109.3266363, + -0.0660098 + ], + [ + 109.3269239, + -0.0664155 + ], + [ + 109.3271689, + -0.0667803 + ], + [ + 109.327878, + -0.067835 + ], + [ + 109.3279125, + -0.0678811 + ], + [ + 109.3279488, + -0.0679322 + ], + [ + 109.328312, + -0.0684446 + ], + [ + 109.3283871, + -0.0685693 + ], + [ + 109.3285024, + -0.0687007 + ], + [ + 109.3288699, + -0.0690588 + ] + ] + }, + "id": "way/655856775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856779", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077039, + -0.05746 + ], + [ + 109.3080516, + -0.0570343 + ] + ] + }, + "id": "way/655856779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856781", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240274, + -0.0458893 + ], + [ + 109.3235023, + -0.0464278 + ] + ] + }, + "id": "way/655856781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856782", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3313342, + -0.0755088 + ], + [ + 109.3310756, + -0.0752929 + ] + ] + }, + "id": "way/655856782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856783", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247006, + -0.0552375 + ], + [ + 109.3243819, + -0.0555921 + ] + ] + }, + "id": "way/655856783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856785", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142842, + -0.0619738 + ], + [ + 109.3140235, + -0.0617758 + ] + ] + }, + "id": "way/655856785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856789", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3015638, + -0.0451748 + ], + [ + 109.2993918, + -0.0466622 + ], + [ + 109.2993081, + -0.0467195 + ] + ] + }, + "id": "way/655856789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856794", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3069777, + -0.0522561 + ], + [ + 109.3073927, + -0.0525133 + ], + [ + 109.3074055, + -0.0525579 + ], + [ + 109.3079532, + -0.0528861 + ], + [ + 109.3083436, + -0.0531433 + ], + [ + 109.3087282, + -0.053375 + ], + [ + 109.3091425, + -0.053625 + ] + ] + }, + "id": "way/655856794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856803", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132097, + -0.0511203 + ], + [ + 109.3127269, + -0.051737 + ] + ] + }, + "id": "way/655856803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856808", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3137097, + -0.0509516 + ], + [ + 109.3142713, + -0.0515608 + ] + ] + }, + "id": "way/655856808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856811", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161691, + -0.0491789 + ], + [ + 109.3159582, + -0.0490173 + ], + [ + 109.3156664, + -0.048757 + ] + ] + }, + "id": "way/655856811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856814", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3137313, + -0.0526127 + ], + [ + 109.3135482, + -0.0527826 + ], + [ + 109.3131936, + -0.0532 + ] + ] + }, + "id": "way/655856814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856816", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957643, + -0.0428262 + ], + [ + 109.2935232, + -0.0450441 + ] + ] + }, + "id": "way/655856816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856820", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3177124, + -0.0492124 + ], + [ + 109.3172148, + -0.0487245 + ], + [ + 109.3172117, + -0.0487197 + ], + [ + 109.3172092, + -0.0487137 + ], + [ + 109.3172085, + -0.0487092 + ], + [ + 109.3172088, + -0.0487031 + ], + [ + 109.3172101, + -0.0486965 + ], + [ + 109.3172129, + -0.048689 + ], + [ + 109.3172227, + -0.0486737 + ], + [ + 109.3174242, + -0.0484583 + ], + [ + 109.3174616, + -0.0484204 + ], + [ + 109.3176924, + -0.0481262 + ], + [ + 109.3178949, + -0.0478372 + ] + ] + }, + "id": "way/655856820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856823", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228537, + -0.0684205 + ], + [ + 109.3224117, + -0.0679023 + ], + [ + 109.3219405, + -0.0673683 + ] + ] + }, + "id": "way/655856823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856828", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221502, + -0.0546907 + ], + [ + 109.3223175, + -0.0548336 + ] + ] + }, + "id": "way/655856828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856831", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224656, + -0.0521095 + ], + [ + 109.3229188, + -0.0523204 + ] + ] + }, + "id": "way/655856831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856833", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257827, + -0.0443704 + ], + [ + 109.3258437, + -0.0444429 + ], + [ + 109.3258866, + -0.0444965 + ], + [ + 109.3259409, + -0.0445904 + ], + [ + 109.3261662, + -0.045096 + ] + ] + }, + "id": "way/655856833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856835", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329762, + -0.0671528 + ], + [ + 109.3331332, + -0.0672664 + ] + ] + }, + "id": "way/655856835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856841", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3165317, + -0.0442224 + ], + [ + 109.3162588, + -0.0445025 + ] + ] + }, + "id": "way/655856841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856846", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231405, + -0.0519679 + ], + [ + 109.3228564, + -0.0518069 + ], + [ + 109.3227471, + -0.0517445 + ], + [ + 109.3224835, + -0.0515978 + ] + ] + }, + "id": "way/655856846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856847", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993542, + -0.0515514 + ], + [ + 109.2993318, + -0.0515742 + ], + [ + 109.2992747, + -0.05165 + ] + ] + }, + "id": "way/655856847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856848", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3078206, + -0.0455968 + ], + [ + 109.307683, + -0.0457704 + ], + [ + 109.3076556, + -0.045794 + ], + [ + 109.3076308, + -0.0458209 + ], + [ + 109.3074873, + -0.0459804 + ], + [ + 109.3072382, + -0.0462528 + ] + ] + }, + "id": "way/655856848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856851", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184407, + -0.0577414 + ], + [ + 109.3187721, + -0.0579886 + ] + ] + }, + "id": "way/655856851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856852", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140329, + -0.0598511 + ], + [ + 109.3138192, + -0.0601468 + ] + ] + }, + "id": "way/655856852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856853", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140842, + -0.06932 + ], + [ + 109.3139035, + -0.0696154 + ], + [ + 109.3138867, + -0.0696241 + ], + [ + 109.313869, + -0.0696257 + ], + [ + 109.3138431, + -0.0696127 + ], + [ + 109.3133866, + -0.0693115 + ], + [ + 109.3130051, + -0.0690916 + ], + [ + 109.3129423, + -0.0690333 + ] + ] + }, + "id": "way/655856853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856854", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176629, + -0.0442927 + ], + [ + 109.3173943, + -0.0445384 + ] + ] + }, + "id": "way/655856854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856855", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231361, + -0.0623826 + ], + [ + 109.3231947, + -0.0623288 + ], + [ + 109.3232808, + -0.062252 + ], + [ + 109.3233616, + -0.0621897 + ], + [ + 109.3234641, + -0.0621079 + ] + ] + }, + "id": "way/655856855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856856", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236709, + -0.0629996 + ], + [ + 109.3231361, + -0.0623826 + ], + [ + 109.3226496, + -0.0618167 + ] + ] + }, + "id": "way/655856856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856857", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312673, + -0.0495738 + ], + [ + 109.3124725, + -0.0497867 + ] + ] + }, + "id": "way/655856857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856858", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160855, + -0.0594229 + ], + [ + 109.3159447, + -0.059685 + ], + [ + 109.3157607, + -0.0599318 + ] + ] + }, + "id": "way/655856858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856859", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176266, + -0.057485 + ], + [ + 109.3169096, + -0.0571359 + ] + ] + }, + "id": "way/655856859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856861", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060399, + -0.0611485 + ], + [ + 109.3063182, + -0.0613186 + ], + [ + 109.3068401, + -0.0616335 + ] + ] + }, + "id": "way/655856861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856862", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286903, + -0.0443768 + ], + [ + 109.3279632, + -0.0448122 + ], + [ + 109.3278347, + -0.044903 + ], + [ + 109.3275111, + -0.045105 + ], + [ + 109.3274817, + -0.0451234 + ] + ] + }, + "id": "way/655856862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856863", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300667, + -0.0654477 + ], + [ + 109.330095, + -0.0654881 + ], + [ + 109.3300983, + -0.065517 + ], + [ + 109.3300923, + -0.0655391 + ], + [ + 109.3298526, + -0.065808 + ], + [ + 109.3297539, + -0.0659276 + ], + [ + 109.3295979, + -0.0660866 + ], + [ + 109.3294159, + -0.0662721 + ], + [ + 109.3293364, + -0.0663455 + ], + [ + 109.3291369, + -0.0665739 + ], + [ + 109.3290705, + -0.066637 + ] + ] + }, + "id": "way/655856863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856864", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3054389, + -0.045492 + ], + [ + 109.3052088, + -0.0452939 + ] + ] + }, + "id": "way/655856864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856865", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312309, + -0.0740725 + ], + [ + 109.3313965, + -0.0742033 + ], + [ + 109.331591, + -0.0743843 + ], + [ + 109.3318049, + -0.0745713 + ] + ] + }, + "id": "way/655856865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856867", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233228, + -0.0558972 + ], + [ + 109.3236639, + -0.0562159 + ] + ] + }, + "id": "way/655856867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856868", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229503, + -0.0563909 + ], + [ + 109.3231686, + -0.0560965 + ], + [ + 109.3233228, + -0.0558972 + ], + [ + 109.323451, + -0.0557099 + ] + ] + }, + "id": "way/655856868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856869", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083153, + -0.0447808 + ], + [ + 109.309343, + -0.0454135 + ], + [ + 109.309864, + -0.0457379 + ] + ] + }, + "id": "way/655856869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856871", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318145, + -0.0490765 + ], + [ + 109.3177758, + -0.0487121 + ], + [ + 109.3174616, + -0.0484204 + ] + ] + }, + "id": "way/655856871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856873", + "highway": "residential", + "import": "yes", + "name": "Jalan Komplek Purnama Permai II", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288189, + -0.059543 + ], + [ + 109.3288203, + -0.0595269 + ], + [ + 109.3288162, + -0.0595061 + ], + [ + 109.3281627, + -0.0581619 + ], + [ + 109.3281408, + -0.0581169 + ] + ] + }, + "id": "way/655856873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856874", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184873, + -0.0632556 + ], + [ + 109.3186675, + -0.0629538 + ] + ] + }, + "id": "way/655856874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856875", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064151, + -0.063448 + ], + [ + 109.3068708, + -0.0626758 + ], + [ + 109.3068936, + -0.0626331 + ], + [ + 109.3069231, + -0.0625672 + ] + ] + }, + "id": "way/655856875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856876", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064528, + -0.0494841 + ], + [ + 109.3066441, + -0.0492098 + ], + [ + 109.3066707, + -0.0491746 + ] + ] + }, + "id": "way/655856876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856877", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143964, + -0.0701103 + ], + [ + 109.3146253, + -0.0697379 + ] + ] + }, + "id": "way/655856877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856879", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294846, + -0.0488692 + ], + [ + 109.3293006, + -0.0484608 + ] + ] + }, + "id": "way/655856879" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856880", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051962, + -0.0549817 + ], + [ + 109.3054401, + -0.0548176 + ], + [ + 109.3056557, + -0.0546683 + ], + [ + 109.3059129, + -0.0544978 + ] + ] + }, + "id": "way/655856880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856881", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097431, + -0.0641434 + ], + [ + 109.3100043, + -0.0642957 + ], + [ + 109.3106134, + -0.0646439 + ] + ] + }, + "id": "way/655856881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856882", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115994, + -0.077893 + ], + [ + 109.3113199, + -0.0777188 + ], + [ + 109.3104074, + -0.0771899 + ] + ] + }, + "id": "way/655856882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856883", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290705, + -0.066637 + ], + [ + 109.3290179, + -0.0665829 + ], + [ + 109.3288608, + -0.0663854 + ], + [ + 109.3287256, + -0.0661922 + ], + [ + 109.3284883, + -0.0658469 + ] + ] + }, + "id": "way/655856883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856884", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067894, + -0.0512523 + ], + [ + 109.3069914, + -0.0508573 + ] + ] + }, + "id": "way/655856884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856885", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311293, + -0.0510033 + ], + [ + 109.3098546, + -0.049888 + ], + [ + 109.3092515, + -0.0494558 + ], + [ + 109.3084046, + -0.048835 + ] + ] + }, + "id": "way/655856885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856886", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136828, + -0.0484698 + ], + [ + 109.3133597, + -0.0481422 + ], + [ + 109.313059, + -0.0478953 + ] + ] + }, + "id": "way/655856886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856889", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227376, + -0.0571053 + ], + [ + 109.322509, + -0.0573856 + ] + ] + }, + "id": "way/655856889" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856891", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186958, + -0.0658738 + ], + [ + 109.3164064, + -0.0643374 + ] + ] + }, + "id": "way/655856891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856892", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3157397, + -0.0563583 + ], + [ + 109.3156821, + -0.0564303 + ], + [ + 109.3156312, + -0.0564853 + ], + [ + 109.3155722, + -0.0565564 + ], + [ + 109.3155527, + -0.0565698 + ], + [ + 109.3155359, + -0.0565731 + ], + [ + 109.3155225, + -0.0565691 + ], + [ + 109.315377, + -0.056492 + ], + [ + 109.3152266, + -0.0563954 + ], + [ + 109.3146118, + -0.0560633 + ], + [ + 109.3145761, + -0.0560399 + ], + [ + 109.3145717, + -0.0560349 + ], + [ + 109.3145709, + -0.0560287 + ], + [ + 109.3145737, + -0.0560214 + ], + [ + 109.3147177, + -0.0557986 + ] + ] + }, + "id": "way/655856892" + }, + { + "type": "Feature", + "properties": { + "@id": "way/655856893", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326091, + -0.0546326 + ], + [ + 109.3259347, + -0.0548381 + ] + ] + }, + "id": "way/655856893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111113", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649515, + -0.0497043 + ], + [ + 109.3646682, + -0.0499153 + ] + ] + }, + "id": "way/656111113" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111118", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3624578, + -0.0503767 + ], + [ + 109.3623063, + -0.0505247 + ] + ] + }, + "id": "way/656111118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111119", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482171, + -0.0845432 + ], + [ + 109.3482421, + -0.0845341 + ], + [ + 109.3482661, + -0.084536 + ] + ] + }, + "id": "way/656111119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111121", + "highway": "residential", + "import": "yes", + "name": "Gang Ismail", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3659536, + -0.0478044 + ], + [ + 109.3655236, + -0.0481698 + ] + ] + }, + "id": "way/656111121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111122", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3729869, + -0.0568119 + ], + [ + 109.3731089, + -0.0567233 + ], + [ + 109.3732765, + -0.0565959 + ] + ] + }, + "id": "way/656111122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111123", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793143, + -0.054598 + ], + [ + 109.3790607, + -0.0548002 + ] + ] + }, + "id": "way/656111123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111128", + "highway": "residential", + "import": "yes", + "name": "Gang Annajah", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3666241, + -0.0514232 + ], + [ + 109.3666933, + -0.0513663 + ], + [ + 109.3667806, + -0.0512962 + ] + ] + }, + "id": "way/656111128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111135", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515305, + -0.0765783 + ], + [ + 109.3517987, + -0.0768854 + ] + ] + }, + "id": "way/656111135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111143", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3675058, + -0.0533096 + ], + [ + 109.3674206, + -0.0531674 + ], + [ + 109.3673116, + -0.052981 + ], + [ + 109.3672943, + -0.052939 + ], + [ + 109.3672959, + -0.0529129 + ], + [ + 109.367311, + -0.0528854 + ], + [ + 109.3673656, + -0.0528469 + ] + ] + }, + "id": "way/656111143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111144", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3655126, + -0.0504455 + ], + [ + 109.3652565, + -0.0506365 + ] + ] + }, + "id": "way/656111144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111147", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627093, + -0.0472659 + ], + [ + 109.3626054, + -0.0473611 + ], + [ + 109.362538, + -0.0474218 + ], + [ + 109.362535, + -0.0474322 + ], + [ + 109.3625393, + -0.0474422 + ], + [ + 109.3625957, + -0.0475086 + ], + [ + 109.3627347, + -0.0476618 + ], + [ + 109.3628116, + -0.0477362 + ], + [ + 109.3629396, + -0.0478666 + ] + ] + }, + "id": "way/656111147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111148", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492721, + -0.0662787 + ], + [ + 109.348535, + -0.0655141 + ], + [ + 109.3482005, + -0.0651983 + ] + ] + }, + "id": "way/656111148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111150", + "access": "private", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3667204, + -0.0573388 + ], + [ + 109.366605, + -0.0574194 + ] + ] + }, + "id": "way/656111150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111154", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498003, + -0.0818218 + ], + [ + 109.3496678, + -0.0817081 + ] + ] + }, + "id": "way/656111154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111157", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518162, + -0.0785753 + ], + [ + 109.3517371, + -0.0785189 + ], + [ + 109.3516298, + -0.0784425 + ] + ] + }, + "id": "way/656111157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111158", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614685, + -0.0576857 + ], + [ + 109.3617473, + -0.0579744 + ] + ] + }, + "id": "way/656111158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111159", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365456, + -0.0509326 + ], + [ + 109.3657286, + -0.050717 + ] + ] + }, + "id": "way/656111159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111161", + "access": "private", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422958, + -0.0499089 + ], + [ + 109.3423392, + -0.0498729 + ], + [ + 109.3423906, + -0.0498302 + ], + [ + 109.3425806, + -0.0496714 + ], + [ + 109.3426698, + -0.049594 + ] + ] + }, + "id": "way/656111161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111163", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480799, + -0.0612442 + ], + [ + 109.3479577, + -0.061383 + ], + [ + 109.3475432, + -0.061843 + ] + ] + }, + "id": "way/656111163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111164", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3710866, + -0.0543482 + ], + [ + 109.3712079, + -0.0545543 + ], + [ + 109.3713333, + -0.0547774 + ] + ] + }, + "id": "way/656111164" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111170", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572, + -0.0495919 + ], + [ + 109.3569131, + -0.0499559 + ] + ] + }, + "id": "way/656111170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111174", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368551, + -0.0630147 + ], + [ + 109.3370151, + -0.0631631 + ], + [ + 109.3371571, + -0.0633054 + ], + [ + 109.3373646, + -0.0635349 + ], + [ + 109.337581, + -0.0637662 + ] + ] + }, + "id": "way/656111174" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111176", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573511, + -0.0480312 + ], + [ + 109.3570395, + -0.0477959 + ] + ] + }, + "id": "way/656111176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111177", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3748658, + -0.0562863 + ], + [ + 109.3746686, + -0.0564028 + ], + [ + 109.3744503, + -0.0565386 + ] + ] + }, + "id": "way/656111177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111178", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360834, + -0.0645366 + ], + [ + 109.3606011, + -0.064813 + ] + ] + }, + "id": "way/656111178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111179", + "access": "private", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532607, + -0.0615109 + ], + [ + 109.3533497, + -0.0616304 + ], + [ + 109.3534365, + -0.061742 + ], + [ + 109.3536924, + -0.0620851 + ] + ] + }, + "id": "way/656111179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111184", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576283, + -0.046965 + ], + [ + 109.3578142, + -0.0471234 + ], + [ + 109.3579472, + -0.04724 + ] + ] + }, + "id": "way/656111184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111188", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36139, + -0.0638522 + ], + [ + 109.3612536, + -0.0639927 + ], + [ + 109.3611289, + -0.064101 + ], + [ + 109.361072, + -0.0641532 + ] + ] + }, + "id": "way/656111188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111195", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594894, + -0.0582536 + ], + [ + 109.3598444, + -0.0577635 + ] + ] + }, + "id": "way/656111195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111197", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546916, + -0.0660077 + ], + [ + 109.3548311, + -0.0658171 + ], + [ + 109.354944, + -0.0656669 + ] + ] + }, + "id": "way/656111197" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111199", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626451, + -0.0611622 + ], + [ + 109.3629596, + -0.0613076 + ] + ] + }, + "id": "way/656111199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111201", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609047, + -0.0457519 + ], + [ + 109.3611325, + -0.0455026 + ], + [ + 109.3613199, + -0.0452894 + ] + ] + }, + "id": "way/656111201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111202", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615633, + -0.0636292 + ], + [ + 109.361728, + -0.0634424 + ], + [ + 109.3618386, + -0.0633031 + ], + [ + 109.3618527, + -0.0632978 + ], + [ + 109.3618681, + -0.0632984 + ], + [ + 109.3624336, + -0.063598 + ] + ] + }, + "id": "way/656111202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111206", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648728, + -0.0586807 + ], + [ + 109.3645654, + -0.0588812 + ], + [ + 109.3645298, + -0.0588939 + ], + [ + 109.3645111, + -0.0588839 + ], + [ + 109.3643188, + -0.0585893 + ], + [ + 109.3642653, + -0.0585216 + ] + ] + }, + "id": "way/656111206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111207", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3665611, + -0.0510312 + ], + [ + 109.3664409, + -0.0511149 + ], + [ + 109.3663485, + -0.0511849 + ] + ] + }, + "id": "way/656111207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111208", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542902, + -0.0467594 + ], + [ + 109.3544017, + -0.0466795 + ], + [ + 109.354571, + -0.0465693 + ] + ] + }, + "id": "way/656111208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111210", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491366, + -0.079913 + ], + [ + 109.3489596, + -0.0801497 + ] + ] + }, + "id": "way/656111210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111213", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557593, + -0.0523168 + ], + [ + 109.3556856, + -0.0522597 + ] + ] + }, + "id": "way/656111213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111216", + "highway": "living_street", + "import": "yes", + "motorcar": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449543, + -0.0730537 + ], + [ + 109.3448375, + -0.0729752 + ], + [ + 109.3446807, + -0.0728728 + ] + ] + }, + "id": "way/656111216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111224", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619774, + -0.05552 + ], + [ + 109.3623749, + -0.0559964 + ] + ] + }, + "id": "way/656111224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111229", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354641, + -0.0539849 + ], + [ + 109.3546926, + -0.0540118 + ], + [ + 109.3548336, + -0.0541337 + ], + [ + 109.3549349, + -0.0542215 + ], + [ + 109.3552399, + -0.0545636 + ], + [ + 109.3554126, + -0.0547588 + ], + [ + 109.3556532, + -0.055029 + ] + ] + }, + "id": "way/656111229" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111231", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593205, + -0.0580915 + ], + [ + 109.3595437, + -0.057777 + ] + ] + }, + "id": "way/656111231" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111232", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559228, + -0.0547496 + ], + [ + 109.3556532, + -0.055029 + ], + [ + 109.3555203, + -0.0551669 + ], + [ + 109.3553386, + -0.0553355 + ] + ] + }, + "id": "way/656111232" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111235", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386902, + -0.0482082 + ], + [ + 109.3387982, + -0.0485077 + ], + [ + 109.3388557, + -0.0486576 + ], + [ + 109.3389278, + -0.0488457 + ] + ] + }, + "id": "way/656111235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111245", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427299, + -0.0481658 + ], + [ + 109.3428603, + -0.0479063 + ], + [ + 109.3428743, + -0.0478545 + ], + [ + 109.342883, + -0.0478114 + ], + [ + 109.3428856, + -0.0477534 + ] + ] + }, + "id": "way/656111245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111252", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585271, + -0.0693165 + ], + [ + 109.3587081, + -0.0695282 + ], + [ + 109.3587457, + -0.0695389 + ], + [ + 109.3588033, + -0.0695376 + ], + [ + 109.3590132, + -0.0693995 + ] + ] + }, + "id": "way/656111252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111254", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519555, + -0.0575642 + ], + [ + 109.351735, + -0.0577413 + ], + [ + 109.351695, + -0.0577757 + ], + [ + 109.3516127, + -0.0578464 + ] + ] + }, + "id": "way/656111254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111260", + "highway": "residential", + "import": "yes", + "name": "Gang Tanjung Djambu", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525448, + -0.0453319 + ], + [ + 109.3525907, + -0.045291 + ], + [ + 109.3529262, + -0.0449918 + ], + [ + 109.3531607, + -0.0448116 + ] + ] + }, + "id": "way/656111260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111263", + "highway": "service", + "import": "yes", + "motor_vehicle": "destination", + "motorcar": "destination", + "motorcycle": "destination", + "oneway": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459392, + -0.0527082 + ], + [ + 109.3460284, + -0.0528002 + ], + [ + 109.3461349, + -0.0528998 + ], + [ + 109.3462721, + -0.0530332 + ] + ] + }, + "id": "way/656111263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111266", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602894, + -0.0640782 + ], + [ + 109.3600573, + -0.0643502 + ], + [ + 109.3602188, + -0.0644966 + ], + [ + 109.3603772, + -0.0646269 + ], + [ + 109.3606011, + -0.064813 + ], + [ + 109.3611208, + -0.0652367 + ], + [ + 109.3611369, + -0.0652414 + ], + [ + 109.3611563, + -0.0652259 + ], + [ + 109.3612066, + -0.0651569 + ], + [ + 109.3612609, + -0.0650509 + ], + [ + 109.3613299, + -0.0648854 + ] + ] + }, + "id": "way/656111266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111268", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3595228, + -0.0574254 + ], + [ + 109.3593142, + -0.057687 + ], + [ + 109.3591434, + -0.0579248 + ] + ] + }, + "id": "way/656111268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111269", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413917, + -0.0590976 + ], + [ + 109.3408492, + -0.0584987 + ] + ] + }, + "id": "way/656111269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111276", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395007, + -0.0857616 + ], + [ + 109.3395913, + -0.0856409 + ], + [ + 109.3396363, + -0.0855712 + ], + [ + 109.3396538, + -0.0855421 + ], + [ + 109.3397898, + -0.0853157 + ], + [ + 109.3398703, + -0.0851822 + ], + [ + 109.3399561, + -0.0850542 + ] + ] + }, + "id": "way/656111276" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111278", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3754956, + -0.0604737 + ], + [ + 109.3755142, + -0.0605053 + ] + ] + }, + "id": "way/656111278" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111281", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539247, + -0.0534889 + ], + [ + 109.3545845, + -0.0539474 + ] + ] + }, + "id": "way/656111281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111286", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561023, + -0.0611798 + ], + [ + 109.3570836, + -0.062103 + ] + ] + }, + "id": "way/656111286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111288", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452454, + -0.0619339 + ], + [ + 109.3453437, + -0.0618274 + ], + [ + 109.3454723, + -0.0616882 + ], + [ + 109.3456334, + -0.0615138 + ], + [ + 109.3457422, + -0.0613959 + ], + [ + 109.3457953, + -0.0613384 + ], + [ + 109.3455936, + -0.061132 + ] + ] + }, + "id": "way/656111288" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111291", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563163, + -0.0762253 + ], + [ + 109.3562771, + -0.0762885 + ], + [ + 109.3556277, + -0.075886 + ], + [ + 109.3556668, + -0.0758228 + ], + [ + 109.3563163, + -0.0762253 + ], + [ + 109.3563873, + -0.0762694 + ], + [ + 109.3569461, + -0.0766156 + ], + [ + 109.3569638, + -0.0766266 + ] + ] + }, + "id": "way/656111291" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111298", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473094, + -0.0709706 + ], + [ + 109.3474797, + -0.0707016 + ] + ] + }, + "id": "way/656111298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111299", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592178, + -0.0688312 + ], + [ + 109.3595976, + -0.0688306 + ], + [ + 109.3596375, + -0.0688503 + ], + [ + 109.359661, + -0.0688697 + ], + [ + 109.3596993, + -0.0689149 + ] + ] + }, + "id": "way/656111299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111300", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460228, + -0.0501917 + ], + [ + 109.3464661, + -0.0497975 + ], + [ + 109.3465577, + -0.0496758 + ], + [ + 109.3466994, + -0.0494609 + ], + [ + 109.3472904, + -0.0486132 + ] + ] + }, + "id": "way/656111300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111304", + "highway": "service", + "import": "yes", + "oneway": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353655, + -0.0603157 + ], + [ + 109.3537416, + -0.0602414 + ], + [ + 109.3538802, + -0.0601226 + ], + [ + 109.3540568, + -0.0599906 + ], + [ + 109.354271, + -0.0598106 + ], + [ + 109.3545106, + -0.0595527 + ] + ] + }, + "id": "way/656111304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111306", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619069, + -0.0525217 + ], + [ + 109.3616589, + -0.0522193 + ] + ] + }, + "id": "way/656111306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111309", + "highway": "service", + "import": "yes", + "source": "digitalglobe", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389887, + -0.0513062 + ], + [ + 109.3392292, + -0.0512064 + ], + [ + 109.339248, + -0.0511883 + ], + [ + 109.3392564, + -0.0511675 + ], + [ + 109.3392581, + -0.0511289 + ], + [ + 109.3388296, + -0.0498294 + ], + [ + 109.3388115, + -0.0498046 + ], + [ + 109.3387894, + -0.0497912 + ], + [ + 109.3387592, + -0.0497919 + ], + [ + 109.3386395, + -0.0498301 + ], + [ + 109.338621, + -0.0498281 + ], + [ + 109.3386016, + -0.0498187 + ], + [ + 109.3385882, + -0.0497979 + ], + [ + 109.3383793, + -0.0491522 + ] + ] + }, + "id": "way/656111309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111313", + "highway": "residential", + "import": "yes", + "name": "Gang H. Hamid", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555263, + -0.0528005 + ], + [ + 109.3557072, + -0.0530095 + ], + [ + 109.3559549, + -0.0533 + ], + [ + 109.3564429, + -0.0537882 + ] + ] + }, + "id": "way/656111313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111315", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462061, + -0.0757672 + ], + [ + 109.3462941, + -0.0756016 + ], + [ + 109.3463988, + -0.0754107 + ] + ] + }, + "id": "way/656111315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111321", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547483, + -0.0473398 + ], + [ + 109.355093, + -0.0469113 + ], + [ + 109.35531, + -0.046624 + ], + [ + 109.3554747, + -0.0463982 + ], + [ + 109.3555897, + -0.0462518 + ] + ] + }, + "id": "way/656111321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111327", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503829, + -0.045789 + ], + [ + 109.3505046, + -0.0458661 + ], + [ + 109.350513, + -0.0458749 + ], + [ + 109.350519, + -0.0458845 + ], + [ + 109.3505227, + -0.0458956 + ], + [ + 109.3505237, + -0.0459104 + ], + [ + 109.350522, + -0.0459261 + ], + [ + 109.350518, + -0.045938 + ], + [ + 109.3505116, + -0.0459493 + ], + [ + 109.3503778, + -0.0460859 + ], + [ + 109.3501827, + -0.0462634 + ] + ] + }, + "id": "way/656111327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111330", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638626, + -0.0597723 + ], + [ + 109.3638274, + -0.0597509 + ], + [ + 109.3636702, + -0.0596711 + ], + [ + 109.3635381, + -0.0595987 + ], + [ + 109.3634328, + -0.0595578 + ], + [ + 109.3633852, + -0.0595531 + ], + [ + 109.3633658, + -0.0595651 + ], + [ + 109.3633592, + -0.0595749 + ] + ] + }, + "id": "way/656111330" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111331", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389637, + -0.0606543 + ], + [ + 109.3392123, + -0.0608553 + ], + [ + 109.3397562, + -0.0613645 + ] + ] + }, + "id": "way/656111331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111333", + "access": "private", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458237, + -0.0559322 + ], + [ + 109.3449427, + -0.0552676 + ] + ] + }, + "id": "way/656111333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111343", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537611, + -0.0574442 + ], + [ + 109.3534172, + -0.0571118 + ], + [ + 109.3532787, + -0.0569892 + ], + [ + 109.3531557, + -0.0568807 + ], + [ + 109.3530031, + -0.056742 + ], + [ + 109.3529037, + -0.0566592 + ] + ] + }, + "id": "way/656111343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111344", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585933, + -0.0468579 + ], + [ + 109.3586405, + -0.0469019 + ], + [ + 109.3587692, + -0.047022 + ], + [ + 109.3588031, + -0.0470486 + ], + [ + 109.3588104, + -0.0470524 + ], + [ + 109.3588187, + -0.047053 + ], + [ + 109.3588281, + -0.0470503 + ], + [ + 109.3588354, + -0.0470451 + ], + [ + 109.3590401, + -0.0468259 + ], + [ + 109.3590439, + -0.0468226 + ], + [ + 109.3590487, + -0.0468185 + ], + [ + 109.3590557, + -0.0468242 + ], + [ + 109.3590679, + -0.0468351 + ], + [ + 109.3592308, + -0.0469829 + ] + ] + }, + "id": "way/656111344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111346", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485279, + -0.0708233 + ], + [ + 109.3483805, + -0.0707518 + ], + [ + 109.3482343, + -0.0706796 + ] + ] + }, + "id": "way/656111346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111347", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478989, + -0.0590816 + ], + [ + 109.3484432, + -0.0594733 + ], + [ + 109.3485754, + -0.0595685 + ], + [ + 109.3485841, + -0.059592 + ], + [ + 109.3485935, + -0.0596221 + ], + [ + 109.3485948, + -0.0596557 + ], + [ + 109.3485855, + -0.0596865 + ], + [ + 109.3484715, + -0.0598092 + ] + ] + }, + "id": "way/656111347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111348", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485795, + -0.0551227 + ], + [ + 109.3484769, + -0.0552421 + ], + [ + 109.348333, + -0.0554163 + ] + ] + }, + "id": "way/656111348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111354", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506353, + -0.0700693 + ], + [ + 109.3500878, + -0.0696788 + ], + [ + 109.349998, + -0.0696339 + ], + [ + 109.3497467, + -0.0694499 + ], + [ + 109.3495939, + -0.0693514 + ], + [ + 109.3493926, + -0.0692277 + ] + ] + }, + "id": "way/656111354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111362", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3380645, + -0.0525377 + ], + [ + 109.3379211, + -0.0521806 + ], + [ + 109.3374366, + -0.0505005 + ], + [ + 109.3373041, + -0.0500044 + ], + [ + 109.3371955, + -0.0496343 + ], + [ + 109.3371814, + -0.0495842 + ] + ] + }, + "id": "way/656111362" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111367", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445447, + -0.0469413 + ], + [ + 109.3446793, + -0.0471172 + ], + [ + 109.3446855, + -0.0471304 + ], + [ + 109.3446892, + -0.0471386 + ], + [ + 109.3446924, + -0.0471494 + ], + [ + 109.3446941, + -0.0471613 + ], + [ + 109.3446944, + -0.047173 + ], + [ + 109.3446904, + -0.0471906 + ], + [ + 109.3446757, + -0.0472127 + ], + [ + 109.3445096, + -0.0473535 + ], + [ + 109.3443409, + -0.0474966 + ], + [ + 109.3443274, + -0.0475029 + ], + [ + 109.344315, + -0.0475054 + ], + [ + 109.3442917, + -0.0475076 + ], + [ + 109.3442637, + -0.0475028 + ], + [ + 109.3442297, + -0.0474835 + ], + [ + 109.3441585, + -0.0474228 + ] + ] + }, + "id": "way/656111367" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111368", + "highway": "footway", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681654, + -0.0497142 + ], + [ + 109.3682448, + -0.0498224 + ], + [ + 109.3683526, + -0.0499663 + ] + ] + }, + "id": "way/656111368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111371", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593632, + -0.0481682 + ], + [ + 109.3594767, + -0.0482605 + ], + [ + 109.3595859, + -0.0483533 + ], + [ + 109.3595932, + -0.0483601 + ], + [ + 109.3595969, + -0.0483673 + ], + [ + 109.3595989, + -0.0483746 + ], + [ + 109.3595993, + -0.0483844 + ], + [ + 109.3595942, + -0.0483932 + ], + [ + 109.3595198, + -0.0484862 + ] + ] + }, + "id": "way/656111371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111374", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3727756, + -0.0532164 + ], + [ + 109.37267, + -0.0532894 + ], + [ + 109.3724419, + -0.0534282 + ] + ] + }, + "id": "way/656111374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111376", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649427, + -0.0502239 + ], + [ + 109.3648305, + -0.0501072 + ], + [ + 109.3646682, + -0.0499153 + ] + ] + }, + "id": "way/656111376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111380", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552636, + -0.0753755 + ], + [ + 109.3552377, + -0.0754218 + ], + [ + 109.3551758, + -0.0755242 + ], + [ + 109.3550978, + -0.0756378 + ] + ] + }, + "id": "way/656111380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111383", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521836, + -0.0597965 + ], + [ + 109.3516765, + -0.0592624 + ], + [ + 109.3513772, + -0.0589381 + ] + ] + }, + "id": "way/656111383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111384", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630256, + -0.0572997 + ], + [ + 109.3631364, + -0.0571947 + ], + [ + 109.3632806, + -0.057072 + ], + [ + 109.3633879, + -0.0569654 + ], + [ + 109.3634603, + -0.0569004 + ], + [ + 109.363516, + -0.0568528 + ], + [ + 109.3635783, + -0.0568132 + ], + [ + 109.3636789, + -0.0567488 + ] + ] + }, + "id": "way/656111384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111391", + "destination": "yes", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417667, + -0.0640221 + ], + [ + 109.3414935, + -0.0643113 + ], + [ + 109.3414414, + -0.0643428 + ], + [ + 109.3413884, + -0.0643562 + ], + [ + 109.341332, + -0.0643482 + ] + ] + }, + "id": "way/656111391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111392", + "destination": "yes", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412108, + -0.063508 + ], + [ + 109.3416283, + -0.0638982 + ], + [ + 109.3417667, + -0.0640221 + ], + [ + 109.3421549, + -0.0643454 + ] + ] + }, + "id": "way/656111392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111396", + "highway": "residential", + "import": "yes", + "name": "Jalan Amanah 1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3791077, + -0.0475809 + ], + [ + 109.3789037, + -0.0477442 + ], + [ + 109.3780246, + -0.048459 + ], + [ + 109.3763892, + -0.0497724 + ] + ] + }, + "id": "way/656111396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111397", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3791077, + -0.0475809 + ], + [ + 109.3792944, + -0.0478212 + ], + [ + 109.3794781, + -0.0480576 + ] + ] + }, + "id": "way/656111397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111402", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408715, + -0.0480472 + ], + [ + 109.3408252, + -0.0479332 + ], + [ + 109.3407894, + -0.0478454 + ], + [ + 109.3407269, + -0.0476955 + ], + [ + 109.3405909, + -0.0473447 + ] + ] + }, + "id": "way/656111402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111416", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575062, + -0.0663578 + ], + [ + 109.3572631, + -0.0665865 + ] + ] + }, + "id": "way/656111416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111417", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545614, + -0.073068 + ], + [ + 109.3548927, + -0.0724491 + ], + [ + 109.3549021, + -0.072433 + ], + [ + 109.3548685, + -0.0723713 + ], + [ + 109.354432, + -0.0718958 + ] + ] + }, + "id": "way/656111417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111419", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602849, + -0.0522258 + ], + [ + 109.3601644, + -0.0523423 + ], + [ + 109.3601222, + -0.0523607 + ], + [ + 109.3600239, + -0.0524633 + ], + [ + 109.3598327, + -0.0527282 + ] + ] + }, + "id": "way/656111419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111433", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345187, + -0.0477465 + ], + [ + 109.3456704, + -0.048101 + ], + [ + 109.3460678, + -0.0484014 + ], + [ + 109.3463714, + -0.048611 + ], + [ + 109.3465163, + -0.0487132 + ] + ] + }, + "id": "way/656111433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111435", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.367747, + -0.051222 + ], + [ + 109.3676949, + -0.051259 + ], + [ + 109.3676446, + -0.0513019 + ], + [ + 109.3675195, + -0.0513904 + ] + ] + }, + "id": "way/656111435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111436", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461011, + -0.0703892 + ], + [ + 109.3462399, + -0.0702323 + ] + ] + }, + "id": "way/656111436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111442", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521877, + -0.0776912 + ], + [ + 109.3519503, + -0.0775102 + ], + [ + 109.3517035, + -0.0773093 + ] + ] + }, + "id": "way/656111442" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111443", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627942, + -0.0458412 + ], + [ + 109.3626939, + -0.0459181 + ], + [ + 109.3626132, + -0.045991 + ], + [ + 109.362407, + -0.0461848 + ] + ] + }, + "id": "way/656111443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111445", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500743, + -0.0447621 + ], + [ + 109.3503231, + -0.0444792 + ] + ] + }, + "id": "way/656111445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111446", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447829, + -0.0488436 + ], + [ + 109.3448156, + -0.0487753 + ], + [ + 109.3448096, + -0.0487445 + ], + [ + 109.3446037, + -0.0484977 + ], + [ + 109.3445871, + -0.0484828 + ], + [ + 109.3445727, + -0.0484722 + ], + [ + 109.344544, + -0.0484608 + ], + [ + 109.3445326, + -0.0484586 + ], + [ + 109.3445157, + -0.0484581 + ], + [ + 109.3444971, + -0.0484635 + ], + [ + 109.3444465, + -0.0484915 + ], + [ + 109.3442499, + -0.0486632 + ], + [ + 109.3441737, + -0.04873 + ], + [ + 109.3441311, + -0.0487674 + ], + [ + 109.3440723, + -0.0488189 + ] + ] + }, + "id": "way/656111446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111450", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36203, + -0.0613582 + ], + [ + 109.3611777, + -0.0624345 + ], + [ + 109.3609732, + -0.0627179 + ], + [ + 109.3608505, + -0.0628944 + ], + [ + 109.3607577, + -0.0630033 + ] + ] + }, + "id": "way/656111450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111451", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3792944, + -0.0478212 + ], + [ + 109.3791003, + -0.0479773 + ], + [ + 109.3789038, + -0.0481316 + ], + [ + 109.3787228, + -0.0482737 + ], + [ + 109.3785185, + -0.0484422 + ] + ] + }, + "id": "way/656111451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111456", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412668, + -0.0580111 + ], + [ + 109.3417074, + -0.0584577 + ] + ] + }, + "id": "way/656111456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111459", + "access": "private", + "highway": "service", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427892, + -0.050746 + ], + [ + 109.3429025, + -0.050854 + ], + [ + 109.3431677, + -0.051075 + ] + ] + }, + "id": "way/656111459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111463", + "highway": "residential", + "import": "yes", + "source": "digitalglobe", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391937, + -0.0555217 + ], + [ + 109.3391649, + -0.0554057 + ], + [ + 109.3391549, + -0.0553914 + ], + [ + 109.3390502, + -0.0550866 + ] + ] + }, + "id": "way/656111463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111466", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574744, + -0.0648148 + ], + [ + 109.357492, + -0.0647963 + ], + [ + 109.3579517, + -0.0643153 + ], + [ + 109.357992, + -0.0643033 + ], + [ + 109.3580335, + -0.0643127 + ], + [ + 109.3583179, + -0.0646251 + ], + [ + 109.3583339, + -0.0646587 + ], + [ + 109.3583192, + -0.0647096 + ], + [ + 109.357893, + -0.0652502 + ], + [ + 109.3578742, + -0.0652728 + ] + ] + }, + "id": "way/656111466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111467", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3715982, + -0.0540341 + ], + [ + 109.3717611, + -0.0543091 + ], + [ + 109.3718778, + -0.0544944 + ] + ] + }, + "id": "way/656111467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111469", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520409, + -0.0544951 + ], + [ + 109.3518864, + -0.0545051 + ], + [ + 109.351597, + -0.054551 + ], + [ + 109.3513534, + -0.0545861 + ] + ] + }, + "id": "way/656111469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111471", + "access": "private", + "highway": "service", + "import": "yes", + "source": "digitalglobe", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532607, + -0.0615109 + ], + [ + 109.3531707, + -0.0613937 + ], + [ + 109.3530835, + -0.0612831 + ] + ] + }, + "id": "way/656111471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111472", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352446, + -0.0570895 + ], + [ + 109.3520838, + -0.0568181 + ], + [ + 109.3519016, + -0.0566927 + ] + ] + }, + "id": "way/656111472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111473", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627292, + -0.0542978 + ], + [ + 109.362568, + -0.0543946 + ], + [ + 109.3622968, + -0.0545512 + ] + ] + }, + "id": "way/656111473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111475", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352824, + -0.0549977 + ], + [ + 109.3532473, + -0.0552824 + ], + [ + 109.3535314, + -0.0554741 + ] + ] + }, + "id": "way/656111475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111478", + "highway": "service", + "import": "yes", + "oneway": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545106, + -0.0595527 + ], + [ + 109.3545561, + -0.0594793 + ], + [ + 109.3545654, + -0.0594592 + ], + [ + 109.3545668, + -0.0594424 + ], + [ + 109.3545547, + -0.059423 + ], + [ + 109.3542442, + -0.0591139 + ], + [ + 109.3542261, + -0.0591051 + ], + [ + 109.3542154, + -0.0591112 + ], + [ + 109.3539115, + -0.0593567 + ], + [ + 109.3537911, + -0.0594633 + ], + [ + 109.353389, + -0.0598192 + ], + [ + 109.3533108, + -0.0598884 + ] + ] + }, + "id": "way/656111478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111489", + "highway": "residential", + "import": "yes", + "name": "Gang Media sari 4", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509619, + -0.0469863 + ], + [ + 109.3504736, + -0.047561 + ], + [ + 109.3503998, + -0.0476478 + ] + ] + }, + "id": "way/656111489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111491", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486378, + -0.0808203 + ], + [ + 109.3483959, + -0.0811274 + ] + ] + }, + "id": "way/656111491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111507", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422675, + -0.0580655 + ], + [ + 109.3421844, + -0.0579726 + ], + [ + 109.3419379, + -0.0577118 + ], + [ + 109.3418069, + -0.0575757 + ], + [ + 109.3417085, + -0.0574849 + ] + ] + }, + "id": "way/656111507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111514", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639067, + -0.0489149 + ], + [ + 109.3636596, + -0.0486347 + ], + [ + 109.3634483, + -0.048413 + ], + [ + 109.3633919, + -0.0483572 + ] + ] + }, + "id": "way/656111514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111520", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3679885, + -0.0538587 + ], + [ + 109.3676803, + -0.0540475 + ] + ] + }, + "id": "way/656111520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111532", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627716, + -0.0617558 + ], + [ + 109.3628685, + -0.0615296 + ], + [ + 109.3629596, + -0.0613076 + ], + [ + 109.36314, + -0.0608676 + ], + [ + 109.3632321, + -0.0606548 + ], + [ + 109.3633016, + -0.0605188 + ] + ] + }, + "id": "way/656111532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111538", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.372952, + -0.0616831 + ], + [ + 109.3733124, + -0.062016 + ], + [ + 109.373365, + -0.062065 + ], + [ + 109.3733828, + -0.0620774 + ], + [ + 109.3734029, + -0.062079 + ], + [ + 109.3734267, + -0.062076 + ], + [ + 109.3734562, + -0.0620526 + ], + [ + 109.3735753, + -0.0619325 + ], + [ + 109.3736634, + -0.0618437 + ], + [ + 109.3738787, + -0.0616535 + ] + ] + }, + "id": "way/656111538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111544", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.338381, + -0.049059 + ], + [ + 109.3383314, + -0.0489045 + ], + [ + 109.3383211, + -0.0488874 + ], + [ + 109.3383114, + -0.0488794 + ], + [ + 109.3382992, + -0.0488732 + ], + [ + 109.3382787, + -0.0488745 + ], + [ + 109.3381688, + -0.0489221 + ], + [ + 109.3381584, + -0.0489349 + ], + [ + 109.3381547, + -0.048953 + ], + [ + 109.3381557, + -0.0489691 + ], + [ + 109.33816, + -0.0489879 + ], + [ + 109.3382051, + -0.0491289 + ] + ] + }, + "id": "way/656111544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111545", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496853, + -0.0686519 + ], + [ + 109.3494163, + -0.0684754 + ], + [ + 109.3493834, + -0.0684721 + ], + [ + 109.3493526, + -0.0684848 + ], + [ + 109.349291, + -0.0685951 + ], + [ + 109.3491542, + -0.0688203 + ] + ] + }, + "id": "way/656111545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111547", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549289, + -0.0768479 + ], + [ + 109.3550028, + -0.0767042 + ], + [ + 109.3551097, + -0.0765228 + ], + [ + 109.3551983, + -0.0763685 + ] + ] + }, + "id": "way/656111547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111562", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360606, + -0.0643494 + ], + [ + 109.3609276, + -0.0640435 + ] + ] + }, + "id": "way/656111562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111567", + "highway": "residential", + "import": "yes", + "name": "Gang Al-llmi", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582761, + -0.0622731 + ], + [ + 109.3575916, + -0.0614567 + ] + ] + }, + "id": "way/656111567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111570", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453024, + -0.0782815 + ], + [ + 109.3447553, + -0.0779738 + ], + [ + 109.3446205, + -0.0781602 + ], + [ + 109.3447562, + -0.0782462 + ], + [ + 109.3451495, + -0.0785216 + ] + ] + }, + "id": "way/656111570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111574", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3749436, + -0.0594483 + ], + [ + 109.3748121, + -0.0595316 + ], + [ + 109.374647, + -0.0596357 + ], + [ + 109.3745137, + -0.0597187 + ], + [ + 109.3743658, + -0.0598034 + ] + ] + }, + "id": "way/656111574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111575", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634969, + -0.0605981 + ], + [ + 109.3636158, + -0.0603215 + ], + [ + 109.3637395, + -0.0600298 + ], + [ + 109.3638626, + -0.0597723 + ] + ] + }, + "id": "way/656111575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111576", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400574, + -0.0571217 + ], + [ + 109.3402683, + -0.0568884 + ] + ] + }, + "id": "way/656111576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111580", + "highway": "residential", + "import": "yes", + "name": "Gang Perintis", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609165, + -0.056705 + ], + [ + 109.3604251, + -0.0562173 + ], + [ + 109.3600284, + -0.0557619 + ], + [ + 109.3596425, + -0.0553715 + ], + [ + 109.3595104, + -0.0552221 + ], + [ + 109.3591129, + -0.0547791 + ], + [ + 109.3588265, + -0.0544646 + ] + ] + }, + "id": "way/656111580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111583", + "highway": "residential", + "import": "yes", + "name": "Gang Tj. Sari 2", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503998, + -0.0476478 + ], + [ + 109.3506667, + -0.0478453 + ], + [ + 109.3509315, + -0.0480472 + ] + ] + }, + "id": "way/656111583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111584", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365171, + -0.0500548 + ], + [ + 109.3649427, + -0.0502239 + ], + [ + 109.3650723, + -0.0503857 + ], + [ + 109.3652565, + -0.0506365 + ], + [ + 109.365456, + -0.0509326 + ], + [ + 109.3656607, + -0.0512291 + ] + ] + }, + "id": "way/656111584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111588", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521365, + -0.077882 + ], + [ + 109.3520721, + -0.0779864 + ], + [ + 109.3520144, + -0.0780807 + ], + [ + 109.3519482, + -0.0781915 + ] + ] + }, + "id": "way/656111588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111590", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341783, + -0.069097 + ], + [ + 109.340938, + -0.0682993 + ], + [ + 109.3406779, + -0.0685821 + ], + [ + 109.3406578, + -0.0686165 + ], + [ + 109.3406602, + -0.0686498 + ], + [ + 109.3407216, + -0.0687139 + ], + [ + 109.3412738, + -0.0691975 + ] + ] + }, + "id": "way/656111590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111592", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.367814, + -0.0585995 + ], + [ + 109.3677165, + -0.0586989 + ], + [ + 109.3674122, + -0.0589699 + ], + [ + 109.3672307, + -0.0591187 + ], + [ + 109.3669767, + -0.0593237 + ], + [ + 109.3667583, + -0.0595101 + ], + [ + 109.3665596, + -0.0596702 + ], + [ + 109.366465, + -0.0597492 + ], + [ + 109.3663378, + -0.0598512 + ], + [ + 109.3659994, + -0.0601224 + ] + ] + }, + "id": "way/656111592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111593", + "highway": "residential", + "import": "yes", + "name": "Gang Halim", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580033, + -0.060797 + ], + [ + 109.3583454, + -0.0611704 + ], + [ + 109.358391, + -0.0612202 + ], + [ + 109.3588208, + -0.0616922 + ] + ] + }, + "id": "way/656111593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111594", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353162, + -0.0707065 + ], + [ + 109.3528549, + -0.0703758 + ], + [ + 109.3526586, + -0.0701686 + ] + ] + }, + "id": "way/656111594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111595", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520954, + -0.0754279 + ], + [ + 109.3522161, + -0.0753319 + ], + [ + 109.3523955, + -0.0752096 + ] + ] + }, + "id": "way/656111595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111600", + "access": "private", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472436, + -0.0568516 + ], + [ + 109.3472001, + -0.0568245 + ], + [ + 109.3463898, + -0.0562062 + ], + [ + 109.3463515, + -0.0562063 + ], + [ + 109.3463163, + -0.0562198 + ], + [ + 109.3462707, + -0.0562593 + ], + [ + 109.3458737, + -0.0567582 + ], + [ + 109.3458268, + -0.0568373 + ], + [ + 109.3458255, + -0.0568843 + ], + [ + 109.345867, + -0.0569567 + ], + [ + 109.3460011, + -0.0570948 + ], + [ + 109.346178, + -0.0572584 + ] + ] + }, + "id": "way/656111600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111606", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608575, + -0.0675415 + ], + [ + 109.360567, + -0.0678119 + ], + [ + 109.3604012, + -0.0679512 + ], + [ + 109.3603465, + -0.0679972 + ], + [ + 109.3602649, + -0.0680657 + ] + ] + }, + "id": "way/656111606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111607", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618287, + -0.06866 + ], + [ + 109.3608575, + -0.0675415 + ], + [ + 109.3599768, + -0.0666395 + ], + [ + 109.3599406, + -0.0666301 + ], + [ + 109.3599124, + -0.0666408 + ], + [ + 109.3595932, + -0.0669305 + ], + [ + 109.3595771, + -0.06696 + ], + [ + 109.3595758, + -0.0669814 + ], + [ + 109.3604012, + -0.0679512 + ] + ] + }, + "id": "way/656111607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111614", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567657, + -0.0474234 + ], + [ + 109.3565563, + -0.0476883 + ] + ] + }, + "id": "way/656111614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656111620", + "access": "private", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460199, + -0.057477 + ], + [ + 109.346178, + -0.0572584 + ], + [ + 109.3462155, + -0.0572121 + ], + [ + 109.3463252, + -0.0570769 + ] + ] + }, + "id": "way/656111620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129814", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559086, + -0.04545 + ], + [ + 109.3560933, + -0.0456133 + ], + [ + 109.356161, + -0.0456794 + ], + [ + 109.356275, + -0.0457806 + ], + [ + 109.3563779, + -0.0458534 + ], + [ + 109.3564673, + -0.0459212 + ] + ] + }, + "id": "way/656129814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129815", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542255, + -0.0466294 + ], + [ + 109.3543703, + -0.0465316 + ], + [ + 109.3545574, + -0.0464237 + ], + [ + 109.3547224, + -0.0463284 + ], + [ + 109.3548357, + -0.046244 + ] + ] + }, + "id": "way/656129815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129817", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511163, + -0.0452192 + ], + [ + 109.3511014, + -0.0452089 + ], + [ + 109.3510857, + -0.0451886 + ], + [ + 109.3510085, + -0.0451058 + ] + ] + }, + "id": "way/656129817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129819", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438064, + -0.0504967 + ], + [ + 109.3440934, + -0.0502532 + ], + [ + 109.3441156, + -0.0502314 + ], + [ + 109.3441306, + -0.0502183 + ], + [ + 109.3441551, + -0.0501955 + ], + [ + 109.3441998, + -0.050155 + ] + ] + }, + "id": "way/656129819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129820", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3363183, + -0.0448438 + ], + [ + 109.3363828, + -0.0449366 + ] + ] + }, + "id": "way/656129820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129821", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.336411, + -0.0447676 + ], + [ + 109.3364523, + -0.044819 + ], + [ + 109.3364828, + -0.0448552 + ], + [ + 109.3364947, + -0.0449813 + ], + [ + 109.3365262, + -0.0449987 + ], + [ + 109.3367804, + -0.0450081 + ], + [ + 109.3368454, + -0.0449619 + ], + [ + 109.336885, + -0.0448861 + ], + [ + 109.336895, + -0.0447989 + ], + [ + 109.3368669, + -0.0446802 + ], + [ + 109.3368299, + -0.0445726 + ] + ] + }, + "id": "way/656129821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129822", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415983, + -0.0472096 + ], + [ + 109.3415205, + -0.0470459 + ], + [ + 109.3415058, + -0.0469682 + ], + [ + 109.3415071, + -0.046885 + ], + [ + 109.3415339, + -0.0468005 + ], + [ + 109.3415862, + -0.0467227 + ], + [ + 109.3416305, + -0.0466443 + ], + [ + 109.3416814, + -0.0465766 + ], + [ + 109.3417391, + -0.0464827 + ], + [ + 109.3417858, + -0.0464216 + ], + [ + 109.3418442, + -0.0463452 + ] + ] + }, + "id": "way/656129822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129823", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34131, + -0.0517814 + ], + [ + 109.3420287, + -0.0515105 + ] + ] + }, + "id": "way/656129823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129824", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411672, + -0.0514178 + ], + [ + 109.3418491, + -0.0511632 + ] + ] + }, + "id": "way/656129824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129825", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434071, + -0.0465702 + ], + [ + 109.3427632, + -0.0471387 + ], + [ + 109.3426954, + -0.0471985 + ] + ] + }, + "id": "way/656129825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129826", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434071, + -0.0465702 + ], + [ + 109.3434816, + -0.0464944 + ], + [ + 109.343598, + -0.0463833 + ], + [ + 109.3437281, + -0.0462539 + ] + ] + }, + "id": "way/656129826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129828", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383473, + -0.0483245 + ], + [ + 109.3383182, + -0.0482293 + ], + [ + 109.3382985, + -0.048165 + ], + [ + 109.3382844, + -0.0481188 + ] + ] + }, + "id": "way/656129828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129831", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405687, + -0.0466499 + ], + [ + 109.3406066, + -0.0467261 + ] + ] + }, + "id": "way/656129831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656129832", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405388, + -0.046596 + ], + [ + 109.3405687, + -0.0466499 + ] + ] + }, + "id": "way/656129832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656134236", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535979, + -0.0555147 + ], + [ + 109.353641, + -0.0555401 + ] + ] + }, + "id": "way/656134236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656134237", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535314, + -0.0554741 + ], + [ + 109.3535979, + -0.0555147 + ] + ] + }, + "id": "way/656134237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656134238", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545845, + -0.0539474 + ], + [ + 109.354641, + -0.0539849 + ] + ] + }, + "id": "way/656134238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656134239", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556856, + -0.0522597 + ], + [ + 109.3554867, + -0.0521133 + ] + ] + }, + "id": "way/656134239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656134240", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568889, + -0.0504796 + ], + [ + 109.3572503, + -0.0507558 + ], + [ + 109.3573191, + -0.0508095 + ] + ] + }, + "id": "way/656134240" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656134241", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569776, + -0.0512793 + ], + [ + 109.3567909, + -0.05114 + ], + [ + 109.3565567, + -0.0509882 + ] + ] + }, + "id": "way/656134241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656174970", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3815653, + -0.046679 + ], + [ + 109.3814067, + -0.0464572 + ] + ] + }, + "id": "way/656174970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656181354", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Tanjung Raya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560839, + -0.0346816 + ], + [ + 109.3561439, + -0.0347349 + ] + ] + }, + "id": "way/656181354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656181355", + "highway": "tertiary", + "name": "Jalan Tanjung Raya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559776, + -0.0345797 + ], + [ + 109.356034, + -0.0346354 + ], + [ + 109.3560839, + -0.0346816 + ] + ] + }, + "id": "way/656181355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656181357", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "maxweight": "5", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes", + "truck": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3542704, + -0.0356734 + ], + [ + 109.3533444, + -0.0362722 + ] + ] + }, + "id": "way/656181357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656181358", + "highway": "trunk", + "maxweight": "5", + "motorcycle": "yes", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559776, + -0.0345797 + ], + [ + 109.3564631, + -0.0342974 + ], + [ + 109.3565965, + -0.0342176 + ], + [ + 109.3566676, + -0.034177 + ], + [ + 109.3568324, + -0.0340874 + ] + ] + }, + "id": "way/656181358" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656184190", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996131, + -0.051768 + ], + [ + 109.2996457, + -0.0517358 + ] + ] + }, + "id": "way/656184190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656184191", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995675, + -0.0518108 + ], + [ + 109.2996131, + -0.051768 + ] + ] + }, + "id": "way/656184191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656184192", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994018, + -0.0515119 + ], + [ + 109.2993542, + -0.0515514 + ] + ] + }, + "id": "way/656184192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656184193", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994322, + -0.0514867 + ], + [ + 109.2994018, + -0.0515119 + ] + ] + }, + "id": "way/656184193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656184194", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3015804, + -0.053846 + ], + [ + 109.3015425, + -0.0538786 + ] + ] + }, + "id": "way/656184194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656184195", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2992157, + -0.0512339 + ], + [ + 109.299191, + -0.0512552 + ] + ] + }, + "id": "way/656184195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656184196", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.299191, + -0.0512552 + ], + [ + 109.2991144, + -0.0513243 + ] + ] + }, + "id": "way/656184196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656185887", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3685853, + -0.0489134 + ], + [ + 109.368863, + -0.0487652 + ], + [ + 109.3690283, + -0.0486979 + ] + ] + }, + "id": "way/656185887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656185888", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496156, + -0.0433965 + ], + [ + 109.3496174, + -0.0433974 + ], + [ + 109.3496979, + -0.0434691 + ], + [ + 109.3498683, + -0.04362 + ], + [ + 109.3500313, + -0.0437829 + ] + ] + }, + "id": "way/656185888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656185890", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633296, + -0.0482955 + ], + [ + 109.3631582, + -0.0481161 + ], + [ + 109.3629396, + -0.0478666 + ] + ] + }, + "id": "way/656185890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656185891", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633919, + -0.0483572 + ], + [ + 109.3633296, + -0.0482955 + ] + ] + }, + "id": "way/656185891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656185893", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495445, + -0.0518084 + ], + [ + 109.3489432, + -0.0515078 + ], + [ + 109.3489264, + -0.0515044 + ], + [ + 109.3489093, + -0.0515024 + ], + [ + 109.3488912, + -0.0515051 + ], + [ + 109.3488661, + -0.0515158 + ], + [ + 109.3488523, + -0.0515306 + ], + [ + 109.3486579, + -0.0517814 + ] + ] + }, + "id": "way/656185893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656185896", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363406, + -0.0447222 + ], + [ + 109.3634161, + -0.0447024 + ], + [ + 109.3634181, + -0.0446856 + ], + [ + 109.3633993, + -0.0446541 + ], + [ + 109.3633326, + -0.0445706 + ], + [ + 109.3632486, + -0.0444911 + ] + ] + }, + "id": "way/656185896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206135", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525337, + -0.0571498 + ], + [ + 109.352446, + -0.0570895 + ] + ] + }, + "id": "way/656206135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206136", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525699, + -0.0571738 + ], + [ + 109.3525337, + -0.0571498 + ] + ] + }, + "id": "way/656206136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206138", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3665596, + -0.0596702 + ], + [ + 109.366622, + -0.0597549 + ] + ] + }, + "id": "way/656206138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206139", + "bridge": "yes", + "highway": "service", + "layer": "1", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362656, + -0.0672765 + ], + [ + 109.362775, + -0.0673404 + ] + ] + }, + "id": "way/656206139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206140", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621434, + -0.0669242 + ], + [ + 109.3626216, + -0.0672553 + ], + [ + 109.362656, + -0.0672765 + ] + ] + }, + "id": "way/656206140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206141", + "access": "no", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618792, + -0.068344 + ], + [ + 109.3620379, + -0.068175 + ] + ] + }, + "id": "way/656206141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206142", + "access": "no", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621703, + -0.0682784 + ], + [ + 109.3621199, + -0.0682367 + ], + [ + 109.3620379, + -0.068175 + ], + [ + 109.3619522, + -0.0681006 + ] + ] + }, + "id": "way/656206142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206143", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612768, + -0.0691529 + ], + [ + 109.3613132, + -0.0691239 + ], + [ + 109.3613622, + -0.069085 + ], + [ + 109.3615694, + -0.0689582 + ], + [ + 109.3616585, + -0.0688945 + ], + [ + 109.3618287, + -0.06866 + ], + [ + 109.3619167, + -0.0685049 + ], + [ + 109.3619838, + -0.068403 + ], + [ + 109.3621199, + -0.0682367 + ] + ] + }, + "id": "way/656206143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206144", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3738787, + -0.0616535 + ], + [ + 109.3739377, + -0.0617129 + ] + ] + }, + "id": "way/656206144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656206149", + "highway": "residential", + "name": "Gang Palasari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582603, + -0.0603302 + ], + [ + 109.3582945, + -0.0603631 + ] + ] + }, + "id": "way/656206149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656208454", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571343, + -0.0621501 + ], + [ + 109.3571667, + -0.0621767 + ] + ] + }, + "id": "way/656208454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656208455", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570836, + -0.062103 + ], + [ + 109.3571343, + -0.0621501 + ] + ] + }, + "id": "way/656208455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656380997", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34126, + -0.0579461 + ], + [ + 109.3411462, + -0.0578624 + ] + ] + }, + "id": "way/656380997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656380998", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375743, + -0.065244 + ], + [ + 109.3382263, + -0.0658327 + ] + ] + }, + "id": "way/656380998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656380999", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440612, + -0.0547224 + ], + [ + 109.343961, + -0.0546468 + ] + ] + }, + "id": "way/656380999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656381000", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436596, + -0.0551724 + ], + [ + 109.3436083, + -0.0551278 + ] + ] + }, + "id": "way/656381000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656381001", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633168, + -0.0592547 + ], + [ + 109.3633866, + -0.0591434 + ], + [ + 109.3634355, + -0.0590884 + ], + [ + 109.3635267, + -0.0589885 + ], + [ + 109.3636543, + -0.0588488 + ] + ] + }, + "id": "way/656381001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656381002", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634999, + -0.0586875 + ], + [ + 109.3636543, + -0.0588488 + ], + [ + 109.3637527, + -0.0589469 + ], + [ + 109.3639089, + -0.0590978 + ], + [ + 109.3639766, + -0.0591608 + ], + [ + 109.3640142, + -0.0592044 + ], + [ + 109.3640135, + -0.0592305 + ], + [ + 109.3639961, + -0.0592681 + ], + [ + 109.3639927, + -0.0592788 + ], + [ + 109.3640055, + -0.0593103 + ] + ] + }, + "id": "way/656381002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656381013", + "access": "private", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530835, + -0.0612831 + ], + [ + 109.3528528, + -0.0609787 + ], + [ + 109.3526436, + -0.0607011 + ] + ] + }, + "id": "way/656381013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656381014", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340252, + -0.0658721 + ], + [ + 109.3401974, + -0.0659131 + ], + [ + 109.3401311, + -0.0659295 + ], + [ + 109.3400637, + -0.0659186 + ], + [ + 109.3400059, + -0.0658823 + ], + [ + 109.3399669, + -0.0658262 + ], + [ + 109.3399529, + -0.0657594 + ], + [ + 109.3399662, + -0.0656924 + ], + [ + 109.3400046, + -0.065636 + ] + ] + }, + "id": "way/656381014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/656381015", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443328, + -0.0598977 + ], + [ + 109.3441835, + -0.0597592 + ], + [ + 109.3440794, + -0.0596389 + ], + [ + 109.3440404, + -0.0595933 + ] + ] + }, + "id": "way/656381015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542835", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437912, + -0.0008911 + ], + [ + 109.3438167, + -0.0009005 + ] + ] + }, + "id": "way/657542835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542837", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436825, + -0.0012521 + ], + [ + 109.3437147, + -0.0012629 + ] + ] + }, + "id": "way/657542837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542838", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434907, + -0.0016309 + ], + [ + 109.3435121, + -0.0016496 + ] + ] + }, + "id": "way/657542838" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432259, + -0.0019834 + ], + [ + 109.3432648, + -0.0019914 + ] + ] + }, + "id": "way/657542839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542840", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429604, + -0.0023294 + ], + [ + 109.3430194, + -0.0023482 + ] + ] + }, + "id": "way/657542840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542841", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428323, + -0.0026915 + ], + [ + 109.3428534, + -0.0026955 + ] + ] + }, + "id": "way/657542841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542842", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426697, + -0.0034186 + ], + [ + 109.3426868, + -0.0034256 + ] + ] + }, + "id": "way/657542842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542844", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34255, + -0.0040884 + ], + [ + 109.3425889, + -0.0040965 + ] + ] + }, + "id": "way/657542844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542845", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425157, + -0.0061783 + ], + [ + 109.3425331, + -0.0062011 + ] + ] + }, + "id": "way/657542845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542846", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417935, + -0.0066161 + ], + [ + 109.3418109, + -0.0066376 + ] + ] + }, + "id": "way/657542846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542847", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414265, + -0.0068351 + ], + [ + 109.3414345, + -0.0068566 + ] + ] + }, + "id": "way/657542847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542848", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340665, + -0.0073897 + ], + [ + 109.3406912, + -0.0074182 + ] + ] + }, + "id": "way/657542848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542849", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437955, + -0.0141336 + ], + [ + 109.3438109, + -0.01414 + ] + ] + }, + "id": "way/657542849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657542850", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438736, + -0.013939 + ], + [ + 109.3439315, + -0.0139627 + ] + ] + }, + "id": "way/657542850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657543219", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.366402, + -0.0039985 + ], + [ + 109.3664087, + -0.0040112 + ], + [ + 109.3664302, + -0.0040186 + ], + [ + 109.3666852, + -0.0040391 + ] + ] + }, + "id": "way/657543219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/657543221", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3665056, + -0.0032082 + ], + [ + 109.3664827, + -0.0033826 + ], + [ + 109.3664642, + -0.0035237 + ], + [ + 109.3664368, + -0.003733 + ], + [ + 109.366402, + -0.0039985 + ] + ] + }, + "id": "way/657543221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658097636", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551796, + -0.011358 + ], + [ + 109.3551367, + -0.0113392 + ] + ] + }, + "id": "way/658097636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658122847", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3069918, + -0.0495539 + ], + [ + 109.3082025, + -0.0503921 + ] + ] + }, + "id": "way/658122847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658329883", + "access": "private", + "highway": "residential", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326652, + -0.0512248 + ], + [ + 109.3326035, + -0.0510612 + ] + ] + }, + "id": "way/658329883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658329884", + "highway": "service", + "import": "yes", + "source": "digitalglobe", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204209, + -0.0455573 + ], + [ + 109.3203415, + -0.0456331 + ] + ] + }, + "id": "way/658329884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658329885", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211652, + -0.046026 + ], + [ + 109.3209493, + -0.0458369 + ], + [ + 109.3207692, + -0.0456559 + ], + [ + 109.3206043, + -0.0454822 + ], + [ + 109.3205889, + -0.0454695 + ], + [ + 109.3205691, + -0.0454611 + ], + [ + 109.3205507, + -0.0454597 + ], + [ + 109.3205339, + -0.0454638 + ], + [ + 109.3205128, + -0.0454748 + ], + [ + 109.3204826, + -0.0454976 + ], + [ + 109.3204538, + -0.0455245 + ], + [ + 109.3204209, + -0.0455573 + ] + ] + }, + "id": "way/658329885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658329886", + "highway": "service", + "import": "yes", + "source": "digitalglobe", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320728, + -0.0460649 + ], + [ + 109.3208186, + -0.0459824 + ] + ] + }, + "id": "way/658329886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658329887", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208186, + -0.0459824 + ], + [ + 109.3209493, + -0.0458369 + ] + ] + }, + "id": "way/658329887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331270", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331332, + -0.0672664 + ], + [ + 109.3331788, + -0.0672986 + ] + ] + }, + "id": "way/658331270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331271", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331788, + -0.0672986 + ], + [ + 109.3332203, + -0.0673367 + ] + ] + }, + "id": "way/658331271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331272", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Usaha Bersama", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225349, + -0.0599133 + ], + [ + 109.3225716, + -0.0599766 + ] + ] + }, + "id": "way/658331272" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331273", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Usu Kamang", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202989, + -0.0635126 + ], + [ + 109.3203324, + -0.0635539 + ] + ] + }, + "id": "way/658331273" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331274", + "highway": "residential", + "lanes": "1", + "name": "Gang Usu Kamang", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202616, + -0.0634668 + ], + [ + 109.3202989, + -0.0635126 + ] + ] + }, + "id": "way/658331274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331275", + "highway": "residential", + "name": "Gang Usaha Bersama 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228906, + -0.0593774 + ], + [ + 109.3228766, + -0.0593536 + ] + ] + }, + "id": "way/658331275" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331276", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Purnama Indah 7", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208798, + -0.062596 + ], + [ + 109.3209244, + -0.0626442 + ] + ] + }, + "id": "way/658331276" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331277", + "highway": "residential", + "lanes": "1", + "name": "Gang Purnama Indah 7", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208446, + -0.0625635 + ], + [ + 109.3208798, + -0.062596 + ] + ] + }, + "id": "way/658331277" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331278", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350604, + -0.0649624 + ], + [ + 109.3351147, + -0.0650073 + ] + ] + }, + "id": "way/658331278" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331279", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351147, + -0.0650073 + ], + [ + 109.3351353, + -0.0650237 + ] + ] + }, + "id": "way/658331279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331280", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347801, + -0.0653158 + ], + [ + 109.3348183, + -0.0653527 + ] + ] + }, + "id": "way/658331280" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331281", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348183, + -0.0653527 + ], + [ + 109.3348376, + -0.0653674 + ] + ] + }, + "id": "way/658331281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331282", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Purnama A. Rahim", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216011, + -0.0615386 + ], + [ + 109.3216447, + -0.0615862 + ] + ] + }, + "id": "way/658331282" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658331283", + "highway": "residential", + "lanes": "1", + "name": "Gang Purnama A. Rahim", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3215753, + -0.0615095 + ], + [ + 109.3216011, + -0.0615386 + ] + ] + }, + "id": "way/658331283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658337674", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986407, + -0.0506663 + ], + [ + 109.2985875, + -0.0507228 + ] + ] + }, + "id": "way/658337674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658337675", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986622, + -0.0506413 + ], + [ + 109.2986407, + -0.0506663 + ] + ] + }, + "id": "way/658337675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658337676", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2988875, + -0.0511437 + ], + [ + 109.298978, + -0.0510545 + ] + ] + }, + "id": "way/658337676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658337677", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.298978, + -0.0510545 + ], + [ + 109.2990062, + -0.0510166 + ] + ] + }, + "id": "way/658337677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658339886", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.292475, + -0.0440855 + ], + [ + 109.2923972, + -0.044172 + ], + [ + 109.2922108, + -0.0443731 + ], + [ + 109.2922571, + -0.0444308 + ] + ] + }, + "id": "way/658339886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658342625", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133824, + -0.0449241 + ], + [ + 109.3118905, + -0.0433025 + ] + ] + }, + "id": "way/658342625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/658342626", + "highway": "unclassified", + "name": "Jalan PGA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133799, + -0.0477615 + ], + [ + 109.3132918, + -0.0477513 + ], + [ + 109.3132503, + -0.0477475 + ], + [ + 109.3132313, + -0.0477462 + ], + [ + 109.3132115, + -0.0477462 + ], + [ + 109.3132028, + -0.0477473 + ], + [ + 109.313191, + -0.047751 + ], + [ + 109.3131673, + -0.0477645 + ], + [ + 109.3124484, + -0.0472015 + ], + [ + 109.3101384, + -0.0453812 + ] + ] + }, + "id": "way/658342626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/659862352", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451501, + -0.0104405 + ], + [ + 109.345097, + -0.0104274 + ] + ] + }, + "id": "way/659862352" + }, + { + "type": "Feature", + "properties": { + "@id": "way/659862837", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344973, + -0.0108388 + ], + [ + 109.3449877, + -0.0108462 + ] + ] + }, + "id": "way/659862837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/659862839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451882, + -0.0101896 + ], + [ + 109.3452231, + -0.010205 + ] + ] + }, + "id": "way/659862839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660075220", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2990685, + -0.0077695 + ], + [ + 109.2991778, + -0.0077529 + ], + [ + 109.2996375, + -0.0076731 + ] + ] + }, + "id": "way/660075220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660084914", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3363157, + -0.0120666 + ], + [ + 109.3363921, + -0.012141 + ], + [ + 109.3364444, + -0.0121913 + ], + [ + 109.3365464, + -0.0122879 + ] + ] + }, + "id": "way/660084914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660084916", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432573, + -0.0156895 + ], + [ + 109.3433301, + -0.0157344 + ] + ] + }, + "id": "way/660084916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660084918", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343239, + -0.0156815 + ], + [ + 109.3432573, + -0.0156895 + ] + ] + }, + "id": "way/660084918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660088916", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496704, + -0.0129434 + ], + [ + 109.3496783, + -0.0129587 + ] + ] + }, + "id": "way/660088916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660088917", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491742, + -0.01435 + ], + [ + 109.349156, + -0.0143435 + ] + ] + }, + "id": "way/660088917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660103798", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527065, + -0.0700878 + ], + [ + 109.3526555, + -0.0700409 + ] + ] + }, + "id": "way/660103798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660103799", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526555, + -0.0700409 + ], + [ + 109.3526034, + -0.0700069 + ] + ] + }, + "id": "way/660103799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660108535", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518487, + -0.0237037 + ], + [ + 109.3518474, + -0.0236664 + ] + ] + }, + "id": "way/660108535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660108536", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547651, + -0.0168813 + ], + [ + 109.3548359, + -0.0168413 + ], + [ + 109.3549167, + -0.0168037 + ], + [ + 109.3553996, + -0.0165533 + ], + [ + 109.3555632, + -0.0164781 + ], + [ + 109.3557295, + -0.0164232 + ], + [ + 109.3561184, + -0.0163534 + ], + [ + 109.3563826, + -0.0163132 + ], + [ + 109.3565127, + -0.0162998 + ], + [ + 109.3570143, + -0.0162166 + ], + [ + 109.35743, + -0.0161474 + ], + [ + 109.3577037, + -0.0161025 + ], + [ + 109.357846, + -0.0160779 + ], + [ + 109.3581987, + -0.0160217 + ], + [ + 109.3582557, + -0.0160124 + ], + [ + 109.3587119, + -0.0159406 + ], + [ + 109.358798, + -0.015927 + ], + [ + 109.3591051, + -0.015876 + ], + [ + 109.3593596, + -0.0158242 + ], + [ + 109.3597561, + -0.0157587 + ], + [ + 109.3600279, + -0.0157128 + ], + [ + 109.3603858, + -0.0156426 + ], + [ + 109.3607104, + -0.015581 + ], + [ + 109.3608217, + -0.0155555 + ], + [ + 109.361039, + -0.0155058 + ], + [ + 109.3612924, + -0.0154804 + ], + [ + 109.3616427, + -0.0154516 + ], + [ + 109.361798, + -0.0154388 + ], + [ + 109.3618798, + -0.0154428 + ], + [ + 109.3619531, + -0.0154545 + ], + [ + 109.3624297, + -0.0154737 + ], + [ + 109.3626139, + -0.0154993 + ], + [ + 109.3628777, + -0.0155541 + ], + [ + 109.3630416, + -0.0155804 + ] + ] + }, + "id": "way/660108536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/660656407", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3712807, + -0.0438036 + ], + [ + 109.3710336, + -0.0435081 + ], + [ + 109.3709488, + -0.0434109 + ], + [ + 109.3708893, + -0.0433311 + ], + [ + 109.3708028, + -0.0432189 + ], + [ + 109.3706312, + -0.04303 + ], + [ + 109.3704958, + -0.042869 + ], + [ + 109.3704837, + -0.0428555 + ], + [ + 109.3704622, + -0.0428315 + ] + ] + }, + "id": "way/660656407" + }, + { + "type": "Feature", + "properties": { + "@id": "way/663469264", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3617678, + -0.0406167 + ], + [ + 109.361729, + -0.040667 + ] + ] + }, + "id": "way/663469264" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301563", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471739, + 0.0223166 + ], + [ + 109.3471826, + 0.0223535 + ], + [ + 109.3472108, + 0.0224903 + ], + [ + 109.3472551, + 0.0227183 + ], + [ + 109.3472615, + 0.0228049 + ], + [ + 109.3472631, + 0.0228269 + ], + [ + 109.3472765, + 0.0229155 + ], + [ + 109.3473288, + 0.0230777 + ], + [ + 109.3474227, + 0.0233848 + ], + [ + 109.3474696, + 0.0235257 + ], + [ + 109.3475796, + 0.0238891 + ], + [ + 109.3476775, + 0.0241989 + ], + [ + 109.3478143, + 0.0246294 + ], + [ + 109.3478371, + 0.0246978 + ], + [ + 109.3476574, + 0.0247447 + ], + [ + 109.347593, + 0.0245409 + ], + [ + 109.3475501, + 0.0244041 + ], + [ + 109.3474173, + 0.0239883 + ], + [ + 109.3473543, + 0.0237657 + ], + [ + 109.3472604, + 0.0234774 + ], + [ + 109.3471665, + 0.0231676 + ], + [ + 109.3471357, + 0.0230455 + ], + [ + 109.3471089, + 0.0229436 + ], + [ + 109.3470856, + 0.0228674 + ], + [ + 109.3470552, + 0.0227679 + ], + [ + 109.3471102, + 0.0227264 + ], + [ + 109.3472108, + 0.0227009 + ], + [ + 109.3472551, + 0.0227183 + ] + ] + }, + "id": "way/699301563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301564", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476574, + 0.0247447 + ], + [ + 109.3474844, + 0.0247903 + ], + [ + 109.3473744, + 0.0244188 + ], + [ + 109.3473074, + 0.0241908 + ], + [ + 109.34718, + 0.0237603 + ], + [ + 109.3470633, + 0.0233406 + ], + [ + 109.3469828, + 0.0230522 + ], + [ + 109.3469466, + 0.0229195 + ], + [ + 109.3469935, + 0.0228927 + ], + [ + 109.3470856, + 0.0228674 + ] + ] + }, + "id": "way/699301564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301565", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472615, + 0.0228049 + ], + [ + 109.3474398, + 0.0227521 + ], + [ + 109.3475289, + 0.0230857 + ], + [ + 109.3475935, + 0.0233547 + ], + [ + 109.3476611, + 0.0236728 + ], + [ + 109.347732, + 0.0239863 + ], + [ + 109.3477961, + 0.0242953 + ], + [ + 109.3478481, + 0.0245461 + ], + [ + 109.347853, + 0.02457 + ], + [ + 109.3478612, + 0.0246089 + ], + [ + 109.3478143, + 0.0246294 + ] + ] + }, + "id": "way/699301565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301566", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475289, + 0.0230857 + ], + [ + 109.3477021, + 0.0230428 + ], + [ + 109.3477094, + 0.0231919 + ], + [ + 109.3477401, + 0.0233392 + ], + [ + 109.3477798, + 0.0234992 + ], + [ + 109.3477925, + 0.0235814 + ], + [ + 109.3478314, + 0.0238471 + ], + [ + 109.3478811, + 0.0240531 + ], + [ + 109.3479335, + 0.0242781 + ], + [ + 109.3479985, + 0.0242628 + ], + [ + 109.3480175, + 0.0243577 + ], + [ + 109.3480274, + 0.0244218 + ], + [ + 109.3479588, + 0.0244589 + ], + [ + 109.3479145, + 0.0244824 + ], + [ + 109.3479163, + 0.0245022 + ], + [ + 109.3478874, + 0.0245059 + ], + [ + 109.3478919, + 0.0245357 + ], + [ + 109.3478481, + 0.0245461 + ] + ] + }, + "id": "way/699301566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301567", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478675, + 0.0224473 + ], + [ + 109.3479389, + 0.0226145 + ], + [ + 109.3479796, + 0.0227157 + ], + [ + 109.3480582, + 0.0229245 + ], + [ + 109.3480717, + 0.0229796 + ], + [ + 109.3480916, + 0.0232724 + ], + [ + 109.3480907, + 0.0234685 + ], + [ + 109.3481178, + 0.0235787 + ], + [ + 109.3481612, + 0.0237251 + ], + [ + 109.3482335, + 0.0239944 + ], + [ + 109.3483121, + 0.0242528 + ], + [ + 109.3483808, + 0.0244426 + ], + [ + 109.3484413, + 0.024626 + ], + [ + 109.348491, + 0.0248023 + ], + [ + 109.3485525, + 0.0249875 + ], + [ + 109.3486139, + 0.0251764 + ], + [ + 109.348669, + 0.0253463 + ], + [ + 109.3487278, + 0.0255595 + ], + [ + 109.3487856, + 0.025743 + ], + [ + 109.3488715, + 0.0260511 + ], + [ + 109.3489121, + 0.0262454 + ], + [ + 109.3489673, + 0.0264144 + ], + [ + 109.3490459, + 0.0266927 + ], + [ + 109.3491281, + 0.026915 + ], + [ + 109.3491941, + 0.0271247 + ], + [ + 109.3492465, + 0.0272973 + ], + [ + 109.3492528, + 0.0273307 + ] + ] + }, + "id": "way/699301567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301573", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568645, + 0.0258143 + ], + [ + 109.3566655, + 0.0259038 + ], + [ + 109.3564818, + 0.0259677 + ], + [ + 109.3561964, + 0.0260415 + ], + [ + 109.355899, + 0.0261094 + ], + [ + 109.3556095, + 0.0261813 + ], + [ + 109.355364, + 0.0262391 + ], + [ + 109.3547692, + 0.0263829 + ], + [ + 109.3546115, + 0.0264148 + ], + [ + 109.354176, + 0.0265105 + ], + [ + 109.3533701, + 0.0267375 + ], + [ + 109.3530007, + 0.026828 + ], + [ + 109.3526665, + 0.0269016 + ], + [ + 109.3520644, + 0.0270458 + ], + [ + 109.3519255, + 0.0270808 + ], + [ + 109.3517479, + 0.0271267 + ], + [ + 109.3516367, + 0.0271509 + ], + [ + 109.3514084, + 0.0272016 + ], + [ + 109.3512743, + 0.0272379 + ], + [ + 109.3510339, + 0.0272995 + ], + [ + 109.3509457, + 0.0273261 + ] + ] + }, + "id": "way/699301573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301574", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509457, + 0.0273261 + ], + [ + 109.3503236, + 0.0274443 + ], + [ + 109.3495603, + 0.0276335 + ], + [ + 109.3494185, + 0.0276605 + ], + [ + 109.3493645, + 0.0276807 + ], + [ + 109.3492528, + 0.0273307 + ] + ] + }, + "id": "way/699301574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301576", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469298, + 0.0282742 + ], + [ + 109.347188, + 0.0282075 + ], + [ + 109.3476295, + 0.0281034 + ], + [ + 109.3478933, + 0.0280345 + ], + [ + 109.3479564, + 0.0280181 + ], + [ + 109.3483708, + 0.0279139 + ], + [ + 109.3490079, + 0.0277577 + ], + [ + 109.3493645, + 0.0276807 + ] + ] + }, + "id": "way/699301576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301579", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350813, + 0.0302285 + ], + [ + 109.3493303, + 0.030367 + ], + [ + 109.3484107, + 0.0304167 + ], + [ + 109.3482331, + 0.0304238 + ], + [ + 109.3481692, + 0.0299054 + ], + [ + 109.3480024, + 0.0287053 + ], + [ + 109.3478933, + 0.0280345 + ] + ] + }, + "id": "way/699301579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301584", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573463, + 0.028466 + ], + [ + 109.3573058, + 0.0278573 + ], + [ + 109.3572833, + 0.0276216 + ], + [ + 109.3572123, + 0.0270895 + ], + [ + 109.3571551, + 0.0266059 + ], + [ + 109.3571083, + 0.0262541 + ], + [ + 109.3570659, + 0.0257444 + ] + ] + }, + "id": "way/699301584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301585", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572311, + 0.025687 + ], + [ + 109.3573145, + 0.0262974 + ], + [ + 109.3573769, + 0.0267914 + ], + [ + 109.3574393, + 0.0273269 + ], + [ + 109.3575017, + 0.0277689 + ], + [ + 109.3575624, + 0.0281779 + ], + [ + 109.3575934, + 0.0284504 + ] + ] + }, + "id": "way/699301585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301588", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574266, + 0.0256191 + ], + [ + 109.3575312, + 0.0262039 + ], + [ + 109.3575797, + 0.026573 + ], + [ + 109.3576351, + 0.0270011 + ], + [ + 109.3577027, + 0.0274933 + ], + [ + 109.3577565, + 0.0278971 + ], + [ + 109.3578485, + 0.0284344 + ] + ] + }, + "id": "way/699301588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699301589", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575797, + 0.026573 + ], + [ + 109.3578761, + 0.0264968 + ], + [ + 109.3577274, + 0.0254937 + ] + ] + }, + "id": "way/699301589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/699858194", + "highway": "residential", + "name": "Gang Mufakat", + "name:id": "Gang Mufakat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443526, + -0.0560525 + ], + [ + 109.3443301, + -0.0560535 + ], + [ + 109.344308, + -0.0560625 + ], + [ + 109.3433903, + -0.0570962 + ], + [ + 109.3427771, + -0.0577963 + ], + [ + 109.3410283, + -0.059883 + ] + ] + }, + "id": "way/699858194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701587174", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319026, + -0.0300114 + ], + [ + 109.3320379, + -0.0298679 + ], + [ + 109.33232, + -0.0296049 + ], + [ + 109.332545, + -0.0293814 + ], + [ + 109.3326516, + -0.0292754 + ], + [ + 109.3327097, + -0.0292177 + ], + [ + 109.3327554, + -0.0291783 + ], + [ + 109.3329065, + -0.0290473 + ], + [ + 109.3330769, + -0.0288995 + ] + ] + }, + "id": "way/701587174" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701834079", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467946, + -0.0581451 + ], + [ + 109.3469114, + -0.0582468 + ], + [ + 109.3471629, + -0.0585055 + ], + [ + 109.347219, + -0.0585633 + ] + ] + }, + "id": "way/701834079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701834080", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490538, + -0.060379 + ], + [ + 109.3490158, + -0.0603418 + ], + [ + 109.3484715, + -0.0598092 + ], + [ + 109.3483911, + -0.0597354 + ], + [ + 109.3475993, + -0.0589663 + ] + ] + }, + "id": "way/701834080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701836326", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487882, + -0.056276 + ], + [ + 109.3488075, + -0.0562815 + ], + [ + 109.3488475, + -0.0562928 + ] + ] + }, + "id": "way/701836326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/701836327", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483632, + -0.0568813 + ], + [ + 109.3483962, + -0.0568931 + ], + [ + 109.3484158, + -0.0569001 + ] + ] + }, + "id": "way/701836327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/702337331", + "access": "private", + "highway": "living_street", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468751, + -0.0694828 + ], + [ + 109.3468679, + -0.0694742 + ], + [ + 109.3463927, + -0.0689073 + ], + [ + 109.3460025, + -0.0683883 + ], + [ + 109.3454835, + -0.0677499 + ], + [ + 109.3449268, + -0.0670884 + ], + [ + 109.3448684, + -0.0670174 + ] + ] + }, + "id": "way/702337331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704491641", + "highway": "residential", + "name": "Jalan Perdana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370446, + -0.0628072 + ], + [ + 109.3369465, + -0.0629187 + ], + [ + 109.3368551, + -0.0630147 + ], + [ + 109.3358682, + -0.0641607 + ], + [ + 109.3355397, + -0.0645423 + ], + [ + 109.3355082, + -0.0645789 + ], + [ + 109.3354024, + -0.0647017 + ], + [ + 109.3353792, + -0.0647278 + ], + [ + 109.3351353, + -0.0650237 + ], + [ + 109.3350842, + -0.0650787 + ], + [ + 109.3348376, + -0.0653674 + ], + [ + 109.3340003, + -0.0664075 + ], + [ + 109.3338788, + -0.0665468 + ], + [ + 109.3335839, + -0.0668849 + ], + [ + 109.3332203, + -0.0673367 + ], + [ + 109.3330291, + -0.0675591 + ], + [ + 109.3323942, + -0.0682852 + ], + [ + 109.3322702, + -0.0684319 + ], + [ + 109.3319645, + -0.0687741 + ], + [ + 109.3315633, + -0.0692233 + ], + [ + 109.33062, + -0.070581 + ] + ] + }, + "id": "way/704491641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704513968", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474685, + -0.0724547 + ], + [ + 109.3467417, + -0.0718803 + ] + ] + }, + "id": "way/704513968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704513969", + "highway": "living_street", + "name": "Gang Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502028, + -0.0742368 + ], + [ + 109.3485495, + -0.0728447 + ], + [ + 109.3476967, + -0.0721579 + ] + ] + }, + "id": "way/704513969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704513970", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350402, + -0.0738854 + ], + [ + 109.3500794, + -0.0736373 + ], + [ + 109.3496463, + -0.0732699 + ], + [ + 109.348774, + -0.0725262 + ], + [ + 109.3479326, + -0.0718269 + ] + ] + }, + "id": "way/704513970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704513971", + "highway": "living_street", + "lanes": "2", + "lanes:backward": "1", + "lanes:forward": "1", + "maxspeed": "20", + "motor_vehicle": "private", + "name": "Komplek Balimas 1", + "smoothness": "intermediate", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519278, + -0.0714275 + ], + [ + 109.351901, + -0.0714113 + ] + ] + }, + "id": "way/704513971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704513972", + "access": "permissive", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498088, + -0.068425 + ], + [ + 109.3498421, + -0.0684498 + ], + [ + 109.352393, + -0.070338 + ], + [ + 109.3524208, + -0.0703586 + ] + ] + }, + "id": "way/704513972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704807590", + "highway": "primary", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397911, + -0.0437248 + ], + [ + 109.3403546, + -0.0443919 + ], + [ + 109.3411348, + -0.0453124 + ] + ] + }, + "id": "way/704807590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704807591", + "highway": "primary", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396762, + -0.0435939 + ], + [ + 109.3397911, + -0.0437248 + ] + ] + }, + "id": "way/704807591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/704816409", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410592, + -0.0475965 + ], + [ + 109.3412012, + -0.0479262 + ] + ] + }, + "id": "way/704816409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705033790", + "access": "private", + "highway": "service", + "import": "yes", + "oneway": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425752, + -0.0505237 + ], + [ + 109.3426256, + -0.0505368 + ], + [ + 109.3427119, + -0.0506262 + ], + [ + 109.3427946, + -0.0507139 + ], + [ + 109.3427892, + -0.050746 + ] + ] + }, + "id": "way/705033790" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705035455", + "access": "yes", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "yes", + "name": "Vigor Sport Center", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437251, + -0.0521219 + ], + [ + 109.3450422, + -0.0531775 + ], + [ + 109.3451512, + -0.053265 + ] + ] + }, + "id": "way/705035455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315544", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3789487, + -0.0415167 + ], + [ + 109.3791608, + -0.0417727 + ], + [ + 109.3793489, + -0.0420248 + ] + ] + }, + "id": "way/705315544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315545", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3780852, + -0.0418733 + ], + [ + 109.3781711, + -0.041814 + ], + [ + 109.3791443, + -0.0411499 + ] + ] + }, + "id": "way/705315545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315546", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3761848, + -0.0414635 + ], + [ + 109.3773722, + -0.0405602 + ], + [ + 109.3774114, + -0.0405304 + ] + ] + }, + "id": "way/705315546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315547", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3759649, + -0.0412212 + ], + [ + 109.3770321, + -0.0404137 + ] + ] + }, + "id": "way/705315547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315548", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3744384, + -0.0396492 + ], + [ + 109.374728, + -0.0394113 + ], + [ + 109.3757122, + -0.0386869 + ] + ] + }, + "id": "way/705315548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315549", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3736265, + -0.0387784 + ], + [ + 109.3755958, + -0.0373048 + ], + [ + 109.3764735, + -0.0366255 + ] + ] + }, + "id": "way/705315549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315550", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718524, + -0.03694 + ], + [ + 109.3719777, + -0.036816 + ], + [ + 109.3721721, + -0.0366329 + ], + [ + 109.3723277, + -0.0364921 + ], + [ + 109.3726663, + -0.0361729 + ], + [ + 109.3729004, + -0.035953 + ], + [ + 109.3732296, + -0.0356526 + ], + [ + 109.3736992, + -0.0352249 + ], + [ + 109.3744451, + -0.0345784 + ] + ] + }, + "id": "way/705315550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315551", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3713793, + -0.0364946 + ], + [ + 109.3719075, + -0.0359958 + ], + [ + 109.3727242, + -0.0353208 + ], + [ + 109.373167, + -0.0349311 + ] + ] + }, + "id": "way/705315551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315552", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3731695, + -0.0419108 + ], + [ + 109.3731213, + -0.0418981 + ], + [ + 109.3730802, + -0.04187 + ], + [ + 109.3730697, + -0.0418554 + ], + [ + 109.373051, + -0.0418296 + ], + [ + 109.373037, + -0.0417818 + ], + [ + 109.37304, + -0.0417321 + ], + [ + 109.3730594, + -0.0416863 + ], + [ + 109.3730898, + -0.0416522 + ], + [ + 109.3731341, + -0.0416276 + ], + [ + 109.3731798, + -0.0416195 + ], + [ + 109.3732258, + -0.0416262 + ], + [ + 109.3732673, + -0.041647 + ], + [ + 109.3732977, + -0.0416772 + ], + [ + 109.3733212, + -0.0417212 + ], + [ + 109.373328, + -0.0417672 + ], + [ + 109.37332, + -0.0418129 + ], + [ + 109.3732981, + -0.0418539 + ], + [ + 109.3732655, + -0.041885 + ], + [ + 109.3732191, + -0.0419066 + ], + [ + 109.3731695, + -0.0419108 + ] + ] + }, + "id": "way/705315552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315553", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3730712, + -0.0416276 + ], + [ + 109.3730898, + -0.0416522 + ], + [ + 109.3731788, + -0.0417701 + ], + [ + 109.3732655, + -0.041885 + ] + ] + }, + "id": "way/705315553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705315554", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3733208, + -0.0416592 + ], + [ + 109.3732977, + -0.0416772 + ], + [ + 109.3731788, + -0.0417701 + ], + [ + 109.3730697, + -0.0418554 + ] + ] + }, + "id": "way/705315554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705316316", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337357, + -0.0208351 + ], + [ + 109.3374154, + -0.0207429 + ], + [ + 109.3374751, + -0.0206718 + ], + [ + 109.3375183, + -0.0206419 + ], + [ + 109.3375495, + -0.0206269 + ], + [ + 109.3375938, + -0.0206332 + ], + [ + 109.3376367, + -0.0206456 + ], + [ + 109.3376809, + -0.0206728 + ], + [ + 109.3376974, + -0.0206892 + ], + [ + 109.3377061, + -0.0207144 + ], + [ + 109.3377078, + -0.0207871 + ], + [ + 109.3377096, + -0.0209581 + ] + ] + }, + "id": "way/705316316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705316317", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375495, + -0.0206269 + ], + [ + 109.3374806, + -0.0205661 + ], + [ + 109.3373164, + -0.0204213 + ], + [ + 109.3368642, + -0.0200509 + ] + ] + }, + "id": "way/705316317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705316318", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3373164, + -0.0204213 + ], + [ + 109.3375043, + -0.0201766 + ] + ] + }, + "id": "way/705316318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705316319", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3378483, + -0.0211393 + ], + [ + 109.3381845, + -0.0208884 + ], + [ + 109.3382154, + -0.0208548 + ], + [ + 109.3382382, + -0.0208139 + ], + [ + 109.338267, + -0.0207341 + ], + [ + 109.3382851, + -0.0206852 + ], + [ + 109.3383099, + -0.020645 + ], + [ + 109.3383405, + -0.0206049 + ] + ] + }, + "id": "way/705316319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/705316410", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455554, + -0.0284179 + ], + [ + 109.3449698, + -0.0286526 + ], + [ + 109.3445815, + -0.0288083 + ] + ] + }, + "id": "way/705316410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/706297377", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441575, + -0.0517968 + ], + [ + 109.34407, + -0.0517764 + ], + [ + 109.3438573, + -0.0516145 + ], + [ + 109.3436542, + -0.0514528 + ], + [ + 109.3432672, + -0.0511579 + ] + ] + }, + "id": "way/706297377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/706321373", + "highway": "residential", + "import": "yes", + "source": "digitalglobe", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395061, + -0.0515668 + ], + [ + 109.339273, + -0.050873 + ] + ] + }, + "id": "way/706321373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/708171965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506355, + -0.0863234 + ], + [ + 109.350571, + -0.0862866 + ], + [ + 109.3505119, + -0.0862485 + ], + [ + 109.3503478, + -0.0861513 + ], + [ + 109.3502007, + -0.0860608 + ], + [ + 109.3496788, + -0.0857876 + ] + ] + }, + "id": "way/708171965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709141964", + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388526, + -0.0220791 + ], + [ + 109.3387608, + -0.0221686 + ], + [ + 109.3385319, + -0.0224085 + ], + [ + 109.3385218, + -0.0224394 + ], + [ + 109.3385242, + -0.0224699 + ], + [ + 109.3385392, + -0.0224997 + ], + [ + 109.3387763, + -0.0227347 + ], + [ + 109.3387998, + -0.0227468 + ], + [ + 109.3388326, + -0.0227495 + ], + [ + 109.3388651, + -0.0227404 + ], + [ + 109.3391084, + -0.0225104 + ], + [ + 109.3391987, + -0.022435 + ] + ] + }, + "id": "way/709141964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709141965", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376654, + -0.0228346 + ], + [ + 109.3377173, + -0.0228945 + ], + [ + 109.3378096, + -0.0229797 + ], + [ + 109.3379491, + -0.0231103 + ] + ] + }, + "id": "way/709141965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709141966", + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395907, + -0.0229848 + ], + [ + 109.3394676, + -0.0230945 + ], + [ + 109.3394351, + -0.0231076 + ], + [ + 109.3393952, + -0.0231126 + ], + [ + 109.339361, + -0.0231116 + ], + [ + 109.3393255, + -0.0231025 + ], + [ + 109.339299, + -0.0230911 + ], + [ + 109.339249, + -0.0230445 + ], + [ + 109.3392292, + -0.0230204 + ], + [ + 109.3392148, + -0.0229929 + ], + [ + 109.3392044, + -0.022947 + ], + [ + 109.3392014, + -0.0229138 + ], + [ + 109.3392105, + -0.0228756 + ], + [ + 109.3392326, + -0.022839 + ], + [ + 109.3393487, + -0.0227468 + ] + ] + }, + "id": "way/709141966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709141967", + "highway": "service", + "oneway": "yes", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3393184, + -0.0235129 + ], + [ + 109.3392571, + -0.0234422 + ], + [ + 109.3392443, + -0.0234318 + ], + [ + 109.3392276, + -0.0234274 + ], + [ + 109.3392128, + -0.0234301 + ], + [ + 109.3390847, + -0.0235079 + ], + [ + 109.339076, + -0.0235183 + ], + [ + 109.3390713, + -0.023533 + ], + [ + 109.339074, + -0.0235508 + ], + [ + 109.3391025, + -0.0236111 + ] + ] + }, + "id": "way/709141967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709143048", + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449871, + -0.0536877 + ], + [ + 109.3448871, + -0.053629 + ] + ] + }, + "id": "way/709143048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709143049", + "access": "yes", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447477, + -0.0537038 + ], + [ + 109.3448413, + -0.0535874 + ], + [ + 109.3451512, + -0.053265 + ], + [ + 109.3453011, + -0.053107 + ] + ] + }, + "id": "way/709143049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709151333", + "highway": "living_street", + "motorcar": "no", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499757, + -0.0240097 + ], + [ + 109.3498267, + -0.0240328 + ], + [ + 109.3497857, + -0.0240376 + ], + [ + 109.3496801, + -0.0240483 + ], + [ + 109.3495608, + -0.0240557 + ], + [ + 109.3494511, + -0.0240561 + ], + [ + 109.3493519, + -0.0240497 + ], + [ + 109.3491632, + -0.0240397 + ], + [ + 109.3487973, + -0.0240165 + ], + [ + 109.3486975, + -0.0240113 + ], + [ + 109.3482521, + -0.0239765 + ], + [ + 109.3482604, + -0.0238557 + ], + [ + 109.3482935, + -0.023652 + ], + [ + 109.3483167, + -0.0233556 + ] + ] + }, + "id": "way/709151333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709151334", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487973, + -0.0240165 + ], + [ + 109.3487919, + -0.0240688 + ] + ] + }, + "id": "way/709151334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709151335", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491632, + -0.0240397 + ], + [ + 109.3491621, + -0.0240661 + ], + [ + 109.3491599, + -0.0240946 + ] + ] + }, + "id": "way/709151335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709151336", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498267, + -0.0240328 + ], + [ + 109.3498267, + -0.0240808 + ] + ] + }, + "id": "way/709151336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709151337", + "highway": "living_street", + "motorcar": "no", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499844, + -0.0240616 + ], + [ + 109.3498985, + -0.0240722 + ], + [ + 109.3498267, + -0.0240808 + ], + [ + 109.3497187, + -0.0240882 + ], + [ + 109.3496301, + -0.0240999 + ], + [ + 109.3495793, + -0.0241104 + ], + [ + 109.3495723, + -0.0241119 + ] + ] + }, + "id": "way/709151337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709151338", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495723, + -0.0241119 + ], + [ + 109.349545, + -0.024117 + ], + [ + 109.3495345, + -0.024119 + ] + ] + }, + "id": "way/709151338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709151339", + "highway": "living_street", + "motorcar": "no", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495345, + -0.024119 + ], + [ + 109.3494994, + -0.0241198 + ], + [ + 109.3494768, + -0.024119 + ], + [ + 109.3494444, + -0.0241178 + ], + [ + 109.3493143, + -0.0241077 + ], + [ + 109.3491599, + -0.0240946 + ], + [ + 109.3487919, + -0.0240688 + ], + [ + 109.3485788, + -0.0240467 + ], + [ + 109.3485547, + -0.0240448 + ], + [ + 109.348279, + -0.0240225 + ], + [ + 109.3482468, + -0.0240313 + ], + [ + 109.3482294, + -0.0240594 + ], + [ + 109.3481932, + -0.0241519 + ], + [ + 109.3481819, + -0.024189 + ], + [ + 109.3481335, + -0.0242847 + ], + [ + 109.3481201, + -0.0243404 + ], + [ + 109.3481086, + -0.0244419 + ], + [ + 109.3480959, + -0.0245409 + ], + [ + 109.3480841, + -0.0246294 + ], + [ + 109.3480639, + -0.0247732 + ], + [ + 109.3480511, + -0.024851 + ], + [ + 109.3480279, + -0.0249868 + ] + ] + }, + "id": "way/709151339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709151340", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481819, + -0.024189 + ], + [ + 109.3480899, + -0.0241486 + ] + ] + }, + "id": "way/709151340" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709151341", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no", + "service": "alley" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482521, + -0.0239765 + ], + [ + 109.3482468, + -0.0240313 + ] + ] + }, + "id": "way/709151341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709532651", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.380998, + -0.0312819 + ], + [ + 109.3804901, + -0.0311776 + ], + [ + 109.3800219, + -0.0310786 + ] + ] + }, + "id": "way/709532651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709532652", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3800605, + -0.0314214 + ], + [ + 109.3804036, + -0.0315055 + ], + [ + 109.3806254, + -0.0315598 + ] + ] + }, + "id": "way/709532652" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534118", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491308, + -0.0255444 + ], + [ + 109.3491186, + -0.0255031 + ], + [ + 109.3491073, + -0.0254374 + ], + [ + 109.3490897, + -0.0252899 + ], + [ + 109.3490891, + -0.025204 + ], + [ + 109.3490924, + -0.0251122 + ], + [ + 109.3490991, + -0.0250698 + ], + [ + 109.3491029, + -0.0250626 + ], + [ + 109.3491076, + -0.0250579 + ], + [ + 109.3491139, + -0.0250541 + ], + [ + 109.349121, + -0.0250517 + ], + [ + 109.349134, + -0.0250507 + ], + [ + 109.3494397, + -0.0250538 + ], + [ + 109.349539, + -0.0250522 + ], + [ + 109.3496505, + -0.0250503 + ], + [ + 109.3497016, + -0.0250476 + ], + [ + 109.3501093, + -0.0250199 + ] + ] + }, + "id": "way/709534118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534119", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491074, + -0.0255936 + ], + [ + 109.3490802, + -0.0254877 + ] + ] + }, + "id": "way/709534119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534120", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349132, + -0.0256293 + ], + [ + 109.3491481, + -0.0256203 + ] + ] + }, + "id": "way/709534120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3783237, + -0.0441206 + ], + [ + 109.377953, + -0.0443885 + ], + [ + 109.377838, + -0.0444751 + ], + [ + 109.3776351, + -0.0446279 + ], + [ + 109.3769998, + -0.045114 + ], + [ + 109.3757965, + -0.0460187 + ], + [ + 109.3746419, + -0.0468814 + ], + [ + 109.3742447, + -0.0471825 + ] + ] + }, + "id": "way/709534864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534865", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3781176, + -0.0438552 + ], + [ + 109.3768094, + -0.0448452 + ], + [ + 109.3761881, + -0.0453126 + ], + [ + 109.3759239, + -0.0455077 + ], + [ + 109.3756786, + -0.0456945 + ], + [ + 109.374483, + -0.0465877 + ], + [ + 109.3740416, + -0.0469482 + ] + ] + }, + "id": "way/709534865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534866", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3779914, + -0.0436828 + ], + [ + 109.3777451, + -0.0438581 + ], + [ + 109.3771349, + -0.0443155 + ], + [ + 109.3766735, + -0.0446628 + ], + [ + 109.3764442, + -0.0448371 + ], + [ + 109.3759949, + -0.0451791 + ], + [ + 109.375944, + -0.0452187 + ], + [ + 109.3758729, + -0.045265 + ], + [ + 109.3758313, + -0.0452703 + ], + [ + 109.3758085, + -0.0452529 + ], + [ + 109.3757603, + -0.0452301 + ], + [ + 109.3757173, + -0.0452354 + ], + [ + 109.3756758, + -0.0452582 + ], + [ + 109.3755417, + -0.0453629 + ], + [ + 109.3753915, + -0.0454782 + ], + [ + 109.3751782, + -0.0456257 + ], + [ + 109.3750052, + -0.0457545 + ], + [ + 109.3742068, + -0.0463436 + ], + [ + 109.3737914, + -0.046662 + ] + ] + }, + "id": "way/709534866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534867", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3777792, + -0.0434048 + ], + [ + 109.3759073, + -0.0447397 + ], + [ + 109.3737562, + -0.0462766 + ] + ] + }, + "id": "way/709534867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534869", + "highway": "residential", + "name": "Gang Padat Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3771848, + -0.0426767 + ], + [ + 109.3767621, + -0.0429824 + ], + [ + 109.3764952, + -0.0431728 + ], + [ + 109.3759949, + -0.0435269 + ], + [ + 109.3755041, + -0.0438662 + ], + [ + 109.374918, + -0.0442779 + ], + [ + 109.3744406, + -0.0446038 + ], + [ + 109.3736606, + -0.0451255 + ], + [ + 109.3728923, + -0.045672 + ] + ] + }, + "id": "way/709534869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534870", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718683, + -0.0437576 + ], + [ + 109.373616, + -0.0425368 + ] + ] + }, + "id": "way/709534870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534871", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3737265, + -0.0424536 + ], + [ + 109.3740555, + -0.0422271 + ] + ] + }, + "id": "way/709534871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709534872", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3737265, + -0.0424536 + ], + [ + 109.3737384, + -0.0424729 + ], + [ + 109.3737435, + -0.042495 + ], + [ + 109.3737412, + -0.0425176 + ], + [ + 109.3737317, + -0.0425382 + ], + [ + 109.373716, + -0.0425547 + ], + [ + 109.3736959, + -0.0425652 + ], + [ + 109.3736735, + -0.0425686 + ], + [ + 109.3736511, + -0.0425646 + ], + [ + 109.3736313, + -0.0425536 + ], + [ + 109.373616, + -0.0425368 + ] + ] + }, + "id": "way/709534872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709535104", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3613461, + -0.0227633 + ], + [ + 109.3613418, + -0.0218359 + ], + [ + 109.3613452, + -0.0217321 + ], + [ + 109.3613592, + -0.0214774 + ] + ] + }, + "id": "way/709535104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709535105", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605014, + -0.0220019 + ], + [ + 109.3605953, + -0.0229131 + ], + [ + 109.3607201, + -0.0243227 + ] + ] + }, + "id": "way/709535105" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709535133", + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386691, + -0.0215553 + ], + [ + 109.3388678, + -0.0213644 + ], + [ + 109.338871, + -0.0213579 + ], + [ + 109.3388716, + -0.0213514 + ], + [ + 109.3388691, + -0.0213461 + ], + [ + 109.3386476, + -0.021152 + ] + ] + }, + "id": "way/709535133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709535222", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518467, + -0.0236527 + ], + [ + 109.3516881, + -0.0236685 + ], + [ + 109.3516539, + -0.0236728 + ], + [ + 109.3516281, + -0.0236806 + ], + [ + 109.351606, + -0.0237 + ], + [ + 109.3515744, + -0.0237151 + ], + [ + 109.3515459, + -0.0237208 + ], + [ + 109.3511756, + -0.0237483 + ], + [ + 109.3507535, + -0.0237908 + ], + [ + 109.3507412, + -0.023792 + ] + ] + }, + "id": "way/709535222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709536019", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3647456, + 0.0088409 + ], + [ + 109.3647844, + 0.0088379 + ], + [ + 109.3648252, + 0.0088385 + ], + [ + 109.3648965, + 0.0088363 + ], + [ + 109.3651305, + 0.0088453 + ], + [ + 109.3651199, + 0.0090451 + ], + [ + 109.3651327, + 0.0090625 + ], + [ + 109.3651548, + 0.0090706 + ], + [ + 109.3665951, + 0.008909 + ], + [ + 109.3666367, + 0.0088835 + ], + [ + 109.3666327, + 0.0087842 + ], + [ + 109.366571, + 0.0082076 + ] + ] + }, + "id": "way/709536019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709536020", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651305, + 0.0088453 + ], + [ + 109.3651315, + 0.0087672 + ], + [ + 109.3651409, + 0.0083995 + ] + ] + }, + "id": "way/709536020" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709536720", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606438, + -0.0170137 + ], + [ + 109.3608408, + -0.0170076 + ], + [ + 109.3612747, + -0.0170064 + ], + [ + 109.3612786, + -0.0170472 + ], + [ + 109.361286, + -0.0171864 + ] + ] + }, + "id": "way/709536720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709536721", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612747, + -0.0170064 + ], + [ + 109.3612844, + -0.0165278 + ], + [ + 109.3612757, + -0.0165103 + ], + [ + 109.3612555, + -0.0165023 + ], + [ + 109.3612213, + -0.0164936 + ], + [ + 109.3610282, + -0.0164969 + ], + [ + 109.3608505, + -0.0164982 + ] + ] + }, + "id": "way/709536721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709536922", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480899, + -0.0241486 + ], + [ + 109.3479997, + -0.0242767 + ], + [ + 109.347981, + -0.0243015 + ], + [ + 109.3479598, + -0.0243203 + ], + [ + 109.3479359, + -0.0243438 + ], + [ + 109.3479121, + -0.0243615 + ], + [ + 109.3478537, + -0.0243982 + ], + [ + 109.3477301, + -0.024462 + ], + [ + 109.3475997, + -0.024512 + ], + [ + 109.3475277, + -0.0245362 + ], + [ + 109.3475108, + -0.024541 + ], + [ + 109.3474854, + -0.0245486 + ], + [ + 109.3474616, + -0.024557 + ], + [ + 109.347419, + -0.0245778 + ], + [ + 109.3473878, + -0.0246022 + ], + [ + 109.3473721, + -0.0246176 + ], + [ + 109.3473315, + -0.0246649 + ], + [ + 109.3472631, + -0.0247256 + ], + [ + 109.3470754, + -0.0248897 + ], + [ + 109.3470133, + -0.0249459 + ], + [ + 109.3468566, + -0.025075 + ], + [ + 109.3467411, + -0.0251568 + ], + [ + 109.3464612, + -0.0252859 + ], + [ + 109.3463631, + -0.0253312 + ] + ] + }, + "id": "way/709536922" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709536923", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479121, + -0.0243615 + ], + [ + 109.3479347, + -0.0244248 + ] + ] + }, + "id": "way/709536923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709539672", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3747539, + -0.0609076 + ], + [ + 109.374458, + -0.0605374 + ], + [ + 109.3744473, + -0.0605026 + ], + [ + 109.3744527, + -0.060467 + ], + [ + 109.3744547, + -0.0603899 + ], + [ + 109.3744503, + -0.0603755 + ], + [ + 109.3744413, + -0.0603504 + ], + [ + 109.3743994, + -0.0602903 + ], + [ + 109.3743071, + -0.0601736 + ] + ] + }, + "id": "way/709539672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709539673", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3743994, + -0.0602903 + ], + [ + 109.3743662, + -0.0603081 + ], + [ + 109.3743099, + -0.0603396 + ], + [ + 109.3742492, + -0.0603748 + ], + [ + 109.3741828, + -0.0604191 + ], + [ + 109.3741278, + -0.0604633 + ], + [ + 109.3741147, + -0.0604747 + ], + [ + 109.3741006, + -0.0604804 + ], + [ + 109.3740866, + -0.0604794 + ], + [ + 109.3740634, + -0.0604717 + ], + [ + 109.3740497, + -0.0604744 + ], + [ + 109.3740356, + -0.0604831 + ], + [ + 109.373936, + -0.0605773 + ], + [ + 109.3737634, + -0.0607208 + ], + [ + 109.3736599, + -0.0607989 + ], + [ + 109.3735702, + -0.0608659 + ] + ] + }, + "id": "way/709539673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/709539674", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3736599, + -0.0607989 + ], + [ + 109.3736243, + -0.0607517 + ], + [ + 109.373476, + -0.0605629 + ], + [ + 109.3734747, + -0.0605525 + ], + [ + 109.373479, + -0.0605472 + ], + [ + 109.3735461, + -0.0604955 + ], + [ + 109.3735548, + -0.0604945 + ], + [ + 109.3735692, + -0.0604989 + ], + [ + 109.37359, + -0.0605214 + ], + [ + 109.3735994, + -0.060525 + ], + [ + 109.3736091, + -0.0605227 + ], + [ + 109.3739865, + -0.060227 + ], + [ + 109.3739982, + -0.0602245 + ], + [ + 109.3740076, + -0.0602248 + ], + [ + 109.3740287, + -0.0602414 + ], + [ + 109.3740421, + -0.0602453 + ], + [ + 109.37405, + -0.0602441 + ], + [ + 109.3741975, + -0.0601233 + ] + ] + }, + "id": "way/709539674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959656", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070895, + -0.0242655 + ], + [ + 109.3067175, + -0.0233513 + ] + ] + }, + "id": "way/711959656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959657", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072647, + -0.023877 + ], + [ + 109.3071306, + -0.0235176 + ], + [ + 109.3070541, + -0.0232675 + ], + [ + 109.3068999, + -0.0228216 + ] + ] + }, + "id": "way/711959657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959658", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3059349, + -0.0230136 + ], + [ + 109.3063313, + -0.0239789 + ], + [ + 109.3065419, + -0.0245071 + ] + ] + }, + "id": "way/711959658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959659", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3055493, + -0.0230555 + ], + [ + 109.3054247, + -0.0226969 + ], + [ + 109.3053714, + -0.0225524 + ], + [ + 109.3052745, + -0.0222999 + ], + [ + 109.3051144, + -0.0218912 + ] + ] + }, + "id": "way/711959659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959660", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072548, + -0.0350396 + ], + [ + 109.3069053, + -0.0341392 + ] + ] + }, + "id": "way/711959660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959661", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092968, + -0.0291358 + ], + [ + 109.3093145, + -0.0292465 + ], + [ + 109.3093237, + -0.0292954 + ], + [ + 109.3093326, + -0.0293397 + ], + [ + 109.3093488, + -0.0294234 + ] + ] + }, + "id": "way/711959661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959662", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3045391, + -0.0266184 + ], + [ + 109.3045233, + -0.0265808 + ], + [ + 109.3043735, + -0.0262238 + ], + [ + 109.3042831, + -0.025969 + ] + ] + }, + "id": "way/711959662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959663", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042499, + -0.0346381 + ], + [ + 109.3040397, + -0.0347339 + ], + [ + 109.3038529, + -0.0348204 + ], + [ + 109.3029807, + -0.035314 + ] + ] + }, + "id": "way/711959663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959664", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3082286, + -0.0376978 + ], + [ + 109.3079889, + -0.03798 + ], + [ + 109.3078923, + -0.0380859 + ], + [ + 109.3077353, + -0.0382567 + ], + [ + 109.307605, + -0.0383891 + ], + [ + 109.3075673, + -0.0384356 + ], + [ + 109.3075254, + -0.0384842 + ] + ] + }, + "id": "way/711959664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959665", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3036876, + -0.0418196 + ], + [ + 109.3029504, + -0.0422864 + ], + [ + 109.3029357, + -0.0422958 + ], + [ + 109.3008864, + -0.0436073 + ] + ] + }, + "id": "way/711959665" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959667", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029127, + -0.0404497 + ], + [ + 109.3029771, + -0.0403832 + ], + [ + 109.3030783, + -0.0402992 + ], + [ + 109.3031874, + -0.040209 + ], + [ + 109.3032421, + -0.0401508 + ], + [ + 109.303524, + -0.0398899 + ] + ] + }, + "id": "way/711959667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959668", + "highway": "residential", + "import": "yes", + "name": "Gang Sukma 18 A", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304238, + -0.0372741 + ], + [ + 109.3039743, + -0.0375072 + ], + [ + 109.303633, + -0.0378129 + ], + [ + 109.3033382, + -0.0380895 + ], + [ + 109.3032395, + -0.038182 + ], + [ + 109.3028115, + -0.0385755 + ], + [ + 109.3025368, + -0.038827 + ], + [ + 109.3020792, + -0.039218 + ] + ] + }, + "id": "way/711959668" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959669", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "name": "Gang Sukma 17A", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046966, + -0.0377235 + ], + [ + 109.3044806, + -0.0379318 + ], + [ + 109.304297, + -0.0381068 + ], + [ + 109.3041695, + -0.0382268 + ], + [ + 109.3036611, + -0.0386814 + ] + ] + }, + "id": "way/711959669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959670", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3003105, + -0.0365866 + ], + [ + 109.3000005, + -0.0367302 + ], + [ + 109.2981961, + -0.0375563 + ] + ] + }, + "id": "way/711959670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959671", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981412, + -0.038495 + ], + [ + 109.2977406, + -0.0388199 + ], + [ + 109.2976646, + -0.0388841 + ], + [ + 109.2975887, + -0.0389482 + ] + ] + }, + "id": "way/711959671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959672", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2998403, + -0.0386479 + ], + [ + 109.2985834, + -0.0392202 + ] + ] + }, + "id": "way/711959672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959673", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991582, + -0.0405711 + ], + [ + 109.2991878, + -0.0405545 + ] + ] + }, + "id": "way/711959673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959674", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2964667, + -0.0415143 + ], + [ + 109.2973392, + -0.0407548 + ], + [ + 109.2974961, + -0.040614 + ], + [ + 109.2978311, + -0.0403403 + ] + ] + }, + "id": "way/711959674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959675", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2949307, + -0.0395715 + ], + [ + 109.2938844, + -0.0382406 + ], + [ + 109.2936122, + -0.0378782 + ], + [ + 109.2932824, + -0.0374709 + ] + ] + }, + "id": "way/711959675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959676", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946282, + -0.0277528 + ], + [ + 109.2935957, + -0.0261724 + ] + ] + }, + "id": "way/711959676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959677", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950343, + -0.0268346 + ], + [ + 109.2944062, + -0.0259906 + ], + [ + 109.2941977, + -0.025709 + ] + ] + }, + "id": "way/711959677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959678", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980798, + -0.0255481 + ], + [ + 109.2978148, + -0.0257044 + ], + [ + 109.2975033, + -0.025894 + ] + ] + }, + "id": "way/711959678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/711959679", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2951961, + -0.0242726 + ], + [ + 109.2953724, + -0.0245389 + ], + [ + 109.2954952, + -0.0247253 + ] + ] + }, + "id": "way/711959679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288488", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136108, + -0.041998 + ], + [ + 109.3138817, + -0.0422904 + ] + ] + }, + "id": "way/713288488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288489", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140725, + -0.0313716 + ], + [ + 109.3140775, + -0.0308508 + ], + [ + 109.3140963, + -0.0307448 + ], + [ + 109.3141177, + -0.0306657 + ], + [ + 109.3141177, + -0.0306161 + ] + ] + }, + "id": "way/713288489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288490", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131566, + -0.0262798 + ], + [ + 109.3134589, + -0.0261878 + ], + [ + 109.3138516, + -0.0260754 + ] + ] + }, + "id": "way/713288490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288491", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32175, + -0.0271529 + ], + [ + 109.3217575, + -0.027166 + ], + [ + 109.3217635, + -0.0271765 + ], + [ + 109.3217744, + -0.0271957 + ], + [ + 109.3217883, + -0.0272188 + ], + [ + 109.3218034, + -0.0272435 + ], + [ + 109.3219174, + -0.0274424 + ] + ] + }, + "id": "way/713288491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288492", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225224, + -0.0284321 + ], + [ + 109.3223616, + -0.028522 + ], + [ + 109.3221261, + -0.0286688 + ], + [ + 109.3220528, + -0.028715 + ], + [ + 109.321996, + -0.0287593 + ] + ] + }, + "id": "way/713288492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288493", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219739, + -0.0295633 + ], + [ + 109.3217657, + -0.0297002 + ], + [ + 109.3213972, + -0.0299187 + ] + ] + }, + "id": "way/713288493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288494", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239245, + -0.0309837 + ], + [ + 109.3245127, + -0.0306064 + ], + [ + 109.3249427, + -0.0303305 + ] + ] + }, + "id": "way/713288494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288495", + "highway": "residential", + "import": "yes", + "name": "Gang Cendana 9", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315776, + -0.0286004 + ], + [ + 109.3315298, + -0.0285568 + ], + [ + 109.3315063, + -0.0285537 + ], + [ + 109.3314843, + -0.028565 + ], + [ + 109.3314103, + -0.0286253 + ], + [ + 109.3313964, + -0.0286304 + ], + [ + 109.3313833, + -0.0286283 + ], + [ + 109.3313723, + -0.0286201 + ], + [ + 109.3311524, + -0.028322 + ] + ] + }, + "id": "way/713288495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288496", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310907, + -0.0258521 + ], + [ + 109.331275, + -0.025601 + ], + [ + 109.3312753, + -0.0255947 + ], + [ + 109.3312748, + -0.0255901 + ], + [ + 109.3312737, + -0.0255855 + ], + [ + 109.3312715, + -0.0255814 + ], + [ + 109.3312369, + -0.0255467 + ], + [ + 109.3312355, + -0.0255415 + ], + [ + 109.3312355, + -0.0255372 + ], + [ + 109.3312363, + -0.0255334 + ], + [ + 109.3312378, + -0.0255295 + ], + [ + 109.3312585, + -0.0255022 + ], + [ + 109.3313368, + -0.0254106 + ], + [ + 109.3315368, + -0.0251242 + ], + [ + 109.3315615, + -0.0250887 + ], + [ + 109.3317549, + -0.0248587 + ], + [ + 109.331882, + -0.024729 + ] + ] + }, + "id": "way/713288496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288497", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279197, + -0.0251645 + ], + [ + 109.327848, + -0.0250626 + ], + [ + 109.3277836, + -0.0249767 + ], + [ + 109.3276709, + -0.0247729 + ], + [ + 109.327622, + -0.0246897 + ], + [ + 109.3275103, + -0.0244235 + ] + ] + }, + "id": "way/713288497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288498", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302913, + -0.0251794 + ], + [ + 109.3302252, + -0.0252614 + ], + [ + 109.3299131, + -0.0256526 + ], + [ + 109.3297599, + -0.0258427 + ] + ] + }, + "id": "way/713288498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288499", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330097, + -0.0270192 + ], + [ + 109.3298972, + -0.0266343 + ] + ] + }, + "id": "way/713288499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288500", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339278, + -0.0247374 + ], + [ + 109.334045, + -0.0246274 + ], + [ + 109.3341672, + -0.02451 + ] + ] + }, + "id": "way/713288500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288501", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337616, + -0.0240949 + ], + [ + 109.3338535, + -0.0238961 + ], + [ + 109.3338818, + -0.0238406 + ], + [ + 109.3340278, + -0.0235779 + ] + ] + }, + "id": "way/713288501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288502", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335503, + -0.0240326 + ], + [ + 109.3338293, + -0.0234716 + ] + ] + }, + "id": "way/713288502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288503", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315597, + -0.0244562 + ], + [ + 109.3317394, + -0.0242172 + ], + [ + 109.3320449, + -0.0237444 + ] + ] + }, + "id": "way/713288503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288504", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278007, + -0.0353944 + ], + [ + 109.3281977, + -0.0358288 + ], + [ + 109.3278794, + -0.0361576 + ] + ] + }, + "id": "way/713288504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288505", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291854, + -0.0370674 + ], + [ + 109.3297177, + -0.0367248 + ] + ] + }, + "id": "way/713288505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288506", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270272, + -0.0389376 + ], + [ + 109.3272206, + -0.0392111 + ], + [ + 109.3274649, + -0.0395678 + ], + [ + 109.327593, + -0.0397452 + ] + ] + }, + "id": "way/713288506" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288507", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259853, + -0.0368974 + ], + [ + 109.3258953, + -0.0369622 + ], + [ + 109.3256968, + -0.0371164 + ], + [ + 109.3253951, + -0.0373591 + ] + ] + }, + "id": "way/713288507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288508", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212014, + -0.0354964 + ], + [ + 109.3213771, + -0.0353367 + ], + [ + 109.3215364, + -0.035181 + ], + [ + 109.3216803, + -0.0350743 + ], + [ + 109.3216943, + -0.0350595 + ], + [ + 109.3217084, + -0.0350421 + ], + [ + 109.3217164, + -0.035027 + ], + [ + 109.3217231, + -0.0350099 + ], + [ + 109.3217298, + -0.0349904 + ], + [ + 109.3217348, + -0.034975 + ], + [ + 109.3217355, + -0.0349599 + ], + [ + 109.3217357, + -0.0349497 + ], + [ + 109.3217359, + -0.0349408 + ], + [ + 109.3217322, + -0.0349264 + ], + [ + 109.3217272, + -0.034917 + ], + [ + 109.3216145, + -0.0347561 + ] + ] + }, + "id": "way/713288508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288509", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213413, + -0.0349021 + ], + [ + 109.3214396, + -0.034846 + ], + [ + 109.3216145, + -0.0347561 + ], + [ + 109.3216972, + -0.0347048 + ], + [ + 109.3217593, + -0.0346434 + ], + [ + 109.3217942, + -0.0346085 + ] + ] + }, + "id": "way/713288509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288510", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3215364, + -0.035181 + ], + [ + 109.3213413, + -0.0349021 + ], + [ + 109.3208903, + -0.0342733 + ] + ] + }, + "id": "way/713288510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288511", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175711, + -0.0409667 + ], + [ + 109.3176057, + -0.0410103 + ], + [ + 109.3176078, + -0.0410173 + ], + [ + 109.3176066, + -0.0410264 + ], + [ + 109.3176041, + -0.0410344 + ], + [ + 109.3175996, + -0.0410418 + ], + [ + 109.3175929, + -0.04105 + ], + [ + 109.3175194, + -0.0411116 + ], + [ + 109.3174315, + -0.0411839 + ] + ] + }, + "id": "way/713288511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288512", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239212, + -0.0330381 + ], + [ + 109.3237509, + -0.0331246 + ], + [ + 109.3236946, + -0.0331729 + ], + [ + 109.3235558, + -0.0332554 + ], + [ + 109.3234786, + -0.033313 + ] + ] + }, + "id": "way/713288512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288513", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186533, + -0.0304806 + ], + [ + 109.3184094, + -0.0301316 + ], + [ + 109.3181813, + -0.0298154 + ] + ] + }, + "id": "way/713288513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713288514", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323755, + -0.0225896 + ], + [ + 109.332728, + -0.0228314 + ] + ] + }, + "id": "way/713288514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652680", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2931087, + -0.0207268 + ], + [ + 109.2931616, + -0.0204438 + ], + [ + 109.2932676, + -0.0199355 + ], + [ + 109.293389, + -0.0194406 + ] + ] + }, + "id": "way/713652680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652681", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2929383, + -0.0153664 + ], + [ + 109.2929204, + -0.0153054 + ] + ] + }, + "id": "way/713652681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652682", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2923802, + -0.0156123 + ], + [ + 109.2923567, + -0.0155462 + ] + ] + }, + "id": "way/713652682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652683", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980735, + -0.0126721 + ], + [ + 109.2986065, + -0.0126815 + ], + [ + 109.2993562, + -0.0126909 + ] + ] + }, + "id": "way/713652683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652684", + "highway": "residential", + "source": "fb maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984813, + -0.0165644 + ], + [ + 109.2975857, + -0.0165178 + ], + [ + 109.2966961, + -0.0164584 + ] + ] + }, + "id": "way/713652684" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652685", + "highway": "residential", + "import": "yes", + "name": "Gang karet Bakti", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981227, + -0.0175658 + ], + [ + 109.2979433, + -0.0175577 + ], + [ + 109.2977546, + -0.0175494 + ], + [ + 109.2976612, + -0.0175472 + ], + [ + 109.2974939, + -0.0175455 + ], + [ + 109.2959786, + -0.0175873 + ] + ] + }, + "id": "way/713652685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652686", + "highway": "residential", + "import": "yes", + "lanes": "1", + "name": "Gang Pantura", + "oneway": "no", + "source": "digitalglobe", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297033, + -0.0199878 + ], + [ + 109.2966707, + -0.0200247 + ], + [ + 109.2942282, + -0.0203488 + ] + ] + }, + "id": "way/713652686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652687", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3005216, + -0.0173599 + ], + [ + 109.3004251, + -0.0177318 + ] + ] + }, + "id": "way/713652687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652688", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004664, + -0.0079085 + ], + [ + 109.3004603, + -0.0078994 + ], + [ + 109.3004504, + -0.0078921 + ], + [ + 109.3004357, + -0.0078872 + ], + [ + 109.3004237, + -0.0078783 + ], + [ + 109.3004161, + -0.0078716 + ], + [ + 109.300412, + -0.0078638 + ], + [ + 109.3004058, + -0.0078484 + ], + [ + 109.3003316, + -0.007533 + ], + [ + 109.3002406, + -0.0070332 + ] + ] + }, + "id": "way/713652688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652689", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303075, + -0.0097204 + ], + [ + 109.3030965, + -0.0093974 + ] + ] + }, + "id": "way/713652689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652690", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079131, + -0.0181499 + ], + [ + 109.3075921, + -0.0174815 + ] + ] + }, + "id": "way/713652690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652691", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3055781, + -0.0174661 + ], + [ + 109.3052423, + -0.0176263 + ] + ] + }, + "id": "way/713652691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652692", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052504, + -0.0160128 + ], + [ + 109.3058456, + -0.0172071 + ] + ] + }, + "id": "way/713652692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652693", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060323, + -0.011078 + ], + [ + 109.3064137, + -0.0111721 + ], + [ + 109.3065459, + -0.0112009 + ], + [ + 109.3068409, + -0.0112653 + ], + [ + 109.3069911, + -0.0112814 + ] + ] + }, + "id": "way/713652693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652694", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088399, + -0.0030363 + ], + [ + 109.3094649, + -0.0031594 + ] + ] + }, + "id": "way/713652694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652695", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120252, + -0.0062516 + ], + [ + 109.3117708, + -0.0061315 + ], + [ + 109.3116119, + -0.0060699 + ], + [ + 109.3114189, + -0.0059919 + ] + ] + }, + "id": "way/713652695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652696", + "bridge": "yes", + "highway": "path", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950047, + -0.0144277 + ], + [ + 109.2950226, + -0.0144763 + ] + ] + }, + "id": "way/713652696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652697", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2929204, + -0.0153054 + ], + [ + 109.29286, + -0.0151011 + ], + [ + 109.2926252, + -0.014307 + ], + [ + 109.2919989, + -0.0124079 + ] + ] + }, + "id": "way/713652697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/713652698", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2923567, + -0.0155462 + ], + [ + 109.2921907, + -0.0149829 + ], + [ + 109.2921317, + -0.0147523 + ] + ] + }, + "id": "way/713652698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394464", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130368, + -0.0162113 + ], + [ + 109.3128363, + -0.0161489 + ], + [ + 109.3126874, + -0.0161006 + ], + [ + 109.3123191, + -0.0159846 + ] + ] + }, + "id": "way/715394464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394465", + "highway": "residential", + "import": "yes", + "motor_vehicle": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129885, + -0.0168335 + ], + [ + 109.3130368, + -0.0162113 + ], + [ + 109.3131119, + -0.015927 + ] + ] + }, + "id": "way/715394465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394466", + "highway": "residential", + "name": "Jalan R.E. Martadinata" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128965, + -0.0168541 + ], + [ + 109.3131834, + -0.0180721 + ], + [ + 109.3132534, + -0.0183154 + ], + [ + 109.3136242, + -0.0195372 + ], + [ + 109.3140309, + -0.0207483 + ], + [ + 109.3141209, + -0.0210253 + ], + [ + 109.3143051, + -0.0216711 + ] + ] + }, + "id": "way/715394466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394467", + "highway": "residential", + "import": "yes", + "motorcar": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313505, + -0.0141934 + ], + [ + 109.3133027, + -0.0144704 + ] + ] + }, + "id": "way/715394467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394472", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315823, + -0.0070793 + ], + [ + 109.3161488, + -0.007295 + ], + [ + 109.3163956, + -0.0074361 + ] + ] + }, + "id": "way/715394472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394473", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3139037, + -0.0035055 + ], + [ + 109.3139676, + -0.0033703 + ], + [ + 109.314134, + -0.0029946 + ] + ] + }, + "id": "way/715394473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394476", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317941, + -0.0080692 + ], + [ + 109.3182135, + -0.0077355 + ], + [ + 109.3185169, + -0.0074034 + ] + ] + }, + "id": "way/715394476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394477", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186909, + -0.0081888 + ], + [ + 109.3181558, + -0.0088017 + ] + ] + }, + "id": "way/715394477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394478", + "highway": "residential", + "name": "Gang Meninjau II", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208843, + -0.0102547 + ], + [ + 109.3206815, + -0.0100932 + ] + ] + }, + "id": "way/715394478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394479", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196459, + -0.0152287 + ], + [ + 109.3191007, + -0.0148487 + ] + ] + }, + "id": "way/715394479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394481", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208152, + -0.0185011 + ], + [ + 109.320767, + -0.0182113 + ], + [ + 109.3207386, + -0.0179498 + ] + ] + }, + "id": "way/715394481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394482", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321385, + -0.0181899 + ], + [ + 109.3216298, + -0.0181566 + ], + [ + 109.3217014, + -0.0181469 + ], + [ + 109.3220391, + -0.0180986 + ] + ] + }, + "id": "way/715394482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394483", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322994, + -0.0176711 + ], + [ + 109.3230253, + -0.0178733 + ], + [ + 109.3231187, + -0.018744 + ], + [ + 109.3232551, + -0.0196709 + ] + ] + }, + "id": "way/715394483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394485", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3235494, + -0.020261 + ], + [ + 109.3236261, + -0.0205186 + ], + [ + 109.3236959, + -0.0207251 + ], + [ + 109.3238094, + -0.0211279 + ], + [ + 109.3239255, + -0.0215375 + ] + ] + }, + "id": "way/715394485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394486", + "highway": "residential", + "import": "yes", + "motor_vehicle": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243756, + -0.0194742 + ], + [ + 109.3243839, + -0.0195225 + ] + ] + }, + "id": "way/715394486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394487", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244717, + -0.0199631 + ], + [ + 109.3245113, + -0.0201644 + ], + [ + 109.3248135, + -0.0213116 + ] + ] + }, + "id": "way/715394487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394490", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272472, + -0.0211304 + ], + [ + 109.3266892, + -0.0212216 + ], + [ + 109.3261155, + -0.0213057 + ] + ] + }, + "id": "way/715394490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394494", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286012, + -0.017571 + ], + [ + 109.3286076, + -0.0175752 + ], + [ + 109.3286136, + -0.017578 + ], + [ + 109.32862, + -0.0175794 + ], + [ + 109.3286285, + -0.01758 + ], + [ + 109.3287619, + -0.0175475 + ], + [ + 109.3287731, + -0.0175473 + ], + [ + 109.3287806, + -0.0175484 + ], + [ + 109.3287885, + -0.0175518 + ], + [ + 109.3287961, + -0.017558 + ], + [ + 109.3288037, + -0.017567 + ], + [ + 109.3288228, + -0.0176008 + ], + [ + 109.32884, + -0.0176607 + ], + [ + 109.328878, + -0.0178314 + ], + [ + 109.329004, + -0.0182766 + ], + [ + 109.329118, + -0.0186425 + ] + ] + }, + "id": "way/715394494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394495", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294466, + -0.0185748 + ], + [ + 109.3294157, + -0.0183637 + ], + [ + 109.3293706, + -0.0181273 + ], + [ + 109.3293239, + -0.0179402 + ], + [ + 109.3294653, + -0.0179131 + ], + [ + 109.3294238, + -0.0176811 + ], + [ + 109.3293835, + -0.017437 + ] + ] + }, + "id": "way/715394495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394496", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301461, + -0.0179021 + ], + [ + 109.3301279, + -0.0176704 + ], + [ + 109.3301146, + -0.0174944 + ], + [ + 109.3301166, + -0.0174793 + ], + [ + 109.3301215, + -0.0174629 + ], + [ + 109.3301267, + -0.0174499 + ], + [ + 109.3301392, + -0.0174287 + ] + ] + }, + "id": "way/715394496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394497", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303498, + -0.0179037 + ], + [ + 109.3307009, + -0.0178751 + ] + ] + }, + "id": "way/715394497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394498", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303498, + -0.0179037 + ], + [ + 109.3304276, + -0.0183927 + ] + ] + }, + "id": "way/715394498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394499", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290186, + -0.0162488 + ], + [ + 109.32935, + -0.0164902 + ], + [ + 109.3296095, + -0.0166793 + ] + ] + }, + "id": "way/715394499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394500", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3314579, + -0.0165341 + ], + [ + 109.3312611, + -0.0167497 + ], + [ + 109.3311202, + -0.0169086 + ], + [ + 109.3309486, + -0.017091 + ] + ] + }, + "id": "way/715394500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394501", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319175, + -0.0168852 + ], + [ + 109.3313885, + -0.0174558 + ] + ] + }, + "id": "way/715394501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394502", + "access": "destination", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258092, + -0.0164142 + ], + [ + 109.3255725, + -0.0161543 + ], + [ + 109.3254608, + -0.0160503 + ] + ] + }, + "id": "way/715394502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394503", + "highway": "living_street", + "motorcar": "no", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259833, + -0.016143 + ], + [ + 109.3257954, + -0.0159685 + ], + [ + 109.325578, + -0.0158273 + ], + [ + 109.325575, + -0.0158192 + ], + [ + 109.3255776, + -0.0158111 + ], + [ + 109.3256036, + -0.0157687 + ], + [ + 109.3256539, + -0.015709 + ], + [ + 109.325671, + -0.0156895 + ], + [ + 109.325669, + -0.0156537 + ], + [ + 109.325662, + -0.0156379 + ], + [ + 109.3256432, + -0.0156192 + ], + [ + 109.3253217, + -0.0153985 + ] + ] + }, + "id": "way/715394503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394504", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256896, + -0.0136032 + ], + [ + 109.3253228, + -0.0133018 + ] + ] + }, + "id": "way/715394504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394507", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309074, + -0.0185587 + ], + [ + 109.3311162, + -0.0188375 + ], + [ + 109.3312691, + -0.0190229 + ], + [ + 109.331359, + -0.0191252 + ], + [ + 109.3314421, + -0.01921 + ], + [ + 109.3314689, + -0.0192516 + ], + [ + 109.3314851, + -0.0192958 + ], + [ + 109.3315152, + -0.0196418 + ], + [ + 109.3315102, + -0.0197317 + ], + [ + 109.3314891, + -0.0198255 + ], + [ + 109.331477, + -0.0198832 + ], + [ + 109.3314515, + -0.0200611 + ], + [ + 109.3314529, + -0.0200869 + ], + [ + 109.331457, + -0.0201047 + ], + [ + 109.3314627, + -0.0201152 + ] + ] + }, + "id": "way/715394507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394508", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3309539, + -0.0210379 + ], + [ + 109.3313831, + -0.0206637 + ] + ] + }, + "id": "way/715394508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394509", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327984, + -0.0202843 + ], + [ + 109.3329113, + -0.0201565 + ], + [ + 109.3329181, + -0.0201453 + ], + [ + 109.3329242, + -0.0201304 + ], + [ + 109.33293, + -0.0201125 + ], + [ + 109.3329369, + -0.020084 + ], + [ + 109.3329393, + -0.0200742 + ], + [ + 109.3329445, + -0.0200625 + ], + [ + 109.3330635, + -0.019902 + ] + ] + }, + "id": "way/715394509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394510", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338799, + -0.0195533 + ], + [ + 109.3346191, + -0.0202529 + ] + ] + }, + "id": "way/715394510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394511", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327926, + -0.0182534 + ], + [ + 109.3327819, + -0.0182753 + ], + [ + 109.3333699, + -0.0187857 + ] + ] + }, + "id": "way/715394511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715394512", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332639, + -0.0191778 + ], + [ + 109.3323067, + -0.0188614 + ], + [ + 109.3323046, + -0.0188556 + ], + [ + 109.3323039, + -0.0188484 + ], + [ + 109.3323042, + -0.0188411 + ], + [ + 109.3323054, + -0.0188358 + ], + [ + 109.3323085, + -0.0188305 + ], + [ + 109.332633, + -0.018459 + ], + [ + 109.3327819, + -0.0182753 + ] + ] + }, + "id": "way/715394512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715398793", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3151229, + -0.0035586 + ], + [ + 109.3148332, + -0.0040834 + ], + [ + 109.3138944, + -0.0057203 + ], + [ + 109.3136705, + -0.0061696 + ], + [ + 109.313559, + -0.0063985 + ] + ] + }, + "id": "way/715398793" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715398794", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210375, + -0.0103927 + ], + [ + 109.3211119, + -0.0104784 + ], + [ + 109.3211143, + -0.0104958 + ], + [ + 109.3211119, + -0.0105112 + ], + [ + 109.3211051, + -0.0105292 + ], + [ + 109.3210083, + -0.010643 + ], + [ + 109.3208152, + -0.0108629 + ], + [ + 109.3205895, + -0.0111258 + ] + ] + }, + "id": "way/715398794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/715398795", + "access": "destination", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262282, + -0.0157684 + ], + [ + 109.3258202, + -0.0154817 + ] + ] + }, + "id": "way/715398795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718283070", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2925735, + -0.0230056 + ], + [ + 109.2923764, + -0.0230777 + ], + [ + 109.2923205, + -0.023101 + ], + [ + 109.2922697, + -0.0231364 + ], + [ + 109.2922342, + -0.023175 + ] + ] + }, + "id": "way/718283070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718283071", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2928797, + -0.0228915 + ], + [ + 109.2931873, + -0.0228103 + ] + ] + }, + "id": "way/718283071" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718283072", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2936716, + -0.0269956 + ], + [ + 109.2936052, + -0.027039 + ], + [ + 109.2935529, + -0.0270778 + ], + [ + 109.2935321, + -0.0270977 + ], + [ + 109.2935081, + -0.0271308 + ], + [ + 109.2933759, + -0.0272297 + ] + ] + }, + "id": "way/718283072" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718284198", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297936, + -0.0333667 + ], + [ + 109.2981345, + -0.0336852 + ] + ] + }, + "id": "way/718284198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718284675", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2967984, + -0.03884 + ], + [ + 109.296875, + -0.0387774 + ], + [ + 109.2969972, + -0.0386775 + ], + [ + 109.2978541, + -0.0379426 + ] + ] + }, + "id": "way/718284675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718288378", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995324, + -0.0413439 + ], + [ + 109.2995541, + -0.0413295 + ] + ] + }, + "id": "way/718288378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718288379", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996125, + -0.0412907 + ], + [ + 109.2999691, + -0.0410539 + ], + [ + 109.300409, + -0.0407642 + ], + [ + 109.3006224, + -0.0406308 + ], + [ + 109.3009535, + -0.0404288 + ], + [ + 109.3016081, + -0.0400067 + ] + ] + }, + "id": "way/718288379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718288380", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995541, + -0.0413295 + ], + [ + 109.2996125, + -0.0412907 + ] + ] + }, + "id": "way/718288380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718288381", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994443, + -0.0408137 + ], + [ + 109.2994677, + -0.0408145 + ], + [ + 109.2994935, + -0.0408316 + ], + [ + 109.2995299, + -0.040837 + ], + [ + 109.2995524, + -0.0408336 + ], + [ + 109.2995729, + -0.0408249 + ], + [ + 109.3003139, + -0.0403498 + ], + [ + 109.3010055, + -0.0399064 + ], + [ + 109.3011182, + -0.0398342 + ], + [ + 109.3020024, + -0.0392672 + ], + [ + 109.3020269, + -0.0392515 + ], + [ + 109.3020792, + -0.039218 + ] + ] + }, + "id": "way/718288381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718288382", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993374, + -0.0408615 + ], + [ + 109.2994443, + -0.0408137 + ] + ] + }, + "id": "way/718288382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718288383", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2992825, + -0.0405041 + ], + [ + 109.3000549, + -0.0400668 + ], + [ + 109.30012, + -0.0400317 + ], + [ + 109.3008113, + -0.0396591 + ] + ] + }, + "id": "way/718288383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718288384", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991878, + -0.0405545 + ], + [ + 109.2992825, + -0.0405041 + ] + ] + }, + "id": "way/718288384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718288830", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057748, + -0.0433317 + ], + [ + 109.3060135, + -0.0435807 + ] + ] + }, + "id": "way/718288830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718289863", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3027742, + -0.0373467 + ], + [ + 109.3036705, + -0.0365714 + ] + ] + }, + "id": "way/718289863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718289864", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009207, + -0.0344489 + ], + [ + 109.3007926, + -0.0345828 + ], + [ + 109.3007336, + -0.0346331 + ], + [ + 109.3006667, + -0.034681 + ] + ] + }, + "id": "way/718289864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718289865", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2961499, + -0.0228608 + ], + [ + 109.2960417, + -0.0227673 + ], + [ + 109.2960108, + -0.0227388 + ], + [ + 109.2959904, + -0.0227156 + ], + [ + 109.2959639, + -0.0226804 + ], + [ + 109.2956936, + -0.0223052 + ] + ] + }, + "id": "way/718289865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718292378", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063192, + -0.0373804 + ], + [ + 109.3063045, + -0.0373679 + ], + [ + 109.3059611, + -0.037052 + ], + [ + 109.3058691, + -0.036945 + ], + [ + 109.3055953, + -0.0366267 + ] + ] + }, + "id": "way/718292378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718292379", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052262, + -0.0357311 + ], + [ + 109.3048722, + -0.0350399 + ] + ] + }, + "id": "way/718292379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718304153", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3037481, + -0.0311996 + ], + [ + 109.3036652, + -0.0307281 + ], + [ + 109.3035323, + -0.0299627 + ] + ] + }, + "id": "way/718304153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718306715", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106041, + -0.0328181 + ], + [ + 109.3105958, + -0.0331083 + ], + [ + 109.3105941, + -0.0332798 + ], + [ + 109.3105626, + -0.033984 + ] + ] + }, + "id": "way/718306715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718306716", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108911, + -0.0354685 + ], + [ + 109.3111593, + -0.0351798 + ], + [ + 109.3113524, + -0.0348419 + ] + ] + }, + "id": "way/718306716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718306717", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108129, + -0.0353979 + ], + [ + 109.3108911, + -0.0354685 + ], + [ + 109.3112667, + -0.0358157 + ] + ] + }, + "id": "way/718306717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718306718", + "highway": "residential", + "import": "yes", + "source": "maxar imagery" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115569, + -0.0350178 + ], + [ + 109.3114004, + -0.0353107 + ] + ] + }, + "id": "way/718306718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718349235", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194732, + -0.0385895 + ], + [ + 109.3190915, + -0.0381246 + ] + ] + }, + "id": "way/718349235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718349236", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210968, + -0.0295105 + ], + [ + 109.3214656, + -0.0292775 + ], + [ + 109.321576, + -0.0291981 + ] + ] + }, + "id": "way/718349236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718349237", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190718, + -0.0242586 + ], + [ + 109.318943, + -0.0238341 + ], + [ + 109.3188921, + -0.0236356 + ], + [ + 109.3188539, + -0.0233939 + ], + [ + 109.3187606, + -0.0228632 + ] + ] + }, + "id": "way/718349237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718349238", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221369, + -0.0256969 + ], + [ + 109.3221446, + -0.025711 + ], + [ + 109.3221512, + -0.0257174 + ], + [ + 109.3221605, + -0.0257192 + ], + [ + 109.3221738, + -0.0257147 + ], + [ + 109.3222013, + -0.0256983 + ], + [ + 109.3222257, + -0.0256835 + ], + [ + 109.3222488, + -0.0256697 + ], + [ + 109.3225575, + -0.0254847 + ] + ] + }, + "id": "way/718349238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718794951", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114489, + -0.0156534 + ], + [ + 109.3114328, + -0.0157982 + ], + [ + 109.3114006, + -0.0159209 + ], + [ + 109.3113631, + -0.016045 + ] + ] + }, + "id": "way/718794951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718794952", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096075, + -0.0171575 + ], + [ + 109.3092886, + -0.0171759 + ], + [ + 109.3089471, + -0.0171987 + ] + ] + }, + "id": "way/718794952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718794953", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096572, + -0.0177073 + ], + [ + 109.3096075, + -0.0171575 + ], + [ + 109.309571, + -0.0167913 + ] + ] + }, + "id": "way/718794953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718794954", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305731, + -0.0052373 + ], + [ + 109.3057573, + -0.0050204 + ], + [ + 109.305768, + -0.0048756 + ], + [ + 109.3057452, + -0.0047931 + ], + [ + 109.3057331, + -0.0047623 + ], + [ + 109.3057197, + -0.0046932 + ], + [ + 109.3057094, + -0.0045003 + ], + [ + 109.3056768, + -0.0044444 + ], + [ + 109.3056178, + -0.0044189 + ], + [ + 109.3055964, + -0.0043733 + ], + [ + 109.3056487, + -0.0040863 + ], + [ + 109.3057519, + -0.003562 + ], + [ + 109.3057592, + -0.0035267 + ], + [ + 109.3057881, + -0.0033876 + ], + [ + 109.3058324, + -0.0031543 + ], + [ + 109.3059102, + -0.0028002 + ], + [ + 109.3059283, + -0.0027741 + ], + [ + 109.3059511, + -0.0027607 + ], + [ + 109.3063695, + -0.0028653 + ] + ] + }, + "id": "way/718794954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718794955", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064638, + -0.005545 + ], + [ + 109.3063875, + -0.0059258 + ], + [ + 109.3062869, + -0.0063961 + ], + [ + 109.3061864, + -0.0068265 + ] + ] + }, + "id": "way/718794955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/718794956", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120743, + -0.0035145 + ], + [ + 109.3117142, + -0.003389 + ], + [ + 109.3115054, + -0.0033362 + ] + ] + }, + "id": "way/718794956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/723089599", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241016, + -0.0006021 + ], + [ + 109.3243243, + -0.0007743 + ] + ] + }, + "id": "way/723089599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/723089600", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256101, + -0.0111051 + ], + [ + 109.3259176, + -0.0107644 + ] + ] + }, + "id": "way/723089600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/723290051", + "highway": "residential", + "name": "Gang Langgar Hali" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171389, + -0.0372733 + ], + [ + 109.314244, + -0.0346751 + ] + ] + }, + "id": "way/723290051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/730446716", + "highway": "residential", + "name": "Jalan Kapten Marsan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404874, + -0.0240299 + ], + [ + 109.3405559, + -0.0239869 + ] + ] + }, + "id": "way/730446716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/730446991", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404874, + -0.0240299 + ], + [ + 109.3401682, + -0.0236378 + ], + [ + 109.3398098, + -0.0232658 + ], + [ + 109.3396436, + -0.023069 + ], + [ + 109.3395907, + -0.0229848 + ], + [ + 109.3395169, + -0.0229122 + ], + [ + 109.3394861, + -0.0228819 + ] + ] + }, + "id": "way/730446991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/730446992", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339661, + -0.0229105 + ], + [ + 109.3397155, + -0.0229889 + ], + [ + 109.3397565, + -0.0230516 + ], + [ + 109.3398519, + -0.0231675 + ], + [ + 109.3398987, + -0.0232232 + ], + [ + 109.3400751, + -0.0234407 + ], + [ + 109.340282, + -0.0236624 + ], + [ + 109.3404275, + -0.0238301 + ], + [ + 109.3405559, + -0.0239869 + ] + ] + }, + "id": "way/730446992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/737854160", + "highway": "residential", + "name": "Komplek Pelangi Fortuna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701933, + -0.0415359 + ], + [ + 109.3701614, + -0.0414812 + ], + [ + 109.3701427, + -0.0414481 + ], + [ + 109.3701246, + -0.0414121 + ], + [ + 109.3701775, + -0.0413747 + ], + [ + 109.3733704, + -0.0391334 + ], + [ + 109.373416, + -0.039116 + ], + [ + 109.3734455, + -0.0391281 + ], + [ + 109.3735126, + -0.0391978 + ], + [ + 109.37353, + -0.0392045 + ], + [ + 109.3735635, + -0.0391898 + ], + [ + 109.3738318, + -0.0389995 + ] + ] + }, + "id": "way/737854160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/740054084", + "highway": "residential", + "name": "Gang Suka Doa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3760835, + -0.0518028 + ], + [ + 109.3757173, + -0.0520308 + ], + [ + 109.3748671, + -0.0526142 + ], + [ + 109.3742099, + -0.0530876 + ], + [ + 109.3739015, + -0.0533102 + ], + [ + 109.3736373, + -0.0534899 + ], + [ + 109.3733717, + -0.0536697 + ], + [ + 109.3731907, + -0.053783 + ] + ] + }, + "id": "way/740054084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/742750177", + "highway": "primary", + "source": "Bing" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623433, + -0.0256287 + ], + [ + 109.3623509, + -0.0256286 + ] + ] + }, + "id": "way/742750177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/749970310", + "highway": "residential", + "name": "Gang Pajajaran I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022216, + -0.0074761 + ], + [ + 109.3025466, + -0.007481 + ], + [ + 109.3032282, + -0.0075056 + ] + ] + }, + "id": "way/749970310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/749970311", + "highway": "residential", + "name": "Jalan Hasyim Ahmad" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022216, + -0.0074761 + ], + [ + 109.3022312, + -0.0071378 + ], + [ + 109.3022417, + -0.0067733 + ], + [ + 109.302252, + -0.0064104 + ], + [ + 109.3022592, + -0.0061598 + ] + ] + }, + "id": "way/749970311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/761923752", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480986, + -0.0394318 + ], + [ + 109.3481667, + -0.0395532 + ] + ] + }, + "id": "way/761923752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/761923753", + "highway": "trunk", + "name": "Jalan Pahlawan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458375, + -0.0410394 + ], + [ + 109.3464273, + -0.0406309 + ], + [ + 109.3469052, + -0.0402836 + ], + [ + 109.3474314, + -0.0399072 + ], + [ + 109.3478608, + -0.0395877 + ], + [ + 109.3479062, + -0.0395539 + ] + ] + }, + "id": "way/761923753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/761923754", + "highway": "trunk", + "name": "Jalan Pahlawan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348061, + -0.0396104 + ], + [ + 109.3479757, + -0.0396659 + ], + [ + 109.3479318, + -0.0396945 + ], + [ + 109.3475965, + -0.0399129 + ], + [ + 109.3474334, + -0.0400169 + ], + [ + 109.346942, + -0.0403554 + ], + [ + 109.3469017, + -0.0403798 + ], + [ + 109.3468834, + -0.0403909 + ], + [ + 109.3467307, + -0.0405014 + ], + [ + 109.3464678, + -0.0406891 + ], + [ + 109.3458778, + -0.0410861 + ] + ] + }, + "id": "way/761923754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/761923755", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347994, + -0.0394955 + ], + [ + 109.3479419, + -0.0394103 + ] + ] + }, + "id": "way/761923755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/761961936", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479759, + -0.0392608 + ], + [ + 109.3479943, + -0.0392863 + ], + [ + 109.348043, + -0.039354 + ], + [ + 109.3480986, + -0.0394318 + ] + ] + }, + "id": "way/761961936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/763182818", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3776587, + -0.0575146 + ], + [ + 109.3790971, + -0.0565204 + ], + [ + 109.3804675, + -0.0554104 + ] + ] + }, + "id": "way/763182818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/763182952", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3776587, + -0.0575146 + ], + [ + 109.3773055, + -0.0577378 + ], + [ + 109.3769211, + -0.0579736 + ] + ] + }, + "id": "way/763182952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/768268549", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357091, + -0.0315343 + ], + [ + 109.3570009, + -0.0313783 + ], + [ + 109.356866, + -0.0311817 + ] + ] + }, + "id": "way/768268549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/768268550", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571213, + -0.0315942 + ], + [ + 109.357091, + -0.0315343 + ] + ] + }, + "id": "way/768268550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769203766", + "highway": "residential", + "name": "Gang Selat Makasar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458778, + -0.0142801 + ], + [ + 109.3456384, + -0.014156 + ], + [ + 109.3456094, + -0.0141425 + ], + [ + 109.3456069, + -0.0141279 + ], + [ + 109.3456168, + -0.0140983 + ] + ] + }, + "id": "way/769203766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769208040", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447325, + -0.0145557 + ], + [ + 109.3444946, + -0.0144574 + ] + ] + }, + "id": "way/769208040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769208041", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443993, + -0.0141566 + ], + [ + 109.3445839, + -0.0142401 + ], + [ + 109.3452371, + -0.0145067 + ] + ] + }, + "id": "way/769208041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769523335", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548808, + -0.0151602 + ], + [ + 109.3548386, + -0.0151562 + ] + ] + }, + "id": "way/769523335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769523336", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547835, + -0.0138153 + ], + [ + 109.3548191, + -0.0138106 + ] + ] + }, + "id": "way/769523336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769523337", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549542, + -0.0138141 + ], + [ + 109.3549234, + -0.0138101 + ] + ] + }, + "id": "way/769523337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769523338", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549964, + -0.0127185 + ], + [ + 109.3550313, + -0.0127232 + ] + ] + }, + "id": "way/769523338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769523339", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.355116, + -0.0118301 + ], + [ + 109.3550879, + -0.0118207 + ] + ] + }, + "id": "way/769523339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769531334", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556212, + -0.0078808 + ], + [ + 109.3555911, + -0.0078701 + ] + ] + }, + "id": "way/769531334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769531335", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556994, + -0.0072835 + ], + [ + 109.3556719, + -0.0072778 + ] + ] + }, + "id": "way/769531335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769531336", + "highway": "unclassified", + "name": "Jalan Parit Pangeran" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548359, + -0.0168413 + ], + [ + 109.3548732, + -0.0156005 + ], + [ + 109.3548808, + -0.0151602 + ], + [ + 109.3548854, + -0.0151294 + ], + [ + 109.3548851, + -0.0150738 + ], + [ + 109.3548869, + -0.0147692 + ], + [ + 109.3548898, + -0.0146557 + ], + [ + 109.3548924, + -0.0146335 + ], + [ + 109.3548957, + -0.0146101 + ], + [ + 109.3549303, + -0.0141136 + ], + [ + 109.3549542, + -0.0138141 + ], + [ + 109.3549651, + -0.0136171 + ], + [ + 109.3549709, + -0.0134494 + ], + [ + 109.3549827, + -0.0132356 + ], + [ + 109.3549917, + -0.013078 + ], + [ + 109.3550313, + -0.0127232 + ] + ] + }, + "id": "way/769531336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769567984", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562598, + -0.0247515 + ], + [ + 109.3569633, + -0.024792 + ], + [ + 109.3571851, + -0.0248092 + ] + ] + }, + "id": "way/769567984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769567985", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569888, + -0.0244515 + ], + [ + 109.3569824, + -0.0244844 + ], + [ + 109.3569633, + -0.024792 + ] + ] + }, + "id": "way/769567985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769567986", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548799, + -0.0228504 + ], + [ + 109.3548638, + -0.0229664 + ], + [ + 109.3548565, + -0.0230737 + ], + [ + 109.3548484, + -0.0232977 + ] + ] + }, + "id": "way/769567986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769567987", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558192, + -0.0222631 + ], + [ + 109.3559639, + -0.0222622 + ], + [ + 109.3560187, + -0.0222649 + ], + [ + 109.3561129, + -0.0222598 + ] + ] + }, + "id": "way/769567987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769567988", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533125, + -0.0229456 + ], + [ + 109.3533668, + -0.0227039 + ], + [ + 109.3533799, + -0.0226841 + ], + [ + 109.353392, + -0.0226764 + ], + [ + 109.3534121, + -0.0226767 + ] + ] + }, + "id": "way/769567988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769567990", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480899, + -0.0241486 + ], + [ + 109.3480272, + -0.0241141 + ], + [ + 109.3479606, + -0.0240869 + ], + [ + 109.3479079, + -0.0240661 + ], + [ + 109.347877, + -0.0240561 + ], + [ + 109.3478083, + -0.0240386 + ], + [ + 109.3477285, + -0.0240142 + ], + [ + 109.3476607, + -0.0239944 + ] + ] + }, + "id": "way/769567990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769569775", + "highway": "living_street", + "name": "Gang Amilin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518464, + -0.0199858 + ], + [ + 109.351784, + -0.0199858 + ], + [ + 109.3510732, + -0.0199637 + ] + ] + }, + "id": "way/769569775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769792135", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457983, + -0.00853 + ], + [ + 109.3458258, + -0.0085468 + ] + ] + }, + "id": "way/769792135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769792136", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345674, + -0.008856 + ], + [ + 109.3457129, + -0.0088768 + ] + ] + }, + "id": "way/769792136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769792137", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448312, + -0.0112143 + ], + [ + 109.3448714, + -0.0112398 + ] + ] + }, + "id": "way/769792137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769792138", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447194, + -0.0115302 + ], + [ + 109.3447569, + -0.011545 + ] + ] + }, + "id": "way/769792138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769792139", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445334, + -0.0120202 + ], + [ + 109.3445743, + -0.0120417 + ] + ] + }, + "id": "way/769792139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769814391", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682656, + -0.0333124 + ], + [ + 109.3685073, + -0.0330661 + ], + [ + 109.3688504, + -0.032742 + ], + [ + 109.3693128, + -0.0323088 + ], + [ + 109.3693749, + -0.0322518 + ], + [ + 109.3694308, + -0.0322215 + ], + [ + 109.3695556, + -0.0321858 + ], + [ + 109.3697121, + -0.0321411 + ], + [ + 109.3702246, + -0.0320369 + ], + [ + 109.3704412, + -0.0319842 + ], + [ + 109.3706053, + -0.031945 + ] + ] + }, + "id": "way/769814391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769814392", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709642, + -0.0291666 + ], + [ + 109.37079, + -0.0289203 + ], + [ + 109.3705852, + -0.0286933 + ], + [ + 109.3703702, + -0.028541 + ], + [ + 109.370322, + -0.0285031 + ] + ] + }, + "id": "way/769814392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769825166", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3782071, + -0.0320812 + ], + [ + 109.3782607, + -0.0320769 + ], + [ + 109.3783882, + -0.0320987 + ], + [ + 109.3785739, + -0.0321469 + ], + [ + 109.3789356, + -0.0322351 + ], + [ + 109.3793245, + -0.0323666 + ], + [ + 109.3793781, + -0.0323966 + ] + ] + }, + "id": "way/769825166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769851360", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3731665, + -0.0329446 + ], + [ + 109.3724479, + -0.0320288 + ], + [ + 109.3721715, + -0.0323045 + ], + [ + 109.3721705, + -0.0323169 + ], + [ + 109.3721943, + -0.0323441 + ], + [ + 109.3729016, + -0.033203 + ] + ] + }, + "id": "way/769851360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769851361", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3764421, + -0.0343389 + ], + [ + 109.3765522, + -0.0343692 + ], + [ + 109.3766005, + -0.0343792 + ], + [ + 109.3766461, + -0.0343785 + ], + [ + 109.3767057, + -0.0343457 + ], + [ + 109.3767507, + -0.0343055 + ], + [ + 109.3767808, + -0.034235 + ], + [ + 109.3767869, + -0.0341747 + ], + [ + 109.3767514, + -0.034033 + ] + ] + }, + "id": "way/769851361" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769864519", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704015, + -0.027335 + ], + [ + 109.3704077, + -0.0273484 + ], + [ + 109.3705244, + -0.0276008 + ] + ] + }, + "id": "way/769864519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769864520", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3764493, + -0.0340369 + ], + [ + 109.3763701, + -0.0340053 + ] + ] + }, + "id": "way/769864520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769864521", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3764237, + -0.0339645 + ], + [ + 109.3764493, + -0.0340369 + ] + ] + }, + "id": "way/769864521" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769874274", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3715103, + -0.0365934 + ], + [ + 109.3712588, + -0.036782 + ], + [ + 109.3706855, + -0.0372264 + ], + [ + 109.3701018, + -0.0376489 + ], + [ + 109.3698245, + -0.0378567 + ], + [ + 109.3690252, + -0.0384414 + ] + ] + }, + "id": "way/769874274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769874275", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3691664, + -0.0342568 + ], + [ + 109.3685894, + -0.0347762 + ], + [ + 109.3680583, + -0.0352429 + ], + [ + 109.3674588, + -0.0357377 + ] + ] + }, + "id": "way/769874275" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769876563", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3736461, + -0.042436 + ], + [ + 109.3736673, + -0.0424303 + ], + [ + 109.3736892, + -0.0424316 + ], + [ + 109.3737096, + -0.0424396 + ], + [ + 109.3737265, + -0.0424536 + ] + ] + }, + "id": "way/769876563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769876564", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373616, + -0.0425368 + ], + [ + 109.3736079, + -0.0425191 + ], + [ + 109.373605, + -0.0424999 + ], + [ + 109.3736076, + -0.0424807 + ], + [ + 109.3736153, + -0.0424629 + ], + [ + 109.3736278, + -0.042448 + ], + [ + 109.3736461, + -0.042436 + ] + ] + }, + "id": "way/769876564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769876565", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3679948, + -0.03681 + ], + [ + 109.3680096, + -0.0368151 + ], + [ + 109.3680213, + -0.0368253 + ], + [ + 109.3680282, + -0.0368393 + ], + [ + 109.3680293, + -0.036855 + ], + [ + 109.3680263, + -0.0368653 + ] + ] + }, + "id": "way/769876565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769876566", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682542, + -0.0371061 + ], + [ + 109.3682694, + -0.0371012 + ], + [ + 109.3682853, + -0.0371018 + ] + ] + }, + "id": "way/769876566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769882932", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.376408, + -0.0330181 + ], + [ + 109.3766201, + -0.0327705 + ] + ] + }, + "id": "way/769882932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769882933", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.370322, + -0.0285031 + ], + [ + 109.3701134, + -0.0283007 + ] + ] + }, + "id": "way/769882933" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769887250", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621711, + -0.0263921 + ], + [ + 109.3621302, + -0.0265194 + ] + ] + }, + "id": "way/769887250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769887251", + "highway": "trunk", + "motorcycle": "yes", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621138, + -0.0263806 + ], + [ + 109.3623212, + -0.0257011 + ], + [ + 109.3623433, + -0.0256287 + ] + ] + }, + "id": "way/769887251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/769887253", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626632, + -0.0247181 + ], + [ + 109.362632, + -0.0248301 + ] + ] + }, + "id": "way/769887253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770104333", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.375, + -0.0123975 + ], + [ + 109.3750982, + -0.0124379 + ], + [ + 109.3753311, + -0.0125105 + ], + [ + 109.3754565, + -0.0125501 + ], + [ + 109.3755661, + -0.0125755 + ] + ] + }, + "id": "way/770104333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770104334", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3748114, + -0.012714 + ], + [ + 109.3748354, + -0.0127255 + ] + ] + }, + "id": "way/770104334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770104335", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3746626, + -0.0129966 + ], + [ + 109.3746891, + -0.0130043 + ] + ] + }, + "id": "way/770104335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770104336", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.374214, + -0.0138818 + ], + [ + 109.3742439, + -0.0139054 + ] + ] + }, + "id": "way/770104336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770104337", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373984, + -0.0143371 + ], + [ + 109.3740234, + -0.0143458 + ] + ] + }, + "id": "way/770104337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770104338", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3737862, + -0.0147381 + ], + [ + 109.3738128, + -0.014752 + ] + ] + }, + "id": "way/770104338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770104339", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3735971, + -0.0151049 + ], + [ + 109.3736432, + -0.0151057 + ] + ] + }, + "id": "way/770104339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770109032", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701947, + -0.025544 + ], + [ + 109.3705755, + -0.0245436 + ], + [ + 109.3707727, + -0.0239722 + ], + [ + 109.3706855, + -0.0239173 + ], + [ + 109.3710865, + -0.0229865 + ] + ] + }, + "id": "way/770109032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770109033", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3657154, + -0.0242364 + ], + [ + 109.3657422, + -0.023881 + ], + [ + 109.3658052, + -0.0232883 + ], + [ + 109.3659031, + -0.0224984 + ] + ] + }, + "id": "way/770109033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770109034", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3656504, + -0.0157195 + ], + [ + 109.3658083, + -0.015715 + ] + ] + }, + "id": "way/770109034" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770109349", + "highway": "residential", + "name": "KOMPLEK YUSUF PERMATA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3757697, + -0.010344 + ], + [ + 109.3756335, + -0.0103299 + ], + [ + 109.3754545, + -0.0103097 + ], + [ + 109.3752949, + -0.0102916 + ], + [ + 109.3751615, + -0.0102574 + ], + [ + 109.3750186, + -0.0102085 + ], + [ + 109.3748684, + -0.0101508 + ], + [ + 109.3746726, + -0.0100932 + ], + [ + 109.3742461, + -0.0099725 + ], + [ + 109.3737942, + -0.0098544 + ] + ] + }, + "id": "way/770109349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770109350", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3728936, + -0.0084604 + ], + [ + 109.371753, + -0.0086072 + ] + ] + }, + "id": "way/770109350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770109351", + "highway": "residential", + "name": "Jalan Komplek Landak Permai 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3656195, + -0.013055 + ], + [ + 109.3658656, + -0.013057 + ], + [ + 109.3664074, + -0.013061 + ], + [ + 109.3664718, + -0.0130516 + ], + [ + 109.3664999, + -0.0130047 + ], + [ + 109.3665468, + -0.0127096 + ] + ] + }, + "id": "way/770109351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770113535", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718885, + -0.0068638 + ], + [ + 109.3713655, + -0.0069147 + ], + [ + 109.3712971, + -0.0069094 + ], + [ + 109.371285, + -0.0068973 + ], + [ + 109.3712702, + -0.0068651 + ], + [ + 109.3712649, + -0.0066519 + ], + [ + 109.3712667, + -0.0064777 + ], + [ + 109.3712689, + -0.006161 + ], + [ + 109.3712714, + -0.0058492 + ] + ] + }, + "id": "way/770113535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770114054", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3739957, + -0.0076561 + ], + [ + 109.3740488, + -0.0079955 + ] + ] + }, + "id": "way/770114054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770114055", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740182, + -0.0076379 + ], + [ + 109.3739706, + -0.0073097 + ] + ] + }, + "id": "way/770114055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770123700", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636286, + -0.0253804 + ], + [ + 109.3642491, + -0.0253616 + ] + ] + }, + "id": "way/770123700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770123701", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363127, + -0.0235846 + ], + [ + 109.3631325, + -0.0243553 + ], + [ + 109.3631594, + -0.0249526 + ] + ] + }, + "id": "way/770123701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770124437", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627395, + -0.0215234 + ], + [ + 109.3627817, + -0.0188807 + ], + [ + 109.3627931, + -0.0181679 + ] + ] + }, + "id": "way/770124437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770124438", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627931, + -0.0181679 + ], + [ + 109.3628052, + -0.0177019 + ], + [ + 109.3628206, + -0.0174397 + ] + ] + }, + "id": "way/770124438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770124439", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623433, + -0.0256287 + ], + [ + 109.3624746, + -0.0249251 + ], + [ + 109.3625122, + -0.0248218 + ], + [ + 109.3625396, + -0.0247139 + ], + [ + 109.3626389, + -0.0239736 + ], + [ + 109.3626409, + -0.02395 + ], + [ + 109.3627229, + -0.0225156 + ] + ] + }, + "id": "way/770124439" + }, + { + "type": "Feature", + "properties": { + "@id": "way/770155813", + "highway": "trunk" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628239, + -0.01737 + ], + [ + 109.3628777, + -0.0155541 + ] + ] + }, + "id": "way/770155813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771206109", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614983, + -0.0463459 + ], + [ + 109.361674, + -0.0461876 + ], + [ + 109.3617779, + -0.0460904 + ], + [ + 109.3619449, + -0.0459375 + ], + [ + 109.3620475, + -0.0458524 + ], + [ + 109.3621936, + -0.045735 + ], + [ + 109.3623552, + -0.0455989 + ], + [ + 109.3624774, + -0.0454901 + ] + ] + }, + "id": "way/771206109" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771236120", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3779697, + -0.0553132 + ], + [ + 109.3781162, + -0.055508 + ] + ] + }, + "id": "way/771236120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771250852", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654999, + -0.0577385 + ], + [ + 109.3655015, + -0.0577751 + ], + [ + 109.3654985, + -0.0578288 + ] + ] + }, + "id": "way/771250852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771250853", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654277, + -0.0577731 + ], + [ + 109.3654599, + -0.057758 + ], + [ + 109.3654999, + -0.0577385 + ] + ] + }, + "id": "way/771250853" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771250854", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654999, + -0.0577385 + ], + [ + 109.3655035, + -0.05765 + ], + [ + 109.3655129, + -0.0575984 + ], + [ + 109.365537, + -0.0575253 + ], + [ + 109.3655773, + -0.0574643 + ], + [ + 109.3657523, + -0.0573289 + ], + [ + 109.3665935, + -0.0567949 + ], + [ + 109.3667572, + -0.056691 + ] + ] + }, + "id": "way/771250854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771255411", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648805, + -0.0582079 + ], + [ + 109.3649455, + -0.0582881 + ] + ] + }, + "id": "way/771255411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771260576", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3794798, + -0.0433291 + ], + [ + 109.3792095, + -0.0429385 + ] + ] + }, + "id": "way/771260576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771260577", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3792096, + -0.0435369 + ], + [ + 109.3792455, + -0.0435809 + ] + ] + }, + "id": "way/771260577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771260578", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3794302, + -0.0433643 + ], + [ + 109.3794731, + -0.0434204 + ], + [ + 109.3797594, + -0.043795 + ] + ] + }, + "id": "way/771260578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771260579", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793444, + -0.0428376 + ], + [ + 109.3791715, + -0.0425853 + ] + ] + }, + "id": "way/771260579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771260580", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3784036, + -0.0435403 + ], + [ + 109.3788984, + -0.0431715 + ], + [ + 109.3792095, + -0.0429385 + ], + [ + 109.3793444, + -0.0428376 + ], + [ + 109.3793958, + -0.0428008 + ], + [ + 109.3796426, + -0.0426243 + ], + [ + 109.3797368, + -0.042557 + ] + ] + }, + "id": "way/771260580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771260581", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3799784, + -0.0420354 + ], + [ + 109.3791715, + -0.0425853 + ], + [ + 109.3789682, + -0.0427329 + ], + [ + 109.3782373, + -0.043256 + ], + [ + 109.3782198, + -0.0432788 + ], + [ + 109.3782319, + -0.0433056 + ], + [ + 109.3784036, + -0.0435403 + ], + [ + 109.3786658, + -0.0439158 + ], + [ + 109.3787086, + -0.0439688 + ] + ] + }, + "id": "way/771260581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771260582", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.379704, + -0.0432458 + ], + [ + 109.3794731, + -0.0434204 + ], + [ + 109.3792455, + -0.0435809 + ], + [ + 109.3787086, + -0.0439688 + ], + [ + 109.3783848, + -0.0442028 + ] + ] + }, + "id": "way/771260582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771260583", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3783426, + -0.0441471 + ], + [ + 109.3786658, + -0.0439158 + ], + [ + 109.3789642, + -0.0437146 + ], + [ + 109.3792096, + -0.0435369 + ], + [ + 109.3794302, + -0.0433643 + ], + [ + 109.3794798, + -0.0433291 + ], + [ + 109.3796681, + -0.043194 + ] + ] + }, + "id": "way/771260583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771520040", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3804675, + -0.0554104 + ], + [ + 109.3806942, + -0.0552025 + ], + [ + 109.381122, + -0.0548619 + ], + [ + 109.381979, + -0.0541672 + ], + [ + 109.3825033, + -0.0537448 + ], + [ + 109.383245, + -0.0531614 + ], + [ + 109.3834261, + -0.0530299 + ], + [ + 109.3836493, + -0.052865 + ] + ] + }, + "id": "way/771520040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771520044", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.383367, + -0.0511041 + ], + [ + 109.3837948, + -0.0507353 + ], + [ + 109.3842957, + -0.0503088 + ], + [ + 109.3847108, + -0.0499776 + ], + [ + 109.3857501, + -0.0491528 + ] + ] + }, + "id": "way/771520044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771520045", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Jalan Komplek Daily Perdana 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3851882, + -0.0509378 + ], + [ + 109.3851493, + -0.05097 + ], + [ + 109.3839396, + -0.0519267 + ] + ] + }, + "id": "way/771520045" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771520046", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Jalan Komplek Daily Perdana 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3841448, + -0.0521743 + ], + [ + 109.3841891, + -0.0521462 + ], + [ + 109.3853478, + -0.0512383 + ], + [ + 109.3853773, + -0.0512154 + ], + [ + 109.3853814, + -0.0511806 + ], + [ + 109.3853733, + -0.0511511 + ], + [ + 109.3852231, + -0.0509767 + ], + [ + 109.3851882, + -0.0509378 + ] + ] + }, + "id": "way/771520046" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771557589", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365807, + -0.0598478 + ], + [ + 109.365757, + -0.0599239 + ], + [ + 109.3657456, + -0.0599534 + ], + [ + 109.3657395, + -0.0600003 + ], + [ + 109.3657395, + -0.0600355 + ], + [ + 109.3657395, + -0.0601311 + ], + [ + 109.3657503, + -0.0603336 + ], + [ + 109.3657516, + -0.0603658 + ], + [ + 109.3657462, + -0.0604007 + ], + [ + 109.364535, + -0.0630634 + ], + [ + 109.3641126, + -0.063992 + ], + [ + 109.3640062, + -0.0642259 + ], + [ + 109.363972, + -0.064301 + ], + [ + 109.3638379, + -0.0645957 + ], + [ + 109.3637764, + -0.0647309 + ], + [ + 109.3630538, + -0.0663193 + ] + ] + }, + "id": "way/771557589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771557865", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3755142, + -0.0605053 + ], + [ + 109.3755674, + -0.0605815 + ] + ] + }, + "id": "way/771557865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/771595103", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3727756, + -0.0532164 + ], + [ + 109.3739967, + -0.0523698 + ], + [ + 109.3745453, + -0.0519772 + ], + [ + 109.3758522, + -0.0509661 + ] + ] + }, + "id": "way/771595103" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772084158", + "highway": "tertiary", + "name": "Jalan Pattimura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3374865, + -0.0248842 + ], + [ + 109.3373771, + -0.0246613 + ], + [ + 109.3373111, + -0.0245272 + ], + [ + 109.3371899, + -0.0242226 + ] + ] + }, + "id": "way/772084158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772087478", + "highway": "residential", + "name": "Gang Sukses" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618892, + -0.061153 + ], + [ + 109.360697, + -0.0598159 + ], + [ + 109.3595636, + -0.0585797 + ] + ] + }, + "id": "way/772087478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772087479", + "highway": "path", + "name": "Gang Mulia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36203, + -0.0613582 + ], + [ + 109.3620005, + -0.0612858 + ], + [ + 109.3619804, + -0.0612509 + ], + [ + 109.3619549, + -0.0612187 + ], + [ + 109.3618892, + -0.061153 + ] + ] + }, + "id": "way/772087479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772088694", + "access": "no", + "highway": "service", + "import": "yes", + "oneway": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545106, + -0.0595527 + ], + [ + 109.354557, + -0.0595935 + ], + [ + 109.354588, + -0.0596217 + ] + ] + }, + "id": "way/772088694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772278099", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404389, + -0.0133017 + ], + [ + 109.3403095, + -0.013179 + ] + ] + }, + "id": "way/772278099" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772278100", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454146, + -0.0095955 + ], + [ + 109.3454763, + -0.009625 + ] + ] + }, + "id": "way/772278100" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772350300", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553056, + -0.0761452 + ], + [ + 109.3550379, + -0.0759798 + ], + [ + 109.3540057, + -0.0752797 + ] + ] + }, + "id": "way/772350300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772355755", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586374, + -0.0691939 + ], + [ + 109.3586821, + -0.069153 + ], + [ + 109.35869, + -0.0689911 + ], + [ + 109.3586987, + -0.0687906 + ], + [ + 109.3587121, + -0.0684607 + ], + [ + 109.3586753, + -0.0684278 + ] + ] + }, + "id": "way/772355755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772360906", + "access": "no", + "highway": "primary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604382, + -0.0683466 + ], + [ + 109.3603856, + -0.0683905 + ] + ] + }, + "id": "way/772360906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772365619", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406602, + -0.0686498 + ], + [ + 109.3403725, + -0.0689475 + ], + [ + 109.3403752, + -0.0689636 + ], + [ + 109.3403893, + -0.0689763 + ], + [ + 109.3407635, + -0.0693029 + ] + ] + }, + "id": "way/772365619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772365620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351798, + -0.076455 + ], + [ + 109.335558, + -0.0770249 + ] + ] + }, + "id": "way/772365620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772365621", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397436, + -0.0780342 + ], + [ + 109.3396121, + -0.0782333 + ], + [ + 109.3383998, + -0.080194 + ], + [ + 109.3383622, + -0.0802664 + ], + [ + 109.3383408, + -0.0802825 + ], + [ + 109.3383139, + -0.0802758 + ], + [ + 109.3382764, + -0.0802436 + ], + [ + 109.3382321, + -0.080245 + ], + [ + 109.3382093, + -0.0802584 + ], + [ + 109.3380904, + -0.0804483 + ], + [ + 109.3366501, + -0.0827493 + ] + ] + }, + "id": "way/772365621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772365622", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392802, + -0.0667555 + ], + [ + 109.3395585, + -0.0670237 + ] + ] + }, + "id": "way/772365622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772365623", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335505, + -0.0761741 + ], + [ + 109.3373054, + -0.0788127 + ] + ] + }, + "id": "way/772365623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772365624", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361145, + -0.0756342 + ], + [ + 109.336832, + -0.0766548 + ] + ] + }, + "id": "way/772365624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772365625", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412231, + -0.0764329 + ], + [ + 109.3417151, + -0.0767281 + ], + [ + 109.3419871, + -0.0768913 + ], + [ + 109.3422457, + -0.0770465 + ], + [ + 109.3425389, + -0.0772224 + ], + [ + 109.3427881, + -0.0773719 + ], + [ + 109.343062, + -0.0775363 + ], + [ + 109.3433444, + -0.0777057 + ], + [ + 109.3436248, + -0.077874 + ], + [ + 109.3437196, + -0.0779308 + ] + ] + }, + "id": "way/772365625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772370698", + "highway": "tertiary", + "name": "Jalan Reformasi Untan", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.340252, + -0.0658721 + ], + [ + 109.3404855, + -0.0660846 + ], + [ + 109.3418275, + -0.0673274 + ], + [ + 109.3431098, + -0.0685286 + ], + [ + 109.343164, + -0.0685754 + ] + ] + }, + "id": "way/772370698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772370699", + "highway": "tertiary", + "name": "Jalan Reformasi Untan", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370446, + -0.0628072 + ], + [ + 109.3377527, + -0.063587 + ], + [ + 109.3377704, + -0.063605 + ], + [ + 109.338029, + -0.0638801 + ], + [ + 109.3383993, + -0.0642126 + ], + [ + 109.3389061, + -0.064678 + ], + [ + 109.3395143, + -0.065246 + ], + [ + 109.3397427, + -0.0654384 + ], + [ + 109.3400046, + -0.065636 + ] + ] + }, + "id": "way/772370699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772377626", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200307, + -0.0667669 + ], + [ + 109.3200166, + -0.0667447 + ], + [ + 109.3200146, + -0.0667166 + ], + [ + 109.32003, + -0.0666858 + ], + [ + 109.3203129, + -0.0664467 + ] + ] + }, + "id": "way/772377626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/772377627", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107627, + -0.0620406 + ], + [ + 109.3105188, + -0.0624345 + ] + ] + }, + "id": "way/772377627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773019006", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311575, + -0.0673167 + ], + [ + 109.3122388, + -0.0678304 + ] + ] + }, + "id": "way/773019006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773019007", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214093, + -0.0707258 + ], + [ + 109.3228644, + -0.0727737 + ] + ] + }, + "id": "way/773019007" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773019008", + "highway": "residential", + "name": "Gang purnama 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3232406, + -0.0651194 + ], + [ + 109.3243052, + -0.0664368 + ] + ] + }, + "id": "way/773019008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773022612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140627, + -0.0730627 + ], + [ + 109.3140666, + -0.0730657 + ] + ] + }, + "id": "way/773022612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773022613", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135537, + -0.0739203 + ], + [ + 109.3135575, + -0.0739234 + ] + ] + }, + "id": "way/773022613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773023184", + "bridge": "yes", + "highway": "residential", + "lanes": "2", + "layer": "1", + "width": "5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211719, + -0.0621736 + ], + [ + 109.3212263, + -0.062234 + ] + ] + }, + "id": "way/773023184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773023185", + "highway": "residential", + "name": "Gang Purnama Indah 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182989, + -0.0603928 + ], + [ + 109.3210784, + -0.0622106 + ] + ] + }, + "id": "way/773023185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773059762", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408607, + -0.0831833 + ], + [ + 109.3409886, + -0.0829689 + ], + [ + 109.3410638, + -0.0828428 + ], + [ + 109.341263, + -0.0825087 + ], + [ + 109.3412677, + -0.0824766 + ], + [ + 109.341253, + -0.0824437 + ], + [ + 109.3390314, + -0.0810711 + ] + ] + }, + "id": "way/773059762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773059764", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408174, + -0.0918663 + ], + [ + 109.3421441, + -0.0918629 + ], + [ + 109.3437937, + -0.0918549 + ], + [ + 109.3438782, + -0.0918656 + ], + [ + 109.3440177, + -0.0919179 + ], + [ + 109.3452515, + -0.0924973 + ], + [ + 109.3464708, + -0.0930609 + ], + [ + 109.3465148, + -0.0930867 + ] + ] + }, + "id": "way/773059764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773061272", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397436, + -0.0780342 + ], + [ + 109.3398777, + -0.0781341 + ], + [ + 109.3398844, + -0.0781441 + ], + [ + 109.3398844, + -0.0781542 + ], + [ + 109.3397932, + -0.0783091 + ], + [ + 109.3397932, + -0.0783225 + ], + [ + 109.3398079, + -0.0783413 + ], + [ + 109.3404141, + -0.0787282 + ], + [ + 109.3407387, + -0.078932 + ], + [ + 109.3423161, + -0.0799289 + ] + ] + }, + "id": "way/773061272" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773061273", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428404, + -0.0794051 + ], + [ + 109.3424405, + -0.0799553 + ] + ] + }, + "id": "way/773061273" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773062165", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411365, + -0.0902393 + ], + [ + 109.3410919, + -0.0903193 + ], + [ + 109.3410143, + -0.0904622 + ], + [ + 109.340976, + -0.0905386 + ], + [ + 109.3409505, + -0.0905963 + ], + [ + 109.3409318, + -0.0906734 + ], + [ + 109.3409197, + -0.0907739 + ], + [ + 109.3409029, + -0.0910274 + ], + [ + 109.3408761, + -0.0912547 + ], + [ + 109.3408553, + -0.0914787 + ], + [ + 109.3408439, + -0.0915947 + ], + [ + 109.3408352, + -0.0916785 + ], + [ + 109.3408268, + -0.0917472 + ] + ] + }, + "id": "way/773062165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773063350", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408202, + -0.0918183 + ], + [ + 109.3408174, + -0.0918663 + ] + ] + }, + "id": "way/773063350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/773063351", + "bridge": "yes", + "highway": "tertiary", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408268, + -0.0917472 + ], + [ + 109.3408202, + -0.0918183 + ] + ] + }, + "id": "way/773063351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/774881008", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520694, + -0.0787408 + ], + [ + 109.3532921, + -0.0794791 + ] + ] + }, + "id": "way/774881008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/774884669", + "bridge": "yes", + "highway": "tertiary", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465148, + -0.0930867 + ], + [ + 109.3466087, + -0.0931457 + ] + ] + }, + "id": "way/774884669" + }, + { + "type": "Feature", + "properties": { + "@id": "way/774884670", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519996, + -0.0843058 + ], + [ + 109.3521085, + -0.0843732 + ] + ] + }, + "id": "way/774884670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/774884672", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519496, + -0.0842777 + ], + [ + 109.3519996, + -0.0843058 + ] + ] + }, + "id": "way/774884672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/774885800", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485908, + -0.0897655 + ], + [ + 109.348493, + -0.0897111 + ] + ] + }, + "id": "way/774885800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/774885802", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534671, + -0.0791385 + ], + [ + 109.3533705, + -0.0793307 + ] + ] + }, + "id": "way/774885802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775145462", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073411, + -0.0667924 + ], + [ + 109.3064882, + -0.066107 + ] + ] + }, + "id": "way/775145462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775145463", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056419, + -0.0686437 + ], + [ + 109.305886, + -0.0688268 + ], + [ + 109.3061744, + -0.0690266 + ], + [ + 109.3063568, + -0.0691513 + ], + [ + 109.3070166, + -0.0696301 + ] + ] + }, + "id": "way/775145463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775168633", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979548, + -0.052666 + ], + [ + 109.2978039, + -0.0525451 + ], + [ + 109.2976821, + -0.0524324 + ] + ] + }, + "id": "way/775168633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775179512", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2961393, + -0.0478965 + ], + [ + 109.296095, + -0.0479381 + ] + ] + }, + "id": "way/775179512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775179513", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2958811, + -0.0475841 + ], + [ + 109.2958516, + -0.0476154 + ] + ] + }, + "id": "way/775179513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775179514", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2955679, + -0.0472799 + ], + [ + 109.2955263, + -0.0473208 + ] + ] + }, + "id": "way/775179514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775179515", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.295134, + -0.0468085 + ], + [ + 109.295121, + -0.0468189 + ] + ] + }, + "id": "way/775179515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775179516", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090881, + -0.0467579 + ], + [ + 109.3079573, + -0.045962 + ], + [ + 109.307683, + -0.0457704 + ] + ] + }, + "id": "way/775179516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775179517", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2925665, + -0.044 + ], + [ + 109.292536, + -0.0440275 + ] + ] + }, + "id": "way/775179517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775179518", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2938147, + -0.0453649 + ], + [ + 109.2937899, + -0.0453985 + ] + ] + }, + "id": "way/775179518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775181425", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009805, + -0.0440788 + ], + [ + 109.3010198, + -0.0440466 + ] + ] + }, + "id": "way/775181425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775181427", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2947281, + -0.0463676 + ], + [ + 109.294698, + -0.0463931 + ] + ] + }, + "id": "way/775181427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775181428", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946488, + -0.0462799 + ], + [ + 109.2946233, + -0.0463033 + ] + ] + }, + "id": "way/775181428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775189717", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2932341, + -0.0447296 + ], + [ + 109.2932066, + -0.0447604 + ] + ] + }, + "id": "way/775189717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775189718", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2927153, + -0.0441626 + ], + [ + 109.2926945, + -0.0441854 + ] + ] + }, + "id": "way/775189718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775189719", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979018, + -0.0497984 + ], + [ + 109.2978669, + -0.0498225 + ] + ] + }, + "id": "way/775189719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775189722", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2942659, + -0.0458543 + ], + [ + 109.2942371, + -0.0458838 + ] + ] + }, + "id": "way/775189722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775194049", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310756, + -0.0752929 + ], + [ + 109.3308563, + -0.075539 + ] + ] + }, + "id": "way/775194049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775194050", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3311284, + -0.0752333 + ], + [ + 109.3310756, + -0.0752929 + ] + ] + }, + "id": "way/775194050" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775835140", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3002655, + -0.0426163 + ], + [ + 109.2976248, + -0.0444482 + ] + ] + }, + "id": "way/775835140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775835142", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3043149, + -0.0429482 + ], + [ + 109.3028889, + -0.0438318 + ] + ] + }, + "id": "way/775835142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775835144", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049077, + -0.0495076 + ], + [ + 109.3044283, + -0.0492057 + ] + ] + }, + "id": "way/775835144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775835145", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050825, + -0.0492471 + ], + [ + 109.3049077, + -0.0495076 + ], + [ + 109.3054803, + -0.0498978 + ], + [ + 109.3060727, + -0.0502984 + ] + ] + }, + "id": "way/775835145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775835146", + "highway": "residential", + "name": "Jalan Perumahan Griya Ampera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2906336, + -0.0427055 + ], + [ + 109.291606, + -0.0437697 + ] + ] + }, + "id": "way/775835146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775835147", + "highway": "residential", + "name": "Jalan Perumahan Griya Ampera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2903976, + -0.042914 + ], + [ + 109.2906336, + -0.0427055 + ], + [ + 109.2903279, + -0.0423675 + ] + ] + }, + "id": "way/775835147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775835150", + "highway": "residential", + "name": "Jalan Perumahan Gading Beverly" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2889781, + -0.0418738 + ], + [ + 109.2907879, + -0.0439131 + ] + ] + }, + "id": "way/775835150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775836558", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046937, + -0.0457953 + ], + [ + 109.3039172, + -0.0462932 + ], + [ + 109.303255, + -0.046767 + ] + ] + }, + "id": "way/775836558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775836559", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981879, + -0.0528822 + ], + [ + 109.2979548, + -0.052666 + ] + ] + }, + "id": "way/775836559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775836562", + "highway": "path", + "name": "Gang Murni" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077039, + -0.05746 + ], + [ + 109.3076429, + -0.0574128 + ] + ] + }, + "id": "way/775836562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775836563", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3047467, + -0.0458342 + ], + [ + 109.3046127, + -0.0459429 + ], + [ + 109.3046006, + -0.0459603 + ], + [ + 109.3046046, + -0.0459717 + ], + [ + 109.3046254, + -0.0459952 + ] + ] + }, + "id": "way/775836563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775841333", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3036284, + -0.049189 + ], + [ + 109.3026218, + -0.0498716 + ], + [ + 109.3025473, + -0.04993 + ], + [ + 109.3025162, + -0.0499596 + ], + [ + 109.3025043, + -0.0499919 + ], + [ + 109.302582, + -0.0500744 + ], + [ + 109.3026091, + -0.0501025 + ], + [ + 109.3026203, + -0.0501215 + ], + [ + 109.3022624, + -0.0504067 + ] + ] + }, + "id": "way/775841333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775841334", + "highway": "residential", + "name": "Golden Mas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019519, + -0.0459318 + ], + [ + 109.2993949, + -0.0476887 + ] + ] + }, + "id": "way/775841334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775865897", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040779, + -0.0328359 + ], + [ + 109.3040843, + -0.0328537 + ], + [ + 109.3040997, + -0.0328564 + ], + [ + 109.3043049, + -0.0328115 + ] + ] + }, + "id": "way/775865897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775865898", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074015, + -0.033647 + ], + [ + 109.3076147, + -0.0341365 + ] + ] + }, + "id": "way/775865898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775865899", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2930425, + -0.032204 + ], + [ + 109.292939, + -0.0322793 + ] + ] + }, + "id": "way/775865899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775865900", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2973145, + -0.0372265 + ], + [ + 109.2973363, + -0.0372091 + ] + ] + }, + "id": "way/775865900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775865901", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056435, + -0.038541 + ], + [ + 109.304384, + -0.0397818 + ] + ] + }, + "id": "way/775865901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869613", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2975957, + -0.0294395 + ], + [ + 109.2976239, + -0.0294851 + ] + ] + }, + "id": "way/775869613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969315, + -0.0298988 + ], + [ + 109.2969704, + -0.0299464 + ] + ] + }, + "id": "way/775869614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869615", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039133, + -0.0259371 + ], + [ + 109.3046129, + -0.0256108 + ] + ] + }, + "id": "way/775869615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869616", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979502, + -0.0291875 + ], + [ + 109.2979723, + -0.0292291 + ] + ] + }, + "id": "way/775869616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869617", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996665, + -0.0280003 + ], + [ + 109.2996947, + -0.0280452 + ] + ] + }, + "id": "way/775869617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869618", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2997917, + -0.0282159 + ], + [ + 109.2997736, + -0.028175 + ] + ] + }, + "id": "way/775869618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869619", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017057, + -0.027033 + ], + [ + 109.301934, + -0.0274669 + ] + ] + }, + "id": "way/775869619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011209, + -0.0270668 + ], + [ + 109.3011484, + -0.0271144 + ] + ] + }, + "id": "way/775869620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869621", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3012571, + -0.0273229 + ], + [ + 109.3012424, + -0.0272893 + ] + ] + }, + "id": "way/775869621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775869622", + "highway": "residential", + "name": "Gang Nikita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038975, + -0.027987 + ], + [ + 109.3043554, + -0.0289324 + ], + [ + 109.304406, + -0.0290124 + ], + [ + 109.3045765, + -0.029378 + ] + ] + }, + "id": "way/775869622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775874295", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3086728, + -0.0238888 + ], + [ + 109.3094196, + -0.023589 + ] + ] + }, + "id": "way/775874295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775874296", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3082611, + -0.0240393 + ], + [ + 109.3086728, + -0.0238888 + ] + ] + }, + "id": "way/775874296" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775874297", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081113, + -0.0240932 + ], + [ + 109.3082611, + -0.0240393 + ] + ] + }, + "id": "way/775874297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889714", + "access": "private", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449509, + -0.0524876 + ], + [ + 109.3444769, + -0.0520759 + ], + [ + 109.3441575, + -0.0517968 + ] + ] + }, + "id": "way/775889714" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889715", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432565, + -0.0509852 + ], + [ + 109.3433477, + -0.051082 + ], + [ + 109.3437119, + -0.0514015 + ], + [ + 109.3441138, + -0.0517255 + ], + [ + 109.3441575, + -0.0517968 + ] + ] + }, + "id": "way/775889715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889716", + "access": "private", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34501, + -0.0524473 + ], + [ + 109.3449509, + -0.0524876 + ] + ] + }, + "id": "way/775889716" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889717", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449509, + -0.0524876 + ], + [ + 109.3453271, + -0.0527813 + ], + [ + 109.345346, + -0.0527965 + ], + [ + 109.3454185, + -0.0528549 + ] + ] + }, + "id": "way/775889717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889718", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454185, + -0.0528549 + ], + [ + 109.3454614, + -0.0528066 + ], + [ + 109.3453948, + -0.0527535 + ], + [ + 109.34501, + -0.0524473 + ] + ] + }, + "id": "way/775889718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889719", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345928, + -0.0516762 + ], + [ + 109.345975, + -0.0516643 + ], + [ + 109.3460015, + -0.0516546 + ], + [ + 109.3460141, + -0.0516486 + ], + [ + 109.3460343, + -0.0516382 + ], + [ + 109.3460654, + -0.0516218 + ] + ] + }, + "id": "way/775889719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889794", + "highway": "tertiary", + "name": "Jalan Husein Hamzah", + "oneway": "yes", + "ref": "002.3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2816685, + -0.0425737 + ], + [ + 109.2820422, + -0.0421732 + ], + [ + 109.2824275, + -0.04175 + ], + [ + 109.2826418, + -0.0415392 + ], + [ + 109.2828079, + -0.0414055 + ], + [ + 109.283032, + -0.0412217 + ], + [ + 109.2831869, + -0.0410976 + ], + [ + 109.2835124, + -0.0408248 + ], + [ + 109.2837064, + -0.0406449 + ], + [ + 109.2838463, + -0.0404973 + ], + [ + 109.2838563, + -0.0404858 + ], + [ + 109.2841447, + -0.0401553 + ], + [ + 109.284319, + -0.0399605 + ], + [ + 109.2846514, + -0.0396974 + ], + [ + 109.2851026, + -0.0393279 + ], + [ + 109.2853391, + -0.0391295 + ], + [ + 109.285521, + -0.0389812 + ], + [ + 109.2858491, + -0.0386787 + ], + [ + 109.2861185, + -0.0384475 + ], + [ + 109.2863138, + -0.0382707 + ], + [ + 109.2866064, + -0.0379691 + ], + [ + 109.2869135, + -0.0377048 + ] + ] + }, + "id": "way/775889794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889795", + "highway": "tertiary", + "name": "Jalan Husein Hamzah", + "oneway": "yes", + "ref": "002.3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2869531, + -0.037739 + ], + [ + 109.2866454, + -0.038037 + ], + [ + 109.2861537, + -0.0384907 + ], + [ + 109.2858992, + -0.0387477 + ], + [ + 109.2855714, + -0.0390351 + ], + [ + 109.2853766, + -0.0391969 + ], + [ + 109.2851391, + -0.0393989 + ], + [ + 109.2846848, + -0.0397629 + ], + [ + 109.2843618, + -0.0400337 + ], + [ + 109.2842189, + -0.0401868 + ], + [ + 109.2841341, + -0.0402856 + ], + [ + 109.2838879, + -0.0405724 + ], + [ + 109.2835746, + -0.040881 + ], + [ + 109.2832288, + -0.0411678 + ], + [ + 109.2830797, + -0.0412804 + ], + [ + 109.282683, + -0.0416045 + ], + [ + 109.2824699, + -0.0418294 + ], + [ + 109.2823087, + -0.0420153 + ], + [ + 109.282275, + -0.04205 + ], + [ + 109.2820633, + -0.0422736 + ], + [ + 109.2817175, + -0.0426372 + ] + ] + }, + "id": "way/775889795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889796", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982967, + -0.0273807 + ], + [ + 109.2983347, + -0.0274308 + ] + ] + }, + "id": "way/775889796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889797", + "highway": "tertiary", + "name": "Jalan Husein Hamzah", + "oneway": "yes", + "ref": "002.3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2869135, + -0.0377048 + ], + [ + 109.2870725, + -0.0375439 + ], + [ + 109.2871871, + -0.0374303 + ], + [ + 109.2871998, + -0.0374199 + ], + [ + 109.2872527, + -0.0373771 + ], + [ + 109.2872898, + -0.037347 + ], + [ + 109.287338, + -0.0373076 + ], + [ + 109.2874023, + -0.0372522 + ], + [ + 109.2874278, + -0.0372323 + ], + [ + 109.2874839, + -0.0372049 + ], + [ + 109.2876316, + -0.0371414 + ], + [ + 109.2876748, + -0.037125 + ], + [ + 109.2877973, + -0.0370784 + ], + [ + 109.287956, + -0.0370406 + ], + [ + 109.2880312, + -0.0370133 + ], + [ + 109.2881177, + -0.0369818 + ], + [ + 109.2882688, + -0.0369203 + ], + [ + 109.2883024, + -0.0368995 + ], + [ + 109.2883566, + -0.0368661 + ], + [ + 109.2884708, + -0.0367931 + ], + [ + 109.2885591, + -0.0366876 + ], + [ + 109.2886113, + -0.0366044 + ], + [ + 109.2886467, + -0.0365265 + ], + [ + 109.2886634, + -0.0364578 + ], + [ + 109.2887044, + -0.0363542 + ], + [ + 109.2887925, + -0.0361615 + ], + [ + 109.2888203, + -0.0361094 + ], + [ + 109.2889119, + -0.035904 + ], + [ + 109.2889437, + -0.0358368 + ], + [ + 109.2889814, + -0.0357572 + ], + [ + 109.2890592, + -0.0356172 + ], + [ + 109.2891187, + -0.0355318 + ], + [ + 109.2892732, + -0.0353251 + ], + [ + 109.2893523, + -0.0352097 + ], + [ + 109.2895539, + -0.0350264 + ], + [ + 109.2895771, + -0.0350049 + ], + [ + 109.2897521, + -0.0348432 + ], + [ + 109.2900035, + -0.0345853 + ], + [ + 109.2900286, + -0.0345619 + ], + [ + 109.290039, + -0.0345522 + ], + [ + 109.2900593, + -0.0345327 + ], + [ + 109.2902761, + -0.0343185 + ], + [ + 109.2903514, + -0.0342449 + ], + [ + 109.2904662, + -0.0341323 + ], + [ + 109.2910624, + -0.0335154 + ], + [ + 109.2910815, + -0.0334976 + ], + [ + 109.2911648, + -0.0334197 + ], + [ + 109.291325, + -0.0332792 + ], + [ + 109.2914785, + -0.0331445 + ], + [ + 109.2915387, + -0.0330858 + ], + [ + 109.2916416, + -0.0329854 + ], + [ + 109.2918958, + -0.0327874 + ], + [ + 109.2920066, + -0.032714 + ], + [ + 109.2921276, + -0.0326264 + ], + [ + 109.2922546, + -0.0325258 + ], + [ + 109.2924355, + -0.0323751 + ], + [ + 109.2926623, + -0.0321937 + ], + [ + 109.2927478, + -0.0321159 + ], + [ + 109.2927867, + -0.0320804 + ], + [ + 109.2929388, + -0.0319446 + ], + [ + 109.2931132, + -0.0317877 + ], + [ + 109.2931881, + -0.0317168 + ], + [ + 109.2932203, + -0.0316906 + ], + [ + 109.2932867, + -0.0316309 + ], + [ + 109.2933545, + -0.0315609 + ], + [ + 109.2935333, + -0.031378 + ], + [ + 109.2936137, + -0.0312974 + ], + [ + 109.293814, + -0.0310634 + ], + [ + 109.2939667, + -0.0308849 + ], + [ + 109.2941067, + -0.0307367 + ], + [ + 109.2941594, + -0.0306769 + ], + [ + 109.2944602, + -0.0303179 + ], + [ + 109.2944782, + -0.0302936 + ], + [ + 109.2945324, + -0.0302203 + ], + [ + 109.294644, + -0.0300915 + ], + [ + 109.2946676, + -0.0300613 + ], + [ + 109.2948057, + -0.0299065 + ], + [ + 109.2948206, + -0.029884 + ], + [ + 109.2950017, + -0.0296854 + ], + [ + 109.2953086, + -0.029404 + ], + [ + 109.295381, + -0.0293446 + ], + [ + 109.2955073, + -0.0292274 + ], + [ + 109.2955945, + -0.0291488 + ], + [ + 109.2956605, + -0.0290893 + ], + [ + 109.2958307, + -0.0289413 + ], + [ + 109.2959322, + -0.0288531 + ], + [ + 109.2960121, + -0.0287837 + ], + [ + 109.2962295, + -0.0286438 + ], + [ + 109.2965476, + -0.0284668 + ], + [ + 109.2966258, + -0.0284148 + ], + [ + 109.2967303, + -0.0283442 + ], + [ + 109.2968347, + -0.0282685 + ], + [ + 109.2972921, + -0.0279447 + ], + [ + 109.297362, + -0.0279025 + ], + [ + 109.2974178, + -0.0278695 + ], + [ + 109.2981414, + -0.0274564 + ], + [ + 109.2982967, + -0.0273807 + ], + [ + 109.2984164, + -0.0273114 + ], + [ + 109.2986925, + -0.0271532 + ], + [ + 109.298969, + -0.0269975 + ], + [ + 109.2991307, + -0.026912 + ], + [ + 109.2993246, + -0.0268057 + ], + [ + 109.2994791, + -0.0267178 + ], + [ + 109.2995726, + -0.0266646 + ], + [ + 109.2996904, + -0.0265925 + ], + [ + 109.299964, + -0.0264489 + ], + [ + 109.300155, + -0.0263416 + ], + [ + 109.3004717, + -0.0261777 + ], + [ + 109.3006503, + -0.0260791 + ], + [ + 109.300811, + -0.0259911 + ], + [ + 109.3009587, + -0.0258962 + ], + [ + 109.3011437, + -0.0257536 + ], + [ + 109.3011591, + -0.0257417 + ], + [ + 109.301521, + -0.0254121 + ], + [ + 109.3018131, + -0.0251352 + ], + [ + 109.3019557, + -0.02501 + ], + [ + 109.302289, + -0.0247174 + ], + [ + 109.3022967, + -0.0247106 + ], + [ + 109.3028109, + -0.0242586 + ] + ] + }, + "id": "way/775889797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775889798", + "alt_name": "Jalan Haji Rais A. Rachman", + "highway": "tertiary", + "name": "Jalan Husein Hamzah", + "oneway": "yes", + "ref": "002.3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028109, + -0.0242586 + ], + [ + 109.3029602, + -0.0241353 + ], + [ + 109.3031473, + -0.0240249 + ], + [ + 109.3032031, + -0.0239904 + ], + [ + 109.3033889, + -0.0239065 + ], + [ + 109.3034595, + -0.0238821 + ], + [ + 109.3036399, + -0.0238196 + ], + [ + 109.3038856, + -0.0237261 + ], + [ + 109.3039468, + -0.0236987 + ], + [ + 109.3040145, + -0.0236712 + ], + [ + 109.3041211, + -0.0236343 + ], + [ + 109.3042009, + -0.0236028 + ], + [ + 109.3044899, + -0.0234874 + ], + [ + 109.3045443, + -0.023466 + ], + [ + 109.3046301, + -0.0234291 + ], + [ + 109.3048722, + -0.0233272 + ], + [ + 109.3050934, + -0.0232373 + ], + [ + 109.3053858, + -0.0231166 + ], + [ + 109.3055493, + -0.0230555 + ], + [ + 109.3059142, + -0.0229141 + ], + [ + 109.3062226, + -0.0227948 + ], + [ + 109.3063997, + -0.0227398 + ], + [ + 109.3065244, + -0.022717 + ], + [ + 109.3066389, + -0.0227046 + ], + [ + 109.3068261, + -0.0227103 + ], + [ + 109.3069334, + -0.0227317 + ], + [ + 109.3070367, + -0.022772 + ], + [ + 109.3071386, + -0.0228216 + ], + [ + 109.3077019, + -0.0231568 + ], + [ + 109.3080861, + -0.0233831 + ], + [ + 109.308557, + -0.0235959 + ], + [ + 109.3086448, + -0.0236423 + ] + ] + }, + "id": "way/775889798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775890196", + "access": "private", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.367315, + -0.050699 + ], + [ + 109.3673539, + -0.0506711 + ] + ] + }, + "id": "way/775890196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775893965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2926429, + -0.0332649 + ], + [ + 109.2926735, + -0.0333002 + ] + ] + }, + "id": "way/775893965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/775893966", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2928798, + -0.0330607 + ], + [ + 109.2929046, + -0.0330936 + ] + ] + }, + "id": "way/775893966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776103154", + "highway": "residential", + "import": "yes", + "name": "Gang H. Usman I", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2816642, + -0.0371594 + ], + [ + 109.2821432, + -0.0378012 + ], + [ + 109.2835767, + -0.0400507 + ], + [ + 109.2838563, + -0.0404858 + ] + ] + }, + "id": "way/776103154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120438", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2803152, + -0.0319988 + ], + [ + 109.2808329, + -0.032786 + ] + ] + }, + "id": "way/776120438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120439", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2875738, + -0.0312123 + ], + [ + 109.2900286, + -0.0345619 + ] + ] + }, + "id": "way/776120439" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120440", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2887105, + -0.0258619 + ], + [ + 109.2906053, + -0.0284848 + ] + ] + }, + "id": "way/776120440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120441", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2854831, + -0.0259531 + ], + [ + 109.2845142, + -0.0267792 + ] + ] + }, + "id": "way/776120441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120442", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2871079, + -0.0274216 + ], + [ + 109.2858191, + -0.0257479 + ], + [ + 109.2857923, + -0.0257204 + ], + [ + 109.2857768, + -0.0257123 + ], + [ + 109.2857473, + -0.0257277 + ], + [ + 109.285713, + -0.0257575 + ], + [ + 109.2855093, + -0.0259343 + ], + [ + 109.2854831, + -0.0259531 + ], + [ + 109.2854583, + -0.0259222 + ], + [ + 109.2849903, + -0.0252409 + ], + [ + 109.2847006, + -0.0247876 + ] + ] + }, + "id": "way/776120442" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120443", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2817073, + -0.0298637 + ], + [ + 109.2799987, + -0.0270855 + ] + ] + }, + "id": "way/776120443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120444", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.281211, + -0.0305866 + ], + [ + 109.280865, + -0.0300287 + ] + ] + }, + "id": "way/776120444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120445", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2809696, + -0.0309634 + ], + [ + 109.2806491, + -0.0304189 + ] + ] + }, + "id": "way/776120445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120446", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2800255, + -0.0324225 + ], + [ + 109.2792946, + -0.0310868 + ], + [ + 109.2786992, + -0.0299764 + ] + ] + }, + "id": "way/776120446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776120447", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2792986, + -0.0334471 + ], + [ + 109.2801153, + -0.0346072 + ] + ] + }, + "id": "way/776120447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776140160", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2881801, + -0.0174209 + ], + [ + 109.2881529, + -0.0173609 + ] + ] + }, + "id": "way/776140160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776140161", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2881948, + -0.0174491 + ], + [ + 109.2881801, + -0.0174209 + ] + ] + }, + "id": "way/776140161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776140162", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2858352, + -0.0201903 + ], + [ + 109.2854851, + -0.0202695 + ], + [ + 109.284887, + -0.0204545 + ], + [ + 109.2843908, + -0.0206155 + ], + [ + 109.2838973, + -0.0208193 + ], + [ + 109.2833555, + -0.0210822 + ] + ] + }, + "id": "way/776140162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776140165", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2859673, + -0.0118209 + ], + [ + 109.2858271, + -0.0123529 + ], + [ + 109.2858244, + -0.0124025 + ], + [ + 109.2858392, + -0.0124361 + ], + [ + 109.2858848, + -0.0124656 + ], + [ + 109.2861047, + -0.0124857 + ], + [ + 109.2871883, + -0.0124133 + ], + [ + 109.2887762, + -0.012306 + ] + ] + }, + "id": "way/776140165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776140166", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2859877, + -0.0134364 + ], + [ + 109.2859787, + -0.0132944 + ], + [ + 109.2860042, + -0.0132756 + ], + [ + 109.2860685, + -0.0132555 + ], + [ + 109.2864038, + -0.0131938 + ], + [ + 109.2867753, + -0.0131495 + ] + ] + }, + "id": "way/776140166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776140167", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2896144, + -0.0142372 + ], + [ + 109.2898759, + -0.014146 + ], + [ + 109.289896, + -0.0141232 + ], + [ + 109.2898974, + -0.014087 + ], + [ + 109.2894639, + -0.0127469 + ] + ] + }, + "id": "way/776140167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776140168", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2881529, + -0.0173609 + ], + [ + 109.2880306, + -0.0170273 + ], + [ + 109.2880104, + -0.0170005 + ], + [ + 109.2879695, + -0.0169844 + ], + [ + 109.2879467, + -0.0169375 + ], + [ + 109.2878251, + -0.0166037 + ] + ] + }, + "id": "way/776140168" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776140169", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motor_vehicle": "destination", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2855898, + -0.0179091 + ], + [ + 109.2857058, + -0.0178776 + ] + ] + }, + "id": "way/776140169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776141255", + "highway": "residential", + "motor_vehicle": "destination", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2857058, + -0.0178776 + ], + [ + 109.2860873, + -0.0177542 + ] + ] + }, + "id": "way/776141255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776168826", + "highway": "unclassified", + "lanes": "2", + "name": "Jalan Tabrani Ahmad", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957644, + -0.0245474 + ], + [ + 109.2956346, + -0.02463 + ] + ] + }, + "id": "way/776168826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776168827", + "highway": "unclassified", + "lanes": "2", + "name": "Jalan Tabrani Ahmad", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.295321, + -0.0248444 + ], + [ + 109.2950891, + -0.0250265 + ], + [ + 109.2948672, + -0.0252009 + ], + [ + 109.2947938, + -0.0252586 + ], + [ + 109.2945428, + -0.0254558 + ], + [ + 109.2944838, + -0.0255005 + ], + [ + 109.2941977, + -0.025709 + ], + [ + 109.293877, + -0.0259596 + ], + [ + 109.2935957, + -0.0261724 + ], + [ + 109.2932892, + -0.0264094 + ], + [ + 109.2931063, + -0.0265373 + ], + [ + 109.2929913, + -0.0266397 + ], + [ + 109.2926375, + -0.0268967 + ], + [ + 109.2923153, + -0.0271413 + ], + [ + 109.2920305, + -0.0273505 + ], + [ + 109.2919419, + -0.0274156 + ], + [ + 109.2913013, + -0.0278697 + ], + [ + 109.291234, + -0.0279231 + ], + [ + 109.2909103, + -0.0281823 + ], + [ + 109.2908483, + -0.028256 + ], + [ + 109.2906053, + -0.0284848 + ], + [ + 109.2900306, + -0.0290259 + ], + [ + 109.2900121, + -0.029042 + ], + [ + 109.289685, + -0.0293276 + ], + [ + 109.2894127, + -0.0296014 + ], + [ + 109.2891365, + -0.0298679 + ], + [ + 109.2891258, + -0.0298982 + ] + ] + }, + "id": "way/776168827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776168828", + "highway": "residential", + "name": "Jalan Karet" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981333, + -0.013324 + ], + [ + 109.2981163, + -0.0131271 + ], + [ + 109.2981126, + -0.0130801 + ], + [ + 109.2980982, + -0.0129113 + ], + [ + 109.2980735, + -0.0126721 + ], + [ + 109.298052, + -0.0125267 + ], + [ + 109.2980494, + -0.0124867 + ], + [ + 109.2980422, + -0.0124116 + ], + [ + 109.2980413, + -0.0123941 + ], + [ + 109.2980345, + -0.0122936 + ], + [ + 109.2980164, + -0.0120257 + ], + [ + 109.2980044, + -0.0119653 + ], + [ + 109.2979876, + -0.0119177 + ], + [ + 109.2979662, + -0.0118654 + ], + [ + 109.297792, + -0.0114308 + ], + [ + 109.2975838, + -0.0109788 + ], + [ + 109.2975505, + -0.0109029 + ], + [ + 109.2974145, + -0.0105806 + ], + [ + 109.2973246, + -0.0103636 + ], + [ + 109.2973081, + -0.010322 + ], + [ + 109.2971964, + -0.0100731 + ], + [ + 109.2971718, + -0.0100188 + ], + [ + 109.2970684, + -0.0097558 + ], + [ + 109.2970234, + -0.0096333 + ], + [ + 109.2969349, + -0.0094142 + ], + [ + 109.296926, + -0.0093898 + ], + [ + 109.2969033, + -0.0093073 + ], + [ + 109.2968855, + -0.0092208 + ], + [ + 109.29687, + -0.0090169 + ], + [ + 109.2968687, + -0.0089827 + ], + [ + 109.2968687, + -0.0089499 + ], + [ + 109.2968763, + -0.008708 + ], + [ + 109.2968909, + -0.0084823 + ], + [ + 109.2968991, + -0.008388 + ], + [ + 109.2969298, + -0.0080302 + ], + [ + 109.2969386, + -0.00789 + ] + ] + }, + "id": "way/776168828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776385777", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325785, + 0.0038822 + ], + [ + 109.3258118, + 0.0038939 + ] + ] + }, + "id": "way/776385777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776385778", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156633, + 0.0101864 + ], + [ + 109.3156599, + 0.0101569 + ] + ] + }, + "id": "way/776385778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776385779", + "highway": "residential", + "name": "Gang Beringin 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146098, + 0.010246 + ], + [ + 109.3145877, + 0.0101984 + ] + ] + }, + "id": "way/776385779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776387456", + "highway": "residential", + "name": "Usaha Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208152, + 0.003 + ], + [ + 109.3214643, + 0.0035834 + ] + ] + }, + "id": "way/776387456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776390772", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397341, + 0.0033862 + ], + [ + 109.337862, + 0.003397 + ], + [ + 109.3376065, + 0.0033963 + ] + ] + }, + "id": "way/776390772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776390773", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282141, + 0.0097364 + ], + [ + 109.3278808, + 0.0097927 + ], + [ + 109.3278654, + 0.0098015 + ], + [ + 109.32786, + 0.0098276 + ], + [ + 109.3278647, + 0.0099396 + ], + [ + 109.3278553, + 0.0099597 + ], + [ + 109.3278433, + 0.0099805 + ], + [ + 109.327742, + 0.0101052 + ], + [ + 109.3277219, + 0.0101361 + ], + [ + 109.3277152, + 0.0101924 + ], + [ + 109.3279459, + 0.0114571 + ], + [ + 109.3281806, + 0.0125527 + ], + [ + 109.3281792, + 0.0125661 + ], + [ + 109.3281712, + 0.0125715 + ], + [ + 109.3278711, + 0.0126389 + ], + [ + 109.3278242, + 0.012647 + ], + [ + 109.3278138, + 0.0126416 + ], + [ + 109.3278121, + 0.0126345 + ], + [ + 109.3277548, + 0.0123777 + ] + ] + }, + "id": "way/776390773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776392393", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425032, + -0.0045361 + ], + [ + 109.3425662, + -0.0045381 + ] + ] + }, + "id": "way/776392393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776392394", + "highway": "residential", + "name": "Gang Dharma Putra 17 B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400004, + -0.0037832 + ], + [ + 109.3399722, + -0.0038107 + ], + [ + 109.3399474, + -0.0038382 + ], + [ + 109.3399112, + -0.0038872 + ], + [ + 109.3398656, + -0.0039844 + ], + [ + 109.33981, + -0.0040555 + ], + [ + 109.3397876, + -0.0040768 + ], + [ + 109.3397644, + -0.0040912 + ], + [ + 109.339655, + -0.004142 + ], + [ + 109.3395833, + -0.0041722 + ], + [ + 109.3395149, + -0.0041977 + ], + [ + 109.3394458, + -0.0042298 + ] + ] + }, + "id": "way/776392394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776392395", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267755, + 0.0014396 + ], + [ + 109.3267889, + 0.0014141 + ] + ] + }, + "id": "way/776392395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776396848", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507828, + 0.0007919 + ], + [ + 109.3508217, + 0.0007637 + ] + ] + }, + "id": "way/776396848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776396849", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505893, + 0.0004705 + ], + [ + 109.3506402, + 0.0004477 + ] + ] + }, + "id": "way/776396849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776396850", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563791, + -0.0019616 + ], + [ + 109.3563395, + -0.0019388 + ] + ] + }, + "id": "way/776396850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776396851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356127, + -0.0041202 + ], + [ + 109.3560989, + -0.0041014 + ] + ] + }, + "id": "way/776396851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776396852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559151, + -0.0057804 + ], + [ + 109.3558762, + -0.0057696 + ] + ] + }, + "id": "way/776396852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776397863", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467851, + -0.0060389 + ], + [ + 109.3468072, + -0.0060523 + ] + ] + }, + "id": "way/776397863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776397864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563535, + -0.0023249 + ], + [ + 109.3562885, + -0.0023168 + ] + ] + }, + "id": "way/776397864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776397865", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562676, + -0.0028236 + ], + [ + 109.3562394, + -0.0028162 + ] + ] + }, + "id": "way/776397865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776397866", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561958, + -0.0034346 + ], + [ + 109.3561623, + -0.0034326 + ] + ] + }, + "id": "way/776397866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400230", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476842, + -0.0040045 + ], + [ + 109.3472028, + -0.0037444 + ] + ] + }, + "id": "way/776400230" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400231", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440358, + -0.0005633 + ], + [ + 109.3441088, + -0.0002749 + ], + [ + 109.3441216, + -0.0002595 + ], + [ + 109.3441444, + -0.0002501 + ], + [ + 109.3458858, + -0.0007778 + ] + ] + }, + "id": "way/776400231" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400232", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438669, + -0.0005154 + ], + [ + 109.3439192, + -0.0005295 + ] + ] + }, + "id": "way/776400232" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400233", + "highway": "residential", + "name": "KOMPLEK PONDOK MARISSA 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440881, + 0.0000624 + ], + [ + 109.3448237, + -0.000165 + ], + [ + 109.3461017, + -0.0005659 + ], + [ + 109.3468232, + -0.0007953 + ] + ] + }, + "id": "way/776400233" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400234", + "highway": "residential", + "name": "KOMPLEK PONDOK PANGERAN III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553631, + -0.0033914 + ], + [ + 109.3552528, + -0.0035036 + ], + [ + 109.3552333, + -0.0035197 + ], + [ + 109.3552119, + -0.0035238 + ], + [ + 109.3542677, + -0.0027305 + ] + ] + }, + "id": "way/776400234" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400235", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503168, + -0.0001978 + ], + [ + 109.3507889, + -0.0004694 + ], + [ + 109.3513857, + -0.0007966 + ], + [ + 109.3514165, + -0.000814 + ], + [ + 109.351442, + -0.000814 + ], + [ + 109.3515667, + -0.0005861 + ], + [ + 109.3515895, + -0.0005606 + ] + ] + }, + "id": "way/776400235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400236", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3515895, + -0.0005606 + ], + [ + 109.3516271, + -0.0005619 + ], + [ + 109.3530795, + -0.0013505 + ], + [ + 109.3530889, + -0.0013693 + ], + [ + 109.3530889, + -0.0013947 + ], + [ + 109.3530567, + -0.0016616 + ], + [ + 109.3530487, + -0.0017005 + ], + [ + 109.3530205, + -0.0017005 + ], + [ + 109.3529467, + -0.0016764 + ], + [ + 109.351442, + -0.000814 + ] + ] + }, + "id": "way/776400236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400237", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533696, + -0.0083454 + ], + [ + 109.3526517, + -0.007588 + ], + [ + 109.3517934, + -0.006664 + ], + [ + 109.3511322, + -0.005984 + ], + [ + 109.3508761, + -0.0063005 + ] + ] + }, + "id": "way/776400237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400238", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499789, + -0.0076389 + ], + [ + 109.3502699, + -0.0071239 + ], + [ + 109.3503329, + -0.0070448 + ], + [ + 109.3505837, + -0.0066941 + ] + ] + }, + "id": "way/776400238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400239", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546194, + -0.0068832 + ], + [ + 109.3534346, + -0.0057587 + ], + [ + 109.3523594, + -0.004785 + ] + ] + }, + "id": "way/776400239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400240", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559669, + -0.0051022 + ], + [ + 109.3558851, + -0.0050949 + ] + ] + }, + "id": "way/776400240" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400241", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559991, + -0.0050989 + ], + [ + 109.3559669, + -0.0051022 + ] + ] + }, + "id": "way/776400241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400242", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559723, + -0.0044256 + ], + [ + 109.3560681, + -0.0044484 + ] + ] + }, + "id": "way/776400242" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400243", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560681, + -0.0044484 + ], + [ + 109.3561012, + -0.0044544 + ] + ] + }, + "id": "way/776400243" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776400244", + "highway": "residential", + "name": "Jalan Perumahan Permata Alam Sutra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558851, + -0.0050949 + ], + [ + 109.3557845, + -0.0050399 + ], + [ + 109.355346, + -0.0046992 + ], + [ + 109.3531546, + -0.0026742 + ], + [ + 109.353113, + -0.0026312 + ], + [ + 109.3530942, + -0.0025816 + ], + [ + 109.3530969, + -0.0022759 + ], + [ + 109.3531117, + -0.0021444 + ], + [ + 109.3531358, + -0.0021256 + ], + [ + 109.353172, + -0.0021404 + ], + [ + 109.3539995, + -0.0028767 + ], + [ + 109.3541068, + -0.0029209 + ], + [ + 109.354552, + -0.0033045 + ], + [ + 109.3556008, + -0.0042352 + ], + [ + 109.3556678, + -0.0042728 + ], + [ + 109.3559025, + -0.0044002 + ], + [ + 109.3559723, + -0.0044256 + ] + ] + }, + "id": "way/776400244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776401692", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502451, + -0.0001495 + ], + [ + 109.3503168, + -0.0001978 + ] + ] + }, + "id": "way/776401692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776401693", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502109, + -0.0001247 + ], + [ + 109.3502451, + -0.0001495 + ] + ] + }, + "id": "way/776401693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776401694", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440143, + 0.0000811 + ], + [ + 109.3440881, + 0.0000624 + ] + ] + }, + "id": "way/776401694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776401695", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439238, + 0.0001073 + ], + [ + 109.3440143, + 0.0000811 + ] + ] + }, + "id": "way/776401695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776403774", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619402, + 0.0007175 + ], + [ + 109.3635388, + 0.0006571 + ] + ] + }, + "id": "way/776403774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776403775", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619791, + 0.000975 + ], + [ + 109.3634757, + 0.0009294 + ] + ] + }, + "id": "way/776403775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776403776", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654009, + 0.0109776 + ], + [ + 109.3653372, + 0.0106511 + ], + [ + 109.3653345, + 0.0106122 + ], + [ + 109.3653546, + 0.01058 + ], + [ + 109.3661499, + 0.0104633 + ] + ] + }, + "id": "way/776403776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776403777", + "highway": "residential", + "motorcar": "no", + "name": "KOMPLEK SINAR ANUGRAH" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648897, + 0.0110577 + ], + [ + 109.3653291, + 0.0110091 + ], + [ + 109.3653627, + 0.010993 + ], + [ + 109.3654009, + 0.0109776 + ], + [ + 109.3672845, + 0.0107463 + ] + ] + }, + "id": "way/776403777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776403779", + "highway": "residential", + "name": "KOMPLEK ARFIZ GOLF PERMAI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3712689, + -0.006161 + ], + [ + 109.3730771, + -0.0060362 + ], + [ + 109.3744917, + -0.0058547 + ] + ] + }, + "id": "way/776403779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776403780", + "highway": "residential", + "name": "KOMPLEK PONDOK MARISSA 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3712714, + -0.0058492 + ], + [ + 109.374159, + -0.0055146 + ] + ] + }, + "id": "way/776403780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776403781", + "highway": "residential", + "name": "KOMPLEK PONDOK MARISSA 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3712729, + -0.0055233 + ], + [ + 109.3712977, + -0.0055209 + ], + [ + 109.3725686, + -0.0054002 + ], + [ + 109.3729838, + -0.0053607 + ], + [ + 109.3742435, + -0.005241 + ] + ] + }, + "id": "way/776403781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776406063", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649407, + -0.0057003 + ], + [ + 109.3648197, + -0.005698 + ] + ] + }, + "id": "way/776406063" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776406064", + "highway": "residential", + "name": "KOMPLEK ZAMRUD GOLF RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3710791, + -0.0048789 + ], + [ + 109.3712689, + -0.0033393 + ] + ] + }, + "id": "way/776406064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776406745", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648359, + 0.0100597 + ], + [ + 109.3648316, + 0.0100073 + ] + ] + }, + "id": "way/776406745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776406746", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652634, + 0.0156842 + ], + [ + 109.3651231, + 0.0141399 + ], + [ + 109.3650953, + 0.0138137 + ], + [ + 109.3650097, + 0.0125155 + ], + [ + 109.3649044, + 0.0112366 + ], + [ + 109.3648897, + 0.0110577 + ], + [ + 109.3648721, + 0.0108205 + ], + [ + 109.3648484, + 0.0105016 + ], + [ + 109.3648459, + 0.0104137 + ], + [ + 109.3648359, + 0.0100597 + ] + ] + }, + "id": "way/776406746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776438015", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365477, + 0.0226818 + ], + [ + 109.3654581, + 0.0225919 + ] + ] + }, + "id": "way/776438015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776438816", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681535, + 0.0192589 + ], + [ + 109.3684338, + 0.0192308 + ], + [ + 109.368519, + 0.0192207 + ], + [ + 109.3686645, + 0.0191879 + ], + [ + 109.3691679, + 0.0190641 + ] + ] + }, + "id": "way/776438816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776448999", + "highway": "unclassified", + "lanes": "2", + "name": "Jalan Tabrani Ahmad", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2956346, + -0.02463 + ], + [ + 109.2954952, + -0.0247253 + ], + [ + 109.295321, + -0.0248444 + ] + ] + }, + "id": "way/776448999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776647443", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599424, + 0.0212275 + ], + [ + 109.3590689, + 0.0214416 + ] + ] + }, + "id": "way/776647443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776647444", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604113, + 0.024557 + ], + [ + 109.3598548, + 0.0230697 + ] + ] + }, + "id": "way/776647444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776647445", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568395, + 0.0197179 + ], + [ + 109.3568567, + 0.0198148 + ], + [ + 109.356852, + 0.019839 + ], + [ + 109.3568145, + 0.0198825 + ], + [ + 109.3567937, + 0.0199087 + ], + [ + 109.3567897, + 0.0199315 + ], + [ + 109.3569419, + 0.0206812 + ] + ] + }, + "id": "way/776647445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776647446", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543704, + 0.0203867 + ], + [ + 109.354424, + 0.0205591 + ], + [ + 109.3544447, + 0.0205893 + ], + [ + 109.3544662, + 0.0206 + ], + [ + 109.3545252, + 0.0206242 + ], + [ + 109.3545775, + 0.0206436 + ], + [ + 109.3546023, + 0.0206577 + ], + [ + 109.3546184, + 0.0206845 + ], + [ + 109.3547143, + 0.0211023 + ], + [ + 109.3549222, + 0.0219311 + ], + [ + 109.3551005, + 0.0227478 + ], + [ + 109.3551569, + 0.0229765 + ], + [ + 109.3551683, + 0.0230294 + ], + [ + 109.3551622, + 0.0230583 + ], + [ + 109.35512, + 0.0231146 + ], + [ + 109.3550053, + 0.0232454 + ], + [ + 109.3549963, + 0.0232591 + ], + [ + 109.3549936, + 0.0232735 + ], + [ + 109.3550006, + 0.0233071 + ], + [ + 109.3552829, + 0.0239065 + ] + ] + }, + "id": "way/776647446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776653993", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3259268, + 0.0127244 + ], + [ + 109.326075, + 0.0126882 + ], + [ + 109.3262661, + 0.0126594 + ], + [ + 109.3265089, + 0.0126299 + ] + ] + }, + "id": "way/776653993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776653994", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336784, + 0.0209804 + ], + [ + 109.3348204, + 0.0211016 + ], + [ + 109.3362882, + 0.0212854 + ], + [ + 109.3364257, + 0.0213028 + ] + ] + }, + "id": "way/776653994" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776653995", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321261, + 0.0126587 + ], + [ + 109.332224, + 0.012021 + ], + [ + 109.332224, + 0.0119955 + ], + [ + 109.3322226, + 0.0119767 + ], + [ + 109.3322106, + 0.011968 + ], + [ + 109.3319263, + 0.0119566 + ], + [ + 109.3316594, + 0.0119573 + ], + [ + 109.3314381, + 0.0119492 + ], + [ + 109.3310452, + 0.0119271 + ], + [ + 109.3305556, + 0.0118614 + ] + ] + }, + "id": "way/776653995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776653996", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333553, + 0.0198396 + ], + [ + 109.3354788, + 0.0200897 + ] + ] + }, + "id": "way/776653996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776653997", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333557, + 0.0197558 + ], + [ + 109.3323661, + 0.0197686 + ], + [ + 109.3308654, + 0.0197867 + ] + ] + }, + "id": "way/776653997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776653998", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341436, + 0.0238127 + ], + [ + 109.3412644, + 0.0230294 + ] + ] + }, + "id": "way/776653998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776653999", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335664, + 0.0273438 + ], + [ + 109.3324667, + 0.0275322 + ] + ] + }, + "id": "way/776653999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776654000", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348062, + 0.0253818 + ], + [ + 109.3348016, + 0.0264754 + ], + [ + 109.3348244, + 0.0269515 + ], + [ + 109.3348432, + 0.0275597 + ] + ] + }, + "id": "way/776654000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776654001", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257874, + 0.0120036 + ], + [ + 109.3261354, + 0.0119821 + ], + [ + 109.3261776, + 0.011972 + ], + [ + 109.3263392, + 0.0118889 + ], + [ + 109.3265491, + 0.0117789 + ], + [ + 109.3266021, + 0.0117635 + ], + [ + 109.3266188, + 0.0117648 + ], + [ + 109.3266416, + 0.0117796 + ], + [ + 109.3267094, + 0.0122067 + ], + [ + 109.3267536, + 0.0125876 + ] + ] + }, + "id": "way/776654001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776654002", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260764, + 0.0139824 + ], + [ + 109.3264579, + 0.0139502 + ], + [ + 109.3274778, + 0.0138576 + ] + ] + }, + "id": "way/776654002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776655433", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337113, + 0.0135666 + ], + [ + 109.3331011, + 0.0135277 + ], + [ + 109.3329871, + 0.0135317 + ], + [ + 109.3329012, + 0.0135438 + ] + ] + }, + "id": "way/776655433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776658671", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219444, + 0.016973 + ], + [ + 109.3216502, + 0.0169843 + ], + [ + 109.3212832, + 0.0169985 + ] + ] + }, + "id": "way/776658671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776658672", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116006, + 0.0238981 + ], + [ + 109.311547, + 0.0239102 + ] + ] + }, + "id": "way/776658672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776659484", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115207, + 0.0290633 + ], + [ + 109.3122375, + 0.0291073 + ], + [ + 109.3130596, + 0.0291717 + ], + [ + 109.313482, + 0.0292146 + ] + ] + }, + "id": "way/776659484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776659485", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115348, + 0.0275812 + ], + [ + 109.310824, + 0.0276388 + ] + ] + }, + "id": "way/776659485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776659486", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140943, + 0.0208743 + ], + [ + 109.3142867, + 0.0216615 + ] + ] + }, + "id": "way/776659486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776659490", + "highway": "residential", + "name": "KOMPLEK TAMAN PANCA BHAKTI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102446, + 0.0180419 + ], + [ + 109.3102325, + 0.0180539 + ], + [ + 109.3102285, + 0.0180969 + ], + [ + 109.3102017, + 0.0187956 + ], + [ + 109.310187, + 0.0188224 + ], + [ + 109.3101534, + 0.0188304 + ], + [ + 109.3098789, + 0.0188828 + ], + [ + 109.3095265, + 0.0189501 + ], + [ + 109.3091941, + 0.0190136 + ] + ] + }, + "id": "way/776659490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776659491", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107369, + 0.0206216 + ], + [ + 109.3108542, + 0.0206001 + ], + [ + 109.3122455, + 0.0203875 + ] + ] + }, + "id": "way/776659491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776666829", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2963089, + 0.0161323 + ], + [ + 109.2963357, + 0.0161182 + ] + ] + }, + "id": "way/776666829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776666830", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2964494, + 0.0165097 + ], + [ + 109.2964735, + 0.0164993 + ] + ] + }, + "id": "way/776666830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668326", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966867, + 0.0172728 + ], + [ + 109.2973063, + 0.0171065 + ], + [ + 109.2981707, + 0.0168436 + ] + ] + }, + "id": "way/776668326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668327", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297315, + 0.0194581 + ], + [ + 109.2979286, + 0.0192891 + ] + ] + }, + "id": "way/776668327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668328", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968202, + 0.017716 + ], + [ + 109.296627, + 0.017778 + ], + [ + 109.2964688, + 0.0178421 + ], + [ + 109.2964453, + 0.0178454 + ], + [ + 109.2964339, + 0.0178394 + ], + [ + 109.2964111, + 0.0178139 + ], + [ + 109.296393, + 0.0178079 + ], + [ + 109.2963729, + 0.0178112 + ], + [ + 109.2954321, + 0.0180794 + ], + [ + 109.2953054, + 0.0181143 + ] + ] + }, + "id": "way/776668328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668329", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297231, + 0.0190791 + ], + [ + 109.2972845, + 0.0190641 + ] + ] + }, + "id": "way/776668329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668330", + "highway": "residential", + "name": "KOMPLEK MAXIMA RESIDENCE - GRAND ANDIKA 10" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2972845, + 0.0190641 + ], + [ + 109.2978528, + 0.0188901 + ], + [ + 109.2981713, + 0.018804 + ], + [ + 109.2992657, + 0.0184616 + ], + [ + 109.3002602, + 0.0181584 + ] + ] + }, + "id": "way/776668330" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668331", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2972164, + 0.0190848 + ], + [ + 109.297231, + 0.0190791 + ] + ] + }, + "id": "way/776668331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668335", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062951, + 0.0249935 + ], + [ + 109.3061522, + 0.0246144 + ] + ] + }, + "id": "way/776668335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668336", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983671, + 0.0230073 + ], + [ + 109.2995091, + 0.0226338 + ], + [ + 109.2998068, + 0.0225373 + ] + ] + }, + "id": "way/776668336" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668337", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984873, + 0.0235638 + ], + [ + 109.2977589, + 0.0238261 + ] + ] + }, + "id": "way/776668337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668338", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984442, + 0.0233728 + ], + [ + 109.3004063, + 0.0227827 + ], + [ + 109.3007147, + 0.0226727 + ] + ] + }, + "id": "way/776668338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668339", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986993, + 0.0244523 + ], + [ + 109.3000817, + 0.0240903 + ] + ] + }, + "id": "way/776668339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668976", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.29677, + 0.017577 + ], + [ + 109.2967871, + 0.01757 + ] + ] + }, + "id": "way/776668976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776668977", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981867, + 0.0125273 + ], + [ + 109.2976946, + 0.0128183 + ] + ] + }, + "id": "way/776668977" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776888905", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210499, + 0.0378473 + ], + [ + 109.321074, + 0.037331 + ], + [ + 109.3213168, + 0.0356036 + ], + [ + 109.3214965, + 0.0340976 + ], + [ + 109.3217499, + 0.0329938 + ] + ] + }, + "id": "way/776888905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776889676", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114167, + 0.0303747 + ], + [ + 109.3127874, + 0.030553 + ] + ] + }, + "id": "way/776889676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776889677", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113872, + 0.0305209 + ], + [ + 109.311296, + 0.0305289 + ], + [ + 109.3112317, + 0.0305356 + ], + [ + 109.3111787, + 0.0305423 + ], + [ + 109.3111472, + 0.0305564 + ], + [ + 109.3110955, + 0.0305819 + ], + [ + 109.3110687, + 0.0305819 + ], + [ + 109.3110164, + 0.0305691 + ], + [ + 109.3100823, + 0.0303693 + ] + ] + }, + "id": "way/776889677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776889678", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103304, + 0.0340855 + ], + [ + 109.3101132, + 0.0347963 + ], + [ + 109.3097699, + 0.0359389 + ], + [ + 109.3094185, + 0.0371191 + ], + [ + 109.309338, + 0.0373551 + ], + [ + 109.3093058, + 0.0375456 + ], + [ + 109.3092549, + 0.0380015 + ], + [ + 109.3091315, + 0.0386453 + ], + [ + 109.3090832, + 0.0388867 + ], + [ + 109.3090671, + 0.0391549 + ], + [ + 109.3090644, + 0.0393373 + ], + [ + 109.309051, + 0.0395975 + ], + [ + 109.3090162, + 0.0398979 + ], + [ + 109.3089545, + 0.0402653 + ] + ] + }, + "id": "way/776889678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776906676", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725631, + -0.0020554 + ], + [ + 109.3725537, + -0.0024657 + ] + ] + }, + "id": "way/776906676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776908156", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562002, + 0.0038932 + ], + [ + 109.3560105, + 0.0028644 + ] + ] + }, + "id": "way/776908156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776908157", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.355877, + 0.0040421 + ], + [ + 109.3556883, + 0.002902 + ] + ] + }, + "id": "way/776908157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776908158", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553433, + 0.0029424 + ], + [ + 109.3555794, + 0.0041858 + ] + ] + }, + "id": "way/776908158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776908159", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550067, + 0.0029887 + ], + [ + 109.3552038, + 0.0040716 + ] + ] + }, + "id": "way/776908159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776908160", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546996, + 0.0030229 + ], + [ + 109.3549714, + 0.0044714 + ] + ] + }, + "id": "way/776908160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776908161", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565047, + 0.0037497 + ], + [ + 109.3565114, + 0.0037149 + ], + [ + 109.3563652, + 0.0028633 + ], + [ + 109.3563518, + 0.0028364 + ], + [ + 109.3563183, + 0.0028284 + ], + [ + 109.3560105, + 0.0028644 + ], + [ + 109.3556883, + 0.002902 + ], + [ + 109.3553433, + 0.0029424 + ], + [ + 109.3551417, + 0.0029635 + ] + ] + }, + "id": "way/776908161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776915837", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2860055, + -0.0143337 + ], + [ + 109.2860243, + -0.014555 + ], + [ + 109.286039, + -0.0145637 + ], + [ + 109.2860605, + -0.0145691 + ], + [ + 109.2863528, + -0.0145047 + ], + [ + 109.2865057, + -0.0144725 + ], + [ + 109.2866519, + -0.014441 + ], + [ + 109.2871615, + -0.0143686 + ] + ] + }, + "id": "way/776915837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776915841", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2835609, + -0.0230205 + ], + [ + 109.2847006, + -0.0247876 + ] + ] + }, + "id": "way/776915841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776915842", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2887353, + -0.0209038 + ], + [ + 109.2887407, + -0.0209447 + ], + [ + 109.2886019, + -0.0209936 + ], + [ + 109.2887427, + -0.0212022 + ], + [ + 109.28905, + -0.0216201 + ], + [ + 109.2896238, + -0.0224005 + ] + ] + }, + "id": "way/776915842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776917347", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681012, + 0.018131 + ], + [ + 109.3674575, + 0.0182068 + ] + ] + }, + "id": "way/776917347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776917348", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652929, + 0.0156762 + ], + [ + 109.3654418, + 0.0175926 + ] + ] + }, + "id": "way/776917348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776922267", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331658, + 0.025088 + ], + [ + 109.3316902, + 0.0248332 + ], + [ + 109.3317043, + 0.0248158 + ], + [ + 109.3317244, + 0.024801 + ], + [ + 109.3319705, + 0.0248138 + ], + [ + 109.3319873, + 0.0248245 + ], + [ + 109.3319973, + 0.0248547 + ], + [ + 109.3319788, + 0.0251166 + ] + ] + }, + "id": "way/776922267" + }, + { + "type": "Feature", + "properties": { + "@id": "way/776922268", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3314496, + 0.0250566 + ], + [ + 109.3315051, + 0.0245355 + ], + [ + 109.3315132, + 0.02451 + ], + [ + 109.331534, + 0.0244819 + ], + [ + 109.3315662, + 0.0244678 + ], + [ + 109.3321609, + 0.0245248 + ], + [ + 109.3322092, + 0.0245348 + ], + [ + 109.332228, + 0.0245617 + ], + [ + 109.3322374, + 0.02462 + ], + [ + 109.3321956, + 0.0251359 + ] + ] + }, + "id": "way/776922268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778312965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472665, + -0.0795147 + ], + [ + 109.3473016, + -0.0794592 + ], + [ + 109.3473871, + -0.0793615 + ], + [ + 109.3473975, + -0.0793644 + ] + ] + }, + "id": "way/778312965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778312966", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473457, + -0.0797735 + ], + [ + 109.3472897, + -0.0797338 + ] + ] + }, + "id": "way/778312966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778312967", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474765, + -0.0793871 + ], + [ + 109.3475615, + -0.0794115 + ] + ] + }, + "id": "way/778312967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778312968", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473975, + -0.0793644 + ], + [ + 109.3474765, + -0.0793871 + ] + ] + }, + "id": "way/778312968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778312969", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472197, + -0.0796841 + ], + [ + 109.3472076, + -0.0796443 + ], + [ + 109.3472041, + -0.0796297 + ], + [ + 109.3472028, + -0.0796146 + ], + [ + 109.3472665, + -0.0795147 + ] + ] + }, + "id": "way/778312969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778312970", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472897, + -0.0797338 + ], + [ + 109.3472197, + -0.0796841 + ] + ] + }, + "id": "way/778312970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778312971", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468711, + -0.0792708 + ], + [ + 109.34677, + -0.0794784 + ] + ] + }, + "id": "way/778312971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778312972", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468711, + -0.0792708 + ], + [ + 109.3470325, + -0.0790405 + ] + ] + }, + "id": "way/778312972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778768913", + "access": "no", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3621928, + -0.068297 + ], + [ + 109.3621703, + -0.0682784 + ] + ] + }, + "id": "way/778768913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/778768915", + "access": "permissive", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612462, + -0.0691772 + ], + [ + 109.3612768, + -0.0691529 + ] + ] + }, + "id": "way/778768915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779235667", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122072, + 0.0218058 + ], + [ + 109.3121169, + 0.021385 + ] + ] + }, + "id": "way/779235667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779235672", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102854, + 0.0213388 + ], + [ + 109.3102888, + 0.0212801 + ], + [ + 109.3102879, + 0.0212614 + ] + ] + }, + "id": "way/779235672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779460436", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063641, + 0.0077925 + ], + [ + 109.3063809, + 0.0078019 + ], + [ + 109.306395, + 0.007822 + ], + [ + 109.3064419, + 0.0079977 + ], + [ + 109.3067215, + 0.0090753 + ], + [ + 109.3069267, + 0.0098424 + ], + [ + 109.3071534, + 0.0106551 + ], + [ + 109.3074015, + 0.0114235 + ] + ] + }, + "id": "way/779460436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779460437", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068302, + 0.0067109 + ], + [ + 109.3068328, + 0.0066941 + ], + [ + 109.3067457, + 0.0063126 + ], + [ + 109.3067269, + 0.0062677 + ], + [ + 109.3067135, + 0.0062442 + ], + [ + 109.3066961, + 0.0062321 + ], + [ + 109.3065524, + 0.0062638 + ] + ] + }, + "id": "way/779460437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779464747", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030295, + 0.0074545 + ], + [ + 109.3030952, + 0.0077119 + ] + ] + }, + "id": "way/779464747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779464748", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009482, + 0.0059411 + ], + [ + 109.3005297, + 0.0060993 + ], + [ + 109.3001488, + 0.0062241 + ] + ] + }, + "id": "way/779464748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779464749", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004635, + 0.0075195 + ], + [ + 109.3000469, + 0.0063743 + ] + ] + }, + "id": "way/779464749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779464750", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062387, + 0.00727 + ], + [ + 109.3066853, + 0.0070985 + ], + [ + 109.3067405, + 0.0070797 + ] + ] + }, + "id": "way/779464750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779464751", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040001, + 0.0077865 + ], + [ + 109.3047514, + 0.0096345 + ] + ] + }, + "id": "way/779464751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779466237", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2936444, + 0.0083685 + ], + [ + 109.2939676, + 0.0091423 + ], + [ + 109.2939717, + 0.0091557 + ], + [ + 109.2939636, + 0.0091732 + ], + [ + 109.2938057, + 0.0092426 + ], + [ + 109.2938017, + 0.0092489 + ], + [ + 109.2938, + 0.0092563 + ], + [ + 109.2939717, + 0.0096251 + ], + [ + 109.2940186, + 0.0096278 + ], + [ + 109.2942452, + 0.0095151 + ], + [ + 109.2942694, + 0.0095245 + ], + [ + 109.2942935, + 0.0095581 + ], + [ + 109.29469, + 0.0104217 + ] + ] + }, + "id": "way/779466237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779466238", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3055845, + 0.0062845 + ], + [ + 109.3055615, + 0.006212 + ], + [ + 109.305536, + 0.0061892 + ], + [ + 109.305477, + 0.0061651 + ], + [ + 109.3054502, + 0.0061369 + ], + [ + 109.3053617, + 0.0058781 + ], + [ + 109.3053134, + 0.0056367 + ], + [ + 109.3052678, + 0.0052531 + ] + ] + }, + "id": "way/779466238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779836579", + "highway": "living_street", + "motorcar": "no", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2854596, + -0.0402888 + ], + [ + 109.2856729, + -0.0400891 + ], + [ + 109.2858647, + -0.0398951 + ], + [ + 109.2860306, + -0.0397341 + ] + ] + }, + "id": "way/779836579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779852379", + "highway": "living_street", + "lanes": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3012569, + -0.0314194 + ], + [ + 109.3018994, + -0.0327142 + ], + [ + 109.3024485, + -0.0340344 + ] + ] + }, + "id": "way/779852379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779852888", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941594, + -0.0306769 + ], + [ + 109.2942142, + -0.0307259 + ] + ] + }, + "id": "way/779852888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779853132", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2929388, + -0.0319446 + ], + [ + 109.2929836, + -0.0319981 + ] + ] + }, + "id": "way/779853132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779854384", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098773, + -0.0663998 + ], + [ + 109.3096221, + -0.0662427 + ], + [ + 109.3092662, + -0.066037 + ], + [ + 109.3084566, + -0.0655754 + ] + ] + }, + "id": "way/779854384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779854950", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2842222, + -0.0302573 + ], + [ + 109.2844303, + -0.0300412 + ], + [ + 109.2845494, + -0.0299175 + ], + [ + 109.2846987, + -0.0297624 + ], + [ + 109.284848, + -0.0296074 + ], + [ + 109.2848907, + -0.029563 + ], + [ + 109.2849587, + -0.0294984 + ], + [ + 109.2850613, + -0.029401 + ] + ] + }, + "id": "way/779854950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779858965", + "highway": "tertiary", + "name": "Jalan Purnama", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107676, + -0.0797072 + ], + [ + 109.3108186, + -0.0795804 + ], + [ + 109.3108676, + -0.0794685 + ], + [ + 109.3109212, + -0.0793491 + ], + [ + 109.3110603, + -0.0790506 + ], + [ + 109.3110814, + -0.0790039 + ], + [ + 109.311111, + -0.0789384 + ], + [ + 109.3111405, + -0.078879 + ], + [ + 109.3112132, + -0.0787104 + ], + [ + 109.3112464, + -0.0786266 + ], + [ + 109.311267, + -0.0785776 + ], + [ + 109.3112955, + -0.0785097 + ], + [ + 109.3113343, + -0.0784247 + ], + [ + 109.3113986, + -0.0783044 + ], + [ + 109.3114394, + -0.0782284 + ], + [ + 109.3115435, + -0.078006 + ], + [ + 109.3115994, + -0.077893 + ], + [ + 109.3116147, + -0.0778602 + ], + [ + 109.311671, + -0.0777392 + ], + [ + 109.3119472, + -0.0771758 + ], + [ + 109.3120925, + -0.076851 + ], + [ + 109.3122249, + -0.0765549 + ], + [ + 109.312383, + -0.0761834 + ], + [ + 109.3125091, + -0.0759125 + ], + [ + 109.3126365, + -0.0756456 + ], + [ + 109.3127961, + -0.0752923 + ], + [ + 109.3129107, + -0.0750616 + ], + [ + 109.3129701, + -0.0749814 + ], + [ + 109.3129798, + -0.0749215 + ], + [ + 109.3130052, + -0.0748775 + ], + [ + 109.3130978, + -0.0747176 + ], + [ + 109.3132702, + -0.0744373 + ], + [ + 109.313354, + -0.0742938 + ], + [ + 109.3135537, + -0.0739203 + ], + [ + 109.3137806, + -0.0735401 + ], + [ + 109.3140292, + -0.07312 + ], + [ + 109.3140627, + -0.0730627 + ], + [ + 109.3141479, + -0.0729175 + ], + [ + 109.3142504, + -0.0727275 + ], + [ + 109.3143813, + -0.0725122 + ], + [ + 109.3144791, + -0.0723453 + ], + [ + 109.3145269, + -0.0722606 + ], + [ + 109.3146032, + -0.0721253 + ], + [ + 109.3147326, + -0.0718879 + ], + [ + 109.3148421, + -0.0716845 + ], + [ + 109.3149326, + -0.071514 + ], + [ + 109.3149924, + -0.0714019 + ], + [ + 109.3152141, + -0.0710188 + ], + [ + 109.3152952, + -0.0708636 + ], + [ + 109.3153777, + -0.0707057 + ], + [ + 109.3154401, + -0.0705951 + ], + [ + 109.31554, + -0.0704314 + ], + [ + 109.3156513, + -0.070256 + ], + [ + 109.3159007, + -0.069836 + ], + [ + 109.3159838, + -0.0697047 + ], + [ + 109.3160255, + -0.0696388 + ], + [ + 109.316128, + -0.069496 + ], + [ + 109.3162648, + -0.069313 + ], + [ + 109.3164774, + -0.0690119 + ] + ] + }, + "id": "way/779858965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/779862026", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124702, + -0.0468374 + ], + [ + 109.3125999, + -0.0469547 + ], + [ + 109.3126053, + -0.0469658 + ], + [ + 109.312608, + -0.0469839 + ], + [ + 109.3126087, + -0.046993 + ], + [ + 109.312605, + -0.0470081 + ], + [ + 109.3125929, + -0.0470221 + ], + [ + 109.3124484, + -0.0472015 + ] + ] + }, + "id": "way/779862026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780063644", + "highway": "track", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297018, + -0.0455741 + ], + [ + 109.2963685, + -0.046192 + ], + [ + 109.2960613, + -0.0464739 + ], + [ + 109.2954064, + -0.0471003 + ] + ] + }, + "id": "way/780063644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780063993", + "highway": "residential", + "surface": "concrete", + "tracktype": "grade1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004074, + -0.0429649 + ], + [ + 109.3000753, + -0.0431884 + ], + [ + 109.2997091, + -0.0434545 + ], + [ + 109.2993259, + -0.0437334 + ], + [ + 109.2989158, + -0.0440158 + ] + ] + }, + "id": "way/780063993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780065026", + "bridge": "yes", + "highway": "living_street", + "lanes": "1", + "motorcar": "no", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980768, + -0.0382141 + ], + [ + 109.2980215, + -0.0382217 + ] + ] + }, + "id": "way/780065026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780065027", + "highway": "living_street", + "lanes": "1", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980215, + -0.0382217 + ], + [ + 109.2980077, + -0.0382236 + ] + ] + }, + "id": "way/780065027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780065028", + "highway": "living_street", + "lanes": "1", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3000943, + -0.037328 + ], + [ + 109.2997435, + -0.0374817 + ], + [ + 109.2980768, + -0.0382141 + ] + ] + }, + "id": "way/780065028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780065950", + "access": "private", + "highway": "residential", + "name": "Gang Nilam Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306864, + -0.0088832 + ], + [ + 109.3067061, + -0.0088435 + ] + ] + }, + "id": "way/780065950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780066162", + "bridge": "yes", + "highway": "living_street", + "import": "yes", + "layer": "1", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033541, + -0.0485835 + ], + [ + 109.303385, + -0.0485519 + ] + ] + }, + "id": "way/780066162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780066163", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033254, + -0.0486219 + ], + [ + 109.3033541, + -0.0485835 + ] + ] + }, + "id": "way/780066163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780078077", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3197893, + 0.0137034 + ], + [ + 109.3191992, + 0.0137383 + ], + [ + 109.3183167, + 0.0138107 + ], + [ + 109.3179291, + 0.0138523 + ], + [ + 109.3178031, + 0.0138617 + ], + [ + 109.3177313, + 0.0138536 + ], + [ + 109.3176596, + 0.0138375 + ], + [ + 109.3175462, + 0.013816 + ] + ] + }, + "id": "way/780078077" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780079064", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3024743, + -0.0188941 + ], + [ + 109.3024074, + -0.0187617 + ] + ] + }, + "id": "way/780079064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780079848", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171095, + 0.0091024 + ], + [ + 109.3171144, + 0.0091595 + ], + [ + 109.3171797, + 0.0096564 + ], + [ + 109.3171911, + 0.0097327 + ], + [ + 109.3171993, + 0.0098006 + ], + [ + 109.3172349, + 0.0101028 + ], + [ + 109.3172342, + 0.010105 + ], + [ + 109.3172324, + 0.0101061 + ] + ] + }, + "id": "way/780079848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780085502", + "bridge": "yes", + "highway": "living_street", + "surface": "gravel" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057507, + -0.0684549 + ], + [ + 109.3057125, + -0.0684054 + ] + ] + }, + "id": "way/780085502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780085503", + "highway": "living_street", + "surface": "gravel" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057776, + -0.0684897 + ], + [ + 109.3057507, + -0.0684549 + ] + ] + }, + "id": "way/780085503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780088661", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313362, + -0.0124629 + ], + [ + 109.3133573, + -0.0123958 + ], + [ + 109.3133982, + -0.0122771 + ] + ] + }, + "id": "way/780088661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780089181", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243018, + 0.0115793 + ], + [ + 109.3245941, + 0.0115645 + ], + [ + 109.3247299, + 0.0115308 + ], + [ + 109.3248922, + 0.0114799 + ], + [ + 109.3257044, + 0.011341 + ] + ] + }, + "id": "way/780089181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780090125", + "highway": "residential", + "motor_vehicle:conditional": "no @ (22:00-06:00)", + "name": "Gang Melda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058809, + -0.019427 + ], + [ + 109.3058636, + -0.0193805 + ] + ] + }, + "id": "way/780090125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780090222", + "highway": "residential", + "motorcar": "no", + "name": "Gang Timun 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315823, + -0.0070793 + ], + [ + 109.3164784, + -0.0059314 + ] + ] + }, + "id": "way/780090222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780091788", + "bridge": "yes", + "highway": "track", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264401, + 0.0016752 + ], + [ + 109.3264664, + 0.0016377 + ] + ] + }, + "id": "way/780091788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780091789", + "highway": "track", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264318, + 0.0016871 + ], + [ + 109.3264401, + 0.0016752 + ] + ] + }, + "id": "way/780091789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780100337", + "highway": "track", + "tracktype": "grade4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348113, + 0.0116555 + ], + [ + 109.3352334, + 0.0116743 + ], + [ + 109.3367663, + 0.0116783 + ] + ] + }, + "id": "way/780100337" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780102043", + "highway": "track", + "tracktype": "grade3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343898, + 0.0019573 + ], + [ + 109.3346661, + 0.001958 + ], + [ + 109.335163, + 0.0019433 + ], + [ + 109.3356451, + 0.0019285 + ] + ] + }, + "id": "way/780102043" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780102078", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056562, + -0.0251531 + ], + [ + 109.3066961, + -0.027485 + ] + ] + }, + "id": "way/780102078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780102079", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3065419, + -0.0245071 + ], + [ + 109.3065552, + -0.0245335 + ] + ] + }, + "id": "way/780102079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780102080", + "highway": "steps" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077992, + -0.0241543 + ], + [ + 109.3078136, + -0.0241917 + ] + ] + }, + "id": "way/780102080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780102081", + "bridge": "yes", + "highway": "steps", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077549, + -0.024039 + ], + [ + 109.3077992, + -0.0241543 + ] + ] + }, + "id": "way/780102081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780102082", + "highway": "steps" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077402, + -0.0240011 + ], + [ + 109.3077549, + -0.024039 + ] + ] + }, + "id": "way/780102082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780102349", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053089, + -0.0250702 + ], + [ + 109.304608, + -0.0235297 + ] + ] + }, + "id": "way/780102349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780114934", + "highway": "residential", + "name": "Gang Purwosari 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244453, + -0.0498247 + ], + [ + 109.324927, + -0.0492071 + ], + [ + 109.3254219, + -0.0485795 + ] + ] + }, + "id": "way/780114934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780116108", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348384, + -0.0486679 + ], + [ + 109.3349069, + -0.0485823 + ] + ] + }, + "id": "way/780116108" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780124453", + "access": "yes", + "highway": "tertiary", + "name": "Jalan Teuku Umar", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320199, + -0.0343295 + ], + [ + 109.3320608, + -0.0342856 + ] + ] + }, + "id": "way/780124453" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780130553", + "highway": "residential", + "motor_vehicle": "no", + "name": "Mutiara Purnama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321157, + -0.0553426 + ], + [ + 109.3320968, + -0.0553049 + ] + ] + }, + "id": "way/780130553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780130554", + "colour": "#606060", + "highway": "residential", + "motorcar": "no", + "name": "Purnama Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325008, + -0.0551233 + ], + [ + 109.3325178, + -0.0551489 + ] + ] + }, + "id": "way/780130554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780134702", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267755, + 0.0014396 + ], + [ + 109.327504, + 0.0018408 + ] + ] + }, + "id": "way/780134702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780136989", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266612, + -0.0173833 + ], + [ + 109.3266576, + -0.0173863 + ], + [ + 109.3266559, + -0.0173888 + ], + [ + 109.3266538, + -0.0173933 + ], + [ + 109.3266527, + -0.0173965 + ], + [ + 109.3266512, + -0.0174102 + ], + [ + 109.3266574, + -0.0174645 + ], + [ + 109.3267105, + -0.0178185 + ], + [ + 109.3269023, + -0.0190217 + ] + ] + }, + "id": "way/780136989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780136990", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260707, + -0.0174426 + ], + [ + 109.3263761, + -0.0174017 + ], + [ + 109.3264297, + -0.0173836 + ], + [ + 109.3264646, + -0.0173686 + ] + ] + }, + "id": "way/780136990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780136991", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253216, + -0.0175226 + ], + [ + 109.3253522, + -0.017543 + ], + [ + 109.3253766, + -0.0175487 + ], + [ + 109.3254572, + -0.0175407 + ] + ] + }, + "id": "way/780136991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780136992", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254572, + -0.0175407 + ], + [ + 109.3254675, + -0.0175299 + ], + [ + 109.3254769, + -0.0175202 + ], + [ + 109.325496, + -0.0175131 + ], + [ + 109.3255238, + -0.0175081 + ], + [ + 109.3256844, + -0.0174969 + ], + [ + 109.3258182, + -0.0174873 + ], + [ + 109.3258333, + -0.017482 + ], + [ + 109.3258417, + -0.0174776 + ], + [ + 109.3258495, + -0.0174694 + ], + [ + 109.3259357, + -0.0172886 + ] + ] + }, + "id": "way/780136992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780139944", + "highway": "living_street", + "motor_vehicle": "destination", + "name": "Gang Aren", + "smoothness": "bad", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361105, + -0.0293192 + ], + [ + 109.3356267, + -0.0296856 + ] + ] + }, + "id": "way/780139944" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780139945", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364814, + -0.0290594 + ], + [ + 109.3363612, + -0.0286262 + ] + ] + }, + "id": "way/780139945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780139946", + "highway": "service", + "name": "Jalan Pattimura Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359558, + -0.0287599 + ], + [ + 109.336328, + -0.0286372 + ], + [ + 109.3363612, + -0.0286262 + ] + ] + }, + "id": "way/780139946" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780142132", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365189, + -0.0217815 + ], + [ + 109.3364259, + -0.0217941 + ], + [ + 109.336202, + -0.0218243 + ], + [ + 109.3359819, + -0.0218553 + ], + [ + 109.3359637, + -0.0218579 + ], + [ + 109.3358414, + -0.0218751 + ] + ] + }, + "id": "way/780142132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780143910", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417928, + -0.0255816 + ], + [ + 109.3416788, + -0.0254555 + ] + ] + }, + "id": "way/780143910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780143911", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417541, + -0.0254003 + ], + [ + 109.3418665, + -0.0255326 + ] + ] + }, + "id": "way/780143911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780143912", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "name:id": "Jalan Tanjung Pura", + "name:ms": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418665, + -0.0255326 + ], + [ + 109.3419908, + -0.0256788 + ], + [ + 109.3420212, + -0.0257151 + ], + [ + 109.3420671, + -0.025779 + ], + [ + 109.3422588, + -0.0260781 + ], + [ + 109.3424417, + -0.0263689 + ], + [ + 109.3425419, + -0.0265314 + ], + [ + 109.3427918, + -0.0268972 + ], + [ + 109.3428157, + -0.0269322 + ], + [ + 109.3428871, + -0.0270367 + ] + ] + }, + "id": "way/780143912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780143913", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "name:id": "Jalan Tanjung Pura", + "name:ms": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416788, + -0.0254555 + ], + [ + 109.341233, + -0.0249196 + ], + [ + 109.3408895, + -0.0245026 + ], + [ + 109.3407474, + -0.024339 + ], + [ + 109.3404874, + -0.0240299 + ] + ] + }, + "id": "way/780143913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780148588", + "highway": "residential", + "name": "Jalan Gusti Ngurah Rai", + "name:id": "Jalan Gusti Ngurah Rai", + "name:ms": "Jalan Gusti Ngurah Rai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341554, + -0.0242391 + ], + [ + 109.3416524, + -0.0241826 + ], + [ + 109.3417807, + -0.0241089 + ], + [ + 109.3419013, + -0.0240396 + ], + [ + 109.3420967, + -0.0239253 + ], + [ + 109.3424526, + -0.0237201 + ] + ] + }, + "id": "way/780148588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780148589", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416524, + -0.0241826 + ], + [ + 109.3417179, + -0.0243083 + ] + ] + }, + "id": "way/780148589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780156462", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275653, + -0.0400545 + ], + [ + 109.3276276, + -0.0399601 + ], + [ + 109.3277001, + -0.0398934 + ] + ] + }, + "id": "way/780156462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780156463", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277477, + -0.039951 + ], + [ + 109.3277058, + -0.039987 + ], + [ + 109.3276733, + -0.0400126 + ], + [ + 109.3275653, + -0.0400545 + ] + ] + }, + "id": "way/780156463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780156464", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.328707, + -0.0391026 + ], + [ + 109.3286516, + -0.0391539 + ], + [ + 109.3286204, + -0.0391817 + ], + [ + 109.3285198, + -0.0392769 + ], + [ + 109.3283334, + -0.0394459 + ], + [ + 109.3281189, + -0.0396404 + ], + [ + 109.3278868, + -0.0398402 + ], + [ + 109.3277477, + -0.039951 + ] + ] + }, + "id": "way/780156464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780156465", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277001, + -0.0398934 + ], + [ + 109.3279029, + -0.0397128 + ], + [ + 109.3281041, + -0.0395425 + ], + [ + 109.3283509, + -0.0393265 + ], + [ + 109.3285709, + -0.0391265 + ], + [ + 109.3286023, + -0.0390979 + ], + [ + 109.3286647, + -0.0390425 + ] + ] + }, + "id": "way/780156465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780391220", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290705, + -0.066637 + ], + [ + 109.3287878, + -0.0669408 + ], + [ + 109.3286403, + -0.0670992 + ], + [ + 109.3286118, + -0.0671298 + ], + [ + 109.3279125, + -0.0678811 + ] + ] + }, + "id": "way/780391220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780410757", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387605, + -0.0890171 + ], + [ + 109.3372129, + -0.0882742 + ] + ] + }, + "id": "way/780410757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780428836", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440233, + -0.0487635 + ], + [ + 109.3440832, + -0.0487119 + ], + [ + 109.3441247, + -0.0486762 + ], + [ + 109.3442098, + -0.0486029 + ], + [ + 109.3443599, + -0.0484738 + ], + [ + 109.3448663, + -0.0480379 + ], + [ + 109.344922, + -0.0479785 + ], + [ + 109.3450744, + -0.0478546 + ] + ] + }, + "id": "way/780428836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780431750", + "highway": "service", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353039, + -0.0488463 + ], + [ + 109.3354824, + -0.0488645 + ], + [ + 109.3357075, + -0.0489228 + ], + [ + 109.3357598, + -0.0489349 + ], + [ + 109.3358111, + -0.0489443 + ], + [ + 109.3358701, + -0.0489614 + ], + [ + 109.3359896, + -0.0487413 + ], + [ + 109.3362164, + -0.0482781 + ] + ] + }, + "id": "way/780431750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780431751", + "access": "yes", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364234, + -0.0450021 + ], + [ + 109.3364324, + -0.0450209 + ], + [ + 109.3364416, + -0.0450477 + ], + [ + 109.3364493, + -0.0450871 + ], + [ + 109.3364518, + -0.0451246 + ], + [ + 109.3364556, + -0.0452532 + ], + [ + 109.3364536, + -0.0454275 + ], + [ + 109.33645, + -0.0456522 + ] + ] + }, + "id": "way/780431751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780431752", + "access": "yes", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3363828, + -0.0449366 + ], + [ + 109.3364234, + -0.0450021 + ] + ] + }, + "id": "way/780431752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780433192", + "bridge": "yes", + "highway": "track", + "tracktype": "grade4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336018, + 0.0209693 + ], + [ + 109.3336784, + 0.0209804 + ] + ] + }, + "id": "way/780433192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780433193", + "highway": "track", + "tracktype": "grade4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335189, + 0.0209574 + ], + [ + 109.3336018, + 0.0209693 + ] + ] + }, + "id": "way/780433193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780435542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415835, + 0.0093985 + ], + [ + 109.3420677, + 0.0094803 + ], + [ + 109.3440064, + 0.0098128 + ] + ] + }, + "id": "way/780435542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780435543", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459931, + 0.0088298 + ], + [ + 109.3459817, + 0.0097632 + ] + ] + }, + "id": "way/780435543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780457560", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333712, + -0.0545787 + ], + [ + 109.3336875, + -0.0545216 + ] + ] + }, + "id": "way/780457560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780458227", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463235, + -0.038826 + ], + [ + 109.3462372, + -0.0387123 + ], + [ + 109.3461969, + -0.0386587 + ], + [ + 109.3461326, + -0.0385916 + ], + [ + 109.3460467, + -0.0384843 + ], + [ + 109.3459958, + -0.0384387 + ], + [ + 109.3459156, + -0.0383622 + ] + ] + }, + "id": "way/780458227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780462114", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501352, + -0.0002451 + ], + [ + 109.3490141, + 0.0004154 + ] + ] + }, + "id": "way/780462114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780462115", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479476, + 0.0009336 + ], + [ + 109.3477912, + 0.0006298 + ], + [ + 109.3476967, + 0.0004758 + ], + [ + 109.3476222, + 0.0003253 + ] + ] + }, + "id": "way/780462115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780465598", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556585, + -0.0032398 + ], + [ + 109.3557833, + -0.0033462 + ], + [ + 109.3559013, + -0.0034106 + ], + [ + 109.3559576, + -0.003422 + ], + [ + 109.356063, + -0.0034307 + ] + ] + }, + "id": "way/780465598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780467751", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366805, + -0.0580966 + ], + [ + 109.3365316, + -0.058271 + ] + ] + }, + "id": "way/780467751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780467752", + "highway": "pedestrian" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367001, + -0.0581132 + ], + [ + 109.3366805, + -0.0580966 + ] + ] + }, + "id": "way/780467752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780467874", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345576, + -0.0388652 + ], + [ + 109.3456156, + -0.0388397 + ], + [ + 109.3456417, + -0.0388183 + ], + [ + 109.3456618, + -0.0387931 + ], + [ + 109.3456699, + -0.038774 + ], + [ + 109.3456629, + -0.0387334 + ], + [ + 109.3456458, + -0.0387002 + ], + [ + 109.34558, + -0.0386225 + ], + [ + 109.3455626, + -0.0386044 + ], + [ + 109.3455556, + -0.0385931 + ], + [ + 109.3455551, + -0.0385863 + ], + [ + 109.3455572, + -0.0385782 + ], + [ + 109.3455594, + -0.0385722 + ], + [ + 109.3456042, + -0.0385299 + ], + [ + 109.3457316, + -0.0384173 + ] + ] + }, + "id": "way/780467874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780469198", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358036, + 0.0110118 + ], + [ + 109.357945, + 0.0110239 + ], + [ + 109.3578709, + 0.0110399 + ], + [ + 109.3578216, + 0.0110614 + ], + [ + 109.3577546, + 0.0111017 + ], + [ + 109.3576956, + 0.0111821 + ], + [ + 109.3576339, + 0.0112197 + ], + [ + 109.3575829, + 0.0112492 + ] + ] + }, + "id": "way/780469198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780473981", + "check_date": "2020-05-16", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345497, + -0.0570451 + ], + [ + 109.345552, + -0.05697 + ], + [ + 109.345635, + -0.0568534 + ], + [ + 109.345639, + -0.0568098 + ], + [ + 109.3456014, + -0.056745 + ] + ] + }, + "id": "way/780473981" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780479149", + "access": "permissive", + "highway": "residential", + "name": "Gang Sejahtera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530175, + -0.0682141 + ], + [ + 109.3505303, + -0.0661985 + ] + ] + }, + "id": "way/780479149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780479150", + "highway": "residential", + "name": "Gang Sejahtera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533784, + -0.0685331 + ], + [ + 109.3530175, + -0.0682141 + ] + ] + }, + "id": "way/780479150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780752156", + "highway": "trunk" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628206, + -0.0174397 + ], + [ + 109.3628239, + -0.01737 + ] + ] + }, + "id": "way/780752156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780752157", + "highway": "trunk", + "name": "Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630177, + -0.0173765 + ], + [ + 109.3630127, + -0.0176079 + ], + [ + 109.3630074, + -0.0178564 + ], + [ + 109.3630068, + -0.018175 + ] + ] + }, + "id": "way/780752157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780752158", + "highway": "trunk", + "name": "Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362948, + -0.021501 + ], + [ + 109.3629458, + -0.0215984 + ], + [ + 109.3629427, + -0.0224881 + ], + [ + 109.3629318, + -0.0226489 + ] + ] + }, + "id": "way/780752158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780752160", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627229, + -0.0225156 + ], + [ + 109.3627233, + -0.0225028 + ], + [ + 109.3627301, + -0.022257 + ], + [ + 109.3627395, + -0.0215234 + ] + ] + }, + "id": "way/780752160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780757604", + "access": "no", + "highway": "primary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604824, + -0.0683098 + ], + [ + 109.3604382, + -0.0683466 + ] + ] + }, + "id": "way/780757604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780824967", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3673361, + -0.0271624 + ], + [ + 109.367318, + -0.0271443 + ], + [ + 109.3672888, + -0.0271205 + ], + [ + 109.3672178, + -0.0270732 + ], + [ + 109.3671309, + -0.0270065 + ], + [ + 109.3670364, + -0.0269451 + ], + [ + 109.366965, + -0.0269116 + ], + [ + 109.3669264, + -0.0268681 + ] + ] + }, + "id": "way/780824967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780824968", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683686, + -0.0284257 + ], + [ + 109.36804, + -0.0281113 + ], + [ + 109.3679181, + -0.027955 + ], + [ + 109.3678822, + -0.0279011 + ], + [ + 109.367802, + -0.0277869 + ], + [ + 109.3676865, + -0.0276182 + ], + [ + 109.3675831, + -0.0274695 + ], + [ + 109.3673868, + -0.0272258 + ], + [ + 109.3673361, + -0.0271624 + ] + ] + }, + "id": "way/780824968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780860550", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550469, + -0.0352412 + ], + [ + 109.3550616, + -0.0352623 + ] + ] + }, + "id": "way/780860550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780860551", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547371, + -0.0354333 + ], + [ + 109.3547525, + -0.0354598 + ] + ] + }, + "id": "way/780860551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780860552", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554613, + -0.0349908 + ], + [ + 109.3554801, + -0.0350229 + ] + ] + }, + "id": "way/780860552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780860553", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560221, + -0.0348798 + ], + [ + 109.3561905, + -0.0347782 + ] + ] + }, + "id": "way/780860553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780871795", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345654, + -0.0497781 + ], + [ + 109.3453306, + -0.0493891 + ], + [ + 109.3451079, + -0.0491062 + ] + ] + }, + "id": "way/780871795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780875588", + "access": "no", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448663, + -0.0480379 + ], + [ + 109.3448774, + -0.0480524 + ] + ] + }, + "id": "way/780875588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780875589", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439549, + -0.048293 + ], + [ + 109.3442098, + -0.0486029 + ] + ] + }, + "id": "way/780875589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780875590", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441026, + -0.0481681 + ], + [ + 109.3443599, + -0.0484738 + ] + ] + }, + "id": "way/780875590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780875591", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344922, + -0.0479785 + ], + [ + 109.3447092, + -0.0477364 + ], + [ + 109.3446797, + -0.0477059 + ], + [ + 109.3446594, + -0.047695 + ], + [ + 109.3446495, + -0.0476921 + ], + [ + 109.3446409, + -0.0476913 + ], + [ + 109.3446302, + -0.0476913 + ], + [ + 109.3446208, + -0.0476934 + ], + [ + 109.3446076, + -0.0476996 + ], + [ + 109.3445796, + -0.0477225 + ], + [ + 109.3441026, + -0.0481681 + ], + [ + 109.3439549, + -0.048293 + ], + [ + 109.3438729, + -0.0483622 + ], + [ + 109.343839, + -0.0483909 + ], + [ + 109.3437625, + -0.0484555 + ] + ] + }, + "id": "way/780875591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780892674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347496, + -0.091291 + ], + [ + 109.3475327, + -0.0913039 + ] + ] + }, + "id": "way/780892674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780892675", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474304, + -0.0912678 + ], + [ + 109.347496, + -0.091291 + ] + ] + }, + "id": "way/780892675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780896496", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3752868, + -0.0151489 + ], + [ + 109.3753351, + -0.0152913 + ] + ] + }, + "id": "way/780896496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780896497", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3753351, + -0.0152913 + ], + [ + 109.3753888, + -0.0154529 + ], + [ + 109.375421, + -0.0155769 + ], + [ + 109.3754478, + -0.0157432 + ], + [ + 109.3754773, + -0.0158787 + ], + [ + 109.3755108, + -0.0160919 + ], + [ + 109.3755189, + -0.0162099 + ], + [ + 109.3755229, + -0.0163092 + ], + [ + 109.3754706, + -0.0165385 + ], + [ + 109.3754049, + -0.0167075 + ], + [ + 109.3753217, + -0.0168684 + ], + [ + 109.3752426, + -0.0170039 + ], + [ + 109.3751782, + -0.0172573 + ], + [ + 109.3751755, + -0.0174344 + ], + [ + 109.3750361, + -0.0178018 + ], + [ + 109.3750012, + -0.0178635 + ], + [ + 109.3743092, + -0.0176087 + ], + [ + 109.3740302, + -0.0175121 + ], + [ + 109.3739846, + -0.017539 + ], + [ + 109.3738559, + -0.0178528 + ], + [ + 109.3734831, + -0.0187755 + ], + [ + 109.3733329, + -0.0191402 + ] + ] + }, + "id": "way/780896497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780896498", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3773637, + -0.0139429 + ], + [ + 109.3774219, + -0.0140789 + ], + [ + 109.3774816, + -0.014205 + ], + [ + 109.3775198, + -0.0142922 + ], + [ + 109.3775842, + -0.014429 + ], + [ + 109.3776365, + -0.0144799 + ], + [ + 109.377725, + -0.0144625 + ], + [ + 109.3779328, + -0.0143633 + ] + ] + }, + "id": "way/780896498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780897087", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526436, + -0.0607011 + ], + [ + 109.3524359, + -0.0608775 + ], + [ + 109.3518749, + -0.0613325 + ], + [ + 109.3516298, + -0.0615312 + ], + [ + 109.3516217, + -0.0615567 + ], + [ + 109.3516351, + -0.0615781 + ], + [ + 109.3516687, + -0.0616197 + ], + [ + 109.351733, + -0.0617007 + ], + [ + 109.3518392, + -0.0618344 + ], + [ + 109.3519637, + -0.0619912 + ], + [ + 109.3521528, + -0.0622259 + ], + [ + 109.3522346, + -0.0623305 + ], + [ + 109.3523387, + -0.0624632 + ], + [ + 109.3526477, + -0.0628522 + ], + [ + 109.3526772, + -0.062875 + ], + [ + 109.352704, + -0.0628763 + ], + [ + 109.3527549, + -0.0628361 + ] + ] + }, + "id": "way/780897087" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780904387", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502857, + -0.0449245 + ], + [ + 109.3502858, + -0.0449295 + ], + [ + 109.3502851, + -0.0449329 + ], + [ + 109.3502825, + -0.0449389 + ], + [ + 109.3502627, + -0.0449707 + ], + [ + 109.349933, + -0.0454411 + ], + [ + 109.3494733, + -0.0460643 + ], + [ + 109.349319, + -0.0462614 + ] + ] + }, + "id": "way/780904387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780981058", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3741884, + -0.0393837 + ], + [ + 109.3743491, + -0.039269 + ] + ] + }, + "id": "way/780981058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780982286", + "access": "permissive", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704843, + -0.0504167 + ], + [ + 109.3705605, + -0.0503664 + ] + ] + }, + "id": "way/780982286" + }, + { + "type": "Feature", + "properties": { + "@id": "way/780985638", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3708028, + -0.0432189 + ], + [ + 109.3709013, + -0.0431498 + ] + ] + }, + "id": "way/780985638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781672836", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536924, + -0.0620851 + ], + [ + 109.3540451, + -0.0618128 + ], + [ + 109.354318, + -0.0615928 + ], + [ + 109.3543603, + -0.0615614 + ] + ] + }, + "id": "way/781672836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781674987", + "alt_name": "BLKI", + "highway": "tertiary", + "name": "Jalan Abdurahman Saleh", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555461, + -0.0584946 + ], + [ + 109.3557515, + -0.0582328 + ] + ] + }, + "id": "way/781674987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781674988", + "alt_name": "BLKI", + "highway": "tertiary", + "name": "Jalan Abdurahman Saleh", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558433, + -0.0582342 + ], + [ + 109.3557786, + -0.058306 + ], + [ + 109.3557701, + -0.0583181 + ], + [ + 109.3556592, + -0.0584445 + ], + [ + 109.3555834, + -0.0585308 + ] + ] + }, + "id": "way/781674988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781674989", + "alt_name": "BLKI", + "highway": "tertiary", + "name": "Jalan Abdurahman Saleh", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353781, + -0.060468 + ], + [ + 109.3538665, + -0.060413 + ], + [ + 109.3539827, + -0.0603383 + ], + [ + 109.3541547, + -0.0601342 + ], + [ + 109.3542408, + -0.0600321 + ], + [ + 109.3545534, + -0.0596596 + ], + [ + 109.354588, + -0.0596217 + ], + [ + 109.3546454, + -0.0595518 + ], + [ + 109.3546661, + -0.0595273 + ], + [ + 109.3548093, + -0.0593444 + ], + [ + 109.3549137, + -0.0592224 + ], + [ + 109.3551897, + -0.0588946 + ], + [ + 109.3554643, + -0.0585844 + ], + [ + 109.3555461, + -0.0584946 + ] + ] + }, + "id": "way/781674989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781674990", + "alt_name": "BLKI", + "highway": "tertiary", + "name": "Jalan Abdurahman Saleh", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555834, + -0.0585308 + ], + [ + 109.3554038, + -0.0587425 + ], + [ + 109.3552644, + -0.0589049 + ], + [ + 109.3551422, + -0.0590545 + ], + [ + 109.355056, + -0.0591601 + ], + [ + 109.3548079, + -0.0594614 + ], + [ + 109.3546403, + -0.0596626 + ], + [ + 109.3545436, + -0.0597791 + ], + [ + 109.3542612, + -0.0601117 + ], + [ + 109.3542025, + -0.0601753 + ], + [ + 109.3540721, + -0.0603241 + ], + [ + 109.3539544, + -0.060473 + ], + [ + 109.3539446, + -0.0604923 + ], + [ + 109.353909, + -0.0605623 + ], + [ + 109.3538961, + -0.0606107 + ] + ] + }, + "id": "way/781674990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781677530", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3168022, + -0.0061493 + ], + [ + 109.3166041, + -0.0065097 + ], + [ + 109.3161488, + -0.007295 + ] + ] + }, + "id": "way/781677530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781677531", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128739, + 0.003793 + ], + [ + 109.3129845, + 0.0040086 + ] + ] + }, + "id": "way/781677531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781677532", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133345, + -0.0024971 + ], + [ + 109.3132728, + -0.0026004 + ], + [ + 109.3132347, + -0.0026889 + ], + [ + 109.3127722, + -0.0035915 + ], + [ + 109.3124584, + -0.0042479 + ], + [ + 109.3118193, + -0.0059138 + ] + ] + }, + "id": "way/781677532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781677533", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112339, + -0.0066704 + ], + [ + 109.3113584, + -0.0060163 + ], + [ + 109.3113668, + -0.0060065 + ], + [ + 109.3113832, + -0.0059981 + ], + [ + 109.3114189, + -0.0059919 + ], + [ + 109.311784, + -0.0050762 + ], + [ + 109.3122005, + -0.004089 + ], + [ + 109.3125029, + -0.0034723 + ], + [ + 109.3128747, + -0.002691 + ], + [ + 109.3129469, + -0.002536 + ], + [ + 109.312993, + -0.0024422 + ], + [ + 109.3130234, + -0.0023862 + ] + ] + }, + "id": "way/781677533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781677534", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123019, + -0.0063998 + ], + [ + 109.3120252, + -0.0062516 + ] + ] + }, + "id": "way/781677534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781677535", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226899, + 0.002672 + ], + [ + 109.32291, + 0.0024998 + ] + ] + }, + "id": "way/781677535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781678839", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3653144, + -0.0587846 + ], + [ + 109.365195, + -0.0586049 + ] + ] + }, + "id": "way/781678839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781678840", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365195, + -0.0586049 + ], + [ + 109.3652634, + -0.0584359 + ] + ] + }, + "id": "way/781678840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781678841", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365195, + -0.0586049 + ], + [ + 109.3654364, + -0.0584212 + ], + [ + 109.3655638, + -0.0585982 + ], + [ + 109.3653144, + -0.0587846 + ] + ] + }, + "id": "way/781678841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781678842", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3649538, + -0.0587859 + ], + [ + 109.3650035, + -0.0587487 + ], + [ + 109.365195, + -0.0586049 + ] + ] + }, + "id": "way/781678842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781678843", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3653144, + -0.0587846 + ], + [ + 109.3651331, + -0.0589174 + ], + [ + 109.3650832, + -0.058954 + ] + ] + }, + "id": "way/781678843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781678844", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3657572, + -0.0580692 + ], + [ + 109.3659246, + -0.0583085 + ] + ] + }, + "id": "way/781678844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781678845", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Sosial" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648728, + -0.0586807 + ], + [ + 109.3656794, + -0.0580572 + ], + [ + 109.3655826, + -0.0579116 + ], + [ + 109.3657087, + -0.0578163 + ], + [ + 109.365871, + -0.0576759 + ], + [ + 109.3662012, + -0.0574492 + ], + [ + 109.3663202, + -0.0575813 + ], + [ + 109.3666297, + -0.0573617 + ] + ] + }, + "id": "way/781678845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781679363", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329406, + -0.0334315 + ], + [ + 109.3330021, + -0.0334928 + ], + [ + 109.3330659, + -0.0335564 + ] + ] + }, + "id": "way/781679363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781681660", + "highway": "tertiary", + "name": "Jalan Agus Salim", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390927, + -0.0295632 + ], + [ + 109.3390032, + -0.0296247 + ], + [ + 109.3382221, + -0.0301611 + ], + [ + 109.3381239, + -0.0302239 + ], + [ + 109.3379492, + -0.0303358 + ] + ] + }, + "id": "way/781681660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781691543", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556592, + -0.0584445 + ], + [ + 109.3557037, + -0.0584862 + ], + [ + 109.3557818, + -0.0585593 + ] + ] + }, + "id": "way/781691543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781691544", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557786, + -0.058306 + ], + [ + 109.3558259, + -0.0583503 + ], + [ + 109.3559186, + -0.0584373 + ] + ] + }, + "id": "way/781691544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781699507", + "access": "no", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.370777, + -0.050794 + ], + [ + 109.3708917, + -0.0507033 + ] + ] + }, + "id": "way/781699507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781699559", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3709535, + -0.0501066 + ], + [ + 109.3710892, + -0.0503229 + ] + ] + }, + "id": "way/781699559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781701333", + "highway": "primary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372925, + -0.0409986 + ], + [ + 109.3374138, + -0.0409063 + ] + ] + }, + "id": "way/781701333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781703511", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3749268, + -0.0402982 + ], + [ + 109.3750138, + -0.0402366 + ] + ] + }, + "id": "way/781703511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781715015", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751791, + -0.0405597 + ], + [ + 109.3752674, + -0.0404954 + ] + ] + }, + "id": "way/781715015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781715016", + "access": "permissive", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3710336, + -0.0435081 + ], + [ + 109.3712894, + -0.0433267 + ] + ] + }, + "id": "way/781715016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781723234", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3826809, + -0.0501054 + ], + [ + 109.382731, + -0.0500671 + ], + [ + 109.3828459, + -0.0499793 + ], + [ + 109.3832114, + -0.0497 + ], + [ + 109.3837385, + -0.0493044 + ], + [ + 109.3842521, + -0.0489275 + ], + [ + 109.3846236, + -0.0486419 + ], + [ + 109.3850755, + -0.0483015 + ] + ] + }, + "id": "way/781723234" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781723235", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3850755, + -0.0483015 + ], + [ + 109.3851453, + -0.0482489 + ], + [ + 109.3851922, + -0.0482066 + ], + [ + 109.3852566, + -0.0482134 + ], + [ + 109.3852935, + -0.0482402 + ], + [ + 109.38538, + -0.0483367 + ], + [ + 109.385437, + -0.0483957 + ], + [ + 109.3854752, + -0.0483918 + ] + ] + }, + "id": "way/781723235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781727783", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3674799, + -0.0501995 + ], + [ + 109.367097, + -0.0504691 + ] + ] + }, + "id": "way/781727783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781728370", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3655222, + -0.0488659 + ], + [ + 109.365643, + -0.048776 + ], + [ + 109.3657905, + -0.0489369 + ], + [ + 109.3657175, + -0.0490556 + ] + ] + }, + "id": "way/781728370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781792185", + "highway": "residential", + "motorcar": "no", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751407, + -0.0272526 + ], + [ + 109.3751916, + -0.0274336 + ], + [ + 109.3752292, + -0.027675 + ], + [ + 109.3752583, + -0.0278745 + ] + ] + }, + "id": "way/781792185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781799615", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3759437, + -0.0389358 + ], + [ + 109.3771926, + -0.0380098 + ] + ] + }, + "id": "way/781799615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781799616", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3772221, + -0.0378768 + ], + [ + 109.377489, + -0.0376315 + ] + ] + }, + "id": "way/781799616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/781799617", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3772888, + -0.0374344 + ], + [ + 109.3770135, + -0.0376817 + ] + ] + }, + "id": "way/781799617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782012156", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296016, + -0.0382285 + ], + [ + 109.3296894, + -0.0381456 + ], + [ + 109.3297308, + -0.0381022 + ], + [ + 109.3297572, + -0.0380807 + ], + [ + 109.329803, + -0.0380426 + ], + [ + 109.3300387, + -0.0378516 + ], + [ + 109.3301558, + -0.0377637 + ] + ] + }, + "id": "way/782012156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782012157", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327924, + -0.035348 + ], + [ + 109.3328693, + -0.0352537 + ] + ] + }, + "id": "way/782012157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782012158", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323809, + -0.0358605 + ], + [ + 109.3324229, + -0.035794 + ], + [ + 109.3326102, + -0.0356171 + ], + [ + 109.3326815, + -0.0355252 + ] + ] + }, + "id": "way/782012158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782015969", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354732, + -0.0312303 + ], + [ + 109.3361126, + -0.0318894 + ] + ] + }, + "id": "way/782015969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782017872", + "highway": "tertiary", + "name": "Jalan Diponegoro", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428154, + -0.0270917 + ], + [ + 109.3428871, + -0.0270367 + ] + ] + }, + "id": "way/782017872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782017873", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428938, + -0.0272191 + ], + [ + 109.3428154, + -0.0270917 + ] + ] + }, + "id": "way/782017873" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782018622", + "highway": "residential", + "name": "Jalan Sultan Muhammad", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448519, + -0.0271724 + ], + [ + 109.3451355, + -0.0277563 + ] + ] + }, + "id": "way/782018622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782279029", + "access": "no", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353566, + -0.0311173 + ], + [ + 109.3354045, + -0.0311637 + ], + [ + 109.3354732, + -0.0312303 + ] + ] + }, + "id": "way/782279029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782283207", + "access": "yes", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329917, + -0.0351879 + ], + [ + 109.3329868, + -0.0352007 + ], + [ + 109.3329713, + -0.0352411 + ], + [ + 109.3329313, + -0.0353455 + ] + ] + }, + "id": "way/782283207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782290502", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431934, + -0.0555809 + ], + [ + 109.34185, + -0.0545479 + ] + ] + }, + "id": "way/782290502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782291253", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288042, + -0.039028 + ], + [ + 109.328707, + -0.0391026 + ] + ] + }, + "id": "way/782291253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782291254", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291713, + -0.0386371 + ], + [ + 109.329114, + -0.0387351 + ], + [ + 109.3290268, + -0.0388163 + ], + [ + 109.3288042, + -0.039028 + ] + ] + }, + "id": "way/782291254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782291255", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287645, + -0.0389653 + ], + [ + 109.3289825, + -0.0387633 + ], + [ + 109.3290791, + -0.0386842 + ], + [ + 109.3291713, + -0.0386371 + ] + ] + }, + "id": "way/782291255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782291256", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286647, + -0.0390425 + ], + [ + 109.3287645, + -0.0389653 + ] + ] + }, + "id": "way/782291256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782291257", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.328707, + -0.0391026 + ], + [ + 109.3286647, + -0.0390425 + ] + ] + }, + "id": "way/782291257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782291258", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287645, + -0.0389653 + ], + [ + 109.3288042, + -0.039028 + ] + ] + }, + "id": "way/782291258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782310650", + "highway": "residential", + "import": "yes", + "name": "Jalan Parit Demang", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288699, + -0.0690588 + ], + [ + 109.3294854, + -0.0695671 + ], + [ + 109.3296544, + -0.0697039 + ], + [ + 109.3298392, + -0.069877 + ], + [ + 109.330279, + -0.0702719 + ], + [ + 109.3305059, + -0.0704776 + ] + ] + }, + "id": "way/782310650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782344594", + "highway": "service", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576285, + -0.0363922 + ], + [ + 109.3577378, + -0.0363131 + ] + ] + }, + "id": "way/782344594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782344595", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573456, + -0.0364405 + ], + [ + 109.3573677, + -0.0364687 + ], + [ + 109.3573856, + -0.0364864 + ], + [ + 109.3574002, + -0.0364978 + ], + [ + 109.3574103, + -0.0365044 + ], + [ + 109.3574236, + -0.0365103 + ], + [ + 109.3574331, + -0.0365126 + ], + [ + 109.3574441, + -0.0365129 + ], + [ + 109.3574574, + -0.0365104 + ], + [ + 109.3574685, + -0.0365064 + ], + [ + 109.357479, + -0.0364995 + ], + [ + 109.3575226, + -0.0364673 + ], + [ + 109.3576285, + -0.0363922 + ] + ] + }, + "id": "way/782344595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782344596", + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572054, + -0.0360529 + ], + [ + 109.3575226, + -0.0364673 + ] + ] + }, + "id": "way/782344596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782344597", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570995, + -0.0361139 + ], + [ + 109.3573456, + -0.0364405 + ] + ] + }, + "id": "way/782344597" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782347487", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354936, + -0.0325915 + ], + [ + 109.3355915, + -0.0326988 + ] + ] + }, + "id": "way/782347487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782347488", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347525, + -0.0318007 + ], + [ + 109.3348079, + -0.0318426 + ] + ] + }, + "id": "way/782347488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782347489", + "highway": "service", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334684, + -0.0317435 + ], + [ + 109.334713, + -0.0317677 + ], + [ + 109.3347525, + -0.0318007 + ] + ] + }, + "id": "way/782347489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782351866", + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562393, + -0.048955 + ], + [ + 109.356323, + -0.0490254 + ], + [ + 109.3563987, + -0.0490899 + ] + ] + }, + "id": "way/782351866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782351867", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564292, + -0.0488917 + ], + [ + 109.356323, + -0.0490254 + ] + ] + }, + "id": "way/782351867" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782351868", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563492, + -0.0488188 + ], + [ + 109.3562393, + -0.048955 + ], + [ + 109.3560527, + -0.0491863 + ] + ] + }, + "id": "way/782351868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782412294", + "highway": "tertiary", + "name": "Jalan Agus Salim", + "oneway": "yes", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392187, + -0.0296238 + ], + [ + 109.3391503, + -0.02967 + ] + ] + }, + "id": "way/782412294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782428633", + "access": "yes", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317975, + -0.0264429 + ], + [ + 109.3316686, + -0.0263609 + ], + [ + 109.3316233, + -0.0263209 + ] + ] + }, + "id": "way/782428633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782428634", + "access": "yes", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317314, + -0.026256 + ], + [ + 109.3317385, + -0.0263051 + ], + [ + 109.3317512, + -0.026352 + ], + [ + 109.3317735, + -0.0263958 + ], + [ + 109.3317975, + -0.0264429 + ] + ] + }, + "id": "way/782428634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782428637", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3316159, + -0.0261278 + ], + [ + 109.3317506, + -0.0260644 + ], + [ + 109.3318988, + -0.0260147 + ] + ] + }, + "id": "way/782428637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782428638", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318988, + -0.0260147 + ], + [ + 109.3318872, + -0.0260261 + ], + [ + 109.331839, + -0.0260737 + ], + [ + 109.3318044, + -0.0261078 + ], + [ + 109.3317708, + -0.0261495 + ], + [ + 109.3317331, + -0.0261965 + ] + ] + }, + "id": "way/782428638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782428639", + "access": "yes", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331326, + -0.026071 + ], + [ + 109.3314891, + -0.0261328 + ], + [ + 109.3315801, + -0.0261444 + ] + ] + }, + "id": "way/782428639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782428640", + "access": "yes", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315439, + -0.0262508 + ], + [ + 109.331485, + -0.0262199 + ], + [ + 109.3314133, + -0.0261649 + ], + [ + 109.331326, + -0.026071 + ] + ] + }, + "id": "way/782428640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782463466", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310619, + -0.0355986 + ], + [ + 109.3310337, + -0.0355709 + ], + [ + 109.3306612, + -0.0351597 + ] + ] + }, + "id": "way/782463466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782470471", + "highway": "trunk", + "name": "Jalan Pahlawan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455051, + -0.0412532 + ], + [ + 109.3456108, + -0.0411852 + ], + [ + 109.3458375, + -0.0410394 + ] + ] + }, + "id": "way/782470471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782470472", + "highway": "trunk", + "name": "Jalan Pahlawan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458778, + -0.0410861 + ], + [ + 109.345716, + -0.041202 + ], + [ + 109.345664, + -0.0412392 + ], + [ + 109.3455652, + -0.0413101 + ] + ] + }, + "id": "way/782470472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782470476", + "highway": "trunk", + "name": "Jalan Veteran", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451804, + -0.041475 + ], + [ + 109.3452429, + -0.041432 + ], + [ + 109.3452604, + -0.04142 + ], + [ + 109.3454198, + -0.0413104 + ] + ] + }, + "id": "way/782470476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782473390", + "highway": "trunk", + "name": "Jalan Veteran", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454816, + -0.0413679 + ], + [ + 109.3452909, + -0.0414993 + ], + [ + 109.3452287, + -0.0415421 + ] + ] + }, + "id": "way/782473390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782473391", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455051, + -0.0412532 + ], + [ + 109.3455652, + -0.0413101 + ] + ] + }, + "id": "way/782473391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782473392", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454198, + -0.0413104 + ], + [ + 109.345323, + -0.0412203 + ] + ] + }, + "id": "way/782473392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782473393", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454198, + -0.0413104 + ], + [ + 109.3455051, + -0.0412532 + ] + ] + }, + "id": "way/782473393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782473394", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454037, + -0.0411593 + ], + [ + 109.3455051, + -0.0412532 + ] + ] + }, + "id": "way/782473394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782473395", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454816, + -0.0413679 + ], + [ + 109.3454198, + -0.0413104 + ] + ] + }, + "id": "way/782473395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782476944", + "highway": "living_street", + "motorcar": "no", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402357, + -0.0541203 + ], + [ + 109.3404168, + -0.0542611 + ] + ] + }, + "id": "way/782476944" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782476945", + "highway": "living_street", + "name": "Gang Sejahtera", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400812, + -0.0539819 + ], + [ + 109.3402357, + -0.0541203 + ] + ] + }, + "id": "way/782476945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782478316", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432543, + -0.0556248 + ], + [ + 109.3431934, + -0.0555809 + ] + ] + }, + "id": "way/782478316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782478317", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432914, + -0.0556515 + ], + [ + 109.3432543, + -0.0556248 + ] + ] + }, + "id": "way/782478317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782478318", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342365, + -0.0541847 + ], + [ + 109.3410699, + -0.0531882 + ], + [ + 109.3413542, + -0.0528811 + ] + ] + }, + "id": "way/782478318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782482421", + "access": "yes", + "highway": "unclassified", + "name": "Jalan Karel Satsuit Tubun", + "name:id": "Jalan Karel Satsuit Tubun", + "name:ms": "Jalan Karel Satsuit Tubun", + "oneway": "no", + "oneway:conditional": "yes @ (Mo-Fr 06:00-18:00; PH off)" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3311225, + -0.0369579 + ], + [ + 109.3315342, + -0.0375412 + ], + [ + 109.3318015, + -0.0379962 + ], + [ + 109.3320071, + -0.0383175 + ], + [ + 109.3321993, + -0.0386267 + ], + [ + 109.3322573, + -0.0387267 + ], + [ + 109.3324064, + -0.0389604 + ], + [ + 109.332548, + -0.0391815 + ] + ] + }, + "id": "way/782482421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782609861", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550067, + -0.0618769 + ], + [ + 109.3550397, + -0.061844 + ], + [ + 109.3550912, + -0.0617927 + ] + ] + }, + "id": "way/782609861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782609862", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547907, + -0.0614809 + ], + [ + 109.354778, + -0.061494 + ], + [ + 109.354731, + -0.0615424 + ] + ] + }, + "id": "way/782609862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782609863", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551381, + -0.0617431 + ], + [ + 109.3549182, + -0.0615748 + ], + [ + 109.354843, + -0.0615211 + ], + [ + 109.3547907, + -0.0614809 + ], + [ + 109.3548095, + -0.0614601 + ], + [ + 109.354841, + -0.0614279 + ], + [ + 109.3549637, + -0.0615124 + ], + [ + 109.3551902, + -0.0616759 + ] + ] + }, + "id": "way/782609863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782609864", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550912, + -0.0617927 + ], + [ + 109.3551381, + -0.0617431 + ], + [ + 109.3551902, + -0.0616759 + ], + [ + 109.3552119, + -0.0616479 + ], + [ + 109.3552293, + -0.0616237 + ] + ] + }, + "id": "way/782609864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782609865", + "highway": "trunk_link", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550549, + -0.0619354 + ], + [ + 109.3549446, + -0.0620298 + ] + ] + }, + "id": "way/782609865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782626150", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640081, + -0.0635509 + ], + [ + 109.3645721, + -0.0622473 + ] + ] + }, + "id": "way/782626150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782626151", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645721, + -0.0622473 + ], + [ + 109.3646083, + -0.0622643 + ], + [ + 109.364693, + -0.0623042 + ] + ] + }, + "id": "way/782626151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782626152", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3641189, + -0.0636271 + ], + [ + 109.3640471, + -0.0635777 + ], + [ + 109.3640081, + -0.0635509 + ] + ] + }, + "id": "way/782626152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782631759", + "highway": "living_street", + "name": "Gang Mitra" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556064, + -0.0752516 + ], + [ + 109.3543123, + -0.0744719 + ] + ] + }, + "id": "way/782631759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782637642", + "highway": "trunk_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614582, + -0.0694283 + ], + [ + 109.361503, + -0.0694417 + ], + [ + 109.3615413, + -0.0694463 + ], + [ + 109.3615687, + -0.0694457 + ], + [ + 109.3616657, + -0.0694286 + ] + ] + }, + "id": "way/782637642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782718619", + "access:conditional": "no @ (22.00-04.00)", + "highway": "residential", + "maxspeed": "5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580809, + -0.0746405 + ], + [ + 109.3581462, + -0.0746846 + ] + ] + }, + "id": "way/782718619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782798058", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640625, + -0.0642531 + ], + [ + 109.3641529, + -0.0642967 + ] + ] + }, + "id": "way/782798058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782798059", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640062, + -0.0642259 + ], + [ + 109.3640625, + -0.0642531 + ] + ] + }, + "id": "way/782798059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/782900179", + "highway": "trunk", + "name": "Jalan Pahlawan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481667, + -0.0395532 + ], + [ + 109.34812, + -0.0395785 + ], + [ + 109.348061, + -0.0396104 + ] + ] + }, + "id": "way/782900179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/783636832", + "crossing": "marked", + "footway": "crossing", + "highway": "footway", + "traffic_calming": "table" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3726136, + 0.0004418 + ], + [ + 109.3725789, + 0.0004171 + ] + ] + }, + "id": "way/783636832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/786980486", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2924596, + -0.0092979 + ], + [ + 109.2922809, + -0.0093029 + ], + [ + 109.2922038, + -0.0092895 + ], + [ + 109.2920964, + -0.0093001 + ], + [ + 109.2920172, + -0.009302 + ], + [ + 109.2919115, + -0.009314 + ], + [ + 109.2917013, + -0.0093352 + ], + [ + 109.2913547, + -0.0093617 + ] + ] + }, + "id": "way/786980486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/786980487", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2920964, + -0.0093001 + ], + [ + 109.2920514, + -0.0094006 + ], + [ + 109.2920188, + -0.0095356 + ], + [ + 109.2920008, + -0.0096879 + ], + [ + 109.2919984, + -0.009745 + ], + [ + 109.2919995, + -0.0098081 + ] + ] + }, + "id": "way/786980487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/787527523", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212435, + -0.084217 + ], + [ + 109.3218298, + -0.0834817 + ], + [ + 109.3230266, + -0.0816997 + ] + ] + }, + "id": "way/787527523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/787527524", + "bridge": "yes", + "highway": "track", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204657, + -0.0850051 + ], + [ + 109.3205412, + -0.0849702 + ] + ] + }, + "id": "way/787527524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788248248", + "highway": "track", + "motorcar": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2597275, + -0.0425279 + ], + [ + 109.2600698, + -0.042458 + ], + [ + 109.2602544, + -0.0423934 + ], + [ + 109.2603381, + -0.0423641 + ], + [ + 109.2606828, + -0.0422152 + ], + [ + 109.2610301, + -0.0420248 + ], + [ + 109.2618509, + -0.0415152 + ], + [ + 109.2627012, + -0.0409627 + ], + [ + 109.2631397, + -0.0406972 + ], + [ + 109.2635956, + -0.0404236 + ], + [ + 109.2642099, + -0.0400186 + ], + [ + 109.264863, + -0.0395706 + ], + [ + 109.2651969, + -0.0393239 + ], + [ + 109.2654786, + -0.0391053 + ], + [ + 109.2660955, + -0.0386104 + ], + [ + 109.2669283, + -0.0379077 + ], + [ + 109.2672515, + -0.0376207 + ], + [ + 109.2675063, + -0.0373739 + ], + [ + 109.2681822, + -0.0367302 + ], + [ + 109.2687401, + -0.0361487 + ], + [ + 109.2687857, + -0.0361012 + ], + [ + 109.2691532, + -0.0356814 + ], + [ + 109.2695233, + -0.0352228 + ], + [ + 109.2706234, + -0.0339046 + ], + [ + 109.2711487, + -0.0332755 + ], + [ + 109.2721576, + -0.0321431 + ], + [ + 109.2732426, + -0.0309018 + ], + [ + 109.2743044, + -0.0297472 + ], + [ + 109.2753786, + -0.0283563 + ], + [ + 109.2765742, + -0.0268282 + ], + [ + 109.2777367, + -0.0252499 + ], + [ + 109.2779186, + -0.0250196 + ], + [ + 109.2782694, + -0.0245711 + ], + [ + 109.2794924, + -0.0228824 + ], + [ + 109.2801497, + -0.0220415 + ], + [ + 109.2802461, + -0.0219242 + ], + [ + 109.2806907, + -0.0213638 + ], + [ + 109.2808932, + -0.0211506 + ], + [ + 109.2811762, + -0.0208984 + ], + [ + 109.2813888, + -0.0207202 + ], + [ + 109.2816835, + -0.0204602 + ], + [ + 109.2817408, + -0.0204197 + ], + [ + 109.2821027, + -0.0201562 + ], + [ + 109.2824016, + -0.0199531 + ], + [ + 109.2824554, + -0.0199233 + ], + [ + 109.2826754, + -0.019796 + ], + [ + 109.2832134, + -0.019515 + ], + [ + 109.2855829, + -0.0185138 + ], + [ + 109.2856219, + -0.0184992 + ] + ] + }, + "id": "way/788248248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788346100", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474817, + -0.0913929 + ], + [ + 109.3475649, + -0.0914459 + ] + ] + }, + "id": "way/788346100" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788346101", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347447, + -0.0913742 + ], + [ + 109.3474817, + -0.0913929 + ] + ] + }, + "id": "way/788346101" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788346103", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468863, + -0.0924007 + ], + [ + 109.3469989, + -0.0924684 + ] + ] + }, + "id": "way/788346103" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788346104", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465316, + -0.0925221 + ], + [ + 109.3465912, + -0.0923786 + ], + [ + 109.346616, + -0.092327 + ], + [ + 109.3466402, + -0.0923089 + ], + [ + 109.3466865, + -0.0923015 + ], + [ + 109.346716, + -0.0923052 + ], + [ + 109.3467495, + -0.0923196 + ], + [ + 109.3468598, + -0.092386 + ] + ] + }, + "id": "way/788346104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788346105", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468598, + -0.092386 + ], + [ + 109.3468863, + -0.0924007 + ] + ] + }, + "id": "way/788346105" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788346106", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467569, + -0.0926113 + ], + [ + 109.3468655, + -0.0926777 + ] + ] + }, + "id": "way/788346106" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788346108", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467366, + -0.0925997 + ], + [ + 109.3467569, + -0.0926113 + ] + ] + }, + "id": "way/788346108" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788346109", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455747, + -0.094572 + ], + [ + 109.3462587, + -0.0934186 + ], + [ + 109.3464708, + -0.0930609 + ] + ] + }, + "id": "way/788346109" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383585", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416104, + -0.0887248 + ], + [ + 109.3418055, + -0.0888683 + ], + [ + 109.3419045, + -0.0889321 + ] + ] + }, + "id": "way/788383585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383586", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447392, + -0.0892357 + ], + [ + 109.3448679, + -0.0892961 + ], + [ + 109.344947, + -0.0893484 + ], + [ + 109.3449846, + -0.0893846 + ], + [ + 109.344998, + -0.0894074 + ], + [ + 109.345002, + -0.0894409 + ], + [ + 109.3449799, + -0.0895261 + ] + ] + }, + "id": "way/788383586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383587", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470479, + -0.0921352 + ], + [ + 109.3471572, + -0.0921955 + ] + ] + }, + "id": "way/788383587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383589", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470151, + -0.0921166 + ], + [ + 109.3470479, + -0.0921352 + ] + ] + }, + "id": "way/788383589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383591", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485593, + -0.0895864 + ], + [ + 109.3486619, + -0.0896555 + ] + ] + }, + "id": "way/788383591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485263, + -0.0895648 + ], + [ + 109.3485593, + -0.0895864 + ] + ] + }, + "id": "way/788383592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383594", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478814, + -0.0907042 + ], + [ + 109.3479863, + -0.0907776 + ] + ] + }, + "id": "way/788383594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383595", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478603, + -0.0906896 + ], + [ + 109.3478814, + -0.0907042 + ] + ] + }, + "id": "way/788383595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383596", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476594, + -0.0910931 + ], + [ + 109.347762, + -0.0911495 + ] + ] + }, + "id": "way/788383596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383598", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347632, + -0.0910775 + ], + [ + 109.3476594, + -0.0910931 + ] + ] + }, + "id": "way/788383598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788383602", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488537, + -0.0876318 + ], + [ + 109.3493016, + -0.0879067 + ], + [ + 109.3495253, + -0.0880399 + ] + ] + }, + "id": "way/788383602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788392054", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482073, + -0.0892236 + ], + [ + 109.3485874, + -0.0894712 + ] + ] + }, + "id": "way/788392054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788392055", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462788, + -0.0934307 + ], + [ + 109.3464048, + -0.0935145 + ] + ] + }, + "id": "way/788392055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788392057", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462587, + -0.0934186 + ], + [ + 109.3462788, + -0.0934307 + ] + ] + }, + "id": "way/788392057" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788413718", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477855, + -0.0908564 + ], + [ + 109.3478787, + -0.0909188 + ] + ] + }, + "id": "way/788413718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/788413719", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477653, + -0.090843 + ], + [ + 109.3477855, + -0.0908564 + ] + ] + }, + "id": "way/788413719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/791019823", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2828079, + -0.0414055 + ], + [ + 109.2820687, + -0.0401449 + ] + ] + }, + "id": "way/791019823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/793068306", + "highway": "residential", + "name": "Gang Delta Kapuas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2937144, + -0.0150498 + ], + [ + 109.293769, + -0.0151866 + ], + [ + 109.2937806, + -0.0152487 + ], + [ + 109.2937826, + -0.0153295 + ], + [ + 109.2937826, + -0.0154012 + ], + [ + 109.2937765, + -0.0154743 + ], + [ + 109.2934983, + -0.0171581 + ] + ] + }, + "id": "way/793068306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/793068307", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.294199, + -0.0156406 + ], + [ + 109.2941708, + -0.0156366 + ], + [ + 109.2941827, + -0.0153994 + ], + [ + 109.2941014, + -0.0148858 + ] + ] + }, + "id": "way/793068307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/793068308", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2931106, + -0.01719 + ], + [ + 109.293234, + -0.0171681 + ], + [ + 109.2932409, + -0.0171635 + ], + [ + 109.2932465, + -0.0171573 + ], + [ + 109.2932498, + -0.0171491 + ], + [ + 109.293252, + -0.0171414 + ], + [ + 109.2932555, + -0.0171263 + ], + [ + 109.2932552, + -0.0171028 + ], + [ + 109.293253, + -0.0170714 + ], + [ + 109.2932233, + -0.0168885 + ], + [ + 109.2929417, + -0.0153775 + ], + [ + 109.2929383, + -0.0153664 + ] + ] + }, + "id": "way/793068308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/793068309", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940079, + -0.0187015 + ], + [ + 109.2941426, + -0.0177971 + ] + ] + }, + "id": "way/793068309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235128", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130178, + -0.0789475 + ], + [ + 109.312034, + -0.078175 + ], + [ + 109.3116906, + -0.0779171 + ] + ] + }, + "id": "way/799235128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235129", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116507, + -0.0778872 + ], + [ + 109.3116147, + -0.0778602 + ] + ] + }, + "id": "way/799235129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235130", + "bridge": "yes", + "highway": "unclassified", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116906, + -0.0779171 + ], + [ + 109.3116507, + -0.0778872 + ] + ] + }, + "id": "way/799235130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235131", + "highway": "residential", + "name": "Gang Purnama Sejahtera 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.307486, + -0.0772516 + ], + [ + 109.3079057, + -0.0775104 + ], + [ + 109.3082732, + -0.0773173 + ], + [ + 109.3098007, + -0.0782279 + ], + [ + 109.3105338, + -0.0786792 + ], + [ + 109.3110814, + -0.0790039 + ] + ] + }, + "id": "way/799235131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235132", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108847, + -0.0709816 + ], + [ + 109.3115074, + -0.0701816 + ] + ] + }, + "id": "way/799235132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235135", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279488, + -0.0679322 + ], + [ + 109.3270875, + -0.0687604 + ] + ] + }, + "id": "way/799235135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235136", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272377, + -0.0689938 + ], + [ + 109.3270875, + -0.0687604 + ], + [ + 109.3270419, + -0.0687255 + ], + [ + 109.3270124, + -0.0687202 + ], + [ + 109.3269561, + -0.0687577 + ], + [ + 109.3267764, + -0.0689053 + ], + [ + 109.3267389, + -0.0689106 + ], + [ + 109.3267067, + -0.0688757 + ], + [ + 109.3261487, + -0.0681121 + ] + ] + }, + "id": "way/799235136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235137", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267389, + -0.0689106 + ], + [ + 109.3264135, + -0.0691908 + ], + [ + 109.326211, + -0.0693652 + ], + [ + 109.3260629, + -0.0694927 + ] + ] + }, + "id": "way/799235137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235148", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344213, + -0.0865993 + ], + [ + 109.3435403, + -0.0861503 + ] + ] + }, + "id": "way/799235148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/799235149", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361238, + -0.0824121 + ], + [ + 109.3366501, + -0.0827493 + ], + [ + 109.337007, + -0.0829856 + ] + ] + }, + "id": "way/799235149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/801477640", + "colour": "#606060", + "highway": "residential", + "name": "Komplek Anugrah Perdana Permai", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379482, + -0.0567346 + ], + [ + 109.3382791, + -0.0570345 + ], + [ + 109.3386425, + -0.0573335 + ], + [ + 109.3393986, + -0.057925 + ], + [ + 109.3403952, + -0.05872 + ] + ] + }, + "id": "way/801477640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/801477641", + "colour": "#606060", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Karya Baru 1", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379351, + -0.0564471 + ], + [ + 109.3379766, + -0.056486 + ], + [ + 109.3379907, + -0.0565161 + ], + [ + 109.3379941, + -0.056545 + ], + [ + 109.3379874, + -0.0565688 + ], + [ + 109.3379493, + -0.0566503 + ] + ] + }, + "id": "way/801477641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/803171825", + "highway": "path", + "name": "Gang Satu", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423497, + -0.0276031 + ], + [ + 109.3425281, + -0.0279033 + ], + [ + 109.341897, + -0.0282243 + ] + ] + }, + "id": "way/803171825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804118062", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3419045, + -0.0889321 + ], + [ + 109.3430009, + -0.0895976 + ], + [ + 109.3444446, + -0.0904479 + ], + [ + 109.344432, + -0.090482 + ], + [ + 109.344566, + -0.0905565 + ] + ] + }, + "id": "way/804118062" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804118068", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391143, + -0.0891769 + ], + [ + 109.3389523, + -0.0895843 + ] + ] + }, + "id": "way/804118068" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201131", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946469, + -0.0171229 + ], + [ + 109.2946335, + -0.017122 + ], + [ + 109.2946149, + -0.0171193 + ], + [ + 109.2946229, + -0.0171019 + ], + [ + 109.2946274, + -0.0170914 + ], + [ + 109.2947836, + -0.0167241 + ], + [ + 109.2948336, + -0.0166065 + ] + ] + }, + "id": "way/804201131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201132", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959786, + -0.0175873 + ], + [ + 109.2953949, + -0.0175962 + ], + [ + 109.2944805, + -0.0175897 + ] + ] + }, + "id": "way/804201132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201133", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966961, + -0.0164584 + ], + [ + 109.2964427, + -0.0164329 + ], + [ + 109.2960981, + -0.0163954 + ] + ] + }, + "id": "way/804201133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201135", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940539, + -0.0147772 + ], + [ + 109.2939351, + -0.0148187 + ], + [ + 109.2938661, + -0.0146214 + ], + [ + 109.2937808, + -0.0143771 + ], + [ + 109.2939608, + -0.0143142 + ], + [ + 109.2934516, + -0.0128569 + ] + ] + }, + "id": "way/804201135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201136", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940908, + -0.0148718 + ], + [ + 109.2940539, + -0.0147772 + ] + ] + }, + "id": "way/804201136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201137", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979278, + -0.0123998 + ], + [ + 109.2968391, + -0.0127986 + ], + [ + 109.2958676, + -0.0131738 + ], + [ + 109.2950471, + -0.0134797 + ], + [ + 109.2947616, + -0.0135861 + ] + ] + }, + "id": "way/804201137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201138", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999662, + -0.0120734 + ], + [ + 109.3000361, + -0.0122711 + ], + [ + 109.3000468, + -0.0122971 + ], + [ + 109.3001112, + -0.0124535 + ], + [ + 109.300182, + -0.0126563 + ], + [ + 109.3002098, + -0.0126446 + ], + [ + 109.3002497, + -0.0126526 + ], + [ + 109.3003238, + -0.0126634 + ], + [ + 109.300879, + -0.0126554 + ], + [ + 109.300877, + -0.0127123 + ] + ] + }, + "id": "way/804201138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201139", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2997981, + -0.0151625 + ], + [ + 109.2997954, + -0.0151689 + ], + [ + 109.2997961, + -0.0152162 + ], + [ + 109.3001575, + -0.0152468 + ], + [ + 109.3003877, + -0.0152682 + ], + [ + 109.3007568, + -0.0153051 + ] + ] + }, + "id": "way/804201139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201140", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3003877, + -0.0152682 + ], + [ + 109.3003738, + -0.0155097 + ] + ] + }, + "id": "way/804201140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/804201141", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2975013, + -0.018973 + ], + [ + 109.2973834, + -0.018978 + ], + [ + 109.2973204, + -0.01898 + ], + [ + 109.2972641, + -0.0189867 + ], + [ + 109.297142, + -0.0190021 + ], + [ + 109.296611, + -0.0190685 + ], + [ + 109.2958847, + -0.019151 + ], + [ + 109.2954485, + -0.0192039 + ], + [ + 109.2952397, + -0.0192355 + ], + [ + 109.2950834, + -0.0192549 + ], + [ + 109.2949312, + -0.019276 + ], + [ + 109.2947974, + -0.0192965 + ], + [ + 109.2946694, + -0.0193111 + ], + [ + 109.2945887, + -0.0193191 + ], + [ + 109.2945007, + -0.0193303 + ], + [ + 109.2944374, + -0.0193377 + ], + [ + 109.2942375, + -0.0193474 + ] + ] + }, + "id": "way/804201141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/807875167", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216251, + 0.0160312 + ], + [ + 109.3216372, + 0.0165703 + ], + [ + 109.3216502, + 0.0169843 + ] + ] + }, + "id": "way/807875167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/807875197", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303805, + 0.0260002 + ], + [ + 109.3303783, + 0.0249426 + ] + ] + }, + "id": "way/807875197" + }, + { + "type": "Feature", + "properties": { + "@id": "way/807909999", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258401, + -0.0478747 + ], + [ + 109.3256622, + -0.0481136 + ], + [ + 109.3256238, + -0.0481652 + ], + [ + 109.3253454, + -0.0485131 + ] + ] + }, + "id": "way/807909999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808358690", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310519, + -0.0517855 + ], + [ + 109.3310284, + -0.0517513 + ] + ] + }, + "id": "way/808358690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808358691", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281085, + -0.054135 + ], + [ + 109.3281329, + -0.0541746 + ] + ] + }, + "id": "way/808358691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808362557", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277693, + -0.0583767 + ], + [ + 109.3281627, + -0.0581619 + ] + ] + }, + "id": "way/808362557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808362558", + "highway": "residential", + "name": "Gang Purnama Indah 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260113, + -0.0606219 + ], + [ + 109.3258665, + -0.0603256 + ], + [ + 109.3254742, + -0.0594297 + ], + [ + 109.3246595, + -0.0576414 + ] + ] + }, + "id": "way/808362558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808379984", + "highway": "residential", + "name": "Purnama Sempurna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266192, + -0.0507229 + ], + [ + 109.3266155, + -0.05074 + ], + [ + 109.3266168, + -0.0507668 + ], + [ + 109.3266281, + -0.0507943 + ], + [ + 109.3273343, + -0.0513778 + ], + [ + 109.3273524, + -0.0513807 + ], + [ + 109.3273712, + -0.0513794 + ], + [ + 109.327388, + -0.0513764 + ], + [ + 109.3276049, + -0.0511275 + ] + ] + }, + "id": "way/808379984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808382779", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320335, + -0.0510143 + ], + [ + 109.3320671, + -0.0510867 + ] + ] + }, + "id": "way/808382779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808382780", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332005, + -0.0509481 + ], + [ + 109.3320335, + -0.0510143 + ] + ] + }, + "id": "way/808382780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808382781", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320671, + -0.0510867 + ], + [ + 109.3320778, + -0.0511041 + ], + [ + 109.3320872, + -0.0511125 + ], + [ + 109.3320966, + -0.0511175 + ], + [ + 109.3321837, + -0.0511004 + ], + [ + 109.3321911, + -0.0511038 + ], + [ + 109.3321982, + -0.0511099 + ], + [ + 109.3322186, + -0.051147 + ], + [ + 109.3322293, + -0.0511658 + ], + [ + 109.3323353, + -0.0514367 + ] + ] + }, + "id": "way/808382781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808382784", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3313359, + -0.055723 + ], + [ + 109.3313593, + -0.0557681 + ], + [ + 109.3313687, + -0.0557869 + ], + [ + 109.3314475, + -0.0559764 + ], + [ + 109.331532, + -0.0562204 + ], + [ + 109.3316071, + -0.0564162 + ], + [ + 109.3316547, + -0.0565624 + ], + [ + 109.3316929, + -0.0566657 + ], + [ + 109.3318284, + -0.0570224 + ], + [ + 109.3319786, + -0.0574207 + ], + [ + 109.3321449, + -0.0578713 + ], + [ + 109.3324991, + -0.0587886 + ] + ] + }, + "id": "way/808382784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808382785", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330931, + -0.0575259 + ], + [ + 109.3311779, + -0.0574154 + ], + [ + 109.3311954, + -0.0573993 + ], + [ + 109.3312047, + -0.0573711 + ], + [ + 109.3312021, + -0.0573389 + ], + [ + 109.331017, + -0.0568776 + ], + [ + 109.3310022, + -0.0568695 + ], + [ + 109.3309848, + -0.0568735 + ], + [ + 109.3307202, + -0.0569773 + ] + ] + }, + "id": "way/808382785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808382786", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3306959, + -0.0569138 + ], + [ + 109.3304564, + -0.057013 + ], + [ + 109.3304296, + -0.0570398 + ], + [ + 109.3304363, + -0.0570868 + ], + [ + 109.3306468, + -0.0575414 + ], + [ + 109.3306656, + -0.0575562 + ], + [ + 109.3307032, + -0.0575535 + ], + [ + 109.3309095, + -0.0574699 + ] + ] + }, + "id": "way/808382786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808387976", + "highway": "residential", + "name": "Purnama Sempurna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296524, + -0.0527503 + ], + [ + 109.3293982, + -0.0525537 + ], + [ + 109.3293755, + -0.0525361 + ], + [ + 109.3285621, + -0.0519068 + ], + [ + 109.3276049, + -0.0511275 + ] + ] + }, + "id": "way/808387976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808434675", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347372, + -0.0192247 + ], + [ + 109.3345803, + -0.0196002 + ] + ] + }, + "id": "way/808434675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808434676", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291354, + -0.0196888 + ], + [ + 109.329236, + -0.0196807 + ], + [ + 109.3297215, + -0.0196418 + ], + [ + 109.3299374, + -0.019617 + ], + [ + 109.3302459, + -0.0195654 + ], + [ + 109.3300766, + -0.0187446 + ] + ] + }, + "id": "way/808434676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808434677", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.327459, + -0.0191621 + ], + [ + 109.3275069, + -0.0194126 + ], + [ + 109.3275033, + -0.0195667 + ] + ] + }, + "id": "way/808434677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808434678", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330233, + -0.0178136 + ], + [ + 109.3328647, + -0.0179899 + ], + [ + 109.3327342, + -0.0181301 + ], + [ + 109.3327303, + -0.0181382 + ], + [ + 109.332728, + -0.0181477 + ], + [ + 109.3327284, + -0.0181564 + ], + [ + 109.3327381, + -0.018174 + ], + [ + 109.3327919, + -0.0182429 + ], + [ + 109.3327931, + -0.0182474 + ], + [ + 109.332793, + -0.0182508 + ], + [ + 109.3327926, + -0.0182534 + ] + ] + }, + "id": "way/808434678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808434679", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274751, + -0.0182176 + ], + [ + 109.3274805, + -0.0183678 + ], + [ + 109.3274858, + -0.0184791 + ], + [ + 109.3274926, + -0.0185488 + ], + [ + 109.3275147, + -0.0186923 + ], + [ + 109.3275681, + -0.0188974 + ] + ] + }, + "id": "way/808434679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626209", + "highway": "residential", + "name": "Surya Kencana 1 Blok C-D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2975838, + -0.0109788 + ], + [ + 109.297555, + -0.0109875 + ] + ] + }, + "id": "way/808626209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626210", + "highway": "residential", + "name": "Karet Alam Indah Blok A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2968763, + -0.008708 + ], + [ + 109.296832, + -0.0087134 + ] + ] + }, + "id": "way/808626210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626211", + "highway": "residential", + "name": "Karet Alam Indah Blok C-D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.29687, + -0.0090169 + ], + [ + 109.2968485, + -0.0090229 + ] + ] + }, + "id": "way/808626211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626212", + "highway": "residential", + "name": "Sejahtera 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296926, + -0.0093898 + ], + [ + 109.2968958, + -0.0094012 + ] + ] + }, + "id": "way/808626212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626213", + "highway": "residential", + "name": "Patra Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2970684, + -0.0097558 + ], + [ + 109.2970382, + -0.0097679 + ] + ] + }, + "id": "way/808626213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626214", + "highway": "residential", + "name": "Surya Kencana 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2971964, + -0.0100731 + ], + [ + 109.2971595, + -0.0100885 + ] + ] + }, + "id": "way/808626214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626215", + "highway": "residential", + "name": "Eka Sapta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2973246, + -0.0103636 + ], + [ + 109.2972938, + -0.0103713 + ] + ] + }, + "id": "way/808626215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626216", + "highway": "residential", + "name": "Surya Kencana 1 Blok C-D" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2974138, + -0.0110359 + ], + [ + 109.2974413, + -0.0110272 + ] + ] + }, + "id": "way/808626216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626217", + "highway": "residential", + "name": "Nuansa Alam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979635, + -0.0119271 + ], + [ + 109.2979876, + -0.0119177 + ] + ] + }, + "id": "way/808626217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626218", + "highway": "residential", + "name": "Al Mustaqim 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980114, + -0.0125346 + ], + [ + 109.298052, + -0.0125267 + ] + ] + }, + "id": "way/808626218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626219", + "highway": "residential", + "name": "Al Mustaqim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980982, + -0.0129113 + ], + [ + 109.2980701, + -0.012914 + ] + ] + }, + "id": "way/808626219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626220", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2981333, + -0.013324 + ], + [ + 109.2981087, + -0.0133337 + ] + ] + }, + "id": "way/808626220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626221", + "highway": "path", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2949828, + -0.0143746 + ], + [ + 109.2950047, + -0.0144277 + ] + ] + }, + "id": "way/808626221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626222", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950338, + -0.0145172 + ], + [ + 109.2950226, + -0.0144763 + ] + ] + }, + "id": "way/808626222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808626223", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2924039, + -0.0156695 + ], + [ + 109.2923802, + -0.0156123 + ] + ] + }, + "id": "way/808626223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808630779", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326498, + -0.0329278 + ], + [ + 109.332924, + -0.0326532 + ], + [ + 109.3329326, + -0.0326491 + ], + [ + 109.3329399, + -0.0326482 + ], + [ + 109.3329479, + -0.0326509 + ], + [ + 109.3329572, + -0.0326547 + ], + [ + 109.3330618, + -0.0327572 + ], + [ + 109.3330695, + -0.0327616 + ], + [ + 109.3330778, + -0.0327638 + ], + [ + 109.333087, + -0.0327645 + ], + [ + 109.3330985, + -0.0327613 + ], + [ + 109.3333807, + -0.0325325 + ] + ] + }, + "id": "way/808630779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808631893", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2945621, + -0.0104138 + ], + [ + 109.2944565, + -0.0104331 + ], + [ + 109.2944216, + -0.0104378 + ], + [ + 109.2943867, + -0.0104418 + ], + [ + 109.2942003, + -0.0104345 + ] + ] + }, + "id": "way/808631893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808631894", + "highway": "tertiary", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2967833, + -0.0078867 + ], + [ + 109.2967613, + -0.0078868 + ] + ] + }, + "id": "way/808631894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808631895", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Komodor Yos Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969271, + -0.0078904 + ], + [ + 109.2967833, + -0.0078867 + ] + ] + }, + "id": "way/808631895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808634356", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980152, + -0.0123951 + ], + [ + 109.2979278, + -0.0123998 + ] + ] + }, + "id": "way/808634356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808634357", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980413, + -0.0123941 + ], + [ + 109.2980152, + -0.0123951 + ] + ] + }, + "id": "way/808634357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808649054", + "highway": "tertiary", + "name": "Jalan Putri Dara Hitam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219994, + -0.0234921 + ], + [ + 109.3220785, + -0.0238019 + ], + [ + 109.3221483, + -0.0240728 + ], + [ + 109.3223756, + -0.0250545 + ], + [ + 109.3224355, + -0.0252612 + ], + [ + 109.3224872, + -0.0253712 + ], + [ + 109.3225575, + -0.0254847 + ], + [ + 109.3227182, + -0.0257532 + ], + [ + 109.3227786, + -0.0258525 + ], + [ + 109.3228825, + -0.0259913 + ], + [ + 109.3229657, + -0.026124 + ], + [ + 109.3231943, + -0.0264466 + ], + [ + 109.3232768, + -0.0265733 + ], + [ + 109.3233369, + -0.0266509 + ], + [ + 109.3235497, + -0.0269656 + ], + [ + 109.3236697, + -0.0271656 + ], + [ + 109.3237347, + -0.0272611 + ], + [ + 109.3238904, + -0.0274812 + ], + [ + 109.3239145, + -0.0275201 + ], + [ + 109.3241393, + -0.0278369 + ], + [ + 109.3242941, + -0.0280906 + ], + [ + 109.324555, + -0.0284858 + ], + [ + 109.3246342, + -0.0285947 + ], + [ + 109.324727, + -0.0287311 + ], + [ + 109.3248089, + -0.0288514 + ], + [ + 109.3249617, + -0.029121 + ], + [ + 109.3253879, + -0.0298007 + ], + [ + 109.3255467, + -0.030054 + ], + [ + 109.3255989, + -0.0301212 + ], + [ + 109.325624, + -0.0301492 + ] + ] + }, + "id": "way/808649054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808677114", + "highway": "residential", + "import": "yes", + "name": "Jalan Komplek Surya Residence", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310847, + -0.0493756 + ], + [ + 109.3302808, + -0.0486473 + ] + ] + }, + "id": "way/808677114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808681533", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315787, + -0.0362217 + ], + [ + 109.3314669, + -0.0360006 + ], + [ + 109.3313332, + -0.0358373 + ], + [ + 109.3311793, + -0.0356492 + ] + ] + }, + "id": "way/808681533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808681534", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3313317, + -0.0367409 + ], + [ + 109.3312545, + -0.0366422 + ], + [ + 109.3312373, + -0.0366201 + ], + [ + 109.3312333, + -0.0365818 + ], + [ + 109.331244, + -0.0365302 + ], + [ + 109.3312709, + -0.036492 + ], + [ + 109.3315787, + -0.0362217 + ], + [ + 109.331636, + -0.0363242 + ], + [ + 109.3316944, + -0.0364287 + ] + ] + }, + "id": "way/808681534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808681535", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322207, + -0.0346134 + ], + [ + 109.3321909, + -0.0346011 + ], + [ + 109.3321019, + -0.0345643 + ], + [ + 109.3320744, + -0.0345422 + ], + [ + 109.332047, + -0.0345153 + ], + [ + 109.3320275, + -0.0344845 + ], + [ + 109.3320228, + -0.034455 + ], + [ + 109.3320269, + -0.034392 + ] + ] + }, + "id": "way/808681535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808681536", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303836, + -0.0425385 + ], + [ + 109.3302711, + -0.0423068 + ] + ] + }, + "id": "way/808681536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808681537", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342879, + -0.0359466 + ], + [ + 109.333954, + -0.0354896 + ] + ] + }, + "id": "way/808681537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808681538", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326503, + -0.0399702 + ], + [ + 109.3327068, + -0.0400722 + ], + [ + 109.3327316, + -0.0400802 + ], + [ + 109.3327584, + -0.0400782 + ], + [ + 109.3327973, + -0.0400628 + ], + [ + 109.3328905, + -0.0400172 + ] + ] + }, + "id": "way/808681538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808681539", + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296896, + -0.0380433 + ], + [ + 109.3296722, + -0.0380244 + ] + ] + }, + "id": "way/808681539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808681540", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3261346, + -0.0411367 + ], + [ + 109.3260603, + -0.0410257 + ], + [ + 109.3260093, + -0.0409265 + ], + [ + 109.3260039, + -0.0408953 + ], + [ + 109.3260106, + -0.0408675 + ], + [ + 109.3261112, + -0.0407575 + ], + [ + 109.3262266, + -0.040665 + ], + [ + 109.3262577, + -0.0406552 + ], + [ + 109.3262909, + -0.0406623 + ], + [ + 109.3263687, + -0.0407334 + ], + [ + 109.3264009, + -0.0407776 + ] + ] + }, + "id": "way/808681540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808681541", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326335, + -0.0411373 + ], + [ + 109.326822, + -0.0417848 + ] + ] + }, + "id": "way/808681541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808799131", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339402, + -0.0271056 + ], + [ + 109.3338748, + -0.0271531 + ], + [ + 109.3338403, + -0.027175 + ], + [ + 109.3337998, + -0.0272005 + ], + [ + 109.333771, + -0.0272197 + ], + [ + 109.3337463, + -0.0272398 + ], + [ + 109.3337128, + -0.0272645 + ] + ] + }, + "id": "way/808799131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808799133", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3313019, + -0.0275195 + ], + [ + 109.3312735, + -0.0275392 + ], + [ + 109.3312393, + -0.0275631 + ] + ] + }, + "id": "way/808799133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808799140", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307105, + -0.0290755 + ], + [ + 109.3308162, + -0.0290202 + ], + [ + 109.331095, + -0.0288314 + ], + [ + 109.3311014, + -0.0288215 + ], + [ + 109.3311023, + -0.0288126 + ], + [ + 109.3310978, + -0.0287965 + ], + [ + 109.3310398, + -0.0287395 + ], + [ + 109.3309553, + -0.0286624 + ], + [ + 109.3308575, + -0.0285325 + ] + ] + }, + "id": "way/808799140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808800580", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3813258, + -0.02635 + ], + [ + 109.381365, + -0.0262493 + ], + [ + 109.3813933, + -0.0260335 + ], + [ + 109.3814605, + -0.0260016 + ], + [ + 109.3819489, + -0.0260724 + ], + [ + 109.382002, + -0.0261255 + ], + [ + 109.382002, + -0.0262812 + ], + [ + 109.3819277, + -0.0270032 + ], + [ + 109.3818781, + -0.027212 + ], + [ + 109.3818109, + -0.0272686 + ], + [ + 109.3816658, + -0.0272686 + ], + [ + 109.3813862, + -0.0272226 + ] + ] + }, + "id": "way/808800580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808801784", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979057, + -0.0447484 + ], + [ + 109.2980712, + -0.0449084 + ], + [ + 109.2982032, + -0.045036 + ], + [ + 109.2985278, + -0.0448025 + ] + ] + }, + "id": "way/808801784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808802905", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3566927, + 0.0175127 + ], + [ + 109.3564965, + 0.0176687 + ], + [ + 109.3564098, + 0.0177413 + ], + [ + 109.3563072, + 0.0177979 + ], + [ + 109.3561957, + 0.0178563 + ], + [ + 109.3560205, + 0.0179466 + ] + ] + }, + "id": "way/808802905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808805469", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2832678, + -0.0232113 + ], + [ + 109.2831441, + -0.0233268 + ], + [ + 109.2829269, + -0.0235252 + ], + [ + 109.2828542, + -0.0235854 + ], + [ + 109.2826965, + -0.023716 + ], + [ + 109.2824906, + -0.0238916 + ], + [ + 109.2822714, + -0.0240862 + ], + [ + 109.282058, + -0.024294 + ], + [ + 109.281803, + -0.0245396 + ], + [ + 109.2815442, + -0.0247927 + ], + [ + 109.2813194, + -0.0250118 + ], + [ + 109.2811437, + -0.0251837 + ], + [ + 109.281002, + -0.0253329 + ] + ] + }, + "id": "way/808805469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/808805470", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2831441, + -0.0233268 + ], + [ + 109.2833066, + -0.0235951 + ], + [ + 109.2835238, + -0.0239464 + ], + [ + 109.2837297, + -0.0242694 + ], + [ + 109.2838034, + -0.0243941 + ] + ] + }, + "id": "way/808805470" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809040608", + "highway": "residential", + "name": "Gang Peniti 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529313, + -0.0426444 + ], + [ + 109.352712, + -0.0428503 + ], + [ + 109.352678, + -0.0428764 + ], + [ + 109.352655, + -0.0428878 + ], + [ + 109.3526363, + -0.0428925 + ], + [ + 109.3526185, + -0.0428947 + ], + [ + 109.3526009, + -0.0428949 + ], + [ + 109.3525861, + -0.0428914 + ], + [ + 109.3525737, + -0.0428863 + ], + [ + 109.3525518, + -0.0428731 + ], + [ + 109.3525293, + -0.0428547 + ], + [ + 109.3524854, + -0.0428134 + ], + [ + 109.3522768, + -0.0425962 + ] + ] + }, + "id": "way/809040608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809040609", + "highway": "residential", + "name": "Gang Peniti 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508194, + -0.042867 + ], + [ + 109.3516096, + -0.0421401 + ], + [ + 109.3517586, + -0.042003 + ], + [ + 109.3518294, + -0.0419441 + ], + [ + 109.3521814, + -0.0416162 + ], + [ + 109.3522118, + -0.0415903 + ], + [ + 109.3522317, + -0.0415858 + ], + [ + 109.3522467, + -0.0416004 + ], + [ + 109.3523251, + -0.0416822 + ], + [ + 109.352594, + -0.0419618 + ], + [ + 109.3526966, + -0.042051 + ] + ] + }, + "id": "way/809040609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809040610", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548109, + -0.0392333 + ], + [ + 109.3548672, + -0.0393001 + ], + [ + 109.3548903, + -0.0393205 + ], + [ + 109.354919, + -0.0393396 + ], + [ + 109.3549406, + -0.0393492 + ], + [ + 109.3549684, + -0.0393557 + ], + [ + 109.3549897, + -0.0393555 + ], + [ + 109.3550244, + -0.0393502 + ], + [ + 109.3550536, + -0.0393403 + ], + [ + 109.3550901, + -0.0393202 + ], + [ + 109.355172, + -0.0392652 + ], + [ + 109.3556194, + -0.0389254 + ], + [ + 109.3559052, + -0.0387083 + ] + ] + }, + "id": "way/809040610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809040611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559265, + -0.0387346 + ], + [ + 109.3559052, + -0.0387083 + ] + ] + }, + "id": "way/809040611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809049351", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556128, + -0.0244007 + ], + [ + 109.3555632, + -0.0248627 + ], + [ + 109.3555297, + -0.0251859 + ], + [ + 109.3555062, + -0.0256627 + ] + ] + }, + "id": "way/809049351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809052316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568433, + -0.0316635 + ], + [ + 109.3566871, + -0.0314227 + ] + ] + }, + "id": "way/809052316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809052317", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568755, + -0.0317131 + ], + [ + 109.3568433, + -0.0316635 + ] + ] + }, + "id": "way/809052317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809052318", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568853, + -0.0317296 + ], + [ + 109.3568755, + -0.0317131 + ] + ] + }, + "id": "way/809052318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809052319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608411, + -0.0301065 + ], + [ + 109.3608882, + -0.0301293 + ] + ] + }, + "id": "way/809052319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809052320", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606997, + -0.030034 + ], + [ + 109.3608411, + -0.0301065 + ] + ] + }, + "id": "way/809052320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809052321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606595, + -0.0300171 + ], + [ + 109.3606997, + -0.030034 + ] + ] + }, + "id": "way/809052321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809058184", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612227, + -0.0329013 + ], + [ + 109.3611813, + -0.0329239 + ] + ] + }, + "id": "way/809058184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809058185", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361249, + -0.0328873 + ], + [ + 109.3612227, + -0.0329013 + ] + ] + }, + "id": "way/809058185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809058186", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559611, + -0.0283744 + ], + [ + 109.3559613, + -0.0283831 + ] + ] + }, + "id": "way/809058186" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809059740", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3613663, + -0.033861 + ], + [ + 109.36133, + -0.0338039 + ], + [ + 109.3613052, + -0.0337623 + ] + ] + }, + "id": "way/809059740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809068842", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587495, + -0.0297579 + ], + [ + 109.3585271, + -0.0299442 + ] + ] + }, + "id": "way/809068842" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809068843", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540805, + -0.0292679 + ], + [ + 109.3537983, + -0.0294755 + ], + [ + 109.3535087, + -0.0296994 + ], + [ + 109.3531921, + -0.0299475 + ], + [ + 109.3528207, + -0.0302332 + ], + [ + 109.3526597, + -0.0303681 + ] + ] + }, + "id": "way/809068843" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809070694", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3596576, + -0.0423708 + ], + [ + 109.3596081, + -0.0424243 + ], + [ + 109.3593679, + -0.042684 + ] + ] + }, + "id": "way/809070694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809070695", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552212, + -0.0344449 + ], + [ + 109.3556295, + -0.0341803 + ] + ] + }, + "id": "way/809070695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809070696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528435, + -0.0358289 + ], + [ + 109.3531989, + -0.0356412 + ] + ] + }, + "id": "way/809070696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809075831", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359721, + -0.0349436 + ], + [ + 109.3592606, + -0.0343671 + ] + ] + }, + "id": "way/809075831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809075832", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594508, + -0.0421777 + ], + [ + 109.359777, + -0.0418478 + ] + ] + }, + "id": "way/809075832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809075833", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3590655, + -0.0401842 + ], + [ + 109.3593109, + -0.0398637 + ] + ] + }, + "id": "way/809075833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809075834", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565597, + -0.039403 + ], + [ + 109.357025, + -0.0390208 + ] + ] + }, + "id": "way/809075834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809075835", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527479, + -0.0415291 + ], + [ + 109.3531345, + -0.0411447 + ], + [ + 109.3532521, + -0.0410093 + ] + ] + }, + "id": "way/809075835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809075836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531496, + -0.0422294 + ], + [ + 109.3536287, + -0.0417915 + ] + ] + }, + "id": "way/809075836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809084848", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592406, + -0.041982 + ], + [ + 109.3588382, + -0.0425184 + ], + [ + 109.3585733, + -0.0428966 + ], + [ + 109.3585308, + -0.0429555 + ], + [ + 109.3582991, + -0.0432768 + ], + [ + 109.3582226, + -0.0433773 + ] + ] + }, + "id": "way/809084848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809135855", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609133, + -0.0489539 + ], + [ + 109.361163, + -0.0492071 + ] + ] + }, + "id": "way/809135855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809150947", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584004, + -0.0462204 + ], + [ + 109.3582897, + -0.0463606 + ], + [ + 109.3581415, + -0.0465739 + ], + [ + 109.3579856, + -0.0467667 + ], + [ + 109.3579775, + -0.0467821 + ], + [ + 109.3579752, + -0.0467955 + ], + [ + 109.3579806, + -0.0468116 + ], + [ + 109.3581792, + -0.0469504 + ] + ] + }, + "id": "way/809150947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809157916", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555438, + -0.0351302 + ], + [ + 109.3555632, + -0.0351631 + ] + ] + }, + "id": "way/809157916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809157917", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554801, + -0.0350229 + ], + [ + 109.3555438, + -0.0351302 + ] + ] + }, + "id": "way/809157917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809157918", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551408, + -0.0353723 + ], + [ + 109.3551636, + -0.0354001 + ] + ] + }, + "id": "way/809157918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809157919", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550616, + -0.0352623 + ], + [ + 109.3551408, + -0.0353723 + ] + ] + }, + "id": "way/809157919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809157920", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548199, + -0.0355815 + ], + [ + 109.3548377, + -0.0356117 + ] + ] + }, + "id": "way/809157920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809157921", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547525, + -0.0354598 + ], + [ + 109.3548199, + -0.0355815 + ] + ] + }, + "id": "way/809157921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809157922", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530259, + -0.0367436 + ], + [ + 109.3534, + -0.0365014 + ], + [ + 109.3535043, + -0.0364297 + ], + [ + 109.353722, + -0.036274 + ], + [ + 109.3539311, + -0.0361491 + ], + [ + 109.3542279, + -0.0359719 + ] + ] + }, + "id": "way/809157922" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809157923", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3608908, + -0.0401051 + ], + [ + 109.3610547, + -0.0399404 + ] + ] + }, + "id": "way/809157923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809161722", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597518, + -0.0386801 + ], + [ + 109.3598849, + -0.0386064 + ], + [ + 109.360072, + -0.0384957 + ], + [ + 109.3604851, + -0.0382268 + ], + [ + 109.3611355, + -0.037797 + ], + [ + 109.3611476, + -0.0377853 + ], + [ + 109.3611558, + -0.0377761 + ], + [ + 109.3611598, + -0.0377701 + ], + [ + 109.3611625, + -0.0377652 + ], + [ + 109.3611643, + -0.0377599 + ], + [ + 109.3611654, + -0.0377551 + ], + [ + 109.3611652, + -0.0377462 + ], + [ + 109.3611641, + -0.0377302 + ], + [ + 109.3611603, + -0.0377098 + ], + [ + 109.3611533, + -0.0376782 + ], + [ + 109.361152, + -0.0376715 + ], + [ + 109.3611523, + -0.0376621 + ], + [ + 109.3611529, + -0.0376557 + ], + [ + 109.3611566, + -0.0376462 + ], + [ + 109.361166, + -0.037629 + ], + [ + 109.3611908, + -0.0376042 + ], + [ + 109.361224, + -0.0375774 + ], + [ + 109.3612565, + -0.0375526 + ], + [ + 109.3614148, + -0.0374477 + ], + [ + 109.3619093, + -0.0371177 + ], + [ + 109.3624042, + -0.0367872 + ], + [ + 109.3629936, + -0.0363855 + ], + [ + 109.363687, + -0.0359228 + ] + ] + }, + "id": "way/809161722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809401134", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3579551, + -0.0462983 + ], + [ + 109.3580617, + -0.0461756 + ], + [ + 109.3581674, + -0.0460363 + ] + ] + }, + "id": "way/809401134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809401135", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619889, + -0.0449183 + ], + [ + 109.3616391, + -0.0452998 + ], + [ + 109.3614539, + -0.0455107 + ], + [ + 109.3614389, + -0.0455228 + ], + [ + 109.3614212, + -0.0455288 + ], + [ + 109.3614074, + -0.0455265 + ], + [ + 109.3613889, + -0.0455205 + ], + [ + 109.3613802, + -0.0455122 + ], + [ + 109.361376, + -0.045501 + ], + [ + 109.3613759, + -0.0454939 + ], + [ + 109.3613779, + -0.0454862 + ], + [ + 109.3613794, + -0.0454801 + ], + [ + 109.3613783, + -0.0454737 + ], + [ + 109.3613763, + -0.0454691 + ], + [ + 109.3613709, + -0.0454592 + ], + [ + 109.361363, + -0.0454468 + ], + [ + 109.3613582, + -0.0454384 + ], + [ + 109.361357, + -0.0454301 + ], + [ + 109.3613588, + -0.0454207 + ], + [ + 109.3613658, + -0.0454105 + ], + [ + 109.3613843, + -0.04538 + ], + [ + 109.3613836, + -0.0453706 + ], + [ + 109.3613809, + -0.0453622 + ], + [ + 109.3613742, + -0.0453528 + ], + [ + 109.3613199, + -0.0452894 + ] + ] + }, + "id": "way/809401135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809404963", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552062, + -0.0488369 + ], + [ + 109.3554984, + -0.048515 + ], + [ + 109.3555257, + -0.0484849 + ], + [ + 109.3555847, + -0.0484226 + ] + ] + }, + "id": "way/809404963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809447975", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533489, + -0.0364251 + ], + [ + 109.353386, + -0.0364837 + ] + ] + }, + "id": "way/809447975" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809447976", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532532, + -0.0362555 + ], + [ + 109.3533489, + -0.0364251 + ] + ] + }, + "id": "way/809447976" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809454919", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600194, + -0.038941 + ], + [ + 109.359553, + -0.0395431 + ] + ] + }, + "id": "way/809454919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809454920", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556194, + -0.0389254 + ], + [ + 109.3554579, + -0.0386956 + ] + ] + }, + "id": "way/809454920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/809828144", + "access": "yes", + "highway": "tertiary", + "motor_vehicle": "yes", + "name": "Jalan Teuku Umar", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317134, + -0.0338893 + ], + [ + 109.3317951, + -0.0339933 + ], + [ + 109.331916, + -0.0341386 + ] + ] + }, + "id": "way/809828144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/810050287", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555688, + 0.0148192 + ], + [ + 109.3552148, + 0.0134191 + ], + [ + 109.3549841, + 0.0122926 + ], + [ + 109.3548178, + 0.0116059 + ], + [ + 109.3546915, + 0.0110614 + ] + ] + }, + "id": "way/810050287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/810050288", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529092, + 0.0174451 + ], + [ + 109.3525366, + 0.0167825 + ], + [ + 109.3528812, + 0.0166216 + ], + [ + 109.3538415, + 0.0160316 + ], + [ + 109.3546086, + 0.0155005 + ], + [ + 109.3554133, + 0.0149587 + ], + [ + 109.3555688, + 0.0148192 + ] + ] + }, + "id": "way/810050288" + }, + { + "type": "Feature", + "properties": { + "@id": "way/810050289", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558589, + 0.015822 + ], + [ + 109.3555366, + 0.0153235 + ], + [ + 109.3554133, + 0.0149587 + ] + ] + }, + "id": "way/810050289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/810501205", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "motor_vehicle": "destination", + "name": "Jalan Suwignyo" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144624, + -0.0216696 + ], + [ + 109.3144897, + -0.0217878 + ] + ] + }, + "id": "way/810501205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812404358", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472948, + -0.0346393 + ], + [ + 109.3473822, + -0.034831 + ] + ] + }, + "id": "way/812404358" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812603943", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354824, + -0.0488645 + ], + [ + 109.3354742, + -0.0489063 + ], + [ + 109.3354634, + -0.0489524 + ] + ] + }, + "id": "way/812603943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812604329", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425892, + -0.0430954 + ], + [ + 109.3429328, + -0.0433616 + ], + [ + 109.3431552, + -0.0435459 + ], + [ + 109.3433896, + -0.0437333 + ], + [ + 109.3435579, + -0.0438466 + ] + ] + }, + "id": "way/812604329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812635266", + "highway": "tertiary", + "name": "Jalan Parit Haji Husein 2", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341381, + -0.0898151 + ], + [ + 109.3414652, + -0.0896642 + ], + [ + 109.3416796, + -0.0892908 + ], + [ + 109.3417748, + -0.0891308 + ], + [ + 109.3419045, + -0.0889321 + ], + [ + 109.3420988, + -0.0886109 + ], + [ + 109.342185, + -0.088462 + ], + [ + 109.3423061, + -0.0882528 + ], + [ + 109.3424973, + -0.0879126 + ], + [ + 109.3425233, + -0.0878684 + ] + ] + }, + "id": "way/812635266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812635267", + "highway": "tertiary", + "name": "Jalan Parit Haji Husein 2", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413128, + -0.0899297 + ], + [ + 109.3413318, + -0.0898978 + ], + [ + 109.341381, + -0.0898151 + ] + ] + }, + "id": "way/812635267" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812635268", + "highway": "tertiary", + "name": "Jalan Parit Haji Husein 2", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425233, + -0.0878684 + ], + [ + 109.3427113, + -0.0875645 + ], + [ + 109.3428392, + -0.08736 + ] + ] + }, + "id": "way/812635268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812635269", + "highway": "tertiary", + "name": "Jalan Parit Haji Husein 2", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428392, + -0.08736 + ], + [ + 109.3431243, + -0.0868641 + ], + [ + 109.3431764, + -0.0867786 + ], + [ + 109.3433421, + -0.0865216 + ], + [ + 109.3435403, + -0.0861503 + ], + [ + 109.3435653, + -0.0861083 + ], + [ + 109.3437263, + -0.085834 + ], + [ + 109.3437524, + -0.0857896 + ], + [ + 109.3441471, + -0.0851288 + ], + [ + 109.3445662, + -0.0844587 + ], + [ + 109.3446688, + -0.0842863 + ], + [ + 109.3447561, + -0.0841238 + ] + ] + }, + "id": "way/812635269" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812635270", + "highway": "tertiary", + "lanes": "2", + "name": "Jalan Parit Haji Husein 2", + "surface": "asphalt", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447561, + -0.0841238 + ], + [ + 109.3447704, + -0.0841013 + ], + [ + 109.3455118, + -0.0829331 + ], + [ + 109.3457489, + -0.082542 + ], + [ + 109.3458905, + -0.0823093 + ], + [ + 109.3459551, + -0.0821981 + ], + [ + 109.3460697, + -0.0820026 + ], + [ + 109.3461072, + -0.0819365 + ], + [ + 109.3462914, + -0.081637 + ], + [ + 109.346441, + -0.0813989 + ], + [ + 109.3465688, + -0.0811879 + ], + [ + 109.346719, + -0.08094 + ], + [ + 109.3467625, + -0.0808614 + ], + [ + 109.3469195, + -0.080578 + ], + [ + 109.3469579, + -0.080495 + ], + [ + 109.347155, + -0.0801313 + ], + [ + 109.3471651, + -0.0801126 + ], + [ + 109.3473457, + -0.0797735 + ], + [ + 109.3473612, + -0.0797445 + ], + [ + 109.3474811, + -0.079559 + ], + [ + 109.3475615, + -0.0794115 + ], + [ + 109.3477526, + -0.0790606 + ], + [ + 109.3479071, + -0.0787921 + ], + [ + 109.3483584, + -0.0779286 + ], + [ + 109.3485206, + -0.077608 + ], + [ + 109.3485495, + -0.0775558 + ], + [ + 109.3487033, + -0.0772784 + ], + [ + 109.3487738, + -0.0771477 + ], + [ + 109.3489078, + -0.0768711 + ], + [ + 109.349148, + -0.0764104 + ], + [ + 109.3492808, + -0.0761693 + ], + [ + 109.3493572, + -0.0760298 + ], + [ + 109.3495023, + -0.0757658 + ], + [ + 109.3495293, + -0.0757166 + ], + [ + 109.3496737, + -0.075454 + ], + [ + 109.3497245, + -0.0753616 + ], + [ + 109.3498253, + -0.0751782 + ], + [ + 109.3500026, + -0.0748556 + ], + [ + 109.3501216, + -0.0746496 + ], + [ + 109.3501928, + -0.0745097 + ], + [ + 109.3502982, + -0.0743179 + ], + [ + 109.3504998, + -0.0739522 + ], + [ + 109.350571, + -0.0738217 + ], + [ + 109.3507022, + -0.073589 + ], + [ + 109.3507795, + -0.0734519 + ], + [ + 109.3508902, + -0.0732556 + ], + [ + 109.3512099, + -0.0727692 + ], + [ + 109.3513121, + -0.0726138 + ], + [ + 109.3515078, + -0.0722097 + ], + [ + 109.3516467, + -0.0719758 + ], + [ + 109.3517211, + -0.0718352 + ], + [ + 109.3518806, + -0.0715155 + ], + [ + 109.3519278, + -0.0714275 + ], + [ + 109.3522258, + -0.0709371 + ], + [ + 109.3523446, + -0.0707245 + ], + [ + 109.3524681, + -0.0705201 + ], + [ + 109.352518, + -0.0704269 + ], + [ + 109.3526586, + -0.0701686 + ], + [ + 109.3527065, + -0.0700878 + ], + [ + 109.3528723, + -0.0698078 + ], + [ + 109.3529946, + -0.069575 + ], + [ + 109.3531172, + -0.0693418 + ], + [ + 109.3532843, + -0.0690462 + ], + [ + 109.3533415, + -0.0689487 + ], + [ + 109.3533906, + -0.0688429 + ], + [ + 109.3534981, + -0.0686257 + ], + [ + 109.3537002, + -0.0682594 + ], + [ + 109.3537816, + -0.0681032 + ], + [ + 109.3538701, + -0.067946 + ], + [ + 109.3538953, + -0.0679032 + ], + [ + 109.3541384, + -0.0674623 + ], + [ + 109.354247, + -0.0672366 + ], + [ + 109.3542555, + -0.0672189 + ], + [ + 109.3544193, + -0.06691 + ], + [ + 109.354493, + -0.0667709 + ], + [ + 109.3545442, + -0.0667017 + ], + [ + 109.354678, + -0.066478 + ], + [ + 109.3547228, + -0.0664063 + ], + [ + 109.3548384, + -0.0662141 + ], + [ + 109.354874, + -0.0661506 + ], + [ + 109.3550483, + -0.0658343 + ], + [ + 109.3550916, + -0.0657625 + ], + [ + 109.3552549, + -0.0654433 + ], + [ + 109.3553554, + -0.0652724 + ], + [ + 109.3554519, + -0.0651026 + ], + [ + 109.355679, + -0.0647223 + ], + [ + 109.3559229, + -0.0643004 + ], + [ + 109.355947, + -0.0642586 + ], + [ + 109.3559756, + -0.0642101 + ], + [ + 109.3561754, + -0.063864 + ] + ] + }, + "id": "way/812635270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659764", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2805044, + -0.0317031 + ], + [ + 109.2807445, + -0.0320583 + ] + ] + }, + "id": "way/812659764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659767", + "highway": "residential", + "import": "yes", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2903078, + -0.0163839 + ], + [ + 109.2896144, + -0.0142372 + ], + [ + 109.2892203, + -0.0129033 + ] + ] + }, + "id": "way/812659767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659768", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe;local knowledge" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2903485, + -0.0165033 + ], + [ + 109.2903078, + -0.0163839 + ] + ] + }, + "id": "way/812659768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659769", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2972185, + -0.0195859 + ], + [ + 109.297055, + -0.019562 + ], + [ + 109.2970287, + -0.0195598 + ], + [ + 109.2969984, + -0.0195617 + ], + [ + 109.296963, + -0.0195654 + ], + [ + 109.2966745, + -0.0196163 + ], + [ + 109.2953033, + -0.0197678 + ] + ] + }, + "id": "way/812659769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659770", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090113, + -0.0162242 + ], + [ + 109.3090281, + -0.0160117 + ] + ] + }, + "id": "way/812659770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659771", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090024, + -0.0163402 + ], + [ + 109.3090113, + -0.0162242 + ] + ] + }, + "id": "way/812659771" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659772", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090545, + -0.0157535 + ], + [ + 109.3090645, + -0.0157066 + ] + ] + }, + "id": "way/812659772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659773", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090281, + -0.0160117 + ], + [ + 109.3090545, + -0.0157535 + ] + ] + }, + "id": "way/812659773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659774", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089692, + -0.0156796 + ], + [ + 109.3089457, + -0.0156728 + ] + ] + }, + "id": "way/812659774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659775", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090482, + -0.0157025 + ], + [ + 109.3089692, + -0.0156796 + ] + ] + }, + "id": "way/812659775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659776", + "highway": "service", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088658, + -0.0172041 + ], + [ + 109.3088558, + -0.0172048 + ] + ] + }, + "id": "way/812659776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659777", + "bridge": "yes", + "highway": "service", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089471, + -0.0171987 + ], + [ + 109.3088658, + -0.0172041 + ] + ] + }, + "id": "way/812659777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659778", + "highway": "residential", + "name": "Jalan Perumahan The Green Boulevard" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.294747, + -0.0361976 + ], + [ + 109.2949773, + -0.0364694 + ], + [ + 109.2958762, + -0.0375577 + ], + [ + 109.296875, + -0.0387774 + ] + ] + }, + "id": "way/812659778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659779", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3000443, + -0.0382285 + ], + [ + 109.2984523, + -0.0389585 + ] + ] + }, + "id": "way/812659779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659780", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983899, + -0.0389871 + ], + [ + 109.2983854, + -0.0389892 + ] + ] + }, + "id": "way/812659780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659781", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2984523, + -0.0389585 + ], + [ + 109.2983899, + -0.0389871 + ] + ] + }, + "id": "way/812659781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659782", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2985178, + -0.0392494 + ], + [ + 109.2985133, + -0.0392514 + ] + ] + }, + "id": "way/812659782" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659783", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2985834, + -0.0392202 + ], + [ + 109.2985178, + -0.0392494 + ] + ] + }, + "id": "way/812659783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659784", + "highway": "residential", + "name": "Jalan Perumahan The Green View" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2934101, + -0.03407 + ], + [ + 109.2948885, + -0.036076 + ] + ] + }, + "id": "way/812659784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659785", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2918664, + -0.0342718 + ], + [ + 109.2918698, + -0.0342754 + ], + [ + 109.292408, + -0.0349313 + ], + [ + 109.2928954, + -0.0355132 + ] + ] + }, + "id": "way/812659785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659786", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2917185, + -0.0341109 + ], + [ + 109.2918664, + -0.0342718 + ] + ] + }, + "id": "way/812659786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812659787", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950491, + -0.0400413 + ], + [ + 109.2937927, + -0.0384654 + ], + [ + 109.293499, + -0.0380969 + ], + [ + 109.2931183, + -0.0376392 + ] + ] + }, + "id": "way/812659787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812662492", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940861, + -0.045656 + ], + [ + 109.2940827, + -0.0456596 + ] + ] + }, + "id": "way/812662492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812662493", + "highway": "residential", + "name": "Jalan Perumahan Ampera Emerald" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2939769, + -0.045779 + ], + [ + 109.2925568, + -0.0472463 + ], + [ + 109.2922635, + -0.0475629 + ] + ] + }, + "id": "way/812662493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812662494", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940827, + -0.0456596 + ], + [ + 109.2939769, + -0.045779 + ] + ] + }, + "id": "way/812662494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812662497", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2988306, + -0.028815 + ], + [ + 109.2988554, + -0.0288609 + ] + ] + }, + "id": "way/812662497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812662498", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2987207, + -0.0286406 + ], + [ + 109.2988306, + -0.028815 + ] + ] + }, + "id": "way/812662498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810821", + "highway": "footway", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2860055, + -0.0143337 + ], + [ + 109.2860169, + -0.0143183 + ], + [ + 109.2860229, + -0.0142814 + ], + [ + 109.2860233, + -0.0139977 + ], + [ + 109.2860363, + -0.0138442 + ], + [ + 109.2860305, + -0.0135986 + ] + ] + }, + "id": "way/812810821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810823", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2856047, + -0.0150664 + ], + [ + 109.2858432, + -0.0151199 + ] + ] + }, + "id": "way/812810823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810824", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427113, + -0.0875645 + ], + [ + 109.3431587, + -0.0878398 + ], + [ + 109.3438045, + -0.0882322 + ], + [ + 109.345027, + -0.0889932 + ] + ] + }, + "id": "way/812810824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810825", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450691, + -0.0892278 + ], + [ + 109.344998, + -0.0894074 + ] + ] + }, + "id": "way/812810825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810826", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387137, + -0.0883374 + ], + [ + 109.3398412, + -0.08893 + ], + [ + 109.341381, + -0.0898151 + ] + ] + }, + "id": "way/812810826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810827", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413318, + -0.0898978 + ], + [ + 109.3418948, + -0.0901488 + ] + ] + }, + "id": "way/812810827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810828", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445662, + -0.0844587 + ], + [ + 109.3449657, + -0.0847235 + ], + [ + 109.3458307, + -0.0853055 + ], + [ + 109.3469756, + -0.086065 + ], + [ + 109.3469902, + -0.0860832 + ] + ] + }, + "id": "way/812810828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810829", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449657, + -0.0847235 + ], + [ + 109.3447849, + -0.0850059 + ], + [ + 109.3447767, + -0.0850387 + ], + [ + 109.3447919, + -0.0850692 + ], + [ + 109.3456262, + -0.0856316 + ], + [ + 109.3467659, + -0.0863998 + ], + [ + 109.3467946, + -0.0864056 + ], + [ + 109.3468188, + -0.0863913 + ], + [ + 109.3469883, + -0.0861097 + ], + [ + 109.3469902, + -0.0860832 + ] + ] + }, + "id": "way/812810829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810830", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575157, + -0.075689 + ], + [ + 109.3577073, + -0.0753371 + ], + [ + 109.3578537, + -0.0751307 + ], + [ + 109.3579098, + -0.0750516 + ], + [ + 109.3581462, + -0.0746846 + ], + [ + 109.3583647, + -0.0743418 + ], + [ + 109.3585845, + -0.0739962 + ], + [ + 109.3587976, + -0.0736258 + ] + ] + }, + "id": "way/812810830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810831", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587976, + -0.0736258 + ], + [ + 109.3585348, + -0.0734403 + ] + ] + }, + "id": "way/812810831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/812810849", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447704, + -0.0841013 + ], + [ + 109.3456721, + -0.084713 + ], + [ + 109.3459885, + -0.0849523 + ] + ] + }, + "id": "way/812810849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/813767508", + "bridge": "yes", + "colour": "#606060", + "highway": "residential", + "layer": "1", + "name": "Purnama Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3357969, + -0.049641 + ], + [ + 109.3358309, + -0.0497137 + ] + ] + }, + "id": "way/813767508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/813812008", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406066, + -0.0467261 + ], + [ + 109.3406196, + -0.0467512 + ], + [ + 109.3406458, + -0.0467955 + ], + [ + 109.3406676, + -0.0469145 + ], + [ + 109.3407085, + -0.0469621 + ] + ] + }, + "id": "way/813812008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814049851", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404007, + -0.0422961 + ], + [ + 109.3403665, + -0.0422944 + ], + [ + 109.3403464, + -0.0422854 + ], + [ + 109.3403316, + -0.0422716 + ], + [ + 109.3399789, + -0.0418351 + ], + [ + 109.3399715, + -0.0418197 + ], + [ + 109.3399668, + -0.0418069 + ], + [ + 109.3399682, + -0.0417922 + ], + [ + 109.3399762, + -0.0417761 + ], + [ + 109.3403171, + -0.0415025 + ] + ] + }, + "id": "way/814049851" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814064163", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337021, + -0.010136 + ], + [ + 109.3371385, + -0.0102923 + ] + ] + }, + "id": "way/814064163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814093085", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426377, + -0.0153564 + ], + [ + 109.3426941, + -0.0152066 + ], + [ + 109.3427066, + -0.0151529 + ], + [ + 109.3427181, + -0.0150881 + ] + ] + }, + "id": "way/814093085" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814101818", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359911, + -0.0408527 + ], + [ + 109.3363184, + -0.0406113 + ], + [ + 109.3364578, + -0.0405081 + ], + [ + 109.3365544, + -0.0404289 + ], + [ + 109.3365799, + -0.0404035 + ], + [ + 109.3366148, + -0.0403981 + ], + [ + 109.3366443, + -0.0403967 + ], + [ + 109.3366818, + -0.0404075 + ], + [ + 109.3367127, + -0.0404262 + ], + [ + 109.3370359, + -0.0408246 + ], + [ + 109.3376407, + -0.0416212 + ], + [ + 109.3380155, + -0.0420513 + ] + ] + }, + "id": "way/814101818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814101819", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372592, + -0.0419669 + ], + [ + 109.3373235, + -0.0417962 + ] + ] + }, + "id": "way/814101819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814101820", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361527, + -0.0420879 + ], + [ + 109.3364766, + -0.042228 + ], + [ + 109.3365108, + -0.0422394 + ], + [ + 109.3365309, + -0.0422408 + ], + [ + 109.336547, + -0.0422354 + ], + [ + 109.3365598, + -0.0422267 + ], + [ + 109.3365732, + -0.0422146 + ], + [ + 109.3366718, + -0.0419591 + ] + ] + }, + "id": "way/814101820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814101821", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360162, + -0.0421767 + ], + [ + 109.3361413, + -0.0420986 + ], + [ + 109.3361527, + -0.0420879 + ], + [ + 109.3361668, + -0.0420745 + ], + [ + 109.3361883, + -0.0420396 + ], + [ + 109.3362178, + -0.0419658 + ], + [ + 109.3362579, + -0.0418621 + ] + ] + }, + "id": "way/814101821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814101822", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379911, + -0.0420994 + ], + [ + 109.3373235, + -0.0417962 + ], + [ + 109.337293, + -0.0417808 + ], + [ + 109.3372481, + -0.0417523 + ], + [ + 109.3372032, + -0.0417224 + ] + ] + }, + "id": "way/814101822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814101823", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372592, + -0.0419669 + ], + [ + 109.3371636, + -0.041935 + ], + [ + 109.3371482, + -0.0419333 + ], + [ + 109.337117, + -0.041932 + ], + [ + 109.3370801, + -0.0419394 + ], + [ + 109.3370305, + -0.0419521 + ], + [ + 109.3369903, + -0.0419658 + ], + [ + 109.3369678, + -0.0419715 + ], + [ + 109.3369433, + -0.0419732 + ], + [ + 109.3369168, + -0.0419695 + ], + [ + 109.3368665, + -0.0419514 + ], + [ + 109.3367827, + -0.0419424 + ], + [ + 109.3367583, + -0.0419444 + ], + [ + 109.336711, + -0.0419508 + ], + [ + 109.3366718, + -0.0419591 + ], + [ + 109.3366423, + -0.0419628 + ], + [ + 109.3366057, + -0.0419642 + ], + [ + 109.3365641, + -0.0419571 + ], + [ + 109.3363801, + -0.0418979 + ], + [ + 109.3362579, + -0.0418621 + ], + [ + 109.3359737, + -0.0417513 + ], + [ + 109.335901, + -0.0417268 + ], + [ + 109.3358694, + -0.041703 + ], + [ + 109.3358574, + -0.0416862 + ], + [ + 109.3358476, + -0.0416467 + ], + [ + 109.335845, + -0.0416024 + ], + [ + 109.3358503, + -0.0415461 + ], + [ + 109.3360609, + -0.0409546 + ] + ] + }, + "id": "way/814101823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814101824", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359251, + -0.0407236 + ], + [ + 109.3359911, + -0.0408527 + ], + [ + 109.3360206, + -0.040909 + ], + [ + 109.3360609, + -0.0409546 + ], + [ + 109.3361467, + -0.0410029 + ], + [ + 109.3367422, + -0.0412631 + ], + [ + 109.3367609, + -0.0412805 + ], + [ + 109.3367743, + -0.0413154 + ], + [ + 109.3367797, + -0.0413489 + ], + [ + 109.3367784, + -0.0413851 + ], + [ + 109.3367851, + -0.0414079 + ], + [ + 109.3367998, + -0.0414254 + ], + [ + 109.3368199, + -0.0414374 + ], + [ + 109.3369353, + -0.041483 + ], + [ + 109.3371136, + -0.0415488 + ], + [ + 109.3371264, + -0.0415565 + ], + [ + 109.3371374, + -0.041569 + ], + [ + 109.3371407, + -0.0415783 + ], + [ + 109.3371425, + -0.0415899 + ], + [ + 109.337143, + -0.0416052 + ], + [ + 109.3371445, + -0.0416212 + ], + [ + 109.3371405, + -0.0416601 + ], + [ + 109.3371459, + -0.0416744 + ], + [ + 109.3371509, + -0.0416844 + ], + [ + 109.3371619, + -0.0416936 + ], + [ + 109.3372032, + -0.0417224 + ] + ] + }, + "id": "way/814101824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814101825", + "highway": "service", + "service": "driveway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367777, + -0.043236 + ], + [ + 109.3369637, + -0.0430883 + ], + [ + 109.3365222, + -0.0424352 + ] + ] + }, + "id": "way/814101825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814128687", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343647, + -0.0145408 + ], + [ + 109.3436658, + -0.0145502 + ] + ] + }, + "id": "way/814128687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814128688", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391751, + -0.008609 + ], + [ + 109.3391925, + -0.0086251 + ] + ] + }, + "id": "way/814128688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814128689", + "highway": "trunk", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396503, + -0.015363 + ], + [ + 109.3396691, + -0.0153818 + ], + [ + 109.3402505, + -0.0159448 + ], + [ + 109.3406773, + -0.0163369 + ], + [ + 109.3407144, + -0.0163689 + ], + [ + 109.3407508, + -0.0164025 + ], + [ + 109.3411264, + -0.0167495 + ], + [ + 109.3411806, + -0.0167992 + ], + [ + 109.3412988, + -0.0169076 + ], + [ + 109.3414515, + -0.0170476 + ], + [ + 109.3414735, + -0.0170677 + ], + [ + 109.3415711, + -0.0171568 + ], + [ + 109.3416297, + -0.0172103 + ], + [ + 109.3416888, + -0.0172644 + ], + [ + 109.3417615, + -0.0173212 + ], + [ + 109.3418583, + -0.0173888 + ], + [ + 109.3419805, + -0.0174639 + ], + [ + 109.3421236, + -0.0175379 + ], + [ + 109.3425056, + -0.0177261 + ] + ] + }, + "id": "way/814128689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814128690", + "bridge": "yes", + "highway": "trunk", + "layer": "1", + "name": "Gusti Situt Mahmud" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395605, + -0.0152759 + ], + [ + 109.3396503, + -0.015363 + ] + ] + }, + "id": "way/814128690" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814142237", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366265, + -0.0349241 + ], + [ + 109.3367697, + -0.0347996 + ] + ] + }, + "id": "way/814142237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814142238", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401822, + -0.0364965 + ], + [ + 109.3403123, + -0.0363896 + ] + ] + }, + "id": "way/814142238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814142239", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394539, + -0.0354521 + ], + [ + 109.3393372, + -0.0353381 + ], + [ + 109.3393278, + -0.0353314 + ], + [ + 109.3393171, + -0.0353301 + ], + [ + 109.339309, + -0.0353327 + ], + [ + 109.3392266, + -0.0354083 + ] + ] + }, + "id": "way/814142239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814146190", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353803, + -0.0359782 + ], + [ + 109.3349196, + -0.0354291 + ] + ] + }, + "id": "way/814146190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814321766", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326578, + 0.0274907 + ], + [ + 109.3269124, + 0.027489 + ], + [ + 109.3276154, + 0.0274879 + ] + ] + }, + "id": "way/814321766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814321767", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276154, + 0.0274879 + ], + [ + 109.3284825, + 0.0275582 + ] + ] + }, + "id": "way/814321767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814514084", + "access": "yes", + "bicycle": "yes", + "highway": "service", + "motor_vehicle": "yes", + "oneway": "reversible" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3381953, + -0.0460683 + ], + [ + 109.3382089, + -0.0467835 + ], + [ + 109.3381758, + -0.0469615 + ], + [ + 109.3381315, + -0.0471009 + ], + [ + 109.3380819, + -0.0472055 + ], + [ + 109.3380303, + -0.047288 + ], + [ + 109.3379458, + -0.0473779 + ], + [ + 109.337858, + -0.0474483 + ], + [ + 109.3377513, + -0.0475153 + ], + [ + 109.3376581, + -0.0475603 + ], + [ + 109.3375381, + -0.0475911 + ], + [ + 109.3374228, + -0.0476092 + ], + [ + 109.3372504, + -0.0475589 + ], + [ + 109.3371358, + -0.047512 + ], + [ + 109.3370493, + -0.0474664 + ], + [ + 109.3369762, + -0.0473987 + ], + [ + 109.3369098, + -0.0473249 + ], + [ + 109.3368387, + -0.047235 + ], + [ + 109.336769, + -0.0471137 + ], + [ + 109.3366885, + -0.0469521 + ], + [ + 109.3366313, + -0.0468472 + ], + [ + 109.3366013, + -0.0467744 + ], + [ + 109.3365792, + -0.0466919 + ], + [ + 109.3365638, + -0.0465906 + ], + [ + 109.3365482, + -0.0464846 + ], + [ + 109.3365568, + -0.0461625 + ], + [ + 109.3365695, + -0.0459938 + ] + ] + }, + "id": "way/814514084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814703038", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249833, + -0.0026666 + ], + [ + 109.324773, + -0.002913 + ] + ] + }, + "id": "way/814703038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814827224", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431627, + -0.0508946 + ], + [ + 109.343706, + -0.0503965 + ] + ] + }, + "id": "way/814827224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814827225", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430462, + -0.0507854 + ], + [ + 109.3436012, + -0.0502921 + ] + ] + }, + "id": "way/814827225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814827226", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432565, + -0.0509852 + ], + [ + 109.3431627, + -0.0508946 + ], + [ + 109.3430462, + -0.0507854 + ], + [ + 109.342985, + -0.0507279 + ], + [ + 109.3429314, + -0.0506716 + ], + [ + 109.342924, + -0.0506455 + ], + [ + 109.3429247, + -0.050622 + ], + [ + 109.3429475, + -0.0505932 + ], + [ + 109.3431788, + -0.0503806 + ], + [ + 109.343394, + -0.0501794 + ], + [ + 109.3434262, + -0.050164 + ], + [ + 109.343453, + -0.0501613 + ], + [ + 109.3434779, + -0.0501727 + ], + [ + 109.3436012, + -0.0502921 + ], + [ + 109.343706, + -0.0503965 + ], + [ + 109.3438064, + -0.0504967 + ] + ] + }, + "id": "way/814827226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814827227", + "access": "private", + "highway": "service", + "oneway": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432672, + -0.0511579 + ], + [ + 109.3431677, + -0.051075 + ] + ] + }, + "id": "way/814827227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814850462", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337249, + -0.0495593 + ], + [ + 109.3374234, + -0.0500581 + ], + [ + 109.3374375, + -0.0500765 + ], + [ + 109.337455, + -0.0500835 + ], + [ + 109.3374754, + -0.0500815 + ], + [ + 109.3377285, + -0.0499964 + ], + [ + 109.3377406, + -0.049987 + ], + [ + 109.3377493, + -0.0499709 + ], + [ + 109.3377513, + -0.0499528 + ], + [ + 109.3375826, + -0.0494362 + ] + ] + }, + "id": "way/814850462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814868084", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370057, + -0.0442678 + ], + [ + 109.3370848, + -0.0443651 + ] + ] + }, + "id": "way/814868084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814884288", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328099, + -0.0687146 + ], + [ + 109.3328282, + -0.0686891 + ], + [ + 109.3323942, + -0.0682852 + ] + ] + }, + "id": "way/814884288" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814929562", + "highway": "residential", + "name": "Jalan Hijas 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443513, + -0.0361851 + ], + [ + 109.3444504, + -0.036594 + ] + ] + }, + "id": "way/814929562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/814931775", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448415, + -0.0364012 + ], + [ + 109.3447526, + -0.0361361 + ], + [ + 109.3446802, + -0.0358424 + ], + [ + 109.3446051, + -0.0354481 + ] + ] + }, + "id": "way/814931775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815182326", + "highway": "unclassified", + "name": "Jalan Karna Sosial" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192857, + -0.0538325 + ], + [ + 109.3194828, + -0.0535893 + ], + [ + 109.3196773, + -0.0533163 + ], + [ + 109.3200005, + -0.0528496 + ], + [ + 109.3203317, + -0.0523815 + ], + [ + 109.3207039, + -0.0518585 + ], + [ + 109.3209748, + -0.0514434 + ], + [ + 109.3212504, + -0.0510196 + ], + [ + 109.3213926, + -0.0507829 + ], + [ + 109.3216259, + -0.0504074 + ], + [ + 109.3216829, + -0.0503095 + ], + [ + 109.321937, + -0.0498763 + ], + [ + 109.3222053, + -0.0494324 + ], + [ + 109.3224795, + -0.0490093 + ], + [ + 109.3224983, + -0.0489875 + ], + [ + 109.3225218, + -0.0489694 + ], + [ + 109.3225436, + -0.048957 + ], + [ + 109.3225664, + -0.048951 + ], + [ + 109.3226002, + -0.048947 + ], + [ + 109.3226408, + -0.0489449 + ], + [ + 109.3226917, + -0.0489486 + ], + [ + 109.3227544, + -0.048961 + ] + ] + }, + "id": "way/815182326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815229575", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246313, + -0.0513153 + ], + [ + 109.3248982, + -0.0514861 + ] + ] + }, + "id": "way/815229575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815229576", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3256459, + -0.0502884 + ], + [ + 109.3258383, + -0.0504041 + ] + ] + }, + "id": "way/815229576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815267928", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220209, + -0.0451966 + ], + [ + 109.321922, + -0.0450921 + ], + [ + 109.321408, + -0.0445487 + ], + [ + 109.3211425, + -0.044268 + ], + [ + 109.3207717, + -0.0438656 + ] + ] + }, + "id": "way/815267928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815267929", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170722, + -0.0439265 + ], + [ + 109.3169464, + -0.0437889 + ] + ] + }, + "id": "way/815267929" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815267930", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170722, + -0.0439265 + ], + [ + 109.3172191, + -0.0441061 + ] + ] + }, + "id": "way/815267930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815371042", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320429, + -0.0469467 + ], + [ + 109.3202355, + -0.0471314 + ], + [ + 109.3202234, + -0.0471512 + ], + [ + 109.3202201, + -0.0471697 + ], + [ + 109.3202198, + -0.0471864 + ], + [ + 109.3202265, + -0.0472099 + ], + [ + 109.3202392, + -0.0472297 + ], + [ + 109.3202714, + -0.0472629 + ], + [ + 109.3202945, + -0.0472847 + ], + [ + 109.3203039, + -0.0472999 + ], + [ + 109.3203101, + -0.0473152 + ], + [ + 109.3203131, + -0.0473276 + ], + [ + 109.3203155, + -0.0473425 + ], + [ + 109.3203143, + -0.0473537 + ], + [ + 109.3203116, + -0.0473619 + ], + [ + 109.3203049, + -0.0473715 + ] + ] + }, + "id": "way/815371042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815371043", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200615, + -0.0475931 + ], + [ + 109.3202387, + -0.0474309 + ], + [ + 109.3203049, + -0.0473715 + ] + ] + }, + "id": "way/815371043" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815371044", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199949, + -0.0471684 + ], + [ + 109.3202387, + -0.0474309 + ] + ] + }, + "id": "way/815371044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815395022", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182497, + -0.0439896 + ], + [ + 109.3184884, + -0.0442377 + ] + ] + }, + "id": "way/815395022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815395023", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184227, + -0.0455278 + ], + [ + 109.3185778, + -0.0456843 + ] + ] + }, + "id": "way/815395023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815395024", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318487, + -0.0457692 + ], + [ + 109.3185778, + -0.0456843 + ], + [ + 109.3187587, + -0.0455059 + ] + ] + }, + "id": "way/815395024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815395026", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319572, + -0.0479854 + ], + [ + 109.3196328, + -0.0479215 + ], + [ + 109.3197548, + -0.0477983 + ] + ] + }, + "id": "way/815395026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815395027", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194241, + -0.0477064 + ], + [ + 109.3196328, + -0.0479215 + ] + ] + }, + "id": "way/815395027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815395028", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195526, + -0.0475844 + ], + [ + 109.3197548, + -0.0477983 + ], + [ + 109.3199676, + -0.0480236 + ] + ] + }, + "id": "way/815395028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815395029", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199794, + -0.0486581 + ], + [ + 109.320091, + -0.0485312 + ], + [ + 109.3201219, + -0.048491 + ], + [ + 109.3201547, + -0.0484347 + ], + [ + 109.3201903, + -0.0483649 + ], + [ + 109.3202265, + -0.0482831 + ] + ] + }, + "id": "way/815395029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815395030", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199388, + -0.0487961 + ], + [ + 109.3198023, + -0.0486216 + ], + [ + 109.3197961, + -0.0486068 + ], + [ + 109.3197926, + -0.0485929 + ], + [ + 109.3197913, + -0.0485745 + ], + [ + 109.3197943, + -0.048559 + ], + [ + 109.3198054, + -0.0485329 + ], + [ + 109.3198258, + -0.0484809 + ] + ] + }, + "id": "way/815395030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815395031", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202198, + -0.0489356 + ], + [ + 109.320171, + -0.0490048 + ], + [ + 109.3201607, + -0.0490159 + ], + [ + 109.3201495, + -0.0490236 + ], + [ + 109.320141, + -0.0490274 + ], + [ + 109.3201344, + -0.049029 + ], + [ + 109.3201212, + -0.0490294 + ], + [ + 109.3201154, + -0.0490289 + ], + [ + 109.3201089, + -0.0490264 + ], + [ + 109.3200987, + -0.0490185 + ], + [ + 109.3200887, + -0.049008 + ], + [ + 109.3199931, + -0.0488926 + ] + ] + }, + "id": "way/815395031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815400175", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255354, + -0.0448264 + ], + [ + 109.3255962, + -0.0449324 + ], + [ + 109.3257089, + -0.0449136 + ], + [ + 109.3259275, + -0.0452655 + ] + ] + }, + "id": "way/815400175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815400176", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207967, + -0.0463952 + ], + [ + 109.3210727, + -0.046657 + ] + ] + }, + "id": "way/815400176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815405325", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320028, + -0.04935 + ], + [ + 109.3201145, + -0.0492688 + ], + [ + 109.3201373, + -0.049244 + ], + [ + 109.3201483, + -0.0492236 + ], + [ + 109.3201547, + -0.0491974 + ], + [ + 109.3201571, + -0.0491719 + ], + [ + 109.3201554, + -0.0491481 + ], + [ + 109.3201467, + -0.0490837 + ], + [ + 109.3201344, + -0.049029 + ] + ] + }, + "id": "way/815405325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815405326", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204149, + -0.0462141 + ], + [ + 109.3205698, + -0.0460502 + ] + ] + }, + "id": "way/815405326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815405328", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190309, + -0.0427826 + ], + [ + 109.3192381, + -0.0430387 + ] + ] + }, + "id": "way/815405328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815405329", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185735, + -0.0431769 + ], + [ + 109.318708, + -0.043312 + ], + [ + 109.3187908, + -0.0433918 + ], + [ + 109.318827, + -0.0434253 + ] + ] + }, + "id": "way/815405329" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815406931", + "highway": "service", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187747, + -0.0472793 + ], + [ + 109.318831, + -0.047223 + ], + [ + 109.3188793, + -0.0471908 + ], + [ + 109.3189397, + -0.0471693 + ], + [ + 109.3190221, + -0.0471539 + ], + [ + 109.319167, + -0.0471385 + ], + [ + 109.3195841, + -0.047113 + ], + [ + 109.3197604, + -0.0470922 + ], + [ + 109.3198141, + -0.0470875 + ] + ] + }, + "id": "way/815406931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/815408968", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185326, + -0.0475502 + ], + [ + 109.3186882, + -0.0473812 + ] + ] + }, + "id": "way/815408968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816061198", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3177892, + -0.0572481 + ], + [ + 109.3170337, + -0.0569103 + ] + ] + }, + "id": "way/816061198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816069863", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228507, + -0.0534722 + ], + [ + 109.3233946, + -0.053811 + ] + ] + }, + "id": "way/816069863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816069864", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228644, + -0.0595504 + ], + [ + 109.3228202, + -0.0595014 + ] + ] + }, + "id": "way/816069864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816069865", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229301, + -0.059661 + ], + [ + 109.3228644, + -0.0595504 + ] + ] + }, + "id": "way/816069865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816069866", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220724, + -0.0606383 + ], + [ + 109.3212819, + -0.0601673 + ] + ] + }, + "id": "way/816069866" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816071254", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194801, + -0.0568879 + ], + [ + 109.3195653, + -0.056781 + ], + [ + 109.319633, + -0.0566989 + ], + [ + 109.3196505, + -0.05667 + ], + [ + 109.3196572, + -0.0566556 + ], + [ + 109.3196592, + -0.0566375 + ], + [ + 109.3196575, + -0.0566224 + ], + [ + 109.3196518, + -0.056608 + ], + [ + 109.3196459, + -0.0565993 + ], + [ + 109.319637, + -0.0565899 + ], + [ + 109.3194719, + -0.0564466 + ] + ] + }, + "id": "way/816071254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816071255", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185093, + -0.0563404 + ], + [ + 109.3179037, + -0.0561587 + ] + ] + }, + "id": "way/816071255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816071256", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187169, + -0.056069 + ], + [ + 109.3183033, + -0.0559388 + ] + ] + }, + "id": "way/816071256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816074733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198536, + -0.0559717 + ], + [ + 109.319633, + -0.0558449 + ] + ] + }, + "id": "way/816074733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816074734", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3201205, + -0.0566563 + ], + [ + 109.3203491, + -0.0568795 + ], + [ + 109.3206543, + -0.0571458 + ] + ] + }, + "id": "way/816074734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816074735", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254702, + -0.0525934 + ], + [ + 109.3257187, + -0.0527957 + ], + [ + 109.32594, + -0.052976 + ] + ] + }, + "id": "way/816074735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816074736", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322977, + -0.0522279 + ], + [ + 109.3233338, + -0.0524372 + ] + ] + }, + "id": "way/816074736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816074737", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223257, + -0.0524659 + ], + [ + 109.322214, + -0.0526477 + ] + ] + }, + "id": "way/816074737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816074738", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321286, + -0.0532013 + ], + [ + 109.3216346, + -0.0534618 + ] + ] + }, + "id": "way/816074738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816074739", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188362, + -0.055913 + ], + [ + 109.3195868, + -0.0563136 + ] + ] + }, + "id": "way/816074739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816074740", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188819, + -0.0558534 + ], + [ + 109.3183409, + -0.0556236 + ] + ] + }, + "id": "way/816074740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816081016", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189622, + -0.0570804 + ], + [ + 109.3185112, + -0.0568561 + ] + ] + }, + "id": "way/816081016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816081017", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3183208, + -0.0603583 + ], + [ + 109.3179171, + -0.0600694 + ] + ] + }, + "id": "way/816081017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816081018", + "highway": "residential", + "name": "Komplek Purnama Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227738, + -0.0594659 + ], + [ + 109.3214684, + -0.0586276 + ] + ] + }, + "id": "way/816081018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816081019", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219695, + -0.0560324 + ], + [ + 109.3217272, + -0.0558422 + ] + ] + }, + "id": "way/816081019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816082150", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230601, + -0.0591449 + ], + [ + 109.3223119, + -0.0585338 + ] + ] + }, + "id": "way/816082150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816144103", + "highway": "trunk", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328982, + -0.0176945 + ], + [ + 109.3328525, + -0.0176534 + ], + [ + 109.3327943, + -0.0176052 + ] + ] + }, + "id": "way/816144103" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816216528", + "highway": "trunk", + "name": "Jalan Pahlawan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347994, + -0.0394955 + ], + [ + 109.348043, + -0.039466 + ], + [ + 109.3480986, + -0.0394318 + ] + ] + }, + "id": "way/816216528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816216529", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348061, + -0.0396104 + ], + [ + 109.3480107, + -0.0395265 + ], + [ + 109.347994, + -0.0394955 + ] + ] + }, + "id": "way/816216529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816230758", + "highway": "residential", + "name": "KOMPLEK KARYA MANDIRI RESIDENCE" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3720677, + -0.010052 + ], + [ + 109.3718938, + -0.0123231 + ] + ] + }, + "id": "way/816230758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816237140", + "highway": "residential", + "name": "KOMPLEK MALAYA RIVER VIEW" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.372451, + 0.0006711 + ], + [ + 109.3728928, + 0.0009043 + ], + [ + 109.3728969, + 0.0011077 + ], + [ + 109.3731369, + 0.0011891 + ], + [ + 109.3731857, + 0.0010874 + ], + [ + 109.3747518, + 0.0015714 + ], + [ + 109.3746786, + 0.0018887 + ], + [ + 109.3731125, + 0.0013721 + ], + [ + 109.3731369, + 0.0011891 + ] + ] + }, + "id": "way/816237140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816413424", + "highway": "path", + "name": "Gang Tiong Kandang 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225018, + -0.0157491 + ], + [ + 109.3225431, + -0.0157418 + ], + [ + 109.3226199, + -0.0157281 + ], + [ + 109.3227312, + -0.015719 + ], + [ + 109.3229454, + -0.0157034 + ] + ] + }, + "id": "way/816413424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816413425", + "access": "destination", + "highway": "residential", + "name": "Gang Jarak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326087, + -0.0139636 + ], + [ + 109.3258031, + -0.0138047 + ], + [ + 109.3256393, + -0.013678 + ] + ] + }, + "id": "way/816413425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816413426", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179428, + -0.0086156 + ], + [ + 109.3181558, + -0.0088017 + ], + [ + 109.3183616, + -0.0089845 + ] + ] + }, + "id": "way/816413426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816429916", + "highway": "unclassified", + "lanes": "2", + "name": "Jalan Srikaya", + "width": "4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212678, + -0.0165712 + ], + [ + 109.3214272, + -0.0163832 + ], + [ + 109.3217456, + -0.0160076 + ], + [ + 109.321877, + -0.015826 + ], + [ + 109.3219281, + -0.0157617 + ], + [ + 109.3220137, + -0.0156538 + ], + [ + 109.3221784, + -0.0154463 + ], + [ + 109.3222403, + -0.0153683 + ], + [ + 109.3224906, + -0.0150354 + ] + ] + }, + "id": "way/816429916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/816484403", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3180772, + -0.0072485 + ], + [ + 109.3180505, + -0.0072802 + ], + [ + 109.3176788, + -0.007721 + ], + [ + 109.3173705, + -0.0080867 + ] + ] + }, + "id": "way/816484403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/817831895", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477146, + -0.0540974 + ], + [ + 109.3484227, + -0.0549562 + ], + [ + 109.3485795, + -0.0551227 + ], + [ + 109.3487906, + -0.0553837 + ], + [ + 109.3491217, + -0.0558141 + ], + [ + 109.3491698, + -0.0558313 + ] + ] + }, + "id": "way/817831895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/817833845", + "highway": "trunk", + "name": "Jalan Komodor Yos Sudarso", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324271, + -0.0172643 + ], + [ + 109.3323561, + -0.0172142 + ] + ] + }, + "id": "way/817833845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818262763", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397588, + -0.0292207 + ], + [ + 109.339759, + -0.0292392 + ] + ] + }, + "id": "way/818262763" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818262764", + "bridge": "yes", + "highway": "tertiary_link", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339692, + -0.0290994 + ], + [ + 109.3397588, + -0.0292207 + ] + ] + }, + "id": "way/818262764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818262765", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412543, + -0.028298 + ], + [ + 109.3412697, + -0.0283231 + ] + ] + }, + "id": "way/818262765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818262766", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411632, + -0.0281552 + ], + [ + 109.3412543, + -0.028298 + ] + ] + }, + "id": "way/818262766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818262767", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423419, + -0.0275926 + ], + [ + 109.3423497, + -0.0276031 + ] + ] + }, + "id": "way/818262767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818262768", + "bridge": "yes", + "highway": "tertiary_link", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422611, + -0.0274615 + ], + [ + 109.3423419, + -0.0275926 + ] + ] + }, + "id": "way/818262768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818270033", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415608, + -0.0329186 + ], + [ + 109.3412986, + -0.0323541 + ] + ] + }, + "id": "way/818270033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818312961", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437692, + -0.0312646 + ], + [ + 109.3439614, + -0.0315875 + ] + ] + }, + "id": "way/818312961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818312962", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383126, + -0.0330951 + ], + [ + 109.3384856, + -0.0329804 + ], + [ + 109.3386177, + -0.0328765 + ] + ] + }, + "id": "way/818312962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818312963", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337795, + -0.0305909 + ], + [ + 109.3378787, + -0.0306821 + ], + [ + 109.3380045, + -0.0308125 + ], + [ + 109.3380719, + -0.0308819 + ], + [ + 109.3381258, + -0.0309544 + ], + [ + 109.3382858, + -0.0312062 + ] + ] + }, + "id": "way/818312963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818640637", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343961, + -0.0546468 + ], + [ + 109.3427412, + -0.0537157 + ] + ] + }, + "id": "way/818640637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818643483", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397161, + -0.0595745 + ], + [ + 109.3397005, + -0.0595618 + ] + ] + }, + "id": "way/818643483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818643484", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339812, + -0.0596476 + ], + [ + 109.3397161, + -0.0595745 + ] + ] + }, + "id": "way/818643484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818643485", + "highway": "residential", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358473, + -0.0564734 + ], + [ + 109.3359261, + -0.0566274 + ], + [ + 109.3361065, + -0.0569848 + ], + [ + 109.3363586, + -0.0574221 + ] + ] + }, + "id": "way/818643485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818647234", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472436, + -0.0568516 + ], + [ + 109.3475407, + -0.0571015 + ], + [ + 109.3475904, + -0.0571418 + ], + [ + 109.3476535, + -0.0571857 + ], + [ + 109.3476655, + -0.0571941 + ], + [ + 109.3477498, + -0.0572551 + ], + [ + 109.3478197, + -0.05717 + ], + [ + 109.3479484, + -0.057001 + ], + [ + 109.3479739, + -0.0569634 + ], + [ + 109.3480021, + -0.0569621 + ], + [ + 109.348041, + -0.0569862 + ], + [ + 109.3480906, + -0.0570211 + ], + [ + 109.3481214, + -0.0570009 + ], + [ + 109.348157, + -0.0569487 + ], + [ + 109.3482073, + -0.0568736 + ], + [ + 109.3482571, + -0.0568012 + ], + [ + 109.3482614, + -0.0567953 + ], + [ + 109.3482659, + -0.0567941 + ], + [ + 109.3482701, + -0.0567954 + ], + [ + 109.3482758, + -0.0567986 + ] + ] + }, + "id": "way/818647234" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818647235", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439105, + -0.0549483 + ], + [ + 109.3441571, + -0.0551194 + ], + [ + 109.3441843, + -0.0551187 + ], + [ + 109.3442067, + -0.05511 + ], + [ + 109.3443073, + -0.0550215 + ], + [ + 109.3444082, + -0.0548821 + ] + ] + }, + "id": "way/818647235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818647236", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441537, + -0.0546755 + ], + [ + 109.3444082, + -0.0548821 + ], + [ + 109.3446212, + -0.055055 + ] + ] + }, + "id": "way/818647236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818647237", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347953, + -0.06018 + ], + [ + 109.3480379, + -0.0600938 + ], + [ + 109.3481979, + -0.0599315 + ], + [ + 109.3483467, + -0.0597837 + ], + [ + 109.3483911, + -0.0597354 + ] + ] + }, + "id": "way/818647237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818651078", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3524359, + -0.0608775 + ], + [ + 109.3523593, + -0.0607976 + ], + [ + 109.3523137, + -0.0607426 + ], + [ + 109.3523017, + -0.0607037 + ], + [ + 109.3522993, + -0.0606752 + ], + [ + 109.352307, + -0.0606514 + ], + [ + 109.3524863, + -0.0604937 + ], + [ + 109.352641, + -0.0603551 + ], + [ + 109.3527322, + -0.0602786 + ], + [ + 109.3528099, + -0.0602089 + ], + [ + 109.3528649, + -0.0601579 + ], + [ + 109.3528829, + -0.0601458 + ], + [ + 109.3529038, + -0.0601418 + ], + [ + 109.3529228, + -0.0601437 + ], + [ + 109.3529414, + -0.0601512 + ], + [ + 109.3530844, + -0.0603214 + ] + ] + }, + "id": "way/818651078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818651079", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349134, + -0.0519718 + ], + [ + 109.3493405, + -0.0520657 + ], + [ + 109.3494929, + -0.0521368 + ] + ] + }, + "id": "way/818651079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818659978", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505572, + -0.0601041 + ], + [ + 109.3507269, + -0.0602434 + ], + [ + 109.3508855, + -0.0603876 + ], + [ + 109.3512395, + -0.0607145 + ] + ] + }, + "id": "way/818659978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663311", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359429, + -0.0525941 + ], + [ + 109.3362135, + -0.053306 + ] + ] + }, + "id": "way/818663311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663312", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358852, + -0.0519933 + ], + [ + 109.3361145, + -0.051894 + ] + ] + }, + "id": "way/818663312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663313", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359537, + -0.0589041 + ], + [ + 109.3361199, + -0.0590891 + ], + [ + 109.3361437, + -0.0590951 + ], + [ + 109.3361641, + -0.0590944 + ], + [ + 109.3361859, + -0.0590934 + ], + [ + 109.336195, + -0.0590941 + ], + [ + 109.3362057, + -0.0590974 + ], + [ + 109.3363117, + -0.059193 + ] + ] + }, + "id": "way/818663313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663314", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346735, + -0.0548854 + ], + [ + 109.335039, + -0.0547452 + ] + ] + }, + "id": "way/818663314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663315", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389014, + -0.0546196 + ], + [ + 109.3392976, + -0.0545206 + ] + ] + }, + "id": "way/818663315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663316", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435871, + -0.0547071 + ], + [ + 109.3438125, + -0.0548679 + ] + ] + }, + "id": "way/818663316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663317", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435939, + -0.0544871 + ], + [ + 109.343669, + -0.0545367 + ], + [ + 109.343679, + -0.0545514 + ], + [ + 109.3436824, + -0.0545668 + ], + [ + 109.34368, + -0.0545766 + ], + [ + 109.3435871, + -0.0547071 + ], + [ + 109.3435308, + -0.0547861 + ], + [ + 109.3435211, + -0.0547911 + ], + [ + 109.3435067, + -0.0547888 + ], + [ + 109.3434939, + -0.0547821 + ], + [ + 109.3433793, + -0.0547063 + ] + ] + }, + "id": "way/818663317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663318", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341829, + -0.0550027 + ], + [ + 109.3428147, + -0.0557309 + ], + [ + 109.3430075, + -0.0558622 + ] + ] + }, + "id": "way/818663318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396557, + -0.0598604 + ], + [ + 109.3400426, + -0.0603162 + ] + ] + }, + "id": "way/818663319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663320", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433593, + -0.0555731 + ], + [ + 109.3438809, + -0.0560447 + ] + ] + }, + "id": "way/818663320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818663321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436307, + -0.0552598 + ], + [ + 109.3442483, + -0.0557993 + ] + ] + }, + "id": "way/818663321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818687968", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2904355, + -0.0244591 + ], + [ + 109.2903528, + -0.0243846 + ], + [ + 109.2903078, + -0.0243437 + ] + ] + }, + "id": "way/818687968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818687969", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2925735, + -0.0230056 + ], + [ + 109.2932649, + -0.0239732 + ], + [ + 109.2932761, + -0.0239786 + ], + [ + 109.2932857, + -0.0239789 + ], + [ + 109.2932971, + -0.0239779 + ], + [ + 109.2933057, + -0.0239748 + ], + [ + 109.293522, + -0.023815 + ], + [ + 109.293733, + -0.0236718 + ], + [ + 109.2937949, + -0.0236201 + ], + [ + 109.2940767, + -0.0234155 + ] + ] + }, + "id": "way/818687969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695346", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2918001, + -0.0184436 + ], + [ + 109.2917266, + -0.0180432 + ], + [ + 109.2917025, + -0.0179172 + ], + [ + 109.291673, + -0.0177991 + ], + [ + 109.2916462, + -0.0176758 + ], + [ + 109.2916247, + -0.0175631 + ], + [ + 109.2915979, + -0.0174397 + ], + [ + 109.2915684, + -0.0172868 + ], + [ + 109.2915416, + -0.0171313 + ], + [ + 109.2915174, + -0.0170374 + ], + [ + 109.2914879, + -0.0168979 + ], + [ + 109.2914638, + -0.0167879 + ], + [ + 109.2914316, + -0.0166458 + ], + [ + 109.2913954, + -0.0164567 + ] + ] + }, + "id": "way/818695346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695347", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.295976, + -0.0236011 + ], + [ + 109.2961137, + -0.0236456 + ] + ] + }, + "id": "way/818695347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695348", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2958948, + -0.0239612 + ], + [ + 109.2960145, + -0.0239927 + ], + [ + 109.296018, + -0.0239926 + ], + [ + 109.2960207, + -0.0239921 + ], + [ + 109.2960231, + -0.0239914 + ], + [ + 109.2960255, + -0.0239901 + ], + [ + 109.296028, + -0.023988 + ], + [ + 109.2960311, + -0.0239849 + ], + [ + 109.2960364, + -0.0239722 + ], + [ + 109.2961137, + -0.0236456 + ], + [ + 109.2961769, + -0.0233787 + ], + [ + 109.2963021, + -0.0228495 + ], + [ + 109.2963025, + -0.0228437 + ], + [ + 109.296302, + -0.0228387 + ], + [ + 109.2963013, + -0.0228341 + ], + [ + 109.2963002, + -0.0228303 + ], + [ + 109.2962982, + -0.0228269 + ], + [ + 109.2962943, + -0.0228241 + ], + [ + 109.2961697, + -0.0227747 + ] + ] + }, + "id": "way/818695348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695349", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2910672, + -0.0162255 + ], + [ + 109.2915215, + -0.0185461 + ] + ] + }, + "id": "way/818695349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695350", + "highway": "residential", + "name": "Komplek Villa D'Hill" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966586, + -0.0209467 + ], + [ + 109.2966108, + -0.0209412 + ], + [ + 109.296587, + -0.0209427 + ], + [ + 109.2965452, + -0.0209474 + ], + [ + 109.2965042, + -0.0209541 + ], + [ + 109.296453, + -0.0209652 + ], + [ + 109.2960329, + -0.021054 + ], + [ + 109.2953654, + -0.021192 + ], + [ + 109.2953399, + -0.0211978 + ], + [ + 109.295325, + -0.0212 + ], + [ + 109.2953181, + -0.0211995 + ], + [ + 109.2953142, + -0.0211984 + ], + [ + 109.295309, + -0.0211952 + ], + [ + 109.295302, + -0.0211864 + ], + [ + 109.2936705, + -0.0215545 + ] + ] + }, + "id": "way/818695350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695351", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2974299, + -0.0234549 + ], + [ + 109.2976501, + -0.0237929 + ], + [ + 109.2977027, + -0.0238733 + ], + [ + 109.2977735, + -0.0239979 + ], + [ + 109.2979056, + -0.0242182 + ], + [ + 109.2980506, + -0.0244658 + ] + ] + }, + "id": "way/818695351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695352", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2925013, + -0.0247188 + ], + [ + 109.2928084, + -0.0244953 + ] + ] + }, + "id": "way/818695352" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695353", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2919161, + -0.0232903 + ], + [ + 109.2921961, + -0.0231195 + ] + ] + }, + "id": "way/818695353" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695354", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2907007, + -0.0238321 + ], + [ + 109.2906417, + -0.0237523 + ], + [ + 109.2903869, + -0.0234056 + ] + ] + }, + "id": "way/818695354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695355", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2907007, + -0.0238321 + ], + [ + 109.2909005, + -0.0241271 + ] + ] + }, + "id": "way/818695355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818695356", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.291315, + -0.0161221 + ], + [ + 109.2913954, + -0.0164567 + ] + ] + }, + "id": "way/818695356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818698434", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440404, + -0.0595933 + ], + [ + 109.3443194, + -0.0592634 + ], + [ + 109.3444738, + -0.0590937 + ], + [ + 109.3448621, + -0.0586668 + ] + ] + }, + "id": "way/818698434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818698435", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451957, + -0.0589838 + ], + [ + 109.3451405, + -0.0589313 + ], + [ + 109.3448621, + -0.0586668 + ], + [ + 109.3447137, + -0.0585258 + ], + [ + 109.3444374, + -0.0582535 + ] + ] + }, + "id": "way/818698435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702214", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370137, + -0.0196683 + ], + [ + 109.3367972, + -0.0195101 + ], + [ + 109.336576, + -0.019772 + ], + [ + 109.3365705, + -0.0197843 + ], + [ + 109.3365749, + -0.0197954 + ], + [ + 109.3367526, + -0.0199546 + ], + [ + 109.3368642, + -0.0200509 + ] + ] + }, + "id": "way/818702214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702216", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334321, + -0.0172917 + ], + [ + 109.3339592, + -0.0177068 + ] + ] + }, + "id": "way/818702216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702217", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3349923, + -0.018023 + ], + [ + 109.3347665, + -0.0182981 + ] + ] + }, + "id": "way/818702217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702218", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335653, + -0.0166671 + ], + [ + 109.334321, + -0.0172917 + ] + ] + }, + "id": "way/818702218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702219", + "access": "no", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361065, + -0.0191718 + ], + [ + 109.3360112, + -0.0193204 + ] + ] + }, + "id": "way/818702219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702220", + "access": "no", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359562, + -0.0192752 + ], + [ + 109.3361065, + -0.0191718 + ] + ] + }, + "id": "way/818702220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702221", + "access": "no", + "highway": "service", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360112, + -0.0193204 + ], + [ + 109.3359562, + -0.0192752 + ], + [ + 109.3354805, + -0.0188845 + ], + [ + 109.3351311, + -0.0185976 + ], + [ + 109.3347665, + -0.0182981 + ], + [ + 109.3344907, + -0.0180716 + ], + [ + 109.3343675, + -0.0179704 + ], + [ + 109.3342529, + -0.0178763 + ], + [ + 109.3341359, + -0.0177802 + ], + [ + 109.3339592, + -0.0177068 + ], + [ + 109.3338709, + -0.0176476 + ], + [ + 109.3337488, + -0.0175551 + ], + [ + 109.333317, + -0.017205 + ], + [ + 109.3332741, + -0.0171447 + ], + [ + 109.3332405, + -0.0170642 + ] + ] + }, + "id": "way/818702221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702222", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360112, + -0.0193204 + ], + [ + 109.336089, + -0.0193843 + ], + [ + 109.3364148, + -0.0196524 + ], + [ + 109.3364192, + -0.01966 + ], + [ + 109.3364203, + -0.0196701 + ], + [ + 109.3364169, + -0.0196788 + ], + [ + 109.3361051, + -0.0200146 + ] + ] + }, + "id": "way/818702222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702223", + "access": "no", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355469, + -0.0197554 + ], + [ + 109.3358394, + -0.0194115 + ], + [ + 109.3359562, + -0.0192752 + ] + ] + }, + "id": "way/818702223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702224", + "access": "no", + "highway": "service", + "motor_vehicle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360112, + -0.0193204 + ], + [ + 109.3359227, + -0.0194273 + ], + [ + 109.3356116, + -0.0198054 + ] + ] + }, + "id": "way/818702224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702225", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372398, + -0.0208575 + ], + [ + 109.3373249, + -0.0208803 + ], + [ + 109.3373933, + -0.0209071 + ], + [ + 109.3374449, + -0.0209434 + ], + [ + 109.3374858, + -0.020991 + ], + [ + 109.3375126, + -0.0210506 + ], + [ + 109.3375321, + -0.0211204 + ], + [ + 109.3375421, + -0.0211915 + ], + [ + 109.3375381, + -0.0212451 + ], + [ + 109.337516, + -0.0213095 + ], + [ + 109.3374603, + -0.0214027 + ] + ] + }, + "id": "way/818702225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702226", + "highway": "unclassified", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367415, + -0.0217467 + ], + [ + 109.3365898, + -0.0217704 + ], + [ + 109.3365189, + -0.0217815 + ] + ] + }, + "id": "way/818702226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702227", + "highway": "unclassified", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365189, + -0.0217815 + ], + [ + 109.3365584, + -0.0217447 + ], + [ + 109.3365856, + -0.0217125 + ], + [ + 109.3366007, + -0.0216769 + ], + [ + 109.3366114, + -0.0216065 + ] + ] + }, + "id": "way/818702227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702228", + "highway": "unclassified", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370068, + -0.0216705 + ], + [ + 109.3367415, + -0.0217467 + ] + ] + }, + "id": "way/818702228" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818702229", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376367, + -0.0206456 + ], + [ + 109.3376811, + -0.0205606 + ], + [ + 109.3377246, + -0.0204774 + ], + [ + 109.337804, + -0.0203551 + ] + ] + }, + "id": "way/818702229" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818705801", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2972285, + -0.0233218 + ], + [ + 109.2973506, + -0.0232195 + ] + ] + }, + "id": "way/818705801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818705802", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.292703, + -0.0225024 + ], + [ + 109.2927447, + -0.0229324 + ] + ] + }, + "id": "way/818705802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818705803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2957688, + -0.0183507 + ], + [ + 109.2957795, + -0.01853 + ], + [ + 109.2957897, + -0.0186912 + ] + ] + }, + "id": "way/818705803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818705804", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2939287, + -0.0199073 + ], + [ + 109.2941728, + -0.0198886 + ], + [ + 109.2943713, + -0.0198725 + ], + [ + 109.2945296, + -0.0198564 + ], + [ + 109.2948514, + -0.0198242 + ], + [ + 109.2950606, + -0.0197974 + ], + [ + 109.2953033, + -0.0197678 + ] + ] + }, + "id": "way/818705804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818705805", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2901683, + -0.0245811 + ], + [ + 109.2902407, + -0.0246844 + ], + [ + 109.2903303, + -0.0247977 + ], + [ + 109.2903311, + -0.0247995 + ], + [ + 109.2903316, + -0.0248024 + ], + [ + 109.2903316, + -0.0248053 + ], + [ + 109.2903312, + -0.0248093 + ], + [ + 109.2903285, + -0.0248135 + ], + [ + 109.2902846, + -0.024858 + ] + ] + }, + "id": "way/818705805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818708037", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2939469, + -0.0239467 + ], + [ + 109.2936069, + -0.0241962 + ] + ] + }, + "id": "way/818708037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718794", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407601, + -0.0240165 + ], + [ + 109.3408446, + -0.0241251 + ], + [ + 109.3408942, + -0.0241848 + ], + [ + 109.3409143, + -0.0241972 + ], + [ + 109.3409398, + -0.0242036 + ], + [ + 109.3410427, + -0.0242193 + ], + [ + 109.341078, + -0.024223 + ], + [ + 109.3411138, + -0.0242197 + ], + [ + 109.3413623, + -0.0241888 + ], + [ + 109.3413718, + -0.024188 + ], + [ + 109.3413809, + -0.0241903 + ], + [ + 109.3413883, + -0.0241981 + ], + [ + 109.341424, + -0.024271 + ], + [ + 109.3414442, + -0.0243155 + ] + ] + }, + "id": "way/818718794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718795", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407488, + -0.0242092 + ], + [ + 109.3408446, + -0.0241251 + ] + ] + }, + "id": "way/818718795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718796", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3398519, + -0.0231675 + ], + [ + 109.3399642, + -0.0230743 + ] + ] + }, + "id": "way/818718796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718797", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402033, + -0.0224213 + ], + [ + 109.3401065, + -0.0223308 + ] + ] + }, + "id": "way/818718797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718798", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402813, + -0.0226439 + ], + [ + 109.3403601, + -0.0225678 + ], + [ + 109.3404657, + -0.0224569 + ], + [ + 109.3404676, + -0.0224531 + ], + [ + 109.3404657, + -0.0224488 + ], + [ + 109.3404388, + -0.022422 + ], + [ + 109.3403812, + -0.022369 + ] + ] + }, + "id": "way/818718798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718799", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403601, + -0.0225678 + ], + [ + 109.3402878, + -0.0225003 + ], + [ + 109.3402033, + -0.0224213 + ], + [ + 109.3400773, + -0.0225604 + ], + [ + 109.3398394, + -0.0228249 + ], + [ + 109.339829, + -0.0228531 + ], + [ + 109.339826, + -0.0228823 + ], + [ + 109.3398294, + -0.0229121 + ], + [ + 109.3398391, + -0.0229446 + ], + [ + 109.3398562, + -0.0229701 + ], + [ + 109.3399642, + -0.0230743 + ], + [ + 109.3401392, + -0.0232434 + ] + ] + }, + "id": "way/818718799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718800", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406273, + -0.0224246 + ], + [ + 109.3408844, + -0.0226902 + ], + [ + 109.3411437, + -0.0229691 + ] + ] + }, + "id": "way/818718800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718801", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402988, + -0.0227532 + ], + [ + 109.3405308, + -0.023012 + ], + [ + 109.3407843, + -0.0233071 + ] + ] + }, + "id": "way/818718801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718802", + "highway": "trunk_link", + "name": "Jalan Jenderal Sudirman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394022, + -0.0234774 + ], + [ + 109.3394445, + -0.023407 + ], + [ + 109.3394793, + -0.0233614 + ], + [ + 109.3395907, + -0.0232244 + ], + [ + 109.3396182, + -0.023181 + ], + [ + 109.3396349, + -0.0231334 + ], + [ + 109.3396436, + -0.023069 + ] + ] + }, + "id": "way/818718802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718803", + "highway": "service", + "name": "Jalan Bardan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339661, + -0.0229105 + ], + [ + 109.3395907, + -0.0229848 + ] + ] + }, + "id": "way/818718803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718804", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387574, + -0.0218064 + ], + [ + 109.3391502, + -0.0221853 + ] + ] + }, + "id": "way/818718804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718805", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389587, + -0.0223632 + ], + [ + 109.3390492, + -0.0222814 + ], + [ + 109.3391502, + -0.0221853 + ], + [ + 109.3393977, + -0.0219499 + ], + [ + 109.3394032, + -0.0219366 + ], + [ + 109.3394044, + -0.0219225 + ], + [ + 109.3393986, + -0.0219086 + ], + [ + 109.3390515, + -0.0215583 + ], + [ + 109.3390371, + -0.0215489 + ], + [ + 109.3390207, + -0.0215502 + ], + [ + 109.3390076, + -0.0215566 + ], + [ + 109.3387574, + -0.0218064 + ], + [ + 109.3386742, + -0.0218956 + ], + [ + 109.3385825, + -0.0219932 + ] + ] + }, + "id": "way/818718805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718806", + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386476, + -0.021152 + ], + [ + 109.3386691, + -0.0215553 + ] + ] + }, + "id": "way/818718806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718807", + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383934, + -0.0218072 + ], + [ + 109.3385005, + -0.021717 + ], + [ + 109.3386691, + -0.0215553 + ] + ] + }, + "id": "way/818718807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718808", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386476, + -0.021152 + ], + [ + 109.3384621, + -0.0209886 + ] + ] + }, + "id": "way/818718808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718809", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3363799, + -0.020406 + ], + [ + 109.3364354, + -0.0203388 + ], + [ + 109.3367526, + -0.0199546 + ] + ] + }, + "id": "way/818718809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818718810", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3374154, + -0.0207429 + ], + [ + 109.3372892, + -0.020635 + ], + [ + 109.3372825, + -0.020631 + ], + [ + 109.3372757, + -0.0206346 + ], + [ + 109.3371646, + -0.0207613 + ], + [ + 109.3371438, + -0.0207697 + ], + [ + 109.337119, + -0.02077 + ], + [ + 109.3370962, + -0.0207616 + ], + [ + 109.3370573, + -0.0207368 + ], + [ + 109.3370282, + -0.0207231 + ], + [ + 109.336997, + -0.020714 + ], + [ + 109.3369564, + -0.020706 + ], + [ + 109.3369229, + -0.0206939 + ], + [ + 109.3368877, + -0.0206751 + ], + [ + 109.3366677, + -0.0204733 + ] + ] + }, + "id": "way/818718810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818730549", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3380604, + -0.0301051 + ], + [ + 109.3380142, + -0.0299958 + ], + [ + 109.3379643, + -0.029844 + ], + [ + 109.3379542, + -0.0298178 + ], + [ + 109.3379489, + -0.0297764 + ], + [ + 109.3379123, + -0.0296163 + ], + [ + 109.3378957, + -0.0295758 + ], + [ + 109.3377768, + -0.0292863 + ] + ] + }, + "id": "way/818730549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732069", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3419805, + -0.0174639 + ], + [ + 109.3419108, + -0.0175771 + ] + ] + }, + "id": "way/818732069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732070", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417615, + -0.0173212 + ], + [ + 109.3417009, + -0.0174058 + ], + [ + 109.3416966, + -0.0174169 + ], + [ + 109.341701, + -0.0174271 + ], + [ + 109.3417928, + -0.0174928 + ], + [ + 109.3419108, + -0.0175771 + ], + [ + 109.3419778, + -0.0176221 + ] + ] + }, + "id": "way/818732070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732071", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441754, + -0.0177993 + ], + [ + 109.3440406, + -0.0181505 + ] + ] + }, + "id": "way/818732071" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732072", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343323, + -0.0186937 + ], + [ + 109.3431035, + -0.0193859 + ] + ] + }, + "id": "way/818732072" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732073", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427022, + -0.0195903 + ], + [ + 109.3434074, + -0.0199704 + ], + [ + 109.3434375, + -0.0199686 + ], + [ + 109.3436261, + -0.0196244 + ] + ] + }, + "id": "way/818732073" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732075", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427174, + -0.0186667 + ], + [ + 109.3428406, + -0.0187202 + ] + ] + }, + "id": "way/818732075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732076", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425973, + -0.01941 + ], + [ + 109.3428406, + -0.0187202 + ], + [ + 109.3431233, + -0.0179185 + ] + ] + }, + "id": "way/818732076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732078", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414735, + -0.0170677 + ], + [ + 109.3415572, + -0.0169644 + ], + [ + 109.3415608, + -0.0169628 + ], + [ + 109.3415649, + -0.0169641 + ], + [ + 109.341659, + -0.0170395 + ], + [ + 109.3416608, + -0.0170432 + ], + [ + 109.3416592, + -0.0170474 + ], + [ + 109.3415711, + -0.0171568 + ] + ] + }, + "id": "way/818732078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732079", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412206, + -0.0169962 + ], + [ + 109.3412988, + -0.0169076 + ] + ] + }, + "id": "way/818732079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732080", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413734, + -0.0171362 + ], + [ + 109.3414515, + -0.0170476 + ] + ] + }, + "id": "way/818732080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732081", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411638, + -0.0169442 + ], + [ + 109.3412206, + -0.0169962 + ], + [ + 109.3413734, + -0.0171362 + ], + [ + 109.3414903, + -0.0172433 + ] + ] + }, + "id": "way/818732081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818732082", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339761, + -0.0156748 + ], + [ + 109.3401343, + -0.0160378 + ], + [ + 109.3401429, + -0.0160433 + ], + [ + 109.3401524, + -0.0160436 + ], + [ + 109.3401626, + -0.0160398 + ], + [ + 109.3402505, + -0.0159448 + ] + ] + }, + "id": "way/818732082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818733124", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482314, + -0.057524 + ], + [ + 109.3486874, + -0.0568548 + ] + ] + }, + "id": "way/818733124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818733125", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476333, + -0.0579884 + ], + [ + 109.3476514, + -0.0580004 + ], + [ + 109.3476516, + -0.0580005 + ], + [ + 109.347758, + -0.0580712 + ], + [ + 109.347821, + -0.0580779 + ], + [ + 109.3478727, + -0.0580651 + ], + [ + 109.3479122, + -0.0580349 + ], + [ + 109.3482314, + -0.057524 + ], + [ + 109.3482106, + -0.0575025 + ], + [ + 109.3481912, + -0.0574811 + ], + [ + 109.3481469, + -0.0574341 + ], + [ + 109.3480893, + -0.0574051 + ], + [ + 109.3480632, + -0.0573919 + ] + ] + }, + "id": "way/818733125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743562", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361563, + -0.0235725 + ], + [ + 109.3361247, + -0.0234714 + ] + ] + }, + "id": "way/818743562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743563", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362795, + -0.0237201 + ], + [ + 109.3360039, + -0.023813 + ], + [ + 109.3359875, + -0.023815 + ], + [ + 109.335971, + -0.0238103 + ], + [ + 109.3359613, + -0.0238009 + ], + [ + 109.3359154, + -0.0236893 + ], + [ + 109.3359134, + -0.0236725 + ], + [ + 109.3359157, + -0.0236567 + ], + [ + 109.3359281, + -0.023645 + ], + [ + 109.3361563, + -0.0235725 + ], + [ + 109.3364686, + -0.0234707 + ] + ] + }, + "id": "way/818743563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743564", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367495, + -0.0225566 + ], + [ + 109.3367465, + -0.0225315 + ], + [ + 109.3367479, + -0.0225252 + ], + [ + 109.3367533, + -0.0225221 + ], + [ + 109.3369627, + -0.0224941 + ] + ] + }, + "id": "way/818743564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743565", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367594, + -0.0226387 + ], + [ + 109.3367495, + -0.0225566 + ] + ] + }, + "id": "way/818743565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743566", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369791, + -0.0226543 + ], + [ + 109.3367743, + -0.0226835 + ], + [ + 109.3367673, + -0.0226821 + ], + [ + 109.3367639, + -0.022676 + ], + [ + 109.3367594, + -0.0226387 + ] + ] + }, + "id": "way/818743566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743567", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366246, + -0.0245052 + ], + [ + 109.3367837, + -0.024447 + ], + [ + 109.3370573, + -0.0243625 + ], + [ + 109.3370828, + -0.0243618 + ], + [ + 109.3371076, + -0.0243732 + ], + [ + 109.3371244, + -0.0243954 + ], + [ + 109.3372437, + -0.0246978 + ], + [ + 109.3372538, + -0.0247031 + ], + [ + 109.3372684, + -0.0247033 + ], + [ + 109.3373771, + -0.0246613 + ] + ] + }, + "id": "way/818743567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743568", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365366, + -0.0245374 + ], + [ + 109.3366246, + -0.0245052 + ] + ] + }, + "id": "way/818743568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743569", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367837, + -0.024447 + ], + [ + 109.3367566, + -0.024364 + ] + ] + }, + "id": "way/818743569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743570", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365446, + -0.0251775 + ], + [ + 109.3364583, + -0.0252183 + ] + ] + }, + "id": "way/818743570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743571", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370231, + -0.0249097 + ], + [ + 109.3371531, + -0.0252477 + ], + [ + 109.3371759, + -0.0253073 + ] + ] + }, + "id": "way/818743571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743572", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371531, + -0.0252477 + ], + [ + 109.3368126, + -0.0254139 + ], + [ + 109.3367616, + -0.025426 + ], + [ + 109.3367174, + -0.0254267 + ], + [ + 109.3366899, + -0.02542 + ], + [ + 109.336659, + -0.0253925 + ], + [ + 109.3366268, + -0.0253529 + ], + [ + 109.3366013, + -0.0253066 + ], + [ + 109.3365446, + -0.0251775 + ], + [ + 109.3363251, + -0.0246783 + ], + [ + 109.3363244, + -0.0246488 + ], + [ + 109.3363331, + -0.024624 + ], + [ + 109.3363586, + -0.0246026 + ], + [ + 109.3365366, + -0.0245374 + ] + ] + }, + "id": "way/818743572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743573", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358459, + -0.0236302 + ], + [ + 109.3357675, + -0.02352 + ], + [ + 109.3357638, + -0.0235035 + ], + [ + 109.3357655, + -0.0234891 + ], + [ + 109.3357772, + -0.0234747 + ], + [ + 109.3358812, + -0.0234076 + ], + [ + 109.3358939, + -0.0233912 + ], + [ + 109.3359013, + -0.0233681 + ], + [ + 109.3359033, + -0.0233399 + ], + [ + 109.3358953, + -0.0232219 + ], + [ + 109.3358973, + -0.0232038 + ], + [ + 109.335907, + -0.0231877 + ], + [ + 109.3359268, + -0.0231776 + ], + [ + 109.3360181, + -0.0231555 + ] + ] + }, + "id": "way/818743573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743574", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379666, + -0.0220357 + ], + [ + 109.3381838, + -0.0218292 + ], + [ + 109.3383043, + -0.0217196 + ], + [ + 109.3384064, + -0.0216202 + ] + ] + }, + "id": "way/818743574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743575", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3381838, + -0.0218292 + ], + [ + 109.3379042, + -0.0215495 + ], + [ + 109.3378989, + -0.0215361 + ], + [ + 109.3379047, + -0.0215232 + ], + [ + 109.338001, + -0.0214213 + ], + [ + 109.3380779, + -0.0213437 + ] + ] + }, + "id": "way/818743575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743576", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376675, + -0.0216575 + ], + [ + 109.337811, + -0.0215314 + ], + [ + 109.3378228, + -0.0215143 + ], + [ + 109.3378295, + -0.0214966 + ], + [ + 109.3378295, + -0.0214751 + ], + [ + 109.3377547, + -0.0213215 + ] + ] + }, + "id": "way/818743576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743577", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387289, + -0.021952 + ], + [ + 109.3386383, + -0.022048 + ], + [ + 109.3383553, + -0.0223244 + ], + [ + 109.3383434, + -0.0223324 + ], + [ + 109.3383295, + -0.0223272 + ], + [ + 109.3381032, + -0.0220936 + ], + [ + 109.3380973, + -0.0220816 + ], + [ + 109.3381043, + -0.0220695 + ], + [ + 109.3383934, + -0.0218072 + ] + ] + }, + "id": "way/818743577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743578", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335798, + -0.022611 + ], + [ + 109.3355986, + -0.0226425 + ] + ] + }, + "id": "way/818743578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743579", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355509, + -0.0223629 + ], + [ + 109.3355986, + -0.0226425 + ], + [ + 109.335672, + -0.023067 + ] + ] + }, + "id": "way/818743579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743580", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335022, + -0.0224295 + ], + [ + 109.3354029, + -0.0223815 + ], + [ + 109.3355509, + -0.0223629 + ], + [ + 109.3357464, + -0.0223397 + ] + ] + }, + "id": "way/818743580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743581", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3357288, + -0.0222488 + ], + [ + 109.3357464, + -0.0223397 + ], + [ + 109.335798, + -0.022611 + ], + [ + 109.3358081, + -0.0226456 + ], + [ + 109.3358185, + -0.0226616 + ], + [ + 109.3358346, + -0.0226727 + ], + [ + 109.3358604, + -0.0226781 + ], + [ + 109.3359511, + -0.0226699 + ] + ] + }, + "id": "way/818743581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743582", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33566, + -0.0215185 + ], + [ + 109.3357122, + -0.0218278 + ], + [ + 109.3357839, + -0.022212 + ], + [ + 109.3357826, + -0.0222261 + ], + [ + 109.3357742, + -0.0222365 + ], + [ + 109.3357288, + -0.0222488 + ], + [ + 109.3354111, + -0.0222885 + ], + [ + 109.3354016, + -0.0222949 + ], + [ + 109.335397, + -0.0223045 + ], + [ + 109.3354029, + -0.0223815 + ] + ] + }, + "id": "way/818743582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743583", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.335102, + -0.0217447 + ], + [ + 109.3353072, + -0.0217111 + ] + ] + }, + "id": "way/818743583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743584", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3357122, + -0.0218278 + ], + [ + 109.3354098, + -0.0218647 + ], + [ + 109.3353729, + -0.0218613 + ], + [ + 109.3353467, + -0.0218459 + ], + [ + 109.3353313, + -0.0218225 + ], + [ + 109.3353072, + -0.0217111 + ], + [ + 109.3353032, + -0.0216307 + ], + [ + 109.3353099, + -0.0216032 + ], + [ + 109.3353236, + -0.0215824 + ], + [ + 109.3353521, + -0.0215697 + ], + [ + 109.33566, + -0.0215185 + ], + [ + 109.3357864, + -0.0214975 + ] + ] + }, + "id": "way/818743584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743585", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351905, + -0.0204505 + ], + [ + 109.3355104, + -0.0206947 + ] + ] + }, + "id": "way/818743585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743586", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375629, + -0.019686 + ], + [ + 109.3375033, + -0.0197685 + ], + [ + 109.3372225, + -0.0195454 + ], + [ + 109.3367368, + -0.0191402 + ], + [ + 109.3363492, + -0.0188321 + ] + ] + }, + "id": "way/818743586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818743587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355234, + -0.019835 + ], + [ + 109.335271, + -0.0201581 + ] + ] + }, + "id": "way/818743587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818747634", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513097, + -0.0576698 + ], + [ + 109.3512586, + -0.0577124 + ], + [ + 109.351208, + -0.0577614 + ], + [ + 109.3512026, + -0.0578117 + ], + [ + 109.351202, + -0.0578559 + ], + [ + 109.3512234, + -0.0579136 + ], + [ + 109.351271, + -0.0579659 + ], + [ + 109.3513039, + -0.0579786 + ], + [ + 109.3513387, + -0.0579847 + ], + [ + 109.3514232, + -0.0579619 + ], + [ + 109.3514592, + -0.0579273 + ], + [ + 109.3514953, + -0.0578934 + ] + ] + }, + "id": "way/818747634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818751157", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3419013, + -0.0240396 + ], + [ + 109.342002, + -0.0241553 + ], + [ + 109.3420117, + -0.0241607 + ], + [ + 109.3420278, + -0.024162 + ], + [ + 109.3420442, + -0.0241583 + ], + [ + 109.342584, + -0.023814 + ] + ] + }, + "id": "way/818751157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818751158", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413351, + -0.0242902 + ], + [ + 109.3413763, + -0.0243657 + ], + [ + 109.3414435, + -0.0244828 + ], + [ + 109.3414449, + -0.0244888 + ], + [ + 109.3414414, + -0.0244945 + ], + [ + 109.3412597, + -0.0246119 + ], + [ + 109.3412553, + -0.0246212 + ], + [ + 109.3412593, + -0.0246317 + ], + [ + 109.3413851, + -0.024801 + ], + [ + 109.3413877, + -0.0248151 + ], + [ + 109.3413824, + -0.0248319 + ], + [ + 109.3413339, + -0.0248895 + ] + ] + }, + "id": "way/818751158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818761370", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418583, + -0.0173888 + ], + [ + 109.3417928, + -0.0174928 + ] + ] + }, + "id": "way/818761370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/818968774", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364259, + -0.0217941 + ], + [ + 109.3364388, + -0.0218851 + ], + [ + 109.3364421, + -0.0218935 + ], + [ + 109.3364514, + -0.0218956 + ], + [ + 109.3367167, + -0.0218808 + ], + [ + 109.3367375, + -0.0218862 + ], + [ + 109.3367542, + -0.0218989 + ], + [ + 109.3367623, + -0.0219204 + ], + [ + 109.3367698, + -0.0221577 + ], + [ + 109.3367732, + -0.0221698 + ], + [ + 109.3367859, + -0.0221736 + ], + [ + 109.3369387, + -0.0221578 + ] + ] + }, + "id": "way/818968774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/819298538", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456014, + -0.056745 + ], + [ + 109.3453677, + -0.0565568 + ] + ] + }, + "id": "way/819298538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/819298539", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448065, + -0.0593938 + ], + [ + 109.3444738, + -0.0590937 + ] + ] + }, + "id": "way/819298539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821307539", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560541, + -0.0571471 + ], + [ + 109.3556769, + -0.0567783 + ], + [ + 109.3556296, + -0.0567374 + ], + [ + 109.3556155, + -0.0567207 + ], + [ + 109.3556095, + -0.0567106 + ], + [ + 109.3556075, + -0.0566945 + ], + [ + 109.3556162, + -0.0566744 + ], + [ + 109.3558475, + -0.0564216 + ], + [ + 109.3558717, + -0.0563961 + ], + [ + 109.3558985, + -0.0563948 + ], + [ + 109.3559495, + -0.0564162 + ], + [ + 109.3563706, + -0.0568695 + ] + ] + }, + "id": "way/821307539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821307540", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558015, + -0.052347 + ], + [ + 109.3557593, + -0.0523168 + ] + ] + }, + "id": "way/821307540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821307541", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3595181, + -0.0531627 + ], + [ + 109.3597904, + -0.0528234 + ], + [ + 109.3598092, + -0.0527926 + ], + [ + 109.3598327, + -0.0527282 + ] + ] + }, + "id": "way/821307541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821338549", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537911, + -0.0594633 + ], + [ + 109.353683, + -0.0593358 + ], + [ + 109.3536656, + -0.059309 + ], + [ + 109.3536696, + -0.0592835 + ], + [ + 109.3536951, + -0.0592486 + ], + [ + 109.3537608, + -0.059203 + ], + [ + 109.3537849, + -0.0592044 + ], + [ + 109.3538278, + -0.0592446 + ], + [ + 109.3539115, + -0.0593567 + ] + ] + }, + "id": "way/821338549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821348785", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576136, + -0.0562019 + ], + [ + 109.3577465, + -0.0560488 + ], + [ + 109.3577693, + -0.0560447 + ], + [ + 109.3578069, + -0.0560541 + ], + [ + 109.3578485, + -0.0560863 + ], + [ + 109.3578511, + -0.0561064 + ], + [ + 109.3578525, + -0.0561319 + ], + [ + 109.3577975, + -0.0562888 + ] + ] + }, + "id": "way/821348785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821348786", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575193, + -0.0561395 + ], + [ + 109.3576136, + -0.0562019 + ], + [ + 109.3577559, + -0.0562902 + ], + [ + 109.357776, + -0.0562929 + ], + [ + 109.3577975, + -0.0562888 + ] + ] + }, + "id": "way/821348786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821348787", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3577316, + -0.0557339 + ], + [ + 109.3569285, + -0.0548699 + ] + ] + }, + "id": "way/821348787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821348788", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582162, + -0.0551096 + ], + [ + 109.3578927, + -0.054827 + ], + [ + 109.3578525, + -0.0547922 + ], + [ + 109.3578465, + -0.0547741 + ], + [ + 109.3578511, + -0.0547546 + ], + [ + 109.3578927, + -0.0546849 + ], + [ + 109.3580496, + -0.0545387 + ], + [ + 109.3580523, + -0.0545213 + ], + [ + 109.3580461, + -0.0544981 + ] + ] + }, + "id": "way/821348788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821348789", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3541163, + -0.0548222 + ], + [ + 109.3540773, + -0.0547989 + ] + ] + }, + "id": "way/821348789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821430509", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540223, + -0.054766 + ], + [ + 109.3532807, + -0.0542799 + ] + ] + }, + "id": "way/821430509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/821430510", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540773, + -0.0547989 + ], + [ + 109.3540223, + -0.054766 + ] + ] + }, + "id": "way/821430510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/823427217", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2882292, + -0.0164175 + ], + [ + 109.2878251, + -0.0166037 + ], + [ + 109.287758, + -0.0166149 + ], + [ + 109.2867113, + -0.0171047 + ] + ] + }, + "id": "way/823427217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/823427222", + "highway": "residential", + "lanes": "1", + "name": "Gang Karya Bakti III", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3726134, + -0.0123859 + ], + [ + 109.3726198, + -0.0123698 + ] + ] + }, + "id": "way/823427222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/823427223", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Karya Bakti III", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725987, + -0.0124266 + ], + [ + 109.3726134, + -0.0123859 + ] + ] + }, + "id": "way/823427223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/823427224", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3737737, + -0.0124917 + ], + [ + 109.373766, + -0.0125132 + ], + [ + 109.3737596, + -0.012529 + ], + [ + 109.3737521, + -0.0125475 + ], + [ + 109.3737453, + -0.0125641 + ], + [ + 109.373724, + -0.0126163 + ], + [ + 109.3737144, + -0.0126399 + ], + [ + 109.3736618, + -0.0127631 + ], + [ + 109.3736462, + -0.0128048 + ] + ] + }, + "id": "way/823427224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/823427225", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3738017, + -0.012434 + ], + [ + 109.3737737, + -0.0124917 + ] + ] + }, + "id": "way/823427225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824069304", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195465, + -0.0307495 + ], + [ + 109.3194084, + -0.0305691 + ] + ] + }, + "id": "way/824069304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824075913", + "highway": "unclassified", + "name": "Jalan Putri Candramidi", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228664, + -0.0322703 + ], + [ + 109.3229067, + -0.032322 + ] + ] + }, + "id": "way/824075913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824078100", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320095, + -0.0255977 + ], + [ + 109.3203321, + -0.0255789 + ] + ] + }, + "id": "way/824078100" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824078101", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202158, + -0.025709 + ], + [ + 109.320956, + -0.025532 + ], + [ + 109.3212175, + -0.0254669 + ], + [ + 109.321243, + -0.0254743 + ], + [ + 109.3212632, + -0.0254937 + ], + [ + 109.3212762, + -0.0255149 + ], + [ + 109.3214107, + -0.0260858 + ], + [ + 109.3215807, + -0.0267024 + ], + [ + 109.3216044, + -0.0267537 + ], + [ + 109.3216449, + -0.0268154 + ] + ] + }, + "id": "way/824078101" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824078102", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213241, + -0.027014 + ], + [ + 109.320956, + -0.025532 + ] + ] + }, + "id": "way/824078102" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824078103", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254442, + -0.0252737 + ], + [ + 109.3255282, + -0.0254526 + ], + [ + 109.3255748, + -0.0255437 + ], + [ + 109.3255909, + -0.0255547 + ], + [ + 109.3256137, + -0.0255501 + ], + [ + 109.3260274, + -0.0253019 + ] + ] + }, + "id": "way/824078103" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088559", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244839, + -0.0237534 + ], + [ + 109.3245435, + -0.0239468 + ] + ] + }, + "id": "way/824088559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088560", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193239, + -0.0215446 + ], + [ + 109.3192112, + -0.021046 + ] + ] + }, + "id": "way/824088560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088561", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255473, + -0.0193166 + ], + [ + 109.3255781, + -0.0194534 + ] + ] + }, + "id": "way/824088561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088562", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325535, + -0.0192551 + ], + [ + 109.3255473, + -0.0193166 + ] + ] + }, + "id": "way/824088562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088563", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250678, + -0.0194051 + ], + [ + 109.3250896, + -0.0195302 + ] + ] + }, + "id": "way/824088563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088564", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250577, + -0.0193461 + ], + [ + 109.3250678, + -0.0194051 + ] + ] + }, + "id": "way/824088564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088565", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246923, + -0.0194789 + ], + [ + 109.3247178, + -0.0196002 + ] + ] + }, + "id": "way/824088565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088566", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "motor_vehicle": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243839, + -0.0195225 + ], + [ + 109.3244124, + -0.0196649 + ] + ] + }, + "id": "way/824088566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088567", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239252, + -0.0196177 + ], + [ + 109.3239447, + -0.0197415 + ] + ] + }, + "id": "way/824088567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088568", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228651, + -0.0198048 + ], + [ + 109.3228939, + -0.0199664 + ] + ] + }, + "id": "way/824088568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088569", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220262, + -0.0199811 + ], + [ + 109.3220148, + -0.0199318 + ] + ] + }, + "id": "way/824088569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088570", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220597, + -0.0201146 + ], + [ + 109.3220262, + -0.0199811 + ] + ] + }, + "id": "way/824088570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088571", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217989, + -0.0201555 + ], + [ + 109.3218078, + -0.0202198 + ] + ] + }, + "id": "way/824088571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088572", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3217721, + -0.0200234 + ], + [ + 109.3217989, + -0.0201555 + ] + ] + }, + "id": "way/824088572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088573", + "bridge": "yes", + "highway": "tertiary", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212055, + -0.0201286 + ], + [ + 109.3212364, + -0.020271 + ] + ] + }, + "id": "way/824088573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088574", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3207877, + -0.0202118 + ], + [ + 109.3208348, + -0.0203747 + ] + ] + }, + "id": "way/824088574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088575", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200521, + -0.0203586 + ], + [ + 109.3200824, + -0.0204936 + ] + ] + }, + "id": "way/824088575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088576", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319682, + -0.0204089 + ], + [ + 109.3196776, + -0.0203681 + ] + ] + }, + "id": "way/824088576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088577", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193045, + -0.0204907 + ], + [ + 109.31933, + -0.020639 + ] + ] + }, + "id": "way/824088577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088578", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184562, + -0.0206812 + ], + [ + 109.3184953, + -0.0208139 + ] + ] + }, + "id": "way/824088578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088579", + "access": "yes", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Jalan Gusti Hamzah", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3177763, + -0.0208052 + ], + [ + 109.3178049, + -0.0209709 + ] + ] + }, + "id": "way/824088579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824088581", + "highway": "residential", + "lanes": "1", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208123, + -0.0166844 + ], + [ + 109.3207958, + -0.0164218 + ], + [ + 109.3208032, + -0.0163994 + ], + [ + 109.3208163, + -0.0163914 + ], + [ + 109.3208306, + -0.0163883 + ], + [ + 109.3209336, + -0.0163836 + ], + [ + 109.32106, + -0.0163887 + ], + [ + 109.3211129, + -0.0163984 + ], + [ + 109.3211485, + -0.0164181 + ], + [ + 109.3211602, + -0.0164554 + ], + [ + 109.3211716, + -0.0164875 + ], + [ + 109.3212115, + -0.016524 + ] + ] + }, + "id": "way/824088581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824095604", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226713, + -0.0295137 + ], + [ + 109.3225907, + -0.0293958 + ] + ] + }, + "id": "way/824095604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824095606", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229865, + -0.030486 + ], + [ + 109.3227867, + -0.0301679 + ] + ] + }, + "id": "way/824095606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824095607", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230267, + -0.0305208 + ], + [ + 109.3229865, + -0.030486 + ], + [ + 109.322902, + -0.0305463 + ], + [ + 109.3226912, + -0.030693 + ], + [ + 109.3224324, + -0.0308577 + ], + [ + 109.3221274, + -0.0310391 + ] + ] + }, + "id": "way/824095607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824095608", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257451, + -0.0277901 + ], + [ + 109.3258245, + -0.0279138 + ] + ] + }, + "id": "way/824095608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824095609", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255222, + -0.0256557 + ], + [ + 109.325608, + -0.025799 + ] + ] + }, + "id": "way/824095609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824107134", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227967, + -0.0288827 + ], + [ + 109.3225781, + -0.0290309 + ] + ] + }, + "id": "way/824107134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824107135", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188044, + -0.0250145 + ], + [ + 109.319163, + -0.0249375 + ], + [ + 109.3191925, + -0.0249355 + ], + [ + 109.3192153, + -0.0249425 + ], + [ + 109.3192401, + -0.024964 + ], + [ + 109.3192656, + -0.0249694 + ], + [ + 109.3193018, + -0.0249673 + ], + [ + 109.319519, + -0.0249264 + ], + [ + 109.3196069, + -0.024906 + ], + [ + 109.319867, + -0.0248345 + ] + ] + }, + "id": "way/824107135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824107136", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200367, + -0.0253395 + ], + [ + 109.3203076, + -0.0252631 + ] + ] + }, + "id": "way/824107136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824107137", + "highway": "residential", + "lanes": "1", + "name": "Gang Bahagia", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239983, + -0.031573 + ], + [ + 109.3240302, + -0.0316246 + ] + ] + }, + "id": "way/824107137" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824107138", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203398, + -0.0308474 + ], + [ + 109.3205296, + -0.0310596 + ] + ] + }, + "id": "way/824107138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824107139", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3215792, + -0.0301797 + ], + [ + 109.321007, + -0.0306268 + ] + ] + }, + "id": "way/824107139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158489", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185139, + -0.0305879 + ], + [ + 109.3187566, + -0.0308454 + ] + ] + }, + "id": "way/824158489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158491", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317735, + -0.0306335 + ], + [ + 109.3174933, + -0.0308186 + ] + ] + }, + "id": "way/824158491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158492", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203485, + -0.0301185 + ], + [ + 109.3206301, + -0.0305061 + ] + ] + }, + "id": "way/824158492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158493", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319918, + -0.0304672 + ], + [ + 109.3201762, + -0.0307931 + ] + ] + }, + "id": "way/824158493" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158494", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3201212, + -0.0282692 + ], + [ + 109.3206268, + -0.0279754 + ] + ] + }, + "id": "way/824158494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158495", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191995, + -0.0262666 + ], + [ + 109.3196055, + -0.0261898 + ] + ] + }, + "id": "way/824158495" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158496", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255936, + -0.0320658 + ], + [ + 109.325556, + -0.032049 + ], + [ + 109.3255285, + -0.032043 + ], + [ + 109.3254098, + -0.0320464 + ], + [ + 109.3253414, + -0.0320403 + ], + [ + 109.32532, + -0.0320329 + ], + [ + 109.3252878, + -0.0320095 + ] + ] + }, + "id": "way/824158496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158497", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325556, + -0.032049 + ], + [ + 109.3256405, + -0.0318418 + ], + [ + 109.3257545, + -0.0315817 + ], + [ + 109.3259047, + -0.0312075 + ], + [ + 109.3259966, + -0.0310016 + ], + [ + 109.3260732, + -0.0308744 + ] + ] + }, + "id": "way/824158497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158498", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3241056, + -0.0300146 + ], + [ + 109.3240097, + -0.0298637 + ], + [ + 109.3237804, + -0.0295106 + ] + ] + }, + "id": "way/824158498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158499", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203217, + -0.0265217 + ], + [ + 109.320834, + -0.0264318 + ] + ] + }, + "id": "way/824158499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158500", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204799, + -0.0271708 + ], + [ + 109.3202345, + -0.0272814 + ] + ] + }, + "id": "way/824158500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824158501", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318776, + -0.0276376 + ], + [ + 109.3188029, + -0.0278295 + ], + [ + 109.3188595, + -0.0281774 + ], + [ + 109.3188757, + -0.0283168 + ], + [ + 109.318871, + -0.0283439 + ], + [ + 109.3188614, + -0.0283609 + ], + [ + 109.3188535, + -0.0283724 + ], + [ + 109.3188471, + -0.0283821 + ], + [ + 109.3188397, + -0.0283922 + ], + [ + 109.3188248, + -0.0284119 + ] + ] + }, + "id": "way/824158501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824162212", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248777, + -0.0311901 + ], + [ + 109.3250424, + -0.0314301 + ] + ] + }, + "id": "way/824162212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824162213", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248459, + -0.0311431 + ], + [ + 109.3248777, + -0.0311901 + ] + ] + }, + "id": "way/824162213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824162214", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247916, + -0.0310506 + ], + [ + 109.3248459, + -0.0311431 + ] + ] + }, + "id": "way/824162214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824162215", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230911, + -0.0327297 + ], + [ + 109.3234518, + -0.0325372 + ] + ] + }, + "id": "way/824162215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824413602", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051099, + -0.0113809 + ], + [ + 109.305162, + -0.0113854 + ] + ] + }, + "id": "way/824413602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824413603", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050227, + -0.0102212 + ], + [ + 109.305005, + -0.0102195 + ] + ] + }, + "id": "way/824413603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824413604", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304909, + -0.0091155 + ], + [ + 109.3048934, + -0.0091137 + ] + ] + }, + "id": "way/824413604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824413605", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049486, + -0.0095842 + ], + [ + 109.304983, + -0.0095906 + ] + ] + }, + "id": "way/824413605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824413606", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049731, + -0.00983 + ], + [ + 109.3049545, + -0.0098271 + ] + ] + }, + "id": "way/824413606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824413607", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3050646, + -0.0106276 + ], + [ + 109.3050469, + -0.0106281 + ] + ] + }, + "id": "way/824413607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824413608", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048802, + -0.0082478 + ], + [ + 109.3048618, + -0.0082467 + ] + ] + }, + "id": "way/824413608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824413609", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048882, + -0.0087728 + ], + [ + 109.3048719, + -0.008767 + ] + ] + }, + "id": "way/824413609" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824415600", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993388, + -0.0120324 + ], + [ + 109.2996928, + -0.0119761 + ], + [ + 109.2999351, + -0.0119293 + ] + ] + }, + "id": "way/824415600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824417511", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071252, + -0.0106725 + ], + [ + 109.3067115, + -0.0105686 + ], + [ + 109.3064751, + -0.0104998 + ], + [ + 109.3061683, + -0.0104331 + ] + ] + }, + "id": "way/824417511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824433952", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105626, + -0.033984 + ], + [ + 109.3109862, + -0.0340003 + ], + [ + 109.3109969, + -0.0340014 + ], + [ + 109.3110091, + -0.0339998 + ], + [ + 109.311013, + -0.0339858 + ], + [ + 109.3111261, + -0.0336847 + ] + ] + }, + "id": "way/824433952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824433953", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084013, + -0.0312363 + ], + [ + 109.3083094, + -0.0304686 + ] + ] + }, + "id": "way/824433953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824433954", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110084, + -0.0285494 + ], + [ + 109.3113271, + -0.0285052 + ], + [ + 109.3113397, + -0.0284946 + ], + [ + 109.311349, + -0.0284784 + ], + [ + 109.311349, + -0.0282088 + ], + [ + 109.311357, + -0.0281833 + ], + [ + 109.3113718, + -0.0281713 + ], + [ + 109.3119193, + -0.0281592 + ] + ] + }, + "id": "way/824433954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824433955", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31058, + -0.0319912 + ], + [ + 109.3105853, + -0.0323635 + ] + ] + }, + "id": "way/824433955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824433956", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101785, + -0.0273132 + ], + [ + 109.3106845, + -0.0271225 + ] + ] + }, + "id": "way/824433956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824433957", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128071, + -0.0265635 + ], + [ + 109.312306, + -0.026743 + ] + ] + }, + "id": "way/824433957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824449727", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057489, + -0.0248547 + ], + [ + 109.3055615, + -0.0244564 + ] + ] + }, + "id": "way/824449727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824449728", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3065552, + -0.0245335 + ], + [ + 109.3066049, + -0.0246589 + ] + ] + }, + "id": "way/824449728" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824449729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3066049, + -0.0246589 + ], + [ + 109.3066196, + -0.0246871 + ] + ] + }, + "id": "way/824449729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824460415", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3003667, + -0.0218144 + ], + [ + 109.3005994, + -0.0223401 + ], + [ + 109.3007523, + -0.0226995 + ], + [ + 109.3008877, + -0.0230402 + ], + [ + 109.3010004, + -0.023303 + ] + ] + }, + "id": "way/824460415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824460416", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020927, + -0.0209976 + ], + [ + 109.3025373, + -0.0220759 + ], + [ + 109.3027036, + -0.022497 + ], + [ + 109.30278, + -0.0226727 + ] + ] + }, + "id": "way/824460416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824464452", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053858, + -0.0231166 + ], + [ + 109.3054283, + -0.0232121 + ] + ] + }, + "id": "way/824464452" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824477244", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062575, + -0.0229121 + ], + [ + 109.3063502, + -0.0231649 + ], + [ + 109.3063646, + -0.0232003 + ], + [ + 109.3063863, + -0.0232434 + ], + [ + 109.3064081, + -0.0233131 + ], + [ + 109.3065888, + -0.0238663 + ] + ] + }, + "id": "way/824477244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824483334", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133283, + -0.0489515 + ], + [ + 109.3131973, + -0.0488425 + ], + [ + 109.3130851, + -0.0487451 + ], + [ + 109.3130355, + -0.0487056 + ] + ] + }, + "id": "way/824483334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824545368", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148962, + -0.024966 + ], + [ + 109.3147977, + -0.0245234 + ], + [ + 109.3147226, + -0.0243062 + ] + ] + }, + "id": "way/824545368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824547741", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279539, + -0.0190794 + ], + [ + 109.328021, + -0.0195318 + ] + ] + }, + "id": "way/824547741" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824547742", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323532, + -0.0180266 + ], + [ + 109.3324231, + -0.0181478 + ], + [ + 109.332426, + -0.0181498 + ], + [ + 109.3324295, + -0.0181507 + ], + [ + 109.3324342, + -0.0181504 + ], + [ + 109.3324385, + -0.0181492 + ], + [ + 109.3324428, + -0.0181469 + ], + [ + 109.3325076, + -0.0180699 + ] + ] + }, + "id": "way/824547742" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824548564", + "highway": "trunk_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335001, + -0.0182267 + ], + [ + 109.3335527, + -0.0181645 + ] + ] + }, + "id": "way/824548564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824552357", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159447, + -0.059685 + ], + [ + 109.3157438, + -0.0595611 + ] + ] + }, + "id": "way/824552357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824552358", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155581, + -0.0571733 + ], + [ + 109.3163346, + -0.0576728 + ] + ] + }, + "id": "way/824552358" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824553574", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3100659, + -0.0608886 + ], + [ + 109.3100914, + -0.0609116 + ], + [ + 109.3101467, + -0.06097 + ], + [ + 109.3100891, + -0.0610746 + ] + ] + }, + "id": "way/824553574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824554779", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3162427, + -0.0602216 + ], + [ + 109.3163152, + -0.0601056 + ] + ] + }, + "id": "way/824554779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559416", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258806, + -0.0192723 + ], + [ + 109.3258693, + -0.0191913 + ] + ] + }, + "id": "way/824559416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559417", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325898, + -0.0193964 + ], + [ + 109.3258806, + -0.0192723 + ] + ] + }, + "id": "way/824559417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559418", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325902, + -0.0194298 + ], + [ + 109.325898, + -0.0193964 + ] + ] + }, + "id": "way/824559418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559419", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247178, + -0.0196002 + ], + [ + 109.3247236, + -0.019624 + ] + ] + }, + "id": "way/824559419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559420", + "highway": "residential", + "import": "yes", + "motor_vehicle": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244124, + -0.0196649 + ], + [ + 109.3244184, + -0.0196921 + ] + ] + }, + "id": "way/824559420" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559421", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242578, + -0.0195748 + ], + [ + 109.3242546, + -0.0195496 + ], + [ + 109.3242478, + -0.0194971 + ] + ] + }, + "id": "way/824559421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559422", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242766, + -0.0196867 + ], + [ + 109.3242578, + -0.0195748 + ] + ] + }, + "id": "way/824559422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242835, + -0.0197231 + ], + [ + 109.3242766, + -0.0196867 + ] + ] + }, + "id": "way/824559423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559424", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233378, + -0.0197102 + ], + [ + 109.3233292, + -0.0196633 + ] + ] + }, + "id": "way/824559424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559425", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233646, + -0.0198671 + ], + [ + 109.3233378, + -0.0197102 + ] + ] + }, + "id": "way/824559425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559426", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323372, + -0.0199123 + ], + [ + 109.3233646, + -0.0198671 + ] + ] + }, + "id": "way/824559426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559427", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244184, + -0.0196921 + ], + [ + 109.3242835, + -0.0197231 + ], + [ + 109.3241049, + -0.0197639 + ], + [ + 109.3239581, + -0.0197979 + ], + [ + 109.3236544, + -0.0198572 + ], + [ + 109.323448, + -0.0198975 + ], + [ + 109.323372, + -0.0199123 + ], + [ + 109.3231626, + -0.0199532 + ], + [ + 109.3229025, + -0.0200039 + ] + ] + }, + "id": "way/824559427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187405, + -0.0206195 + ], + [ + 109.3187183, + -0.0205519 + ] + ] + }, + "id": "way/824559431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559432", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31877, + -0.0207476 + ], + [ + 109.3187405, + -0.0206195 + ] + ] + }, + "id": "way/824559432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559433", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187852, + -0.0208103 + ], + [ + 109.31877, + -0.0207476 + ] + ] + }, + "id": "way/824559433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559434", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189363, + -0.0205906 + ], + [ + 109.3189182, + -0.02051 + ] + ] + }, + "id": "way/824559434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559435", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189625, + -0.0207315 + ], + [ + 109.3189363, + -0.0205906 + ] + ] + }, + "id": "way/824559435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559436", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189703, + -0.0207689 + ], + [ + 109.3189625, + -0.0207315 + ] + ] + }, + "id": "way/824559436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559437", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186222, + -0.0208467 + ], + [ + 109.3187852, + -0.0208103 + ], + [ + 109.3189703, + -0.0207689 + ], + [ + 109.3193413, + -0.0206859 + ], + [ + 109.319713, + -0.0205982 + ] + ] + }, + "id": "way/824559437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559438", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170386, + -0.0211918 + ], + [ + 109.3178169, + -0.0210116 + ], + [ + 109.3181799, + -0.0209253 + ] + ] + }, + "id": "way/824559438" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559439", + "highway": "residential", + "name": "Gang Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202935, + -0.0204612 + ], + [ + 109.3203, + -0.0204893 + ] + ] + }, + "id": "way/824559439" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559440", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3202617, + -0.0203295 + ], + [ + 109.3202935, + -0.0204612 + ] + ] + }, + "id": "way/824559440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824559441", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216042, + -0.0202569 + ], + [ + 109.3212504, + -0.0203276 + ], + [ + 109.3209588, + -0.0203786 + ], + [ + 109.32084, + -0.0203994 + ], + [ + 109.3204256, + -0.0204684 + ], + [ + 109.3203, + -0.0204893 + ] + ] + }, + "id": "way/824559441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824748009", + "highway": "residential", + "name": "Komplek Kehutanan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3126153, + -0.0424101 + ], + [ + 109.3130645, + -0.0429093 + ], + [ + 109.3135613, + -0.0434299 + ] + ] + }, + "id": "way/824748009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824748010", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3163682, + -0.0345009 + ], + [ + 109.3163024, + -0.0345489 + ], + [ + 109.3162789, + -0.0345536 + ], + [ + 109.3162528, + -0.0345495 + ], + [ + 109.3162105, + -0.0345321 + ] + ] + }, + "id": "way/824748010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824748011", + "highway": "residential", + "name": "Gang Sepakat 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3082286, + -0.0376978 + ], + [ + 109.3081344, + -0.0376153 + ], + [ + 109.3079875, + -0.0374862 + ] + ] + }, + "id": "way/824748011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824750159", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108282, + -0.0158313 + ], + [ + 109.310734, + -0.0162772 + ] + ] + }, + "id": "way/824750159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824750160", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080573, + -0.0166907 + ], + [ + 109.3080392, + -0.0168315 + ], + [ + 109.3080405, + -0.0168419 + ], + [ + 109.3080452, + -0.01685 + ], + [ + 109.3080556, + -0.0168547 + ], + [ + 109.3085696, + -0.0169958 + ], + [ + 109.3088635, + -0.0170729 + ] + ] + }, + "id": "way/824750160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824750161", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315687, + -0.018695 + ], + [ + 109.3161181, + -0.0185611 + ] + ] + }, + "id": "way/824750161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824750162", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315326, + -0.0198403 + ], + [ + 109.3151294, + -0.0199166 + ] + ] + }, + "id": "way/824750162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824750163", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148634, + -0.0191362 + ], + [ + 109.3150954, + -0.0198202 + ], + [ + 109.3151294, + -0.0199166 + ], + [ + 109.3152255, + -0.020189 + ], + [ + 109.3152697, + -0.020311 + ], + [ + 109.3153073, + -0.0204371 + ], + [ + 109.3154441, + -0.0208931 + ], + [ + 109.3155593, + -0.0213173 + ] + ] + }, + "id": "way/824750163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753854", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089763, + -0.0151202 + ], + [ + 109.3089927, + -0.0151228 + ] + ] + }, + "id": "way/824753854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753855", + "highway": "residential", + "lanes": "1", + "name": "Gang Bersama 1 B", + "width": "3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090404, + -0.0143273 + ], + [ + 109.3090697, + -0.0143285 + ] + ] + }, + "id": "way/824753855" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753856", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090604, + -0.0138691 + ], + [ + 109.3090892, + -0.0138738 + ] + ] + }, + "id": "way/824753856" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753857", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091092, + -0.0133294 + ], + [ + 109.3091177, + -0.013332 + ], + [ + 109.3091256, + -0.0133344 + ] + ] + }, + "id": "way/824753857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753858", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091484, + -0.0127558 + ], + [ + 109.3091701, + -0.0127609 + ] + ] + }, + "id": "way/824753858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753859", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092048, + -0.0123474 + ], + [ + 109.3092269, + -0.0123548 + ] + ] + }, + "id": "way/824753859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092545, + -0.0119816 + ], + [ + 109.3092759, + -0.0119873 + ] + ] + }, + "id": "way/824753860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753861", + "highway": "residential", + "name": "Jalur 2B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093319, + -0.0116214 + ], + [ + 109.309352, + -0.0116294 + ] + ] + }, + "id": "way/824753861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753862", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093721, + -0.0114462 + ], + [ + 109.3094046, + -0.0114549 + ] + ] + }, + "id": "way/824753862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824753863", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095208, + -0.0109463 + ], + [ + 109.3095604, + -0.0109604 + ] + ] + }, + "id": "way/824753863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824755708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124496, + -0.0143082 + ], + [ + 109.3129992, + -0.0146569 + ], + [ + 109.3134525, + -0.0149761 + ], + [ + 109.3135491, + -0.0150485 + ] + ] + }, + "id": "way/824755708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824755709", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112786, + -0.0129363 + ], + [ + 109.311858, + -0.0131442 + ], + [ + 109.3124782, + -0.0133742 + ] + ] + }, + "id": "way/824755709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824755710", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117332, + -0.0080399 + ], + [ + 109.3118975, + -0.0079896 + ] + ] + }, + "id": "way/824755710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824766913", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109992, + -0.0345546 + ], + [ + 109.3110097, + -0.0343839 + ], + [ + 109.3110107, + -0.0342253 + ], + [ + 109.3110104, + -0.0340818 + ], + [ + 109.3110091, + -0.0339998 + ] + ] + }, + "id": "way/824766913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824769681", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142981, + -0.0081497 + ], + [ + 109.3145911, + -0.0082907 + ] + ] + }, + "id": "way/824769681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824769682", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3139886, + -0.0100964 + ], + [ + 109.3138736, + -0.0100576 + ], + [ + 109.3137657, + -0.0100073 + ], + [ + 109.3135799, + -0.009899 + ] + ] + }, + "id": "way/824769682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824842313", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284046, + -0.0249206 + ], + [ + 109.328436, + -0.0249737 + ] + ] + }, + "id": "way/824842313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824842314", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3283886, + -0.0248941 + ], + [ + 109.3284046, + -0.0249206 + ] + ] + }, + "id": "way/824842314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824842315", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.328436, + -0.0249737 + ], + [ + 109.3284363, + -0.0249768 + ], + [ + 109.3284359, + -0.0249797 + ], + [ + 109.3284349, + -0.024982 + ], + [ + 109.3284308, + -0.0249852 + ], + [ + 109.3282131, + -0.0250766 + ], + [ + 109.3281992, + -0.0250833 + ], + [ + 109.3281742, + -0.0250973 + ], + [ + 109.3281532, + -0.025111 + ], + [ + 109.3281117, + -0.0251527 + ] + ] + }, + "id": "way/824842315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824842316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276285, + -0.0255635 + ], + [ + 109.3276339, + -0.0255657 + ], + [ + 109.3276436, + -0.0255642 + ], + [ + 109.3276489, + -0.0255611 + ], + [ + 109.3279416, + -0.0252913 + ], + [ + 109.3279636, + -0.0252711 + ], + [ + 109.3281117, + -0.0251527 + ] + ] + }, + "id": "way/824842316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824842317", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332179, + -0.0307546 + ], + [ + 109.3325646, + -0.0312987 + ], + [ + 109.33268, + -0.0315723 + ], + [ + 109.3328664, + -0.0318444 + ] + ] + }, + "id": "way/824842317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824842318", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340395, + -0.0323852 + ], + [ + 109.3340763, + -0.0324203 + ], + [ + 109.3340921, + -0.0324353 + ], + [ + 109.3341659, + -0.032507 + ] + ] + }, + "id": "way/824842318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824842319", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348279, + -0.0318647 + ], + [ + 109.334587, + -0.032102 + ] + ] + }, + "id": "way/824842319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824842320", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346536, + -0.0335855 + ], + [ + 109.3346081, + -0.0335367 + ], + [ + 109.3345434, + -0.0334686 + ], + [ + 109.3345303, + -0.0334587 + ], + [ + 109.3345209, + -0.0334553 + ], + [ + 109.3345155, + -0.0334536 + ], + [ + 109.3345065, + -0.033454 + ], + [ + 109.3344965, + -0.033458 + ], + [ + 109.3342993, + -0.033649 + ] + ] + }, + "id": "way/824842320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824842321", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331209, + -0.0336066 + ], + [ + 109.3332307, + -0.0335054 + ], + [ + 109.3332393, + -0.033502 + ], + [ + 109.3332486, + -0.0335018 + ], + [ + 109.333256, + -0.0335031 + ], + [ + 109.3332631, + -0.0335063 + ], + [ + 109.3333703, + -0.0336297 + ], + [ + 109.3333751, + -0.0336404 + ], + [ + 109.3333771, + -0.0336497 + ], + [ + 109.3333762, + -0.0336579 + ], + [ + 109.333372, + -0.0336671 + ], + [ + 109.3332932, + -0.0337639 + ] + ] + }, + "id": "way/824842321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824881433", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128323, + -0.0221564 + ], + [ + 109.3128094, + -0.0220832 + ] + ] + }, + "id": "way/824881433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824881434", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128759, + -0.0222952 + ], + [ + 109.3128323, + -0.0221564 + ] + ] + }, + "id": "way/824881434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824881435", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128847, + -0.0223145 + ], + [ + 109.3128759, + -0.0222952 + ] + ] + }, + "id": "way/824881435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/824881436", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312261, + -0.0222467 + ], + [ + 109.3122798, + -0.0222932 + ] + ] + }, + "id": "way/824881436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826037472", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491481, + -0.0256203 + ], + [ + 109.3491499, + -0.025613 + ], + [ + 109.3491422, + -0.0255859 + ] + ] + }, + "id": "way/826037472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826037473", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491074, + -0.0255936 + ], + [ + 109.3491206, + -0.0256284 + ], + [ + 109.349132, + -0.0256293 + ] + ] + }, + "id": "way/826037473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826046307", + "highway": "trunk", + "name": "Jalan Komodor Yos Sudarso", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323891, + -0.0171727 + ], + [ + 109.3324595, + -0.0172267 + ] + ] + }, + "id": "way/826046307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826046308", + "highway": "trunk", + "name": "Jalan Komodor Yos Sudarso", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324595, + -0.0172267 + ], + [ + 109.3326054, + -0.0173804 + ] + ] + }, + "id": "way/826046308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826046309", + "bridge": "yes", + "highway": "trunk", + "lanes": "1", + "layer": "1", + "oneway": "yes", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326896, + -0.017455 + ], + [ + 109.3328316, + -0.0175606 + ] + ] + }, + "id": "way/826046309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826046310", + "highway": "trunk", + "lanes": "1", + "oneway": "yes", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328316, + -0.0175606 + ], + [ + 109.3328884, + -0.0176075 + ], + [ + 109.3329348, + -0.017649 + ] + ] + }, + "id": "way/826046310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826046733", + "highway": "trunk", + "name": "Jalan Komodor Yos Sudarso", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326054, + -0.0173804 + ], + [ + 109.3326896, + -0.017455 + ] + ] + }, + "id": "way/826046733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826046734", + "highway": "trunk", + "name": "Jalan Komodor Yos Sudarso", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325663, + -0.0174109 + ], + [ + 109.3324271, + -0.0172643 + ] + ] + }, + "id": "way/826046734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826059937", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no", + "name": "Gang Ruwai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292486, + -0.0222387 + ], + [ + 109.3291383, + -0.0222438 + ] + ] + }, + "id": "way/826059937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826059938", + "highway": "residential", + "motorcar": "no", + "name": "Gang Ruwai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292984, + -0.0222362 + ], + [ + 109.3292486, + -0.0222387 + ] + ] + }, + "id": "way/826059938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826059939", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281247, + -0.0222892 + ], + [ + 109.3281238, + -0.0222605 + ], + [ + 109.3281211, + -0.0222098 + ], + [ + 109.32812, + -0.022197 + ], + [ + 109.3281163, + -0.0221788 + ], + [ + 109.3280925, + -0.0221291 + ], + [ + 109.3280925, + -0.0221262 + ], + [ + 109.3280928, + -0.0221243 + ], + [ + 109.3280935, + -0.0221226 + ], + [ + 109.3280949, + -0.0221211 + ], + [ + 109.328098, + -0.022119 + ], + [ + 109.3281034, + -0.0221164 + ], + [ + 109.3281095, + -0.022115 + ], + [ + 109.3281207, + -0.0221138 + ], + [ + 109.3283444, + -0.0221125 + ], + [ + 109.3283535, + -0.0221141 + ], + [ + 109.3283626, + -0.0221168 + ], + [ + 109.3283696, + -0.0221194 + ], + [ + 109.3283869, + -0.0221297 + ] + ] + }, + "id": "way/826059939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826059940", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330494, + -0.0214148 + ], + [ + 109.3331219, + -0.0213122 + ], + [ + 109.3332788, + -0.0211117 + ], + [ + 109.3334509, + -0.0209221 + ] + ] + }, + "id": "way/826059940" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826059941", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343959, + -0.0237469 + ], + [ + 109.334358, + -0.0238021 + ], + [ + 109.3343364, + -0.023836 + ], + [ + 109.3341371, + -0.0241848 + ] + ] + }, + "id": "way/826059941" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826059942", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332539, + -0.0239546 + ], + [ + 109.3323641, + -0.0242488 + ], + [ + 109.3322478, + -0.0244524 + ], + [ + 109.3321686, + -0.0245807 + ], + [ + 109.3321679, + -0.0245851 + ], + [ + 109.3321685, + -0.0245879 + ], + [ + 109.3321697, + -0.0245907 + ], + [ + 109.3321716, + -0.0245941 + ], + [ + 109.3322033, + -0.0246201 + ], + [ + 109.3322101, + -0.0246305 + ], + [ + 109.3322141, + -0.024643 + ], + [ + 109.3322149, + -0.0246508 + ], + [ + 109.3322144, + -0.0246567 + ], + [ + 109.3322126, + -0.0246637 + ], + [ + 109.3320539, + -0.024872 + ] + ] + }, + "id": "way/826059942" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826348039", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453285, + -0.0485286 + ], + [ + 109.345631, + -0.0488068 + ] + ] + }, + "id": "way/826348039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826353327", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439641, + -0.0472004 + ], + [ + 109.3441377, + -0.0470647 + ], + [ + 109.344184, + -0.0470345 + ], + [ + 109.3441935, + -0.0470298 + ], + [ + 109.3442065, + -0.0470272 + ], + [ + 109.3442151, + -0.0470278 + ], + [ + 109.3442255, + -0.0470304 + ], + [ + 109.3442413, + -0.0470382 + ], + [ + 109.3442701, + -0.0470624 + ], + [ + 109.3445096, + -0.0473535 + ] + ] + }, + "id": "way/826353327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826355476", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445078, + -0.0450101 + ], + [ + 109.3442188, + -0.0454071 + ] + ] + }, + "id": "way/826355476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826356785", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3349116, + -0.0113323 + ], + [ + 109.3349243, + -0.0113028 + ], + [ + 109.3352482, + -0.0109233 + ] + ] + }, + "id": "way/826356785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826356786", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353756, + -0.0110695 + ], + [ + 109.335283, + -0.0111607 + ], + [ + 109.3351637, + -0.011276 + ], + [ + 109.3350182, + -0.0114235 + ], + [ + 109.3350007, + -0.0114255 + ] + ] + }, + "id": "way/826356786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826374175", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459656, + -0.0443809 + ], + [ + 109.3460146, + -0.0443255 + ], + [ + 109.3460337, + -0.0443161 + ], + [ + 109.3460535, + -0.0443094 + ], + [ + 109.3460699, + -0.0443077 + ], + [ + 109.3460923, + -0.0443094 + ], + [ + 109.3461239, + -0.0443228 + ], + [ + 109.3462258, + -0.0443912 + ], + [ + 109.3463431, + -0.0444864 + ], + [ + 109.3463523, + -0.0444952 + ], + [ + 109.3463592, + -0.0445085 + ], + [ + 109.3463601, + -0.0445208 + ], + [ + 109.3463565, + -0.0445381 + ], + [ + 109.3463451, + -0.0445676 + ], + [ + 109.3462928, + -0.0446369 + ] + ] + }, + "id": "way/826374175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826374176", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442847, + -0.0502563 + ], + [ + 109.343885, + -0.0505904 + ], + [ + 109.3435904, + -0.0508541 + ], + [ + 109.3433477, + -0.051082 + ], + [ + 109.3432672, + -0.0511579 + ] + ] + }, + "id": "way/826374176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826423261", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476738, + -0.0471771 + ], + [ + 109.3471431, + -0.0467543 + ], + [ + 109.3470888, + -0.0467147 + ], + [ + 109.347064, + -0.0467033 + ], + [ + 109.3470385, + -0.0466979 + ], + [ + 109.3470216, + -0.0467013 + ], + [ + 109.347009, + -0.046708 + ], + [ + 109.3469795, + -0.0467442 + ], + [ + 109.3468434, + -0.0469078 + ], + [ + 109.3467246, + -0.047038 + ] + ] + }, + "id": "way/826423261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826423262", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486579, + -0.0517814 + ], + [ + 109.3484446, + -0.0520818 + ], + [ + 109.3480538, + -0.0524621 + ], + [ + 109.3478909, + -0.052616 + ] + ] + }, + "id": "way/826423262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826438803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3295374, + -0.0152248 + ], + [ + 109.3293406, + -0.015467 + ] + ] + }, + "id": "way/826438803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826456014", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477246, + -0.0327854 + ], + [ + 109.3473905, + -0.0329506 + ], + [ + 109.3473667, + -0.0329643 + ], + [ + 109.347307, + -0.0330123 + ], + [ + 109.3472769, + -0.0330321 + ], + [ + 109.3470577, + -0.0331587 + ] + ] + }, + "id": "way/826456014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826456015", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474597, + -0.0268622 + ], + [ + 109.3476352, + -0.0269148 + ], + [ + 109.3477905, + -0.026961 + ], + [ + 109.3478175, + -0.0269758 + ], + [ + 109.3480803, + -0.0271866 + ], + [ + 109.3481097, + -0.0272117 + ] + ] + }, + "id": "way/826456015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826479326", + "highway": "trunk_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443062, + -0.0295273 + ], + [ + 109.3443696, + -0.0294868 + ] + ] + }, + "id": "way/826479326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826834464", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352702, + -0.0469945 + ], + [ + 109.3524954, + -0.0472967 + ] + ] + }, + "id": "way/826834464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826845670", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442847, + -0.0502563 + ], + [ + 109.3449015, + -0.0510143 + ] + ] + }, + "id": "way/826845670" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826855418", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293544, + -0.040245 + ], + [ + 109.3294456, + -0.0401921 + ] + ] + }, + "id": "way/826855418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826855419", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308378, + -0.0429895 + ], + [ + 109.3305838, + -0.0431554 + ], + [ + 109.3305288, + -0.0431728 + ], + [ + 109.3304966, + -0.0431527 + ], + [ + 109.3302633, + -0.0427142 + ], + [ + 109.3302593, + -0.0426833 + ], + [ + 109.3303049, + -0.042631 + ], + [ + 109.3305647, + -0.0424977 + ] + ] + }, + "id": "way/826855419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826861514", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339567, + -0.034685 + ], + [ + 109.3337443, + -0.034478 + ] + ] + }, + "id": "way/826861514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826861515", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339567, + -0.034685 + ], + [ + 109.3341793, + -0.0349358 + ], + [ + 109.3342195, + -0.0349452 + ], + [ + 109.3342853, + -0.0349264 + ], + [ + 109.3344435, + -0.0347963 + ], + [ + 109.3344864, + -0.0347373 + ], + [ + 109.3344837, + -0.0346944 + ], + [ + 109.3342705, + -0.0344523 + ], + [ + 109.3342457, + -0.0344369 + ], + [ + 109.3342182, + -0.0344342 + ], + [ + 109.334188, + -0.0344503 + ], + [ + 109.3339567, + -0.034685 + ] + ] + }, + "id": "way/826861515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826972991", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327215, + -0.0394338 + ], + [ + 109.3322428, + -0.039698 + ] + ] + }, + "id": "way/826972991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/826972992", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324587, + -0.0358417 + ], + [ + 109.3324229, + -0.035794 + ], + [ + 109.3323943, + -0.0357552 + ], + [ + 109.3323782, + -0.035731 + ], + [ + 109.3323736, + -0.0357073 + ], + [ + 109.3323688, + -0.0356828 + ], + [ + 109.3324171, + -0.0355983 + ], + [ + 109.3325391, + -0.0354467 + ], + [ + 109.3326075, + -0.0353636 + ], + [ + 109.3326223, + -0.0353113 + ], + [ + 109.3326183, + -0.035255 + ], + [ + 109.3324989, + -0.0350967 + ], + [ + 109.3324144, + -0.0349961 + ], + [ + 109.332397, + -0.0349626 + ], + [ + 109.332397, + -0.0349452 + ], + [ + 109.3324507, + -0.0348807 + ] + ] + }, + "id": "way/826972992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/827978648", + "highway": "residential", + "name": "KOMPLEK PESONA KHATULISTIWA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3669001, + 0.0034026 + ], + [ + 109.3698831, + 0.0035669 + ] + ] + }, + "id": "way/827978648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/837666931", + "highway": "cycleway", + "name": "Gang Aden" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459487, + -0.0330846 + ], + [ + 109.3463595, + -0.0329084 + ], + [ + 109.3464103, + -0.0327944 + ], + [ + 109.346646, + -0.0326588 + ], + [ + 109.3467092, + -0.032588 + ], + [ + 109.3470465, + -0.0323553 + ], + [ + 109.3473456, + -0.0321609 + ], + [ + 109.347404, + -0.0321193 + ] + ] + }, + "id": "way/837666931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/837666932", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346022, + -0.0296388 + ], + [ + 109.3461111, + -0.0298449 + ], + [ + 109.3462265, + -0.0298905 + ], + [ + 109.3465334, + -0.0304378 + ], + [ + 109.3465612, + -0.0304833 + ], + [ + 109.3466418, + -0.0306463 + ], + [ + 109.3467402, + -0.0308869 + ], + [ + 109.3467645, + -0.0309465 + ], + [ + 109.3468985, + -0.0312546 + ], + [ + 109.3470749, + -0.0315893 + ], + [ + 109.3472369, + -0.0318527 + ], + [ + 109.3472894, + -0.031938 + ], + [ + 109.347404, + -0.0321193 + ], + [ + 109.347532, + -0.0323216 + ], + [ + 109.3475977, + -0.0324309 + ], + [ + 109.3476993, + -0.0326395 + ], + [ + 109.3477942, + -0.0328707 + ], + [ + 109.3478826, + -0.0330941 + ], + [ + 109.3479066, + -0.0331392 + ], + [ + 109.3480081, + -0.0333298 + ], + [ + 109.3481203, + -0.033539 + ], + [ + 109.3482388, + -0.0337583 + ] + ] + }, + "id": "way/837666932" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327390", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3137543, + -0.0740836 + ], + [ + 109.3138602, + -0.0741698 + ], + [ + 109.3141875, + -0.0744159 + ], + [ + 109.3148004, + -0.0748839 + ] + ] + }, + "id": "way/842327390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327391", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3135575, + -0.0739234 + ], + [ + 109.3137543, + -0.0740836 + ] + ] + }, + "id": "way/842327391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142494, + -0.0732087 + ], + [ + 109.3144906, + -0.0733973 + ], + [ + 109.3149693, + -0.0737715 + ], + [ + 109.3159443, + -0.0745037 + ] + ] + }, + "id": "way/842327392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327393", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140666, + -0.0730657 + ], + [ + 109.3142494, + -0.0732087 + ] + ] + }, + "id": "way/842327393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144468, + -0.0728869 + ], + [ + 109.3146683, + -0.0730667 + ], + [ + 109.3151873, + -0.0734771 + ], + [ + 109.3155024, + -0.073748 + ], + [ + 109.316055, + -0.0741557 + ] + ] + }, + "id": "way/842327394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327395", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3142542, + -0.0727306 + ], + [ + 109.3144468, + -0.0728869 + ] + ] + }, + "id": "way/842327395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327396", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155944, + -0.0707867 + ], + [ + 109.3162186, + -0.071562 + ], + [ + 109.3165136, + -0.071798 + ], + [ + 109.316688, + -0.0719 + ], + [ + 109.3167014, + -0.0719321 + ], + [ + 109.3165405, + -0.0721709 + ], + [ + 109.3159356, + -0.073453 + ] + ] + }, + "id": "way/842327396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327397", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154432, + -0.070599 + ], + [ + 109.3155944, + -0.0707867 + ] + ] + }, + "id": "way/842327397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327398", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179841, + -0.0673563 + ], + [ + 109.3181079, + -0.0675164 + ], + [ + 109.3184714, + -0.068028 + ], + [ + 109.3199075, + -0.0699578 + ] + ] + }, + "id": "way/842327398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/842327399", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178174, + -0.0671407 + ], + [ + 109.3179841, + -0.0673563 + ] + ] + }, + "id": "way/842327399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/844957118", + "highway": "residential", + "lanes": "1", + "motor_vehicle": "destination", + "name": "Gang Belibis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268357, + -0.0258974 + ], + [ + 109.3272471, + -0.0256718 + ], + [ + 109.3272948, + -0.0256481 + ], + [ + 109.3273382, + -0.0256329 + ], + [ + 109.3273967, + -0.0256225 + ], + [ + 109.3274165, + -0.0256169 + ], + [ + 109.3274322, + -0.0256085 + ], + [ + 109.3274434, + -0.0256007 + ] + ] + }, + "id": "way/844957118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/847432251", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457434, + -0.059303 + ], + [ + 109.3453129, + -0.0588604 + ] + ] + }, + "id": "way/847432251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/847432252", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457434, + -0.059303 + ], + [ + 109.3454657, + -0.0596196 + ], + [ + 109.3454229, + -0.0596684 + ], + [ + 109.3453983, + -0.0596456 + ], + [ + 109.3453688, + -0.0596121 + ], + [ + 109.3453366, + -0.0595832 + ], + [ + 109.3452883, + -0.0595206 + ], + [ + 109.3449757, + -0.0592156 + ] + ] + }, + "id": "way/847432252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/847432253", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461594, + -0.0597311 + ], + [ + 109.345877, + -0.060025 + ], + [ + 109.3458357, + -0.0600679 + ], + [ + 109.3458771, + -0.0601069 + ], + [ + 109.3459173, + -0.0601452 + ], + [ + 109.3459797, + -0.0602035 + ], + [ + 109.3460561, + -0.0602779 + ], + [ + 109.3462347, + -0.0604526 + ] + ] + }, + "id": "way/847432253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/847432254", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461594, + -0.0597311 + ], + [ + 109.3459364, + -0.0594914 + ], + [ + 109.3458124, + -0.0593704 + ], + [ + 109.3457434, + -0.059303 + ] + ] + }, + "id": "way/847432254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/847432256", + "highway": "service", + "oneway": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441119, + -0.060902 + ], + [ + 109.3444099, + -0.0606105 + ], + [ + 109.3444821, + -0.0605399 + ], + [ + 109.3445057, + -0.0605092 + ], + [ + 109.34466, + -0.0603081 + ], + [ + 109.3445756, + -0.0602129 + ], + [ + 109.3450007, + -0.0598173 + ] + ] + }, + "id": "way/847432256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/860335413", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529093, + 0.0207538 + ], + [ + 109.3530325, + 0.021028 + ] + ] + }, + "id": "way/860335413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/868380326", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427412, + -0.0537157 + ], + [ + 109.3428083, + -0.0536526 + ], + [ + 109.341778, + -0.0528022 + ], + [ + 109.3416201, + -0.0526933 + ] + ] + }, + "id": "way/868380326" + }, + { + "type": "Feature", + "properties": { + "@id": "way/868380327", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428083, + -0.0536526 + ], + [ + 109.3431503, + -0.0538898 + ], + [ + 109.3436597, + -0.0543129 + ], + [ + 109.343918, + -0.0544857 + ], + [ + 109.343974, + -0.0545043 + ], + [ + 109.3440413, + -0.05451 + ], + [ + 109.3440861, + -0.05451 + ] + ] + }, + "id": "way/868380327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/868380331", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462155, + -0.0572121 + ], + [ + 109.3464108, + -0.057291 + ] + ] + }, + "id": "way/868380331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/868385433", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430532, + -0.0526938 + ], + [ + 109.3434429, + -0.0530179 + ] + ] + }, + "id": "way/868385433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/871914944", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140103, + 0.016759 + ], + [ + 109.3141746, + 0.0171233 + ], + [ + 109.314251, + 0.0173363 + ], + [ + 109.3142412, + 0.0174127 + ], + [ + 109.3143339, + 0.017629 + ], + [ + 109.3143193, + 0.0176859 + ], + [ + 109.3143209, + 0.0177217 + ], + [ + 109.3143453, + 0.017751 + ], + [ + 109.3143632, + 0.0177884 + ], + [ + 109.3143795, + 0.0178648 + ], + [ + 109.3144071, + 0.0179721 + ], + [ + 109.3144299, + 0.0180388 + ], + [ + 109.3144461, + 0.0180665 + ], + [ + 109.3144608, + 0.0181055 + ], + [ + 109.3144852, + 0.0182014 + ], + [ + 109.314503, + 0.0182372 + ], + [ + 109.3145177, + 0.0182876 + ], + [ + 109.3145242, + 0.0183299 + ], + [ + 109.3145567, + 0.0183657 + ], + [ + 109.3145583, + 0.018408 + ], + [ + 109.3145795, + 0.0184535 + ], + [ + 109.3146006, + 0.0184844 + ], + [ + 109.3146169, + 0.0185299 + ], + [ + 109.3146218, + 0.0185966 + ], + [ + 109.3146494, + 0.0186486 + ], + [ + 109.3146673, + 0.0186925 + ], + [ + 109.3147275, + 0.0188145 + ], + [ + 109.3147421, + 0.0188779 + ], + [ + 109.3147454, + 0.0189381 + ], + [ + 109.3147323, + 0.0189869 + ], + [ + 109.3146933, + 0.0190633 + ], + [ + 109.3146982, + 0.019117 + ], + [ + 109.3146803, + 0.0192048 + ], + [ + 109.3146787, + 0.019265 + ], + [ + 109.3146445, + 0.0193121 + ], + [ + 109.3146353, + 0.0193288 + ], + [ + 109.3146266, + 0.0193446 + ], + [ + 109.3146331, + 0.0194016 + ], + [ + 109.3146429, + 0.0194633 + ], + [ + 109.3146592, + 0.0195512 + ], + [ + 109.3146608, + 0.0195999 + ], + [ + 109.3146689, + 0.0196569 + ], + [ + 109.3146738, + 0.0196926 + ] + ] + }, + "id": "way/871914944" + }, + { + "type": "Feature", + "properties": { + "@id": "way/871914945", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146738, + 0.0196926 + ], + [ + 109.3145104, + 0.0197185 + ], + [ + 109.3144939, + 0.0197491 + ] + ] + }, + "id": "way/871914945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/871914946", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146353, + 0.0193288 + ], + [ + 109.3145611, + 0.0193361 + ], + [ + 109.3139708, + 0.0194663 + ] + ] + }, + "id": "way/871914946" + }, + { + "type": "Feature", + "properties": { + "@id": "way/874911371", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946282, + -0.0277528 + ], + [ + 109.2953856, + -0.0273276 + ], + [ + 109.2950343, + -0.0268346 + ] + ] + }, + "id": "way/874911371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/875872360", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213382, + 0.0199986 + ], + [ + 109.3243554, + 0.0200938 + ] + ] + }, + "id": "way/875872360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/875872895", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3216212, + 0.0191939 + ], + [ + 109.3213687, + 0.0191929 + ], + [ + 109.3213597, + 0.018864 + ], + [ + 109.3213498, + 0.0185629 + ], + [ + 109.321349, + 0.0185381 + ], + [ + 109.3213414, + 0.0182337 + ] + ] + }, + "id": "way/875872895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/875872904", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3222073, + 0.0133507 + ], + [ + 109.3215021, + 0.0133515 + ] + ] + }, + "id": "way/875872904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894429009", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525548, + -0.0591773 + ], + [ + 109.3525273, + -0.0592007 + ], + [ + 109.352299, + -0.0593948 + ], + [ + 109.3522722, + -0.0594096 + ], + [ + 109.3522413, + -0.0594096 + ], + [ + 109.3522185, + -0.0593935 + ], + [ + 109.3519784, + -0.0591306 + ] + ] + }, + "id": "way/894429009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894492148", + "access": "private", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "destination", + "motorcar": "destination", + "name": "Vigor Sport Center", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425462, + -0.0511825 + ], + [ + 109.3437251, + -0.0521219 + ] + ] + }, + "id": "way/894492148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894492149", + "access": "private", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "destination", + "motorcar": "destination", + "name": "Perdana Square", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434583, + -0.0524579 + ], + [ + 109.3423366, + -0.0515755 + ], + [ + 109.3423145, + -0.0515467 + ], + [ + 109.3423031, + -0.0515212 + ], + [ + 109.3423051, + -0.0514964 + ], + [ + 109.3423098, + -0.0514709 + ], + [ + 109.3423305, + -0.0514367 + ], + [ + 109.3425462, + -0.0511825 + ] + ] + }, + "id": "way/894492149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894654357", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3535535, + -0.0796703 + ], + [ + 109.3538157, + -0.0798493 + ], + [ + 109.3540062, + -0.0799781 + ], + [ + 109.3543018, + -0.0801512 + ], + [ + 109.3547081, + -0.0803892 + ] + ] + }, + "id": "way/894654357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894675685", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490773, + -0.0558685 + ], + [ + 109.349048, + -0.0558431 + ], + [ + 109.3488148, + -0.0556411 + ], + [ + 109.3487719, + -0.0556384 + ], + [ + 109.3487155, + -0.0556907 + ], + [ + 109.3484822, + -0.0559985 + ], + [ + 109.3484889, + -0.0560293 + ], + [ + 109.3485278, + -0.0560716 + ], + [ + 109.3486988, + -0.0561937 + ], + [ + 109.3487404, + -0.056232 + ], + [ + 109.3487882, + -0.056276 + ] + ] + }, + "id": "way/894675685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894717252", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469708, + -0.0312182 + ], + [ + 109.3468985, + -0.0312546 + ], + [ + 109.3467852, + -0.0313342 + ] + ] + }, + "id": "way/894717252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894717253", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459108, + -0.0296166 + ], + [ + 109.3460032, + -0.0296407 + ], + [ + 109.346013, + -0.029641 + ], + [ + 109.346022, + -0.0296388 + ], + [ + 109.3460342, + -0.0296339 + ], + [ + 109.346056, + -0.0296248 + ], + [ + 109.3461982, + -0.029573 + ], + [ + 109.3462151, + -0.0295743 + ], + [ + 109.3462282, + -0.0295858 + ], + [ + 109.3464719, + -0.0300957 + ], + [ + 109.3466476, + -0.0304726 + ], + [ + 109.3468152, + -0.030883 + ], + [ + 109.3468943, + -0.0310814 + ], + [ + 109.3469708, + -0.0312182 + ], + [ + 109.3470606, + -0.0313778 + ], + [ + 109.3472604, + -0.0316876 + ], + [ + 109.3474938, + -0.0320846 + ], + [ + 109.3476333, + -0.0323153 + ], + [ + 109.3477929, + -0.0326586 + ], + [ + 109.3478613, + -0.0327873 + ], + [ + 109.3480973, + -0.0332393 + ], + [ + 109.3483088, + -0.033591 + ], + [ + 109.3484943, + -0.0339219 + ], + [ + 109.3486011, + -0.0341072 + ], + [ + 109.3487021, + -0.0342947 + ], + [ + 109.3488816, + -0.0346166 + ], + [ + 109.3492888, + -0.0353685 + ], + [ + 109.3496908, + -0.0360918 + ] + ] + }, + "id": "way/894717253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894721463", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474597, + -0.0268622 + ], + [ + 109.3472423, + -0.0267979 + ], + [ + 109.3472269, + -0.0267986 + ], + [ + 109.3472155, + -0.02681 + ], + [ + 109.3472147, + -0.0268319 + ], + [ + 109.3474014, + -0.0271955 + ], + [ + 109.3474327, + -0.027236 + ] + ] + }, + "id": "way/894721463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894721464", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474327, + -0.027236 + ], + [ + 109.3474885, + -0.0272597 + ], + [ + 109.3475113, + -0.0272605 + ], + [ + 109.3475265, + -0.0272513 + ], + [ + 109.3476352, + -0.0269148 + ] + ] + }, + "id": "way/894721464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894721465", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481766, + -0.0272866 + ], + [ + 109.3481892, + -0.0273005 + ], + [ + 109.3483222, + -0.0274478 + ] + ] + }, + "id": "way/894721465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894721466", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481097, + -0.0272117 + ], + [ + 109.3481766, + -0.0272866 + ] + ] + }, + "id": "way/894721466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894722312", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465217, + -0.0586507 + ], + [ + 109.3465016, + -0.05871 + ], + [ + 109.3465021, + -0.0587726 + ], + [ + 109.346523, + -0.0588315 + ], + [ + 109.3465468, + -0.0588612 + ], + [ + 109.3465621, + -0.0588804 + ] + ] + }, + "id": "way/894722312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894722313", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463511, + -0.0593425 + ], + [ + 109.3462342, + -0.0592243 + ], + [ + 109.346209, + -0.0591989 + ], + [ + 109.3459795, + -0.059426 + ] + ] + }, + "id": "way/894722313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894722314", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458124, + -0.0593704 + ], + [ + 109.3458658, + -0.0593157 + ], + [ + 109.3465217, + -0.0586507 + ], + [ + 109.3466226, + -0.0585451 + ], + [ + 109.3466515, + -0.0585149 + ], + [ + 109.3466803, + -0.058485 + ], + [ + 109.3467975, + -0.0583631 + ], + [ + 109.3469114, + -0.0582468 + ] + ] + }, + "id": "way/894722314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894722315", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458658, + -0.0593157 + ], + [ + 109.3459795, + -0.059426 + ], + [ + 109.3461293, + -0.0595712 + ], + [ + 109.3463511, + -0.0593425 + ], + [ + 109.3463767, + -0.0593161 + ], + [ + 109.3467679, + -0.0589103 + ], + [ + 109.3468513, + -0.0588236 + ], + [ + 109.3469209, + -0.0587513 + ], + [ + 109.34695, + -0.0587211 + ], + [ + 109.3470593, + -0.0586123 + ], + [ + 109.3471629, + -0.0585055 + ] + ] + }, + "id": "way/894722315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894722316", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467975, + -0.0583631 + ], + [ + 109.3469185, + -0.0584772 + ], + [ + 109.3469348, + -0.0584926 + ], + [ + 109.3470593, + -0.0586123 + ] + ] + }, + "id": "way/894722316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894722319", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462342, + -0.0592243 + ], + [ + 109.3465621, + -0.0588804 + ] + ] + }, + "id": "way/894722319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894724170", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2880587, + -0.0442994 + ], + [ + 109.2881244, + -0.0443664 + ], + [ + 109.2883551, + -0.0446132 + ], + [ + 109.2891262, + -0.0454581 + ] + ] + }, + "id": "way/894724170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894724171", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2888498, + -0.0435524 + ], + [ + 109.2892569, + -0.0431622 + ] + ] + }, + "id": "way/894724171" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894724172", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2883361, + -0.0435643 + ], + [ + 109.2886198, + -0.0433076 + ], + [ + 109.288986, + -0.0429521 + ], + [ + 109.289019, + -0.04295 + ] + ] + }, + "id": "way/894724172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894724173", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.289019, + -0.04295 + ], + [ + 109.2890477, + -0.0429617 + ], + [ + 109.2892569, + -0.0431622 + ], + [ + 109.2894831, + -0.0433789 + ], + [ + 109.2895001, + -0.0434247 + ], + [ + 109.2894969, + -0.0434588 + ], + [ + 109.2894799, + -0.043495 + ], + [ + 109.2892042, + -0.0437834 + ], + [ + 109.2891574, + -0.0438047 + ], + [ + 109.2890871, + -0.043793 + ], + [ + 109.2890371, + -0.0437674 + ], + [ + 109.2888498, + -0.0435524 + ], + [ + 109.2886198, + -0.0433076 + ] + ] + }, + "id": "way/894724173" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894978395", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453977, + -0.062702 + ], + [ + 109.3453527, + -0.0627181 + ], + [ + 109.3453306, + -0.0627308 + ], + [ + 109.3453011, + -0.0627476 + ], + [ + 109.345283, + -0.0627751 + ], + [ + 109.3452548, + -0.06282 + ], + [ + 109.3452347, + -0.0628884 + ], + [ + 109.3452367, + -0.0629092 + ], + [ + 109.3452488, + -0.06293 + ], + [ + 109.3452689, + -0.0629608 + ], + [ + 109.3453293, + -0.0630024 + ], + [ + 109.3453494, + -0.0630044 + ], + [ + 109.3453782, + -0.062999 + ], + [ + 109.3454432, + -0.0629635 + ], + [ + 109.3454815, + -0.062926 + ], + [ + 109.3455137, + -0.0628804 + ], + [ + 109.3455291, + -0.0628361 + ], + [ + 109.3455365, + -0.0628113 + ], + [ + 109.3455344, + -0.0627918 + ], + [ + 109.3455224, + -0.0627724 + ], + [ + 109.3454929, + -0.0627395 + ], + [ + 109.3454473, + -0.0627027 + ], + [ + 109.3454278, + -0.062698 + ], + [ + 109.3453977, + -0.062702 + ] + ] + }, + "id": "way/894978395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894978396", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452164, + -0.0630198 + ], + [ + 109.3452689, + -0.0629608 + ] + ] + }, + "id": "way/894978396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894978397", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455772, + -0.0626472 + ], + [ + 109.3454929, + -0.0627395 + ] + ] + }, + "id": "way/894978397" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894978398", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451151, + -0.0625642 + ], + [ + 109.3453011, + -0.0627476 + ] + ] + }, + "id": "way/894978398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894978399", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448515, + -0.062463 + ], + [ + 109.3450047, + -0.0626001 + ], + [ + 109.3450382, + -0.0626121 + ], + [ + 109.3450584, + -0.0626121 + ], + [ + 109.3450852, + -0.0626014 + ], + [ + 109.3451151, + -0.0625642 + ], + [ + 109.3451563, + -0.0625129 + ], + [ + 109.3451683, + -0.0624901 + ], + [ + 109.345167, + -0.0624646 + ], + [ + 109.3451589, + -0.0624378 + ], + [ + 109.3450071, + -0.0623008 + ] + ] + }, + "id": "way/894978399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894980310", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452448, + -0.0603859 + ], + [ + 109.3452952, + -0.0604385 + ] + ] + }, + "id": "way/894980310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894980311", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452021, + -0.060372 + ], + [ + 109.3452307, + -0.0604006 + ] + ] + }, + "id": "way/894980311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894980312", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452191, + -0.0602312 + ], + [ + 109.3452428, + -0.0602069 + ], + [ + 109.3453385, + -0.0601091 + ] + ] + }, + "id": "way/894980312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894980313", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453212, + -0.0602967 + ], + [ + 109.3453152, + -0.0603108 + ], + [ + 109.3452448, + -0.0603859 + ], + [ + 109.3452307, + -0.0604006 + ], + [ + 109.3451596, + -0.0604744 + ], + [ + 109.3450697, + -0.0603872 + ], + [ + 109.3450684, + -0.0603859 + ], + [ + 109.344996, + -0.0603148 + ], + [ + 109.3449873, + -0.0602994 + ] + ] + }, + "id": "way/894980313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894980314", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451596, + -0.0604744 + ], + [ + 109.3452157, + -0.0605252 + ] + ] + }, + "id": "way/894980314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894980315", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449873, + -0.0602994 + ], + [ + 109.34499, + -0.0602873 + ], + [ + 109.3450605, + -0.0602135 + ], + [ + 109.3451395, + -0.0601338 + ], + [ + 109.3451522, + -0.0601291 + ], + [ + 109.3451683, + -0.0601344 + ], + [ + 109.3452428, + -0.0602069 + ], + [ + 109.3453179, + -0.0602793 + ], + [ + 109.3453212, + -0.0602967 + ] + ] + }, + "id": "way/894980315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894980316", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450037, + -0.0601536 + ], + [ + 109.3450605, + -0.0602135 + ], + [ + 109.3450878, + -0.0602404 + ] + ] + }, + "id": "way/894980316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894982118", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386437, + -0.0501158 + ], + [ + 109.3386843, + -0.0500979 + ] + ] + }, + "id": "way/894982118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894982119", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387618, + -0.0504648 + ], + [ + 109.3387723, + -0.0504488 + ], + [ + 109.3387723, + -0.0504232 + ], + [ + 109.3386437, + -0.0501158 + ], + [ + 109.3385798, + -0.0499633 + ], + [ + 109.3385684, + -0.0499548 + ], + [ + 109.3385495, + -0.0499576 + ], + [ + 109.3384395, + -0.0500069 + ], + [ + 109.3384224, + -0.050005 + ], + [ + 109.3384148, + -0.049987 + ], + [ + 109.3384262, + -0.0499339 + ], + [ + 109.3384196, + -0.0499092 + ] + ] + }, + "id": "way/894982119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/894986464", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275111, + -0.045105 + ], + [ + 109.3276004, + -0.0452834 + ], + [ + 109.3275966, + -0.0453062 + ], + [ + 109.32757, + -0.0453365 + ], + [ + 109.3272153, + -0.04553 + ], + [ + 109.3271926, + -0.0455319 + ], + [ + 109.3271755, + -0.0455224 + ], + [ + 109.3271566, + -0.0455205 + ], + [ + 109.3271205, + -0.0455262 + ], + [ + 109.3270029, + -0.0455888 + ], + [ + 109.3269783, + -0.0455831 + ], + [ + 109.3269612, + -0.045566 + ], + [ + 109.3269309, + -0.0455053 + ] + ] + }, + "id": "way/894986464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/895264279", + "highway": "service", + "service": "parking_aisle" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385209, + -0.0466227 + ], + [ + 109.338735, + -0.0466154 + ], + [ + 109.3389, + -0.0461514 + ], + [ + 109.3388294, + -0.0460419 + ] + ] + }, + "id": "way/895264279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/895319165", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572008, + -0.0645137 + ], + [ + 109.3572229, + -0.0644916 + ], + [ + 109.3573804, + -0.0643341 + ], + [ + 109.3573851, + -0.064317 + ], + [ + 109.3573804, + -0.0643026 + ], + [ + 109.3573643, + -0.0642818 + ], + [ + 109.3573623, + -0.0642697 + ], + [ + 109.3573653, + -0.064255 + ], + [ + 109.3578062, + -0.0636951 + ] + ] + }, + "id": "way/895319165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/895319166", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578495, + -0.0654635 + ], + [ + 109.3577764, + -0.0655287 + ], + [ + 109.3576971, + -0.0655994 + ], + [ + 109.3570491, + -0.0661774 + ] + ] + }, + "id": "way/895319166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/895322900", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420799, + -0.0570592 + ], + [ + 109.3423574, + -0.057304 + ] + ] + }, + "id": "way/895322900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/895363374", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347953, + -0.06018 + ], + [ + 109.3479411, + -0.060282 + ] + ] + }, + "id": "way/895363374" + }, + { + "type": "Feature", + "properties": { + "@id": "way/895363529", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480732, + -0.0604167 + ], + [ + 109.3479411, + -0.060282 + ], + [ + 109.3476346, + -0.0605837 + ], + [ + 109.3476306, + -0.0605916 + ], + [ + 109.3476292, + -0.0606001 + ], + [ + 109.3476311, + -0.0606089 + ], + [ + 109.347636, + -0.0606172 + ], + [ + 109.3477888, + -0.0607748 + ] + ] + }, + "id": "way/895363529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/895380861", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334217, + -0.0002705 + ], + [ + 109.3342843, + -0.0002744 + ], + [ + 109.3343738, + -0.0002839 + ], + [ + 109.3344274, + -0.0002271 + ], + [ + 109.3346139, + -0.0002336 + ], + [ + 109.3347287, + -0.0002878 + ], + [ + 109.3347931, + -0.0003057 + ], + [ + 109.3348556, + -0.0002821 + ], + [ + 109.3348894, + -0.0002323 + ], + [ + 109.3349411, + -0.000224 + ], + [ + 109.3350693, + -0.0002298 + ], + [ + 109.3351395, + -0.0002477 + ] + ] + }, + "id": "way/895380861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/897407657", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407641, + -0.0393024 + ], + [ + 109.3407232, + -0.0392521 + ], + [ + 109.3409425, + -0.0390681 + ] + ] + }, + "id": "way/897407657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/897407658", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3407478, + -0.0388464 + ], + [ + 109.3407923, + -0.0388095 + ], + [ + 109.3408265, + -0.03877 + ], + [ + 109.3408453, + -0.038723 + ], + [ + 109.3408587, + -0.03865 + ], + [ + 109.3408573, + -0.0385769 + ], + [ + 109.3408493, + -0.0385165 + ], + [ + 109.3408319, + -0.0384729 + ], + [ + 109.3407957, + -0.0384301 + ] + ] + }, + "id": "way/897407658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/897407659", + "highway": "service", + "junction": "roundabout" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404762, + -0.0386848 + ], + [ + 109.3404655, + -0.0386644 + ], + [ + 109.3404599, + -0.0386421 + ], + [ + 109.3404595, + -0.0386191 + ], + [ + 109.3404646, + -0.0385967 + ], + [ + 109.3404747, + -0.038576 + ], + [ + 109.3404893, + -0.0385583 + ], + [ + 109.3405066, + -0.038545 + ], + [ + 109.3405264, + -0.0385359 + ], + [ + 109.3405478, + -0.0385313 + ], + [ + 109.3405696, + -0.0385316 + ], + [ + 109.3405908, + -0.0385367 + ], + [ + 109.3406121, + -0.0385475 + ], + [ + 109.3406302, + -0.0385631 + ], + [ + 109.340644, + -0.0385825 + ] + ] + }, + "id": "way/897407659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/905276476", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493972, + -0.0142466 + ], + [ + 109.3495777, + -0.0142645 + ], + [ + 109.3509592, + -0.0144278 + ], + [ + 109.3509733, + -0.0144256 + ], + [ + 109.3509854, + -0.0144162 + ], + [ + 109.3509914, + -0.0144021 + ], + [ + 109.3509954, + -0.0143706 + ], + [ + 109.3510056, + -0.0142581 + ] + ] + }, + "id": "way/905276476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/905314351", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555897, + -0.0462518 + ], + [ + 109.3556603, + -0.0461618 + ] + ] + }, + "id": "way/905314351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/905314905", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3685545, + -0.0255159 + ], + [ + 109.3685589, + -0.0254516 + ] + ] + }, + "id": "way/905314905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/911368511", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348608, + -0.0633705 + ], + [ + 109.3357875, + -0.0640974 + ] + ] + }, + "id": "way/911368511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/911368512", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358513, + -0.0641474 + ], + [ + 109.3358682, + -0.0641607 + ] + ] + }, + "id": "way/911368512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/911368513", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3357875, + -0.0640974 + ], + [ + 109.3358513, + -0.0641474 + ] + ] + }, + "id": "way/911368513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/911368514", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331921, + -0.0615047 + ], + [ + 109.3332833, + -0.0615909 + ], + [ + 109.333796, + -0.0619803 + ] + ] + }, + "id": "way/911368514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/911368517", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438795, + -0.0775614 + ], + [ + 109.3426377, + -0.0768184 + ], + [ + 109.3415007, + -0.0761165 + ], + [ + 109.3409922, + -0.0759823 + ] + ] + }, + "id": "way/911368517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/911712106", + "access": "yes", + "highway": "primary", + "motor_vehicle": "yes", + "name": "Jalan K.H. Wahid Hasyim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272056, + -0.0265378 + ], + [ + 109.3272941, + -0.0266799 + ], + [ + 109.3273546, + -0.0267905 + ], + [ + 109.3274998, + -0.0270312 + ], + [ + 109.3277679, + -0.0274755 + ] + ] + }, + "id": "way/911712106" + }, + { + "type": "Feature", + "properties": { + "@id": "way/913020231", + "highway": "living_street", + "name": "Gang Gajah Mada 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404181, + -0.0313743 + ], + [ + 109.3401653, + -0.0315138 + ] + ] + }, + "id": "way/913020231" + }, + { + "type": "Feature", + "properties": { + "@id": "way/914654265", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3583454, + -0.0611704 + ], + [ + 109.3585087, + -0.0610115 + ], + [ + 109.3587445, + -0.0612758 + ] + ] + }, + "id": "way/914654265" + }, + { + "type": "Feature", + "properties": { + "@id": "way/914654266", + "highway": "residential", + "name": "Gang Mulia 71" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597391, + -0.058333 + ], + [ + 109.3612407, + -0.0599789 + ], + [ + 109.3613408, + -0.0600909 + ], + [ + 109.361969, + -0.0608244 + ] + ] + }, + "id": "way/914654266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/914675143", + "highway": "residential", + "name": "Jalan Silat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3541142, + -0.0526071 + ], + [ + 109.3545705, + -0.0520087 + ], + [ + 109.3545876, + -0.0520003 + ], + [ + 109.3546027, + -0.0519966 + ], + [ + 109.3546717, + -0.0520268 + ], + [ + 109.3546928, + -0.0520348 + ], + [ + 109.3547133, + -0.0520342 + ], + [ + 109.3547374, + -0.0520238 + ], + [ + 109.3547562, + -0.052004 + ], + [ + 109.354923, + -0.0517387 + ] + ] + }, + "id": "way/914675143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/914675144", + "highway": "residential", + "name": "Jalan Husni Thamrin" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534123, + -0.0526511 + ], + [ + 109.353693, + -0.0522917 + ], + [ + 109.3542962, + -0.0514816 + ], + [ + 109.3550716, + -0.0507419 + ], + [ + 109.3551049, + -0.0507078 + ], + [ + 109.3551124, + -0.0506988 + ], + [ + 109.3551176, + -0.0506873 + ], + [ + 109.3551177, + -0.0506784 + ], + [ + 109.3551143, + -0.0506662 + ], + [ + 109.3551044, + -0.0506533 + ] + ] + }, + "id": "way/914675144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/914675145", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537363, + -0.0492807 + ], + [ + 109.3532316, + -0.0487578 + ], + [ + 109.3530952, + -0.0486324 + ] + ] + }, + "id": "way/914675145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/914675146", + "highway": "residential", + "name": "Gang Harapan Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518387, + -0.0456728 + ], + [ + 109.3514478, + -0.0461359 + ] + ] + }, + "id": "way/914675146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/914675147", + "highway": "residential", + "name": "Gang Harapan Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498676, + -0.0483916 + ], + [ + 109.3500459, + -0.0481161 + ], + [ + 109.350074, + -0.0480789 + ], + [ + 109.3503998, + -0.0476478 + ] + ] + }, + "id": "way/914675147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/914709419", + "highway": "residential", + "name": "Jalan Media", + "wide": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499313, + -0.0471797 + ], + [ + 109.349777, + -0.0473574 + ], + [ + 109.349757, + -0.0473797 + ], + [ + 109.3496986, + -0.0474449 + ], + [ + 109.3495029, + -0.0477051 + ], + [ + 109.3492614, + -0.0480679 + ], + [ + 109.3491461, + -0.0482545 + ], + [ + 109.348988, + -0.0485103 + ] + ] + }, + "id": "way/914709419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/914954070", + "highway": "residential", + "name": "Jalan Tanjung Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516236, + -0.0477312 + ], + [ + 109.3513686, + -0.047582 + ] + ] + }, + "id": "way/914954070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/915813547", + "highway": "residential", + "name": "Gang Tanjung Sari 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500172, + -0.0492935 + ], + [ + 109.3495209, + -0.0489158 + ] + ] + }, + "id": "way/915813547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/915813548", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Media Sari 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491461, + -0.0482545 + ], + [ + 109.3496949, + -0.048648 + ] + ] + }, + "id": "way/915813548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/915813549", + "highway": "residential", + "name": "Gang Bahtera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514554, + -0.044296 + ], + [ + 109.3518309, + -0.0439373 + ], + [ + 109.352027, + -0.0437386 + ] + ] + }, + "id": "way/915813549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/915814872", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509619, + -0.0469863 + ], + [ + 109.3511788, + -0.0471433 + ], + [ + 109.3513484, + -0.0472503 + ] + ] + }, + "id": "way/915814872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918185718", + "highway": "residential", + "name": "Gang Pati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396527, + -0.0290629 + ], + [ + 109.3395271, + -0.0288336 + ], + [ + 109.3393356, + -0.028927 + ], + [ + 109.3393029, + -0.0288616 + ] + ] + }, + "id": "way/918185718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918254038", + "highway": "living_street", + "motorcar": "no", + "name": "Gang karimata Dalam II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271171, + -0.0308421 + ], + [ + 109.3271611, + -0.0308061 + ], + [ + 109.327169, + -0.0308046 + ], + [ + 109.3271756, + -0.0308052 + ], + [ + 109.3271813, + -0.0308066 + ], + [ + 109.327186, + -0.030809 + ] + ] + }, + "id": "way/918254038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918254039", + "highway": "living_street", + "name": "Gang Karimata Dalam I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3261754, + -0.0310665 + ], + [ + 109.3264978, + -0.030825 + ], + [ + 109.3272715, + -0.0302021 + ], + [ + 109.3274005, + -0.0300889 + ], + [ + 109.3274074, + -0.0300865 + ], + [ + 109.3274114, + -0.0300864 + ], + [ + 109.3274152, + -0.0300868 + ], + [ + 109.3274219, + -0.0300896 + ] + ] + }, + "id": "way/918254039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261111", + "foot": "yes", + "highway": "tertiary", + "name": "Jalan Putri Dara Nante", + "oneway": "no", + "sidewalk": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302755, + -0.0375722 + ], + [ + 109.3303057, + -0.0376276 + ] + ] + }, + "id": "way/918261111" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261112", + "bridge": "yes", + "foot": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Putri Dara Nante", + "oneway": "no", + "sidewalk": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302004, + -0.0374629 + ], + [ + 109.3302755, + -0.0375722 + ] + ] + }, + "id": "way/918261112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261113", + "bridge": "yes", + "highway": "tertiary", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316447, + -0.0507822 + ], + [ + 109.3162776, + -0.0506262 + ] + ] + }, + "id": "way/918261113" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261114", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3164506, + -0.0507856 + ], + [ + 109.316447, + -0.0507822 + ] + ] + }, + "id": "way/918261114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261115", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3165501, + -0.0506732 + ], + [ + 109.3163942, + -0.0505063 + ] + ] + }, + "id": "way/918261115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261116", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3165547, + -0.0506775 + ], + [ + 109.3165501, + -0.0506732 + ] + ] + }, + "id": "way/918261116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261117", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156687, + -0.0515185 + ], + [ + 109.3155297, + -0.0513819 + ] + ] + }, + "id": "way/918261117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261118", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156722, + -0.051522 + ], + [ + 109.3156687, + -0.0515185 + ] + ] + }, + "id": "way/918261118" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261119", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3172385, + -0.049985 + ], + [ + 109.3172422, + -0.0499883 + ] + ] + }, + "id": "way/918261119" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261120", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170569, + -0.0498235 + ], + [ + 109.3172385, + -0.049985 + ] + ] + }, + "id": "way/918261120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261121", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3176979, + -0.04954 + ], + [ + 109.3177018, + -0.0495431 + ] + ] + }, + "id": "way/918261121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261122", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175122, + -0.0493909 + ], + [ + 109.3176979, + -0.04954 + ] + ] + }, + "id": "way/918261122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261123", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178698, + -0.0493682 + ], + [ + 109.3178628, + -0.0493613 + ] + ] + }, + "id": "way/918261123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261126", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185273, + -0.0486687 + ], + [ + 109.3184001, + -0.0485116 + ] + ] + }, + "id": "way/918261126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261127", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185183, + -0.0484202 + ], + [ + 109.3186633, + -0.0485167 + ] + ] + }, + "id": "way/918261127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261129", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187786, + -0.0483791 + ], + [ + 109.3187836, + -0.0483822 + ] + ] + }, + "id": "way/918261129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261130", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186259, + -0.0482856 + ], + [ + 109.3187786, + -0.0483791 + ] + ] + }, + "id": "way/918261130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261131", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318861, + -0.0482885 + ], + [ + 109.3188049, + -0.0482114 + ] + ] + }, + "id": "way/918261131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918261132", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188639, + -0.0482925 + ], + [ + 109.318861, + -0.0482885 + ] + ] + }, + "id": "way/918261132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297807", + "highway": "residential", + "name": "Gang Purnama Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328485, + -0.0506191 + ], + [ + 109.3314605, + -0.0493845 + ] + ] + }, + "id": "way/918297807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297808", + "highway": "unclassified", + "name": "Jalan Putri Candramidi", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.328099, + -0.0395353 + ], + [ + 109.3281041, + -0.0395425 + ] + ] + }, + "id": "way/918297808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297809", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Jalan Putri Candramidi", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279749, + -0.039371 + ], + [ + 109.328099, + -0.0395353 + ] + ] + }, + "id": "way/918297809" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297810", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalan Komp. Tongie 67" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285722, + -0.0390623 + ], + [ + 109.3285011, + -0.0389712 + ] + ] + }, + "id": "way/918297810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297812", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Bersama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291102, + -0.038461 + ], + [ + 109.3291662, + -0.0385413 + ] + ] + }, + "id": "way/918297812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297813", + "highway": "residential", + "name": "Jalan Sakura" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315342, + -0.0375412 + ], + [ + 109.3310773, + -0.0379103 + ], + [ + 109.3309706, + -0.0380066 + ] + ] + }, + "id": "way/918297813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297814", + "highway": "living_street", + "motorcar": "destination", + "name": "Ade Irma Suryani Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404291, + -0.0367944 + ], + [ + 109.339987, + -0.0371278 + ], + [ + 109.3398086, + -0.0372592 + ], + [ + 109.3397556, + -0.0372961 + ], + [ + 109.3397275, + -0.0373196 + ], + [ + 109.339714, + -0.0373317 + ], + [ + 109.3397013, + -0.0373558 + ], + [ + 109.3396845, + -0.037392 + ], + [ + 109.3396725, + -0.0374222 + ], + [ + 109.3396631, + -0.0374453 + ], + [ + 109.3396567, + -0.0374758 + ], + [ + 109.3396527, + -0.0374892 + ], + [ + 109.3396487, + -0.0374959 + ], + [ + 109.339643, + -0.0375006 + ], + [ + 109.3396349, + -0.0375047 + ], + [ + 109.3394887, + -0.0375744 + ], + [ + 109.3392346, + -0.0377112 + ], + [ + 109.3391092, + -0.0377863 + ] + ] + }, + "id": "way/918297814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297815", + "highway": "residential", + "name": "Jalan Kapten Tandean" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358386, + -0.0376381 + ], + [ + 109.3366474, + -0.0369366 + ], + [ + 109.3371481, + -0.0365022 + ], + [ + 109.3372114, + -0.0365224 + ], + [ + 109.3378838, + -0.0372833 + ] + ] + }, + "id": "way/918297815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297816", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296722, + -0.0380244 + ], + [ + 109.3294909, + -0.0377992 + ], + [ + 109.3294934, + -0.0377344 + ] + ] + }, + "id": "way/918297816" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918297817", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297491, + -0.0381204 + ], + [ + 109.3297308, + -0.0381022 + ], + [ + 109.3296896, + -0.0380433 + ] + ] + }, + "id": "way/918297817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918302682", + "highway": "residential", + "name": "Gang Waru 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3373781, + -0.0330308 + ], + [ + 109.3371794, + -0.033187 + ], + [ + 109.3370278, + -0.0333117 + ], + [ + 109.3367789, + -0.033501 + ] + ] + }, + "id": "way/918302682" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918302683", + "highway": "residential", + "name": "Gang Waru 5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367789, + -0.033501 + ], + [ + 109.3368481, + -0.0335941 + ] + ] + }, + "id": "way/918302683" + }, + { + "type": "Feature", + "properties": { + "@id": "way/918576912", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424526, + -0.0237201 + ], + [ + 109.3424633, + -0.0235632 + ], + [ + 109.3423627, + -0.0234337 + ], + [ + 109.3422899, + -0.0233401 + ], + [ + 109.3422007, + -0.0232903 + ] + ] + }, + "id": "way/918576912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926113094", + "highway": "secondary", + "name": "Jalan Adisucipto", + "oneway": "no", + "ref": "001.2", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610346, + -0.0529281 + ], + [ + 109.3611561, + -0.0530809 + ], + [ + 109.3613377, + -0.0533187 + ], + [ + 109.3615245, + -0.0535425 + ], + [ + 109.3616755, + -0.0537395 + ], + [ + 109.3618455, + -0.0539566 + ], + [ + 109.3619898, + -0.0541513 + ], + [ + 109.3620701, + -0.0542635 + ] + ] + }, + "id": "way/926113094" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926128614", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262209, + -0.0412331 + ], + [ + 109.3261346, + -0.0411367 + ] + ] + }, + "id": "way/926128614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926128615", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3262239, + -0.041237 + ], + [ + 109.3262209, + -0.0412331 + ] + ] + }, + "id": "way/926128615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926128616", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257597, + -0.0416357 + ], + [ + 109.3256882, + -0.0415658 + ] + ] + }, + "id": "way/926128616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926128617", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257629, + -0.0416394 + ], + [ + 109.3257597, + -0.0416357 + ] + ] + }, + "id": "way/926128617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926130780", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260668, + -0.041368 + ], + [ + 109.3260695, + -0.0413721 + ] + ] + }, + "id": "way/926130780" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926130781", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326008, + -0.0412564 + ], + [ + 109.3260668, + -0.041368 + ] + ] + }, + "id": "way/926130781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926130783", + "highway": "residential", + "name": "Jalan Gusti Johan Idrus", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287621, + -0.038961 + ], + [ + 109.3287645, + -0.0389653 + ] + ] + }, + "id": "way/926130783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926130784", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Jalan Gusti Johan Idrus", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286768, + -0.0388054 + ], + [ + 109.3287621, + -0.038961 + ] + ] + }, + "id": "way/926130784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926130785", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276972, + -0.0398894 + ], + [ + 109.3277001, + -0.0398934 + ] + ] + }, + "id": "way/926130785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/926130786", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.327593, + -0.0397452 + ], + [ + 109.3276972, + -0.0398894 + ] + ] + }, + "id": "way/926130786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/928448389", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3078882, + 0.0057945 + ], + [ + 109.3079151, + 0.0059545 + ], + [ + 109.3079124, + 0.0060068 + ], + [ + 109.307898, + 0.0060618 + ], + [ + 109.3079674, + 0.0063528 + ], + [ + 109.3082356, + 0.0073372 + ], + [ + 109.3085012, + 0.0082853 + ] + ] + }, + "id": "way/928448389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930059502", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681938, + -0.0014936 + ], + [ + 109.3681846, + -0.0018672 + ], + [ + 109.3681796, + -0.0020699 + ] + ] + }, + "id": "way/930059502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930059503", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.368391, + -0.0021937 + ], + [ + 109.366266, + -0.0022017 + ] + ] + }, + "id": "way/930059503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930059504", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3663165, + -0.0016873 + ], + [ + 109.366266, + -0.0022017 + ] + ] + }, + "id": "way/930059504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930060183", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648484, + 0.0105016 + ], + [ + 109.3638572, + 0.0106364 + ] + ] + }, + "id": "way/930060183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930060184", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648721, + 0.0108205 + ], + [ + 109.3640879, + 0.0109111 + ] + ] + }, + "id": "way/930060184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930060185", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634918, + 0.0114331 + ], + [ + 109.3649044, + 0.0112366 + ] + ] + }, + "id": "way/930060185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930062156", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340561, + 0.0004156 + ], + [ + 109.3337276, + 0.0004286 + ], + [ + 109.3335173, + 0.0005057 + ], + [ + 109.3331903, + 0.0005477 + ], + [ + 109.3331468, + 0.0005494 + ], + [ + 109.3331114, + 0.0005161 + ], + [ + 109.3330448, + 0.0004141 + ], + [ + 109.3328886, + 0.0003641 + ], + [ + 109.3328428, + 0.0003641 + ] + ] + }, + "id": "way/930062156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930062157", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341617, + 0.0012574 + ], + [ + 109.3335423, + 0.0012968 + ], + [ + 109.3334778, + 0.0012676 + ], + [ + 109.3334403, + 0.0011823 + ] + ] + }, + "id": "way/930062157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930062158", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341639, + 0.0011993 + ], + [ + 109.3344209, + 0.0012184 + ] + ] + }, + "id": "way/930062158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930062159", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341394, + 0.0021877 + ], + [ + 109.3341793, + 0.0021813 + ] + ] + }, + "id": "way/930062159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930062160", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341222, + 0.0032141 + ], + [ + 109.3343109, + 0.0032216 + ], + [ + 109.3343731, + 0.0032401 + ], + [ + 109.3344812, + 0.0033611 + ] + ] + }, + "id": "way/930062160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930062161", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341183, + 0.0034209 + ], + [ + 109.334242, + 0.0034155 + ], + [ + 109.3344377, + 0.0034644 + ], + [ + 109.3344699, + 0.0035014 + ] + ] + }, + "id": "way/930062161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930062345", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326086, + 0.005077 + ], + [ + 109.3329677, + 0.0050447 + ] + ] + }, + "id": "way/930062345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930062952", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265485, + 0.0081838 + ], + [ + 109.3269639, + 0.008463 + ] + ] + }, + "id": "way/930062952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930063373", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3260886, + 0.0097859 + ], + [ + 109.3257965, + 0.0102806 + ] + ] + }, + "id": "way/930063373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/930064465", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214725, + 0.0133252 + ], + [ + 109.3207771, + 0.0133376 + ], + [ + 109.3207188, + 0.0134542 + ], + [ + 109.3207708, + 0.0163997 + ] + ] + }, + "id": "way/930064465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/932250864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3541312, + -0.0750247 + ], + [ + 109.3540665, + -0.0751568 + ], + [ + 109.3540057, + -0.0752797 + ] + ] + }, + "id": "way/932250864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/932742082", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442397, + -0.0366984 + ], + [ + 109.3444977, + -0.0372854 + ] + ] + }, + "id": "way/932742082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/940372338", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240588, + -0.0231055 + ], + [ + 109.3240786, + -0.0231737 + ] + ] + }, + "id": "way/940372338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/942273379", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3139158, + -0.0517532 + ], + [ + 109.3138217, + -0.0518702 + ] + ] + }, + "id": "way/942273379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/944908542", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.289345, + -0.0169452 + ], + [ + 109.2894119, + -0.0172748 + ], + [ + 109.2895138, + -0.0177522 + ], + [ + 109.2895782, + -0.0180311 + ], + [ + 109.2894334, + -0.0184228 + ], + [ + 109.289328, + -0.0184513 + ], + [ + 109.2889774, + -0.0185461 + ] + ] + }, + "id": "way/944908542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/944908543", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891225, + -0.0170479 + ], + [ + 109.289192, + -0.0173445 + ], + [ + 109.2892295, + -0.0176932 + ], + [ + 109.2892617, + -0.0181518 + ], + [ + 109.289328, + -0.0184513 + ] + ] + }, + "id": "way/944908543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/952569373", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Haji Aman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609559, + -0.0509976 + ], + [ + 109.3613206, + -0.0505932 + ], + [ + 109.3616237, + -0.0502351 + ], + [ + 109.3617981, + -0.0500494 + ], + [ + 109.3618607, + -0.049984 + ], + [ + 109.3619452, + -0.0499065 + ], + [ + 109.3619945, + -0.0498552 + ] + ] + }, + "id": "way/952569373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/954107578", + "highway": "residential", + "name": "Jalan Dokter Sudarso" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630939, + -0.0659379 + ], + [ + 109.3633485, + -0.06539 + ], + [ + 109.3635211, + -0.0649975 + ], + [ + 109.3636621, + -0.0646756 + ], + [ + 109.3637204, + -0.0645424 + ], + [ + 109.3638104, + -0.0643371 + ], + [ + 109.3638526, + -0.0642409 + ] + ] + }, + "id": "way/954107578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/954107579", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638526, + -0.0642409 + ], + [ + 109.363972, + -0.064301 + ] + ] + }, + "id": "way/954107579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/957009382", + "highway": "tertiary", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359715, + -0.0494694 + ], + [ + 109.3359467, + -0.0494473 + ], + [ + 109.3356298, + -0.0492325 + ], + [ + 109.3348384, + -0.0486679 + ] + ] + }, + "id": "way/957009382" + }, + { + "type": "Feature", + "properties": { + "@id": "way/957009383", + "highway": "tertiary", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3349069, + -0.0485823 + ], + [ + 109.3353039, + -0.0488463 + ], + [ + 109.3354634, + -0.0489524 + ], + [ + 109.3355836, + -0.0490323 + ], + [ + 109.3359919, + -0.0493298 + ], + [ + 109.3360697, + -0.0493774 + ] + ] + }, + "id": "way/957009383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/957052454", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618058, + -0.0509958 + ], + [ + 109.3623063, + -0.0505247 + ] + ] + }, + "id": "way/957052454" + }, + { + "type": "Feature", + "properties": { + "@id": "way/957052455", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612404, + -0.051528 + ], + [ + 109.361387, + -0.0516808 + ] + ] + }, + "id": "way/957052455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/963534797", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3232132, + -0.0251535 + ], + [ + 109.3237415, + -0.0248049 + ], + [ + 109.3240218, + -0.0245959 + ] + ] + }, + "id": "way/963534797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/963534798", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240365, + -0.0245228 + ], + [ + 109.3252146, + -0.0237689 + ], + [ + 109.3255649, + -0.0235702 + ], + [ + 109.3257784, + -0.0234764 + ] + ] + }, + "id": "way/963534798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/963535063", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224484, + -0.0226414 + ], + [ + 109.3227368, + -0.0236588 + ] + ] + }, + "id": "way/963535063" + }, + { + "type": "Feature", + "properties": { + "@id": "way/963535064", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227368, + -0.0236588 + ], + [ + 109.322894, + -0.0242952 + ], + [ + 109.3231086, + -0.0250194 + ] + ] + }, + "id": "way/963535064" + }, + { + "type": "Feature", + "properties": { + "@id": "way/963535065", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233004, + -0.0234887 + ], + [ + 109.3234331, + -0.0240136 + ], + [ + 109.323602, + -0.0246197 + ], + [ + 109.3236101, + -0.0246361 + ], + [ + 109.3236262, + -0.0246602 + ], + [ + 109.3237415, + -0.0248049 + ] + ] + }, + "id": "way/963535065" + }, + { + "type": "Feature", + "properties": { + "@id": "way/963536385", + "highway": "trunk", + "motorcycle": "yes", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443696, + -0.0294868 + ], + [ + 109.344455, + -0.0296283 + ] + ] + }, + "id": "way/963536385" + }, + { + "type": "Feature", + "properties": { + "@id": "way/963536386", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443984, + -0.0296754 + ], + [ + 109.3443062, + -0.0295273 + ] + ] + }, + "id": "way/963536386" + }, + { + "type": "Feature", + "properties": { + "@id": "way/963536387", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443062, + -0.0295273 + ], + [ + 109.3440802, + -0.0291647 + ], + [ + 109.343715, + -0.0286013 + ], + [ + 109.343504, + -0.0282356 + ], + [ + 109.343272, + -0.0278413 + ], + [ + 109.3429681, + -0.0273413 + ], + [ + 109.3429131, + -0.0272508 + ], + [ + 109.3428938, + -0.0272191 + ] + ] + }, + "id": "way/963536387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/963536388", + "highway": "trunk", + "motorcycle": "yes", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429649, + -0.0271554 + ], + [ + 109.3429901, + -0.0271963 + ], + [ + 109.3434048, + -0.0278695 + ], + [ + 109.3435724, + -0.0281565 + ], + [ + 109.3437246, + -0.0284187 + ], + [ + 109.344153, + -0.0291281 + ], + [ + 109.3443331, + -0.0294264 + ], + [ + 109.3443696, + -0.0294868 + ] + ] + }, + "id": "way/963536388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/964266602", + "highway": "residential", + "name": "Gang Bersama" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291662, + -0.0385413 + ], + [ + 109.3292116, + -0.0386042 + ] + ] + }, + "id": "way/964266602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/965093242", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421938, + 0.0063008 + ], + [ + 109.3416177, + 0.0063178 + ] + ] + }, + "id": "way/965093242" + }, + { + "type": "Feature", + "properties": { + "@id": "way/965093246", + "highway": "residential", + "name": "Gang Kenanga 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450047, + 0.0077837 + ], + [ + 109.3452631, + 0.007804 + ] + ] + }, + "id": "way/965093246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/969982143", + "highway": "trunk", + "motorcycle": "yes", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428871, + -0.0270367 + ], + [ + 109.3429649, + -0.0271554 + ] + ] + }, + "id": "way/969982143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/970001237", + "bridge": "yes", + "highway": "track", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341793, + 0.0021813 + ], + [ + 109.3343483, + 0.0021739 + ] + ] + }, + "id": "way/970001237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/970001238", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343483, + 0.0021739 + ], + [ + 109.33459, + 0.0021813 + ] + ] + }, + "id": "way/970001238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/970516936", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479419, + -0.0394103 + ], + [ + 109.3479018, + -0.0393438 + ], + [ + 109.3476896, + -0.0389671 + ], + [ + 109.3474911, + -0.0386225 + ], + [ + 109.3472638, + -0.0381953 + ], + [ + 109.3471357, + -0.0379566 + ], + [ + 109.3470801, + -0.0378399 + ], + [ + 109.3470479, + -0.0377762 + ], + [ + 109.3469989, + -0.0376602 + ] + ] + }, + "id": "way/970516936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/970516937", + "highway": "trunk", + "name": "Jalan Pahlawan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479062, + -0.0395539 + ], + [ + 109.347994, + -0.0394955 + ] + ] + }, + "id": "way/970516937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/970516938", + "highway": "secondary", + "name": "Jalan Imam Bonjol", + "oneway": "yes", + "ref": "001.1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34823, + -0.0396593 + ], + [ + 109.3484691, + -0.0400836 + ], + [ + 109.3484869, + -0.0401215 + ], + [ + 109.3484869, + -0.0401342 + ], + [ + 109.3484852, + -0.0401664 + ] + ] + }, + "id": "way/970516938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/972790436", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474886, + -0.0424475 + ], + [ + 109.347695, + -0.0426297 + ], + [ + 109.3477151, + -0.0426874 + ], + [ + 109.3477043, + -0.0427477 + ], + [ + 109.3476053, + -0.0429099 + ] + ] + }, + "id": "way/972790436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/973420105", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305528, + -0.0328118 + ], + [ + 109.305702, + -0.0327511 + ], + [ + 109.3058954, + -0.0326841 + ], + [ + 109.3061127, + -0.0326063 + ], + [ + 109.3061958, + -0.0325687 + ], + [ + 109.3062414, + -0.0325097 + ], + [ + 109.3062535, + -0.032436 + ], + [ + 109.3061878, + -0.032267 + ], + [ + 109.3061371, + -0.032094 + ] + ] + }, + "id": "way/973420105" + }, + { + "type": "Feature", + "properties": { + "@id": "way/976274966", + "highway": "residential", + "name": "Jalan Sisingamangaraja", + "oneway": "yes", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386819, + -0.0275964 + ], + [ + 109.3389895, + -0.0274882 + ], + [ + 109.3393419, + -0.0273718 + ], + [ + 109.339426, + -0.0273436 + ], + [ + 109.3400914, + -0.0271205 + ], + [ + 109.3407407, + -0.0268774 + ], + [ + 109.3410739, + -0.0267416 + ], + [ + 109.341445, + -0.0265517 + ], + [ + 109.3417954, + -0.0263634 + ], + [ + 109.3421924, + -0.0261354 + ] + ] + }, + "id": "way/976274966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/976274967", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387136, + -0.028249 + ], + [ + 109.3387245, + -0.0283813 + ], + [ + 109.3387411, + -0.0285058 + ], + [ + 109.3387719, + -0.0286299 + ], + [ + 109.3388128, + -0.028756 + ], + [ + 109.3388578, + -0.0288592 + ], + [ + 109.3390646, + -0.0293061 + ], + [ + 109.3391241, + -0.0294435 + ] + ] + }, + "id": "way/976274967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/976274968", + "highway": "tertiary", + "name": "Jalan Pattimura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386257, + -0.0276187 + ], + [ + 109.3386242, + -0.0276006 + ], + [ + 109.3385869, + -0.0270373 + ], + [ + 109.3385717, + -0.0269459 + ], + [ + 109.3385573, + -0.0269079 + ], + [ + 109.3385281, + -0.0268533 + ] + ] + }, + "id": "way/976274968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/976535182", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941595, + -0.0081058 + ], + [ + 109.294059, + -0.0080802 + ] + ] + }, + "id": "way/976535182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/976535183", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2942102, + -0.0074923 + ], + [ + 109.2941775, + -0.007642 + ], + [ + 109.2941574, + -0.0077458 + ], + [ + 109.294059, + -0.0080802 + ], + [ + 109.2939985, + -0.0082859 + ], + [ + 109.2939615, + -0.008449 + ], + [ + 109.293962, + -0.0084818 + ], + [ + 109.2939932, + -0.0085014 + ], + [ + 109.2940266, + -0.008503 + ], + [ + 109.2940472, + -0.0084643 + ], + [ + 109.2940679, + -0.0083759 + ], + [ + 109.2941595, + -0.0081058 + ], + [ + 109.2943957, + -0.0081116 + ] + ] + }, + "id": "way/976535183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/976903109", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294631, + -0.0376957 + ], + [ + 109.3294934, + -0.0377344 + ] + ] + }, + "id": "way/976903109" + }, + { + "type": "Feature", + "properties": { + "@id": "way/976903110", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291674, + -0.0372893 + ], + [ + 109.3294631, + -0.0376957 + ] + ] + }, + "id": "way/976903110" + }, + { + "type": "Feature", + "properties": { + "@id": "way/976903111", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3289503, + -0.0373538 + ], + [ + 109.3291086, + -0.0372532 + ], + [ + 109.3291378, + -0.0372576 + ], + [ + 109.3291674, + -0.0372893 + ] + ] + }, + "id": "way/976903111" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983569072", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3143733, + 0.0062777 + ], + [ + 109.3143442, + 0.0062688 + ], + [ + 109.3140482, + 0.0063893 + ], + [ + 109.3134939, + 0.0066631 + ] + ] + }, + "id": "way/983569072" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983569423", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134082, + 0.0064802 + ], + [ + 109.3134673, + 0.0066063 + ], + [ + 109.3134939, + 0.0066631 + ] + ] + }, + "id": "way/983569423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983569424", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132728, + 0.0064963 + ], + [ + 109.3133667, + 0.0064815 + ], + [ + 109.3134082, + 0.0064802 + ] + ] + }, + "id": "way/983569424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983576306", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3656914, + -0.031029 + ], + [ + 109.3656097, + -0.0308995 + ], + [ + 109.3656147, + -0.0308681 + ], + [ + 109.3656108, + -0.0308559 + ], + [ + 109.3655423, + -0.0307538 + ], + [ + 109.3654485, + -0.0306067 + ] + ] + }, + "id": "way/983576306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983749349", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559179, + -0.0256979 + ], + [ + 109.3558806, + -0.0259473 + ], + [ + 109.3558553, + -0.0262424 + ] + ] + }, + "id": "way/983749349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983750831", + "access": "destination", + "covered": "yes", + "highway": "service", + "name": "Jalan Asahan", + "name:id": "Jalan Asahan", + "name:ms": "Jalan Asahan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425892, + -0.026277 + ], + [ + 109.3437887, + -0.0255302 + ] + ] + }, + "id": "way/983750831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983752607", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208152, + -0.0185011 + ], + [ + 109.3208253, + -0.0186581 + ], + [ + 109.3208375, + -0.0186726 + ], + [ + 109.320909, + -0.0186668 + ], + [ + 109.3209917, + -0.0186626 + ], + [ + 109.3210029, + -0.018674 + ] + ] + }, + "id": "way/983752607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983752827", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3732542, + -0.0256572 + ], + [ + 109.3733712, + -0.0251918 + ], + [ + 109.3735835, + -0.0245414 + ], + [ + 109.3739212, + -0.0235256 + ] + ] + }, + "id": "way/983752827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983754120", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467431, + -0.0333889 + ], + [ + 109.346783, + -0.0333995 + ], + [ + 109.346834, + -0.0335336 + ], + [ + 109.3472216, + -0.03337 + ], + [ + 109.3472819, + -0.0334666 + ], + [ + 109.3474633, + -0.033398 + ], + [ + 109.3475102, + -0.0333703 + ], + [ + 109.3478422, + -0.0331752 + ] + ] + }, + "id": "way/983754120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983754121", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478422, + -0.0331752 + ], + [ + 109.3479066, + -0.0331392 + ] + ] + }, + "id": "way/983754121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983760317", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326251, + -0.0303301 + ], + [ + 109.332806, + -0.030543 + ], + [ + 109.332857, + -0.0306047 + ], + [ + 109.3328597, + -0.0306825 + ], + [ + 109.3328999, + -0.0307643 + ], + [ + 109.3329125, + -0.0308059 + ] + ] + }, + "id": "way/983760317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983780960", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3780335, + -0.0252128 + ], + [ + 109.3778699, + -0.0261674 + ] + ] + }, + "id": "way/983780960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983784338", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3673623, + -0.0255226 + ], + [ + 109.3674467, + -0.0251658 + ], + [ + 109.3675473, + -0.024783 + ] + ] + }, + "id": "way/983784338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983793965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3235494, + -0.020261 + ], + [ + 109.323448, + -0.0198975 + ] + ] + }, + "id": "way/983793965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983794840", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325902, + -0.0194298 + ], + [ + 109.325874, + -0.0194864 + ], + [ + 109.3259237, + -0.0197234 + ], + [ + 109.3259515, + -0.0198322 + ] + ] + }, + "id": "way/983794840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983805192", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473695, + -0.0172766 + ], + [ + 109.3473516, + -0.0173515 + ], + [ + 109.3473141, + -0.0174541 + ], + [ + 109.3472752, + -0.0175728 + ] + ] + }, + "id": "way/983805192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983809105", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503544, + -0.0584865 + ], + [ + 109.3511622, + -0.0591092 + ] + ] + }, + "id": "way/983809105" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983809106", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351209, + -0.0591454 + ], + [ + 109.3512231, + -0.0591561 + ] + ] + }, + "id": "way/983809106" + }, + { + "type": "Feature", + "properties": { + "@id": "way/983809107", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3511622, + -0.0591092 + ], + [ + 109.351209, + -0.0591454 + ] + ] + }, + "id": "way/983809107" + }, + { + "type": "Feature", + "properties": { + "@id": "way/984177347", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3784825, + -0.0263689 + ], + [ + 109.3785769, + -0.0260348 + ], + [ + 109.3786104, + -0.0259287 + ], + [ + 109.3786276, + -0.0258387 + ], + [ + 109.3786694, + -0.02563 + ] + ] + }, + "id": "way/984177347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/984211375", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248135, + -0.0213116 + ], + [ + 109.3251447, + -0.021236 + ] + ] + }, + "id": "way/984211375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985014821", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552883, + -0.0637755 + ], + [ + 109.355637, + -0.0640062 + ], + [ + 109.3558558, + -0.0641887 + ] + ] + }, + "id": "way/985014821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985014822", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559432, + -0.0642555 + ], + [ + 109.355947, + -0.0642586 + ] + ] + }, + "id": "way/985014822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985014823", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558558, + -0.0641887 + ], + [ + 109.3559432, + -0.0642555 + ] + ] + }, + "id": "way/985014823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985016767", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491253, + -0.0390954 + ], + [ + 109.34972, + -0.0386814 + ], + [ + 109.3497736, + -0.038612 + ], + [ + 109.3502015, + -0.038352 + ], + [ + 109.350217, + -0.0383334 + ], + [ + 109.3502169, + -0.0383093 + ], + [ + 109.3498219, + -0.0376088 + ] + ] + }, + "id": "way/985016767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985024301", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353163, + -0.0337833 + ], + [ + 109.3533309, + -0.0337109 + ], + [ + 109.3534603, + -0.03366 + ], + [ + 109.3535651, + -0.0335915 + ], + [ + 109.3536789, + -0.0335405 + ], + [ + 109.3536382, + -0.0333986 + ], + [ + 109.3537044, + -0.0333555 + ], + [ + 109.3540275, + -0.0332174 + ], + [ + 109.3544609, + -0.0329988 + ], + [ + 109.3544839, + -0.0329978 + ], + [ + 109.3545108, + -0.0330381 + ], + [ + 109.3545252, + -0.0330381 + ], + [ + 109.3545424, + -0.0330237 + ], + [ + 109.3547011, + -0.0329265 + ] + ] + }, + "id": "way/985024301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985024956", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530346, + -0.0335122 + ], + [ + 109.3532674, + -0.0334174 + ], + [ + 109.3535007, + -0.0332802 + ], + [ + 109.3536534, + -0.0332224 + ], + [ + 109.353866, + -0.0331181 + ], + [ + 109.3540877, + -0.0330154 + ], + [ + 109.3541002, + -0.0330209 + ], + [ + 109.354474, + -0.0328548 + ], + [ + 109.3545986, + -0.0327852 + ] + ] + }, + "id": "way/985024956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985025288", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474442, + -0.0157593 + ], + [ + 109.3469352, + -0.0169226 + ] + ] + }, + "id": "way/985025288" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985027698", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597032, + -0.0012092 + ], + [ + 109.3615815, + -0.0014209 + ] + ] + }, + "id": "way/985027698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985072815", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023561, + -0.0247362 + ], + [ + 109.3026191, + -0.0253724 + ], + [ + 109.3026359, + -0.0254173 + ], + [ + 109.3027794, + -0.0258015 + ] + ] + }, + "id": "way/985072815" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985075758", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442367, + -0.067357 + ], + [ + 109.343566, + -0.0667406 + ] + ] + }, + "id": "way/985075758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985387001", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296397, + -0.0173981 + ], + [ + 109.3298049, + -0.0185083 + ] + ] + }, + "id": "way/985387001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985396463", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2988854, + -0.0122996 + ], + [ + 109.2989264, + -0.0123046 + ], + [ + 109.2989428, + -0.0123241 + ], + [ + 109.2989737, + -0.0124421 + ], + [ + 109.2990086, + -0.0124701 + ], + [ + 109.2990619, + -0.0124679 + ], + [ + 109.2991751, + -0.0124494 + ], + [ + 109.3000468, + -0.0122971 + ], + [ + 109.300409, + -0.0122651 + ], + [ + 109.3004069, + -0.0122979 + ] + ] + }, + "id": "way/985396463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985396464", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993388, + -0.0120324 + ], + [ + 109.2985014, + -0.0121827 + ], + [ + 109.2984974, + -0.0121914 + ], + [ + 109.2980345, + -0.0122936 + ] + ] + }, + "id": "way/985396464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985406480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331055, + -0.0548636 + ], + [ + 109.3339279, + -0.0570298 + ] + ] + }, + "id": "way/985406480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985435066", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540278, + -0.0102276 + ], + [ + 109.3546116, + -0.0106518 + ], + [ + 109.3548442, + -0.0107593 + ], + [ + 109.3549292, + -0.0107705 + ], + [ + 109.3549548, + -0.0107288 + ], + [ + 109.3549689, + -0.0107241 + ], + [ + 109.3551311, + -0.0107626 + ] + ] + }, + "id": "way/985435066" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985435067", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551311, + -0.0107626 + ], + [ + 109.3552334, + -0.0107864 + ] + ] + }, + "id": "way/985435067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985436949", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106882, + -0.005595 + ], + [ + 109.3111066, + -0.0056927 + ] + ] + }, + "id": "way/985436949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985437437", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565714, + -0.0003732 + ], + [ + 109.3610215, + -0.0008878 + ], + [ + 109.3611073, + -0.0008395 + ], + [ + 109.3611771, + -0.0003406 + ] + ] + }, + "id": "way/985437437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985455167", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3781474, + -0.026259 + ], + [ + 109.3783091, + -0.0252971 + ] + ] + }, + "id": "way/985455167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985475888", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991143, + -0.0019153 + ], + [ + 109.2990687, + -0.0020494 + ] + ] + }, + "id": "way/985475888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985682073", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3772891, + -0.0249284 + ], + [ + 109.3772677, + -0.0249635 + ], + [ + 109.3771451, + -0.0252311 + ], + [ + 109.3770813, + -0.0254365 + ], + [ + 109.3770082, + -0.0259631 + ] + ] + }, + "id": "way/985682073" + }, + { + "type": "Feature", + "properties": { + "@id": "way/985691265", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3524803, + -0.0173774 + ], + [ + 109.3521527, + -0.0175087 + ], + [ + 109.3521321, + -0.0175327 + ], + [ + 109.3520388, + -0.0175652 + ], + [ + 109.3520316, + -0.0175794 + ], + [ + 109.3520449, + -0.0176263 + ], + [ + 109.3521015, + -0.0177916 + ], + [ + 109.3521255, + -0.0179081 + ], + [ + 109.3522606, + -0.0183486 + ] + ] + }, + "id": "way/985691265" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986094752", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223011, + 0.0055495 + ], + [ + 109.3225774, + 0.0053443 + ], + [ + 109.322615, + 0.0052799 + ], + [ + 109.3225801, + 0.0051861 + ], + [ + 109.3226203, + 0.0050895 + ], + [ + 109.3226606, + 0.0049768 + ], + [ + 109.322733, + 0.0049285 + ] + ] + }, + "id": "way/986094752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986103348", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3031636, + -0.0231783 + ], + [ + 109.3034595, + -0.0238821 + ] + ] + }, + "id": "way/986103348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986103486", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341979, + -0.0249908 + ], + [ + 109.3422993, + -0.0254576 + ] + ] + }, + "id": "way/986103486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986519308", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421791, + -0.038035 + ], + [ + 109.3418384, + -0.0382121 + ] + ] + }, + "id": "way/986519308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986528948", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278493, + 0.0012848 + ], + [ + 109.3278387, + 0.0012276 + ], + [ + 109.3278678, + 0.0011556 + ], + [ + 109.327944, + 0.0010242 + ] + ] + }, + "id": "way/986528948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986566748", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371263, + -0.0129416 + ], + [ + 109.3373905, + -0.0127418 + ], + [ + 109.3373995, + -0.0127251 + ], + [ + 109.3373841, + -0.0126865 + ], + [ + 109.3373596, + -0.012653 + ], + [ + 109.3373532, + -0.0126247 + ], + [ + 109.337397, + -0.0125758 + ], + [ + 109.3380325, + -0.0120021 + ] + ] + }, + "id": "way/986566748" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986571805", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2939602, + -0.0367195 + ], + [ + 109.2935973, + -0.0370242 + ] + ] + }, + "id": "way/986571805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986578348", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546535, + -0.0120528 + ], + [ + 109.3549962, + -0.012121 + ] + ] + }, + "id": "way/986578348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986578349", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550806, + -0.0121387 + ], + [ + 109.3550855, + -0.0121397 + ] + ] + }, + "id": "way/986578349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986578350", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549962, + -0.012121 + ], + [ + 109.3550806, + -0.0121387 + ] + ] + }, + "id": "way/986578350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986586125", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304019, + -0.0042251 + ], + [ + 109.3038716, + -0.0049509 + ] + ] + }, + "id": "way/986586125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986586126", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3041695, + -0.0035796 + ], + [ + 109.304461, + -0.0023033 + ] + ] + }, + "id": "way/986586126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/986630350", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385523, + -0.0611167 + ], + [ + 109.3396269, + -0.0622834 + ] + ] + }, + "id": "way/986630350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987255520", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2869164, + -0.0317428 + ], + [ + 109.2856008, + -0.0299335 + ], + [ + 109.2853564, + -0.0295982 + ] + ] + }, + "id": "way/987255520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987269578", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564725, + -0.0257421 + ], + [ + 109.3563992, + -0.0264435 + ] + ] + }, + "id": "way/987269578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987270134", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553714, + -0.0256509 + ], + [ + 109.3553574, + -0.0259953 + ] + ] + }, + "id": "way/987270134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281208", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548016, + -0.0273978 + ], + [ + 109.3547976, + -0.0278531 + ] + ] + }, + "id": "way/987281208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281209", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550143, + -0.0274045 + ], + [ + 109.3550222, + -0.0280011 + ], + [ + 109.3550331, + -0.0283641 + ] + ] + }, + "id": "way/987281209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281210", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556419, + -0.0274265 + ], + [ + 109.3556531, + -0.0279726 + ], + [ + 109.3556983, + -0.0279697 + ] + ] + }, + "id": "way/987281210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281211", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.35623, + -0.0270746 + ], + [ + 109.3562254, + -0.0274399 + ] + ] + }, + "id": "way/987281211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281212", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565549, + -0.0270853 + ], + [ + 109.3565489, + -0.0274491 + ] + ] + }, + "id": "way/987281212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281213", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568561, + -0.0271649 + ], + [ + 109.3568345, + -0.0274517 + ] + ] + }, + "id": "way/987281213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281214", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572314, + -0.027089 + ], + [ + 109.3572254, + -0.0274638 + ] + ] + }, + "id": "way/987281214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281216", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557347, + -0.0271695 + ], + [ + 109.3558447, + -0.0271749 + ], + [ + 109.355869, + -0.0271802 + ], + [ + 109.3558856, + -0.0271903 + ], + [ + 109.3558965, + -0.0272056 + ], + [ + 109.355896, + -0.0274294 + ] + ] + }, + "id": "way/987281216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281217", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568345, + -0.0274517 + ], + [ + 109.3568028, + -0.0283806 + ] + ] + }, + "id": "way/987281217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281218", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3565147, + -0.0274481 + ], + [ + 109.3565175, + -0.0279943 + ], + [ + 109.3556983, + -0.0279697 + ] + ] + }, + "id": "way/987281218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987281803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561134, + -0.0274367 + ], + [ + 109.3561188, + -0.0276848 + ], + [ + 109.3561015, + -0.0277107 + ], + [ + 109.3559716, + -0.027705 + ] + ] + }, + "id": "way/987281803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987284033", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518137, + -0.0292868 + ], + [ + 109.3516931, + -0.0293742 + ], + [ + 109.3512622, + -0.0297441 + ] + ] + }, + "id": "way/987284033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987300434", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528345, + -0.0331995 + ], + [ + 109.3531116, + -0.0330324 + ], + [ + 109.3531617, + -0.0330454 + ], + [ + 109.3531784, + -0.033064 + ], + [ + 109.3534013, + -0.0329655 + ] + ] + }, + "id": "way/987300434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987301044", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532705, + -0.0340279 + ], + [ + 109.3529561, + -0.0341506 + ], + [ + 109.3529492, + -0.0341697 + ], + [ + 109.3529717, + -0.0342393 + ], + [ + 109.3529718, + -0.0342614 + ], + [ + 109.3529615, + -0.034275 + ], + [ + 109.3527951, + -0.0343399 + ], + [ + 109.3524673, + -0.0344369 + ], + [ + 109.3524566, + -0.0344657 + ], + [ + 109.3524827, + -0.0345509 + ], + [ + 109.352478, + -0.0345764 + ], + [ + 109.3524566, + -0.0345864 + ], + [ + 109.3518161, + -0.0348229 + ], + [ + 109.3513628, + -0.0349865 + ] + ] + }, + "id": "way/987301044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987301553", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.355543, + -0.0340695 + ], + [ + 109.3542009, + -0.0348841 + ], + [ + 109.3541729, + -0.0349001 + ], + [ + 109.3541464, + -0.0349 + ], + [ + 109.3541205, + -0.0348644 + ], + [ + 109.3541045, + -0.0348546 + ], + [ + 109.3540858, + -0.0348599 + ], + [ + 109.3537442, + -0.0350222 + ] + ] + }, + "id": "way/987301553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987302705", + "highway": "living_street", + "motorcar": "no", + "motorcycle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514478, + -0.0268314 + ], + [ + 109.3514421, + -0.0271671 + ], + [ + 109.3514997, + -0.0271856 + ], + [ + 109.3515387, + -0.027377 + ], + [ + 109.3515461, + -0.0274587 + ], + [ + 109.351583, + -0.0274996 + ] + ] + }, + "id": "way/987302705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987303743", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487644, + -0.0269476 + ], + [ + 109.3487517, + -0.0269545 + ], + [ + 109.3487262, + -0.0269441 + ], + [ + 109.3485653, + -0.0268075 + ], + [ + 109.3484391, + -0.0267635 + ] + ] + }, + "id": "way/987303743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987303744", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484391, + -0.0267635 + ], + [ + 109.3484135, + -0.0267567 + ], + [ + 109.3483967, + -0.0267664 + ], + [ + 109.3483068, + -0.0269689 + ], + [ + 109.3482663, + -0.0270601 + ], + [ + 109.3481892, + -0.0273005 + ] + ] + }, + "id": "way/987303744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987303745", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349011, + -0.026736 + ], + [ + 109.348981, + -0.0267288 + ], + [ + 109.3489277, + -0.0267913 + ], + [ + 109.3488118, + -0.0269026 + ] + ] + }, + "id": "way/987303745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987303746", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488118, + -0.0269026 + ], + [ + 109.3487644, + -0.0269476 + ] + ] + }, + "id": "way/987303746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987350478", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267771, + -0.0277766 + ], + [ + 109.3267308, + -0.0278088 + ], + [ + 109.3267275, + -0.0278222 + ], + [ + 109.3267556, + -0.0278712 + ], + [ + 109.3269156, + -0.0280953 + ] + ] + }, + "id": "way/987350478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987353501", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2954294, + -0.0077539 + ], + [ + 109.2954593, + -0.0074484 + ], + [ + 109.2954607, + -0.0061357 + ] + ] + }, + "id": "way/987353501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987353582", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2954607, + -0.0061357 + ], + [ + 109.2958346, + -0.0060951 + ] + ] + }, + "id": "way/987353582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987358625", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470245, + -0.0800523 + ], + [ + 109.3454623, + -0.0791059 + ] + ] + }, + "id": "way/987358625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987358626", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470938, + -0.0800943 + ], + [ + 109.3470245, + -0.0800523 + ] + ] + }, + "id": "way/987358626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987358627", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347155, + -0.0801313 + ], + [ + 109.3470938, + -0.0800943 + ] + ] + }, + "id": "way/987358627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987572903", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3165009, + -0.033593 + ], + [ + 109.3161834, + -0.0338964 + ] + ] + }, + "id": "way/987572903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987575925", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497033, + 0.0031228 + ], + [ + 109.3487278, + 0.0020108 + ] + ] + }, + "id": "way/987575925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987576831", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315215, + -0.0373628 + ], + [ + 109.315499, + -0.0376147 + ], + [ + 109.315546, + -0.0376341 + ], + [ + 109.3156208, + -0.0375759 + ], + [ + 109.3157318, + -0.0374206 + ] + ] + }, + "id": "way/987576831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987576832", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146799, + -0.0369162 + ], + [ + 109.3145439, + -0.0367972 + ] + ] + }, + "id": "way/987576832" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987582971", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042564, + -0.005428 + ], + [ + 109.3042437, + -0.0059004 + ] + ] + }, + "id": "way/987582971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987582972", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304504, + -0.0054346 + ], + [ + 109.3044885, + -0.0059082 + ] + ] + }, + "id": "way/987582972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987595913", + "highway": "residential", + "name": "Gang Mentibu 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3697756, + -0.0328074 + ], + [ + 109.3701334, + -0.0324783 + ] + ] + }, + "id": "way/987595913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987596284", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.370236, + -0.0334736 + ], + [ + 109.370459, + -0.0337046 + ] + ] + }, + "id": "way/987596284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987600099", + "highway": "residential", + "name": "Gang Mufakat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463639, + -0.0577903 + ], + [ + 109.3460199, + -0.057477 + ], + [ + 109.345497, + -0.0570451 + ], + [ + 109.3443787, + -0.0560598 + ], + [ + 109.3443526, + -0.0560525 + ] + ] + }, + "id": "way/987600099" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987621115", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358974, + -0.0275734 + ], + [ + 109.3357258, + -0.0276209 + ], + [ + 109.3352522, + -0.0277458 + ], + [ + 109.3352148, + -0.0277542 + ], + [ + 109.3352032, + -0.0277401 + ], + [ + 109.3351783, + -0.0276689 + ], + [ + 109.3351336, + -0.0275977 + ], + [ + 109.3350873, + -0.0275696 + ], + [ + 109.3350282, + -0.0275872 + ] + ] + }, + "id": "way/987621115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987661058", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458671, + -0.0359618 + ], + [ + 109.3459375, + -0.0362124 + ], + [ + 109.3459721, + -0.0363592 + ], + [ + 109.3460053, + -0.0363924 + ], + [ + 109.346051, + -0.0363841 + ], + [ + 109.3463085, + -0.0362678 + ] + ] + }, + "id": "way/987661058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987866788", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688494, + -0.0311366 + ], + [ + 109.3687706, + -0.0311964 + ], + [ + 109.3687555, + -0.0312401 + ], + [ + 109.3687733, + -0.0312543 + ], + [ + 109.3688741, + -0.0313008 + ], + [ + 109.368952, + -0.0312944 + ], + [ + 109.3690857, + -0.0312708 + ], + [ + 109.3691441, + -0.0312553 + ] + ] + }, + "id": "way/987866788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987920090", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521541, + -0.0562871 + ], + [ + 109.3524091, + -0.0564826 + ], + [ + 109.3527315, + -0.0567215 + ] + ] + }, + "id": "way/987920090" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987920091", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527767, + -0.056754 + ], + [ + 109.3528214, + -0.0567851 + ] + ] + }, + "id": "way/987920091" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987920092", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527315, + -0.0567215 + ], + [ + 109.3527767, + -0.056754 + ] + ] + }, + "id": "way/987920092" + }, + { + "type": "Feature", + "properties": { + "@id": "way/987946554", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467202, + -0.0360615 + ], + [ + 109.3470388, + -0.0359501 + ] + ] + }, + "id": "way/987946554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/988467225", + "highway": "residential", + "name": "Mitra Indah Utama 7" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496745, + -0.0821544 + ], + [ + 109.3497435, + -0.0822083 + ], + [ + 109.3498944, + -0.0823136 + ], + [ + 109.3503991, + -0.082649 + ], + [ + 109.3522442, + -0.0838163 + ] + ] + }, + "id": "way/988467225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/988478455", + "highway": "residential", + "name": "Jalan Komplek Sepakat Asri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090439, + -0.038857 + ], + [ + 109.3093354, + -0.0391068 + ] + ] + }, + "id": "way/988478455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/988496584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.323646, + -0.0480529 + ], + [ + 109.3240256, + -0.0484105 + ] + ] + }, + "id": "way/988496584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/988513015", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2987115, + -0.0096735 + ], + [ + 109.2991635, + -0.0107615 + ] + ] + }, + "id": "way/988513015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/988513016", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.298863, + -0.0091984 + ], + [ + 109.2995291, + -0.0107625 + ] + ] + }, + "id": "way/988513016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/988536996", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081096, + 0.0100797 + ], + [ + 109.3078253, + 0.0090417 + ] + ] + }, + "id": "way/988536996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/988541775", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549917, + -0.013078 + ], + [ + 109.3553125, + -0.0130956 + ], + [ + 109.35575, + -0.0131205 + ] + ] + }, + "id": "way/988541775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989251399", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340561, + 0.0004156 + ], + [ + 109.3341175, + 0.0004095 + ], + [ + 109.3341512, + 0.0004096 + ], + [ + 109.3342046, + 0.0004057 + ] + ] + }, + "id": "way/989251399" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989263051", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3690018, + -0.0286036 + ], + [ + 109.3689237, + -0.0290332 + ] + ] + }, + "id": "way/989263051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989263165", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199569, + 0.0015631 + ], + [ + 109.3197746, + 0.001196 + ] + ] + }, + "id": "way/989263165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989266582", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3770843, + -0.0259733 + ], + [ + 109.3769374, + -0.0269165 + ] + ] + }, + "id": "way/989266582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989267195", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483396, + -0.0495189 + ], + [ + 109.3490601, + -0.05004 + ] + ] + }, + "id": "way/989267195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989271419", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555617, + -0.008315 + ], + [ + 109.3561604, + -0.0083181 + ] + ] + }, + "id": "way/989271419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989272565", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304685, + -0.0253323 + ], + [ + 109.3307282, + -0.0250487 + ], + [ + 109.3307733, + -0.0250202 + ], + [ + 109.3308352, + -0.0250236 + ], + [ + 109.3308653, + -0.0250487 + ], + [ + 109.3308937, + -0.025052 + ], + [ + 109.3309338, + -0.0250069 + ], + [ + 109.3310742, + -0.0248079 + ], + [ + 109.3310891, + -0.0248014 + ], + [ + 109.3311055, + -0.0247997 + ], + [ + 109.3311223, + -0.024799 + ], + [ + 109.3311394, + -0.0248029 + ], + [ + 109.3311879, + -0.0248447 + ], + [ + 109.3315368, + -0.0251242 + ] + ] + }, + "id": "way/989272565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989272977", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435082, + -0.0151066 + ], + [ + 109.343861, + -0.0152508 + ] + ] + }, + "id": "way/989272977" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989272978", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434481, + -0.0150821 + ], + [ + 109.3435082, + -0.0151066 + ] + ] + }, + "id": "way/989272978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989275162", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428729, + -0.0167958 + ], + [ + 109.3424379, + -0.0166223 + ], + [ + 109.342426, + -0.016617 + ], + [ + 109.3424164, + -0.0166032 + ], + [ + 109.3424151, + -0.0165951 + ], + [ + 109.3424415, + -0.0165296 + ], + [ + 109.3424726, + -0.0164627 + ] + ] + }, + "id": "way/989275162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989275163", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424726, + -0.0164627 + ], + [ + 109.342473, + -0.0164488 + ], + [ + 109.3424517, + -0.0164386 + ], + [ + 109.3424164, + -0.0164293 + ] + ] + }, + "id": "way/989275163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989282517", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560572, + -0.0746362 + ], + [ + 109.355175, + -0.0739544 + ], + [ + 109.3548598, + -0.0737275 + ], + [ + 109.3544284, + -0.073417 + ] + ] + }, + "id": "way/989282517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989304844", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340957, + 0.0046101 + ], + [ + 109.3369979, + 0.0046293 + ] + ] + }, + "id": "way/989304844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989304845", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341042, + 0.0041684 + ], + [ + 109.3369762, + 0.0041683 + ] + ] + }, + "id": "way/989304845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989304846", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334114, + 0.0036457 + ], + [ + 109.3369502, + 0.0035996 + ] + ] + }, + "id": "way/989304846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989304847", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369762, + 0.0041683 + ], + [ + 109.337011, + 0.0041683 + ], + [ + 109.3374092, + 0.0041683 + ], + [ + 109.337438, + 0.0041308 + ], + [ + 109.3374958, + 0.0040269 + ], + [ + 109.3375131, + 0.0036978 + ], + [ + 109.3374986, + 0.0036372 + ], + [ + 109.3374409, + 0.0036025 + ], + [ + 109.3370368, + 0.0035996 + ], + [ + 109.3369502, + 0.0035996 + ] + ] + }, + "id": "way/989304847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989304848", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369979, + 0.0046293 + ], + [ + 109.337011, + 0.0041683 + ] + ] + }, + "id": "way/989304848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989308807", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594192, + -0.0136853 + ], + [ + 109.3585735, + -0.0136919 + ], + [ + 109.3585401, + -0.0137086 + ], + [ + 109.3585033, + -0.0137788 + ], + [ + 109.3584826, + -0.0139325 + ], + [ + 109.358477, + -0.0139744 + ], + [ + 109.358465, + -0.0142253 + ], + [ + 109.358458, + -0.0143719 + ], + [ + 109.358265, + -0.0143681 + ], + [ + 109.3582365, + -0.0143781 + ], + [ + 109.3582265, + -0.0143907 + ], + [ + 109.3582252, + -0.0144436 + ] + ] + }, + "id": "way/989308807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989312417", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3759723, + -0.0313597 + ], + [ + 109.3761366, + -0.0314651 + ], + [ + 109.3762399, + -0.0315232 + ], + [ + 109.376397, + -0.0316092 + ], + [ + 109.3765777, + -0.0317964 + ], + [ + 109.3766896, + -0.0319105 + ], + [ + 109.3767741, + -0.032018 + ] + ] + }, + "id": "way/989312417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989313413", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526304, + -0.0568502 + ], + [ + 109.3522756, + -0.0566136 + ] + ] + }, + "id": "way/989313413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989313414", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527356, + -0.0569163 + ], + [ + 109.3526887, + -0.056889 + ] + ] + }, + "id": "way/989313414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989324073", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454394, + -0.0141302 + ], + [ + 109.3454579, + -0.0141104 + ], + [ + 109.3454888, + -0.0140976 + ], + [ + 109.3456069, + -0.0141279 + ] + ] + }, + "id": "way/989324073" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989326049", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587119, + -0.0159406 + ], + [ + 109.3586986, + -0.0150387 + ], + [ + 109.3587102, + -0.0149845 + ], + [ + 109.3587528, + -0.014969 + ], + [ + 109.3588728, + -0.0149613 + ] + ] + }, + "id": "way/989326049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989326050", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588728, + -0.0149613 + ], + [ + 109.3588904, + -0.0149448 + ], + [ + 109.3589031, + -0.014393 + ] + ] + }, + "id": "way/989326050" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989771398", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344153, + -0.0291281 + ], + [ + 109.3445234, + -0.0289638 + ] + ] + }, + "id": "way/989771398" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989772387", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3660533, + -0.0255534 + ], + [ + 109.3661358, + -0.0249093 + ] + ] + }, + "id": "way/989772387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989772423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3659541, + -0.0255574 + ], + [ + 109.3660098, + -0.0250613 + ] + ] + }, + "id": "way/989772423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989780184", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3045233, + -0.0265808 + ], + [ + 109.3046395, + -0.0265291 + ], + [ + 109.3046509, + -0.026517 + ], + [ + 109.3046567, + -0.0265061 + ], + [ + 109.3046664, + -0.026495 + ], + [ + 109.304677, + -0.0264875 + ], + [ + 109.3049512, + -0.0263747 + ] + ] + }, + "id": "way/989780184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989781582", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346945, + -0.0086945 + ], + [ + 109.3474432, + -0.0089221 + ] + ] + }, + "id": "way/989781582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989785516", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507326, + -0.0594109 + ], + [ + 109.3508568, + -0.0595013 + ] + ] + }, + "id": "way/989785516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989786094", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507455, + -0.0598358 + ], + [ + 109.3514239, + -0.0604995 + ] + ] + }, + "id": "way/989786094" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989788535", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630538, + -0.0663193 + ], + [ + 109.3627088, + -0.0670753 + ], + [ + 109.362656, + -0.0671909 + ] + ] + }, + "id": "way/989788535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989788536", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626216, + -0.0672553 + ], + [ + 109.3622143, + -0.0680482 + ], + [ + 109.3622046, + -0.0680749 + ], + [ + 109.3622056, + -0.0680963 + ], + [ + 109.3622158, + -0.0681136 + ], + [ + 109.3623545, + -0.0682142 + ] + ] + }, + "id": "way/989788536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989788537", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362656, + -0.0671909 + ], + [ + 109.3626216, + -0.0672553 + ] + ] + }, + "id": "way/989788537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989795191", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421308, + -0.0362396 + ], + [ + 109.3415848, + -0.0364429 + ] + ] + }, + "id": "way/989795191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989802914", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200988, + -0.0344659 + ], + [ + 109.3205343, + -0.0351355 + ], + [ + 109.3205526, + -0.0351636 + ], + [ + 109.3206121, + -0.035255 + ] + ] + }, + "id": "way/989802914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989845429", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506746, + -0.0238264 + ], + [ + 109.3506669, + -0.0238675 + ], + [ + 109.3506514, + -0.0239023 + ], + [ + 109.3506414, + -0.0239062 + ], + [ + 109.3506283, + -0.0239113 + ], + [ + 109.3503499, + -0.0239363 + ], + [ + 109.3499693, + -0.0239705 + ] + ] + }, + "id": "way/989845429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/989845430", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507412, + -0.023792 + ], + [ + 109.3506746, + -0.0238264 + ] + ] + }, + "id": "way/989845430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990241582", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614634, + -0.0517264 + ], + [ + 109.3606147, + -0.0525166 + ] + ] + }, + "id": "way/990241582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990246545", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3568402, + -0.0470032 + ], + [ + 109.3574025, + -0.0463315 + ] + ] + }, + "id": "way/990246545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990251518", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344714, + -0.0419367 + ], + [ + 109.3449566, + -0.0422008 + ] + ] + }, + "id": "way/990251518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990268857", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236439, + -0.0198209 + ], + [ + 109.3236544, + -0.0198572 + ], + [ + 109.3238441, + -0.0205343 + ] + ] + }, + "id": "way/990268857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990268858", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236215, + -0.0197228 + ], + [ + 109.3236439, + -0.0198209 + ] + ] + }, + "id": "way/990268858" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990268859", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3235903, + -0.0196148 + ], + [ + 109.3235946, + -0.0196297 + ], + [ + 109.3236215, + -0.0197228 + ] + ] + }, + "id": "way/990268859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990274056", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3181224, + -0.024789 + ], + [ + 109.318662, + -0.0246901 + ] + ] + }, + "id": "way/990274056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990619811", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3735958, + -0.0544302 + ], + [ + 109.3746082, + -0.0537924 + ] + ] + }, + "id": "way/990619811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990621010", + "highway": "residential", + "name": "Gang Kenanga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3652764, + -0.0486252 + ], + [ + 109.3660859, + -0.0479717 + ] + ] + }, + "id": "way/990621010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990621727", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632715, + -0.0464447 + ], + [ + 109.3626439, + -0.04706 + ] + ] + }, + "id": "way/990621727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990622150", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630955, + -0.046218 + ], + [ + 109.3627958, + -0.0464501 + ] + ] + }, + "id": "way/990622150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990623612", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3613601, + -0.0441984 + ], + [ + 109.3616203, + -0.0439826 + ] + ] + }, + "id": "way/990623612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990625231", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.355964, + -0.03878 + ], + [ + 109.3562144, + -0.0386242 + ] + ] + }, + "id": "way/990625231" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990626321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555257, + -0.0381369 + ], + [ + 109.3549164, + -0.0385062 + ] + ] + }, + "id": "way/990626321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990626322", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3552483, + -0.0377216 + ], + [ + 109.3555627, + -0.0375193 + ] + ] + }, + "id": "way/990626322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990642406", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3659108, + -0.0379196 + ], + [ + 109.3664959, + -0.0374497 + ] + ] + }, + "id": "way/990642406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990643405", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3754622, + -0.0258282 + ], + [ + 109.3752399, + -0.026979 + ] + ] + }, + "id": "way/990643405" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990654825", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3730771, + -0.0060362 + ], + [ + 109.373117, + -0.0062974 + ], + [ + 109.3712667, + -0.0064777 + ] + ] + }, + "id": "way/990654825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990704697", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532314, + 0.0044348 + ], + [ + 109.3536233, + 0.0043134 + ] + ] + }, + "id": "way/990704697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990704698", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531747, + 0.0044524 + ], + [ + 109.3532314, + 0.0044348 + ] + ] + }, + "id": "way/990704698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990704699", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531434, + 0.0044621 + ], + [ + 109.3531747, + 0.0044524 + ] + ] + }, + "id": "way/990704699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990768720", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548863, + -0.0100378 + ], + [ + 109.3551742, + -0.0101512 + ] + ] + }, + "id": "way/990768720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/990768721", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551742, + -0.0101512 + ], + [ + 109.3553031, + -0.0101987 + ] + ] + }, + "id": "way/990768721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991097627", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064942, + -0.022831 + ], + [ + 109.3065747, + -0.0230714 + ] + ] + }, + "id": "way/991097627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991097628", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074255, + -0.0231005 + ], + [ + 109.3077258, + -0.024007 + ] + ] + }, + "id": "way/991097628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991097629", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077351, + -0.0232769 + ], + [ + 109.3079389, + -0.0239192 + ] + ] + }, + "id": "way/991097629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991098173", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075861, + -0.0242898 + ], + [ + 109.3077227, + -0.0246828 + ] + ] + }, + "id": "way/991098173" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991107266", + "highway": "living_street", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2863503, + -0.0219488 + ], + [ + 109.2863689, + -0.0220359 + ], + [ + 109.286541, + -0.0222812 + ], + [ + 109.2871486, + -0.0230916 + ] + ] + }, + "id": "way/991107266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991109625", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2822938, + -0.0220326 + ], + [ + 109.2828542, + -0.0235854 + ] + ] + }, + "id": "way/991109625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991130785", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2793501, + -0.0333893 + ], + [ + 109.2789416, + -0.032717 + ] + ] + }, + "id": "way/991130785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991825696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2906045, + -0.0366023 + ], + [ + 109.2922884, + -0.0384905 + ] + ] + }, + "id": "way/991825696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991827331", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2935757, + -0.0371695 + ], + [ + 109.2955784, + -0.0397307 + ] + ] + }, + "id": "way/991827331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991831520", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2990514, + -0.0401462 + ], + [ + 109.2998953, + -0.0397036 + ], + [ + 109.3002257, + -0.0395303 + ] + ] + }, + "id": "way/991831520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991831521", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.29893, + -0.0399365 + ], + [ + 109.2993079, + -0.0397425 + ] + ] + }, + "id": "way/991831521" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991831522", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2988907, + -0.0399522 + ], + [ + 109.29893, + -0.0399365 + ] + ] + }, + "id": "way/991831522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991831523", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2988612, + -0.0399652 + ], + [ + 109.2988907, + -0.0399522 + ] + ] + }, + "id": "way/991831523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991831524", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2990076, + -0.0401676 + ], + [ + 109.2990514, + -0.0401462 + ] + ] + }, + "id": "way/991831524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991831525", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2989711, + -0.0401842 + ], + [ + 109.2990076, + -0.0401676 + ] + ] + }, + "id": "way/991831525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991846672", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087909, + -0.0068316 + ], + [ + 109.3087643, + -0.0069534 + ], + [ + 109.3087448, + -0.0069697 + ], + [ + 109.3087057, + -0.0069844 + ], + [ + 109.3084791, + -0.0069243 + ], + [ + 109.3084583, + -0.0069281 + ], + [ + 109.308397, + -0.0070884 + ], + [ + 109.308359, + -0.0072441 + ], + [ + 109.308369, + -0.0072709 + ], + [ + 109.3083937, + -0.0072922 + ], + [ + 109.3086233, + -0.0073617 + ] + ] + }, + "id": "way/991846672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991846673", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.308359, + -0.0072441 + ], + [ + 109.3082222, + -0.0076576 + ] + ] + }, + "id": "way/991846673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991847013", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3157809, + -0.0060183 + ], + [ + 109.3159012, + -0.0055956 + ], + [ + 109.3161028, + -0.0052177 + ], + [ + 109.3162936, + -0.0049013 + ] + ] + }, + "id": "way/991847013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991855287", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3267681, + -0.0149643 + ], + [ + 109.3268569, + -0.0150217 + ], + [ + 109.3268804, + -0.0150381 + ], + [ + 109.3268978, + -0.0150532 + ], + [ + 109.3269011, + -0.0150633 + ], + [ + 109.3268991, + -0.0150754 + ], + [ + 109.3268857, + -0.0150955 + ], + [ + 109.3268535, + -0.0151451 + ], + [ + 109.3268274, + -0.0151793 + ], + [ + 109.3267918, + -0.0152329 + ], + [ + 109.3267664, + -0.0152671 + ], + [ + 109.3267389, + -0.0153054 + ], + [ + 109.326708, + -0.0153543 + ], + [ + 109.3266597, + -0.0154328 + ], + [ + 109.3265853, + -0.0155407 + ], + [ + 109.3265521, + -0.0155952 + ] + ] + }, + "id": "way/991855287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991883189", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.291325, + -0.0332792 + ], + [ + 109.2911871, + -0.0330948 + ], + [ + 109.2911955, + -0.0330342 + ], + [ + 109.2909008, + -0.0326413 + ] + ] + }, + "id": "way/991883189" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991883772", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2929388, + -0.0319446 + ], + [ + 109.2924288, + -0.0312945 + ], + [ + 109.2924172, + -0.0312866 + ], + [ + 109.2923999, + -0.0312853 + ], + [ + 109.2921657, + -0.0314439 + ], + [ + 109.2921343, + -0.0314569 + ], + [ + 109.2921107, + -0.031443 + ], + [ + 109.2917174, + -0.0309311 + ] + ] + }, + "id": "way/991883772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991883773", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2920247, + -0.0307153 + ], + [ + 109.2924172, + -0.0312866 + ] + ] + }, + "id": "way/991883773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991884149", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994791, + -0.0267178 + ], + [ + 109.2985456, + -0.0252131 + ] + ] + }, + "id": "way/991884149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991898918", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020238, + -0.0423764 + ], + [ + 109.300657, + -0.0432312 + ] + ] + }, + "id": "way/991898918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991898919", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3006054, + -0.0432625 + ], + [ + 109.3005826, + -0.0432766 + ] + ] + }, + "id": "way/991898919" + }, + { + "type": "Feature", + "properties": { + "@id": "way/991898920", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300657, + -0.0432312 + ], + [ + 109.3006054, + -0.0432625 + ] + ] + }, + "id": "way/991898920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992095235", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019836, + 0.0070871 + ], + [ + 109.3017044, + 0.0056246 + ] + ] + }, + "id": "way/992095235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992103808", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485495, + -0.0775558 + ], + [ + 109.3494987, + -0.0784586 + ] + ] + }, + "id": "way/992103808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992105149", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396538, + -0.0855421 + ], + [ + 109.3385822, + -0.0849469 + ] + ] + }, + "id": "way/992105149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992138305", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437964, + -0.0729567 + ], + [ + 109.3441195, + -0.0733445 + ] + ] + }, + "id": "way/992138305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992139721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401901, + -0.0664395 + ], + [ + 109.3415075, + -0.0676793 + ], + [ + 109.342793, + -0.0688882 + ] + ] + }, + "id": "way/992139721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992143299", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500278, + -0.0592789 + ], + [ + 109.3505958, + -0.0597197 + ] + ] + }, + "id": "way/992143299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992143300", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507353, + -0.0598282 + ], + [ + 109.3507455, + -0.0598358 + ] + ] + }, + "id": "way/992143300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992143301", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505958, + -0.0597197 + ], + [ + 109.3507353, + -0.0598282 + ] + ] + }, + "id": "way/992143301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992144059", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506242, + -0.0600087 + ], + [ + 109.351052, + -0.0603931 + ] + ] + }, + "id": "way/992144059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992147796", + "highway": "residential", + "name": "Gang Macan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243825, + -0.0663582 + ], + [ + 109.3250746, + -0.0673087 + ], + [ + 109.3251725, + -0.0674441 + ] + ] + }, + "id": "way/992147796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992155865", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153046, + -0.041289 + ], + [ + 109.3149457, + -0.0415708 + ] + ] + }, + "id": "way/992155865" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992156220", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3132266, + -0.0416616 + ], + [ + 109.3134738, + -0.0419312 + ] + ] + }, + "id": "way/992156220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992164100", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334511, + -0.0291073 + ], + [ + 109.3336555, + -0.0293579 + ] + ] + }, + "id": "way/992164100" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992164101", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327554, + -0.0291783 + ], + [ + 109.3332617, + -0.0297261 + ] + ] + }, + "id": "way/992164101" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992362414", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171057, + -0.0644448 + ], + [ + 109.3188583, + -0.0656265 + ] + ] + }, + "id": "way/992362414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992429751", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619739, + -0.0144799 + ], + [ + 109.3631955, + -0.0145717 + ] + ] + }, + "id": "way/992429751" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992608826", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077802, + -0.0518758 + ], + [ + 109.3073927, + -0.0525133 + ] + ] + }, + "id": "way/992608826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992608827", + "highway": "unclassified", + "name": "Jalan Pak Benceng" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3125486, + -0.0546006 + ], + [ + 109.3125553, + -0.0546036 + ] + ] + }, + "id": "way/992608827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992608828", + "bridge": "yes", + "highway": "unclassified", + "layer": "1", + "name": "Jalan Pak Benceng" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124714, + -0.0545633 + ], + [ + 109.3125486, + -0.0546006 + ] + ] + }, + "id": "way/992608828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992611041", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067403, + -0.0484085 + ], + [ + 109.3074592, + -0.0489195 + ] + ] + }, + "id": "way/992611041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992612585", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028185, + -0.0402422 + ], + [ + 109.3023832, + -0.0404849 + ] + ] + }, + "id": "way/992612585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992636790", + "highway": "residential", + "name": "Gang Keluarga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303495, + -0.036312 + ], + [ + 109.3041318, + -0.0359733 + ] + ] + }, + "id": "way/992636790" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992638761", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060161, + -0.0053649 + ], + [ + 109.3058879, + -0.0058319 + ], + [ + 109.3058155, + -0.0063173 + ], + [ + 109.3057597, + -0.0065687 + ], + [ + 109.3057456, + -0.0065989 + ], + [ + 109.3057151, + -0.006627 + ], + [ + 109.3056802, + -0.0066391 + ], + [ + 109.3056607, + -0.0066579 + ], + [ + 109.3056022, + -0.006829 + ] + ] + }, + "id": "way/992638761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992643488", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321396, + -0.032474 + ], + [ + 109.3319364, + -0.0322105 + ], + [ + 109.3318867, + -0.0322105 + ], + [ + 109.331818, + -0.03222 + ], + [ + 109.3316665, + -0.0320613 + ], + [ + 109.3315718, + -0.031969 + ], + [ + 109.3314818, + -0.0319477 + ], + [ + 109.3314545, + -0.0319096 + ], + [ + 109.3313824, + -0.0317914 + ] + ] + }, + "id": "way/992643488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992643489", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3311182, + -0.0314147 + ], + [ + 109.3312564, + -0.0316778 + ], + [ + 109.3313015, + -0.0316637 + ], + [ + 109.3313533, + -0.0317454 + ], + [ + 109.3313824, + -0.0317914 + ] + ] + }, + "id": "way/992643489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/992644166", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3314772, + -0.0309193 + ], + [ + 109.3316158, + -0.0311462 + ] + ] + }, + "id": "way/992644166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/993058413", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312924, + -0.064032 + ], + [ + 109.3337964, + -0.0664675 + ] + ] + }, + "id": "way/993058413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/993058414", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301552, + -0.0643369 + ], + [ + 109.330449, + -0.0647251 + ], + [ + 109.3307774, + -0.0650655 + ] + ] + }, + "id": "way/993058414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/993058417", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334046, + -0.0593839 + ], + [ + 109.3341421, + -0.0595139 + ], + [ + 109.3341502, + -0.0595616 + ], + [ + 109.334131, + -0.0596506 + ], + [ + 109.3341407, + -0.0596965 + ], + [ + 109.3343934, + -0.0599779 + ] + ] + }, + "id": "way/993058417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/993594035", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3290981, + -0.0379099 + ], + [ + 109.3293445, + -0.038306 + ] + ] + }, + "id": "way/993594035" + }, + { + "type": "Feature", + "properties": { + "@id": "way/993594036", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329359, + -0.0383294 + ], + [ + 109.329413, + -0.0384072 + ] + ] + }, + "id": "way/993594036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/993594037", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293445, + -0.038306 + ], + [ + 109.329359, + -0.0383294 + ] + ] + }, + "id": "way/993594037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/995169703", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2941067, + -0.0307367 + ], + [ + 109.2940445, + -0.0306573 + ] + ] + }, + "id": "way/995169703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/995169704", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2919023, + -0.0273609 + ], + [ + 109.2919419, + -0.0274156 + ] + ] + }, + "id": "way/995169704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/999204861", + "highway": "unclassified", + "lanes": "2", + "name": "Jalan Tabrani Ahmad", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891258, + -0.0298982 + ], + [ + 109.289139, + -0.0299288 + ], + [ + 109.2891591, + -0.0299583 + ], + [ + 109.2915387, + -0.0330858 + ] + ] + }, + "id": "way/999204861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/999204862", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2900306, + -0.0290259 + ], + [ + 109.2914331, + -0.0308568 + ] + ] + }, + "id": "way/999204862" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1001886179", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079808, + -0.0426551 + ], + [ + 109.3080891, + -0.0425122 + ] + ] + }, + "id": "way/1001886179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1001886354", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080891, + -0.0425122 + ], + [ + 109.307885, + -0.0423561 + ] + ] + }, + "id": "way/1001886354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1001886480", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097414, + -0.0432892 + ], + [ + 109.3089706, + -0.0428189 + ] + ] + }, + "id": "way/1001886480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003406030", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438802, + -0.0549222 + ], + [ + 109.3439105, + -0.0549483 + ] + ] + }, + "id": "way/1003406030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003406031", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438125, + -0.0548679 + ], + [ + 109.3438802, + -0.0549222 + ] + ] + }, + "id": "way/1003406031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003413304", + "highway": "tertiary", + "name": "Jalan Reformasi Untan", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343215, + -0.0686243 + ], + [ + 109.3432721, + -0.0686766 + ] + ] + }, + "id": "way/1003413304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003413305", + "bridge": "yes", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Reformasi Untan", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343164, + -0.0685754 + ], + [ + 109.343215, + -0.0686243 + ] + ] + }, + "id": "way/1003413305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003413306", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no", + "name": "Gang Citra Perdana", + "width": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446286, + -0.0671732 + ], + [ + 109.3445686, + -0.0671082 + ] + ] + }, + "id": "way/1003413306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003413307", + "highway": "residential", + "motorcar": "no", + "name": "Gang Citra Perdana", + "width": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344672, + -0.0672223 + ], + [ + 109.3446286, + -0.0671732 + ] + ] + }, + "id": "way/1003413307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422120", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "name": "Jalan Pemda 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492889, + -0.0759937 + ], + [ + 109.3492037, + -0.0759434 + ] + ] + }, + "id": "way/1003422120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422121", + "highway": "living_street", + "name": "Jalan Pemda 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493572, + -0.0760298 + ], + [ + 109.3492889, + -0.0759937 + ] + ] + }, + "id": "way/1003422121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422122", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "name": "Jalan Pemda 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494478, + -0.0756718 + ], + [ + 109.3493801, + -0.0756349 + ] + ] + }, + "id": "way/1003422122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422123", + "highway": "living_street", + "name": "Jalan Pemda 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495293, + -0.0757166 + ], + [ + 109.3494478, + -0.0756718 + ] + ] + }, + "id": "way/1003422123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422124", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496476, + -0.0753278 + ], + [ + 109.349592, + -0.0752943 + ] + ] + }, + "id": "way/1003422124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422125", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497245, + -0.0753616 + ], + [ + 109.3496476, + -0.0753278 + ] + ] + }, + "id": "way/1003422125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422126", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500674, + -0.0746103 + ], + [ + 109.3500224, + -0.0745681 + ] + ] + }, + "id": "way/1003422126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422127", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501216, + -0.0746496 + ], + [ + 109.3500674, + -0.0746103 + ] + ] + }, + "id": "way/1003422127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422128", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "name": "Gang Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502531, + -0.0742797 + ], + [ + 109.3502028, + -0.0742368 + ] + ] + }, + "id": "way/1003422128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422129", + "highway": "living_street", + "name": "Gang Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502982, + -0.0743179 + ], + [ + 109.3502531, + -0.0742797 + ] + ] + }, + "id": "way/1003422129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422130", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504623, + -0.0739304 + ], + [ + 109.350402, + -0.0738854 + ] + ] + }, + "id": "way/1003422130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422131", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504998, + -0.0739522 + ], + [ + 109.3504623, + -0.0739304 + ] + ] + }, + "id": "way/1003422131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422132", + "highway": "living_street", + "name": "Gang Masjid Quba" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506347, + -0.0735334 + ], + [ + 109.3481557, + -0.0714481 + ] + ] + }, + "id": "way/1003422132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422133", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "name": "Gang Masjid Quba" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506769, + -0.0735669 + ], + [ + 109.3506347, + -0.0735334 + ] + ] + }, + "id": "way/1003422133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422134", + "highway": "living_street", + "name": "Jalan Pemda Jalur 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508166, + -0.0731923 + ], + [ + 109.3483538, + -0.0710981 + ] + ] + }, + "id": "way/1003422134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003422135", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "name": "Jalan Pemda Jalur 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350866, + -0.0732337 + ], + [ + 109.3508166, + -0.0731923 + ] + ] + }, + "id": "way/1003422135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003426010", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430313, + -0.0558805 + ], + [ + 109.3430759, + -0.0559152 + ] + ] + }, + "id": "way/1003426010" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1003426011", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430075, + -0.0558622 + ], + [ + 109.3430313, + -0.0558805 + ] + ] + }, + "id": "way/1003426011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1006922849", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548598, + -0.0737275 + ], + [ + 109.354776, + -0.0738728 + ] + ] + }, + "id": "way/1006922849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008787468", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578537, + -0.0751307 + ], + [ + 109.357886, + -0.0751561 + ] + ] + }, + "id": "way/1008787468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008787469", + "bridge": "yes", + "highway": "tertiary_link", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357886, + -0.0751561 + ], + [ + 109.3579806, + -0.0752185 + ] + ] + }, + "id": "way/1008787469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008787471", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Komplek Villa Gading Raya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358926, + -0.0737148 + ], + [ + 109.3588365, + -0.0736528 + ] + ] + }, + "id": "way/1008787471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008787475", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601429, + -0.071512 + ], + [ + 109.3601656, + -0.0715281 + ] + ] + }, + "id": "way/1008787475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008787476", + "bridge": "yes", + "highway": "tertiary_link", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601656, + -0.0715281 + ], + [ + 109.3602661, + -0.0715982 + ] + ] + }, + "id": "way/1008787476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008788358", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569638, + -0.0766266 + ], + [ + 109.3570706, + -0.076679 + ] + ] + }, + "id": "way/1008788358" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008788362", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3581774, + -0.0747065 + ], + [ + 109.3582847, + -0.0747773 + ] + ] + }, + "id": "way/1008788362" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008788363", + "highway": "residential", + "name": "Komplek Villa Gading Raya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588365, + -0.0736528 + ], + [ + 109.3587976, + -0.0736258 + ] + ] + }, + "id": "way/1008788363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008788364", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Villa Kelapa Gading Permai" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594667, + -0.0725932 + ], + [ + 109.3595624, + -0.072663 + ] + ] + }, + "id": "way/1008788364" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1008788861", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606062, + -0.0707922 + ], + [ + 109.3607771, + -0.0705121 + ] + ] + }, + "id": "way/1008788861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1012406271", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360796, + -0.0033339 + ], + [ + 109.335967, + -0.0034708 + ], + [ + 109.3359415, + -0.0035124 + ], + [ + 109.3359429, + -0.0035714 + ], + [ + 109.3359308, + -0.0036022 + ], + [ + 109.3358919, + -0.0036639 + ], + [ + 109.3358294, + -0.0037486 + ] + ] + }, + "id": "way/1012406271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1020778242", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341451, + -0.0609646 + ], + [ + 109.3340177, + -0.0608666 + ], + [ + 109.3338883, + -0.0607855 + ] + ] + }, + "id": "way/1020778242" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1020778243", + "highway": "residential", + "motorcar": "no", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342266, + -0.0610405 + ], + [ + 109.3341931, + -0.0610093 + ], + [ + 109.3341691, + -0.060987 + ] + ] + }, + "id": "way/1020778243" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1020778244", + "highway": "residential", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341691, + -0.060987 + ], + [ + 109.3341451, + -0.0609646 + ] + ] + }, + "id": "way/1020778244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1021843931", + "highway": "residential", + "name": "Jalan Benuang 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3717745, + -0.0316071 + ], + [ + 109.3719508, + -0.0318076 + ] + ] + }, + "id": "way/1021843931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1022164642", + "highway": "residential", + "name": "Gang Berdikari 2B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2904355, + -0.0244591 + ], + [ + 109.2904288, + -0.0244775 + ], + [ + 109.2904282, + -0.0244858 + ], + [ + 109.2904285, + -0.0244935 + ], + [ + 109.2904321, + -0.0245107 + ], + [ + 109.2923153, + -0.0271413 + ] + ] + }, + "id": "way/1022164642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1022189988", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693659, + -0.0537012 + ], + [ + 109.3695898, + -0.0535449 + ], + [ + 109.3698621, + -0.0533585 + ], + [ + 109.3700726, + -0.053213 + ], + [ + 109.3701826, + -0.0531372 + ], + [ + 109.37031, + -0.0530521 + ] + ] + }, + "id": "way/1022189988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1022249212", + "highway": "residential", + "name": "Gang Fatimah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3666564, + 0.0023947 + ], + [ + 109.3672322, + 0.002363 + ] + ] + }, + "id": "way/1022249212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1023133898", + "highway": "residential", + "name": "Jalan Kapten Marsan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415577, + -0.0232058 + ], + [ + 109.3420583, + -0.022819 + ], + [ + 109.3421086, + -0.0228685 + ] + ] + }, + "id": "way/1023133898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1028907005", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326527, + -0.0193177 + ], + [ + 109.326587, + -0.0193098 + ] + ] + }, + "id": "way/1028907005" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1028907006", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326587, + -0.0193098 + ], + [ + 109.326647, + -0.0193019 + ] + ] + }, + "id": "way/1028907006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1029976940", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3650348, + -0.0615152 + ], + [ + 109.3649458, + -0.0614943 + ], + [ + 109.3649209, + -0.0614935 + ], + [ + 109.3649, + -0.0615097 + ], + [ + 109.3645721, + -0.0622473 + ] + ] + }, + "id": "way/1029976940" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1030251120", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294934, + -0.0377344 + ], + [ + 109.3296963, + -0.0379982 + ] + ] + }, + "id": "way/1030251120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1030251121", + "bridge": "yes", + "highway": "service", + "layer": "1", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296963, + -0.0379982 + ], + [ + 109.3297163, + -0.0380216 + ] + ] + }, + "id": "way/1030251121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1030251122", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297163, + -0.0380216 + ], + [ + 109.3297572, + -0.0380807 + ], + [ + 109.3297759, + -0.0380978 + ] + ] + }, + "id": "way/1030251122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1033692165", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442973, + -0.0130457 + ], + [ + 109.345773, + -0.0136805 + ] + ] + }, + "id": "way/1033692165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1040697999", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019713, + -0.0131547 + ], + [ + 109.3019664, + -0.0133704 + ], + [ + 109.3019405, + -0.0136497 + ] + ] + }, + "id": "way/1040697999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1041191758", + "highway": "pedestrian", + "motorcar": "no", + "motorcycle": "no", + "toll": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420907, + -0.0197899 + ], + [ + 109.3421756, + -0.0196231 + ], + [ + 109.3421968, + -0.0195816 + ] + ] + }, + "id": "way/1041191758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1041191759", + "highway": "pedestrian", + "motorcar": "no", + "motorcycle": "no", + "toll": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421968, + -0.0195816 + ], + [ + 109.3422214, + -0.0195333 + ], + [ + 109.3422998, + -0.0193792 + ], + [ + 109.3423189, + -0.0193417 + ] + ] + }, + "id": "way/1041191759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1042542372", + "highway": "residential", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128558, + -0.0418505 + ], + [ + 109.3116961, + -0.0408865 + ] + ] + }, + "id": "way/1042542372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1043312117", + "highway": "tertiary", + "import": "yes", + "name": "Jalan Pemda", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3793303, + -0.0539124 + ], + [ + 109.3793115, + -0.0538561 + ], + [ + 109.3791405, + -0.0536335 + ], + [ + 109.3790768, + -0.0535516 + ], + [ + 109.3785345, + -0.0527724 + ], + [ + 109.3782069, + -0.0523029 + ], + [ + 109.3778317, + -0.0517796 + ], + [ + 109.3775258, + -0.0513529 + ] + ] + }, + "id": "way/1043312117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1043312421", + "highway": "residential", + "name": "Gang Suka Suka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3761066, + -0.0513082 + ], + [ + 109.3770007, + -0.0506625 + ] + ] + }, + "id": "way/1043312421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1043663907", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3695016, + -0.034615 + ], + [ + 109.3698812, + -0.0349976 + ], + [ + 109.3703471, + -0.0354644 + ], + [ + 109.3706121, + -0.0357321 + ], + [ + 109.3709724, + -0.0360962 + ] + ] + }, + "id": "way/1043663907" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1053362052", + "highway": "unclassified", + "motorcar": "no", + "name": "Gang Sriwijaya II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3048719, + -0.008767 + ], + [ + 109.304533, + -0.0087335 + ], + [ + 109.3042437, + -0.0087356 + ], + [ + 109.3039549, + -0.0087328 + ], + [ + 109.3035958, + -0.0087418 + ] + ] + }, + "id": "way/1053362052" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1053365625", + "highway": "residential", + "name": "Gang Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3692016, + -0.0534622 + ], + [ + 109.3691412, + -0.0535141 + ], + [ + 109.3690936, + -0.0535503 + ], + [ + 109.3690266, + -0.0535932 + ], + [ + 109.3689683, + -0.0536274 + ], + [ + 109.3688797, + -0.0536797 + ], + [ + 109.3687677, + -0.0537488 + ] + ] + }, + "id": "way/1053365625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1053373620", + "highway": "residential", + "name": "Gang Bakau 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.370678, + -0.0330383 + ], + [ + 109.3709093, + -0.0332498 + ], + [ + 109.3710361, + -0.0333744 + ] + ] + }, + "id": "way/1053373620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1055876871", + "highway": "residential", + "name": "Gang Ami" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681134, + -0.0517459 + ], + [ + 109.3682165, + -0.0516643 + ], + [ + 109.3684608, + -0.0514617 + ] + ] + }, + "id": "way/1055876871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1057798569", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3700969, + -0.0340634 + ], + [ + 109.3695016, + -0.034615 + ] + ] + }, + "id": "way/1057798569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1067098047", + "access": "private", + "highway": "service", + "name": "Vigor Sport Center" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422937, + -0.050913 + ], + [ + 109.3423593, + -0.0509982 + ], + [ + 109.3424103, + -0.0510551 + ], + [ + 109.3425462, + -0.0511825 + ] + ] + }, + "id": "way/1067098047" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1067098048", + "highway": "residential", + "name": "Jalan Vigor Sport Center / Jalan Museum / Jalan Akses Ayani Megamall", + "official_name": "Jalam Museum", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414961, + -0.0479063 + ], + [ + 109.3417981, + -0.0486204 + ], + [ + 109.342112, + -0.0494459 + ], + [ + 109.3421931, + -0.0496383 + ], + [ + 109.3422644, + -0.0498262 + ], + [ + 109.3422958, + -0.0499089 + ], + [ + 109.3424168, + -0.050164 + ], + [ + 109.3424707, + -0.050272 + ], + [ + 109.3424912, + -0.050314 + ], + [ + 109.34252, + -0.0503869 + ], + [ + 109.3425752, + -0.0505237 + ] + ] + }, + "id": "way/1067098048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1067098769", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424168, + -0.050164 + ], + [ + 109.3422742, + -0.0502083 + ], + [ + 109.3421575, + -0.049869 + ], + [ + 109.3422644, + -0.0498262 + ] + ] + }, + "id": "way/1067098769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1067775302", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3669264, + -0.0268681 + ], + [ + 109.3668787, + -0.0268953 + ], + [ + 109.3664389, + -0.0268489 + ] + ] + }, + "id": "way/1067775302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1067775303", + "highway": "residential", + "motor_vehicle": "destination", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3664389, + -0.0268489 + ], + [ + 109.366455, + -0.0268281 + ], + [ + 109.3664704, + -0.0267798 + ], + [ + 109.3665388, + -0.0264902 + ], + [ + 109.3666193, + -0.0260979 + ], + [ + 109.3667132, + -0.0255387 + ] + ] + }, + "id": "way/1067775303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068078104", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "lanes": "1", + "maxspeed": "30", + "name": "Jalan Aris Margono" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422449, + -0.0425704 + ], + [ + 109.3420133, + -0.0425454 + ], + [ + 109.3418982, + -0.042553 + ], + [ + 109.3417012, + -0.0425952 + ] + ] + }, + "id": "way/1068078104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068078164", + "highway": "trunk_link", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578742, + -0.0652728 + ], + [ + 109.3577633, + -0.0653643 + ] + ] + }, + "id": "way/1068078164" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068078423", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460903, + -0.0811683 + ], + [ + 109.3460327, + -0.0811308 + ] + ] + }, + "id": "way/1068078423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068078947", + "highway": "residential", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585348, + -0.0734403 + ], + [ + 109.3556463, + -0.0714015 + ] + ] + }, + "id": "way/1068078947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068082760", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123582, + -0.0169895 + ], + [ + 109.31235, + -0.0169492 + ] + ] + }, + "id": "way/1068082760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068082761", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141209, + -0.0210253 + ], + [ + 109.3140795, + -0.0210398 + ] + ] + }, + "id": "way/1068082761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068083502", + "access": "destination", + "highway": "service", + "motorcycle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462041, + -0.0515492 + ], + [ + 109.346176, + -0.0515628 + ], + [ + 109.3461604, + -0.0515717 + ], + [ + 109.3461465, + -0.0515774 + ], + [ + 109.3461301, + -0.0515851 + ] + ] + }, + "id": "way/1068083502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068083503", + "access": "destination", + "highway": "service", + "motorcycle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461526, + -0.0514895 + ], + [ + 109.3461238, + -0.0515025 + ], + [ + 109.3460992, + -0.0515122 + ], + [ + 109.3460778, + -0.0515223 + ] + ] + }, + "id": "way/1068083503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068083505", + "access": "destination", + "highway": "service", + "motorcycle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447604, + -0.0498297 + ], + [ + 109.3447066, + -0.049878 + ], + [ + 109.3446844, + -0.0498979 + ], + [ + 109.3446191, + -0.0499565 + ] + ] + }, + "id": "way/1068083505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068083507", + "access": "destination", + "highway": "service", + "motorcar": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441998, + -0.050155 + ], + [ + 109.3442828, + -0.0500798 + ], + [ + 109.3445619, + -0.0498346 + ], + [ + 109.3446122, + -0.0497904 + ], + [ + 109.3446791, + -0.0497316 + ] + ] + }, + "id": "way/1068083507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068099176", + "highway": "residential", + "name": "Royal Serdam Residence" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534899, + -0.0821158 + ], + [ + 109.3534416, + -0.0820782 + ], + [ + 109.3533616, + -0.0820186 + ] + ] + }, + "id": "way/1068099176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068099177", + "highway": "living_street", + "name": "Gang Perjuangan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505193, + -0.0801229 + ], + [ + 109.3503986, + -0.0802678 + ], + [ + 109.3500477, + -0.0806959 + ] + ] + }, + "id": "way/1068099177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068103458", + "highway": "path", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513708, + -0.045469 + ], + [ + 109.3511163, + -0.0452192 + ] + ] + }, + "id": "way/1068103458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068108114", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074792, + -0.0577492 + ], + [ + 109.3070766, + -0.0581008 + ], + [ + 109.3062068, + -0.0588468 + ] + ] + }, + "id": "way/1068108114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068115804", + "access": "private", + "highway": "residential", + "name": "Gading Premier" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543711, + -0.0807121 + ], + [ + 109.3529655, + -0.0797693 + ], + [ + 109.3514809, + -0.0788151 + ] + ] + }, + "id": "way/1068115804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068116578", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352868, + -0.0799211 + ], + [ + 109.3527445, + -0.0801135 + ] + ] + }, + "id": "way/1068116578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068260882", + "highway": "residential", + "name": "Jalan Chairil Anwar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390521, + -0.0350206 + ], + [ + 109.3389902, + -0.0350869 + ] + ] + }, + "id": "way/1068260882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068261540", + "highway": "living_street", + "lanes": "1", + "name": "Gang Dinasti Dalam 1", + "source": "DigitalGlobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276335, + -0.062668 + ], + [ + 109.3276602, + -0.0627114 + ] + ] + }, + "id": "way/1068261540" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068265229", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186882, + -0.0473812 + ], + [ + 109.3187747, + -0.0472793 + ] + ] + }, + "id": "way/1068265229" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068265230", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199086, + -0.0471023 + ], + [ + 109.3199448, + -0.0471264 + ], + [ + 109.3199949, + -0.0471684 + ] + ] + }, + "id": "way/1068265230" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068270408", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632911, + -0.0351072 + ], + [ + 109.3631253, + -0.0349188 + ], + [ + 109.3627592, + -0.0345027 + ] + ] + }, + "id": "way/1068270408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068270409", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640285, + -0.0359781 + ], + [ + 109.364043, + -0.0359664 + ], + [ + 109.3640611, + -0.0359523 + ], + [ + 109.3640702, + -0.0359426 + ], + [ + 109.3640799, + -0.0359336 + ] + ] + }, + "id": "way/1068270409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068274498", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471453, + -0.0526474 + ], + [ + 109.3471346, + -0.0526615 + ], + [ + 109.3471199, + -0.0526808 + ] + ] + }, + "id": "way/1068274498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068274499", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468937, + -0.05239 + ], + [ + 109.346916, + -0.0523728 + ] + ] + }, + "id": "way/1068274499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068274500", + "highway": "service", + "import": "yes", + "oneway": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459125, + -0.0526806 + ], + [ + 109.3459392, + -0.0527082 + ] + ] + }, + "id": "way/1068274500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068275826", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454185, + -0.0528549 + ], + [ + 109.3454455, + -0.0528766 + ] + ] + }, + "id": "way/1068275826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1068372283", + "highway": "residential", + "name": "Gang Ruper 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3289265, + -0.035407 + ], + [ + 109.3289761, + -0.03535 + ] + ] + }, + "id": "way/1068372283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074016055", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275522, + -0.0209199 + ], + [ + 109.3266401, + -0.0207465 + ] + ] + }, + "id": "way/1074016055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074016056", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266655, + -0.0206447 + ], + [ + 109.3275673, + -0.0208411 + ] + ] + }, + "id": "way/1074016056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024614", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635751, + -0.0610464 + ], + [ + 109.3635962, + -0.0610003 + ], + [ + 109.3636122, + -0.0609656 + ] + ] + }, + "id": "way/1074024614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024615", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633391, + -0.0608883 + ], + [ + 109.3635962, + -0.0610003 + ] + ] + }, + "id": "way/1074024615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024616", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634863, + -0.0612727 + ], + [ + 109.3637095, + -0.0613714 + ] + ] + }, + "id": "way/1074024616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024617", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634665, + -0.061303 + ], + [ + 109.3634378, + -0.0613647 + ] + ] + }, + "id": "way/1074024617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024618", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628636, + -0.0620764 + ], + [ + 109.3628328, + -0.0621533 + ] + ] + }, + "id": "way/1074024618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024619", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630948, + -0.0620744 + ], + [ + 109.3630627, + -0.0621588 + ], + [ + 109.3630324, + -0.062232 + ] + ] + }, + "id": "way/1074024619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024620", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640285, + -0.0625628 + ], + [ + 109.3634939, + -0.0623371 + ], + [ + 109.3630627, + -0.0621588 + ], + [ + 109.3628636, + -0.0620764 + ], + [ + 109.3627848, + -0.0620438 + ] + ] + }, + "id": "way/1074024620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024621", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639892, + -0.0626557 + ], + [ + 109.3640285, + -0.0625628 + ], + [ + 109.3641985, + -0.0621601 + ] + ] + }, + "id": "way/1074024621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024622", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623301, + -0.0625802 + ], + [ + 109.3623964, + -0.0626114 + ] + ] + }, + "id": "way/1074024622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024623", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633144, + -0.0627768 + ], + [ + 109.3624167, + -0.0623866 + ], + [ + 109.3623301, + -0.0625802 + ], + [ + 109.3621509, + -0.0629806 + ] + ] + }, + "id": "way/1074024623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024624", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630731, + -0.0633681 + ], + [ + 109.3626985, + -0.0632075 + ], + [ + 109.3626817, + -0.0632437 + ] + ] + }, + "id": "way/1074024624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024625", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630209, + -0.0634958 + ], + [ + 109.3629856, + -0.0634798 + ] + ] + }, + "id": "way/1074024625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024626", + "covered": "yes", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636156, + -0.0638218 + ], + [ + 109.3630018, + -0.0635427 + ], + [ + 109.3630209, + -0.0634958 + ], + [ + 109.3630731, + -0.0633681 + ], + [ + 109.3633144, + -0.0627768 + ], + [ + 109.3634939, + -0.0623371 + ], + [ + 109.3639225, + -0.061287 + ] + ] + }, + "id": "way/1074024626" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1074024627", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640081, + -0.0635509 + ], + [ + 109.3638086, + -0.064031 + ], + [ + 109.3637838, + -0.0640593 + ], + [ + 109.3637579, + -0.0640687 + ], + [ + 109.363719, + -0.0640758 + ], + [ + 109.3636659, + -0.0640734 + ], + [ + 109.3636246, + -0.064064 + ], + [ + 109.3621968, + -0.0633929 + ], + [ + 109.3621622, + -0.0633717 + ], + [ + 109.3621457, + -0.0633481 + ], + [ + 109.3621362, + -0.0633151 + ], + [ + 109.3621362, + -0.0632809 + ], + [ + 109.3621457, + -0.0632443 + ], + [ + 109.3623474, + -0.0627277 + ] + ] + }, + "id": "way/1074024627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1075221217", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205412, + -0.0849702 + ], + [ + 109.3206281, + -0.0849301 + ], + [ + 109.3209822, + -0.0845439 + ], + [ + 109.3211913, + -0.0842847 + ] + ] + }, + "id": "way/1075221217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1075221218", + "bridge": "yes", + "highway": "track", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211913, + -0.0842847 + ], + [ + 109.3212435, + -0.084217 + ] + ] + }, + "id": "way/1075221218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1075221221", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230685, + -0.0816337 + ], + [ + 109.3237395, + -0.0806279 + ], + [ + 109.3249168, + -0.0789063 + ] + ] + }, + "id": "way/1075221221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1075221222", + "bridge": "yes", + "highway": "track", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3230266, + -0.0816997 + ], + [ + 109.3230685, + -0.0816337 + ] + ] + }, + "id": "way/1075221222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1075221225", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149931, + -0.0715488 + ], + [ + 109.315092, + -0.0716089 + ] + ] + }, + "id": "way/1075221225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1075221226", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149326, + -0.071514 + ], + [ + 109.3149931, + -0.0715488 + ] + ] + }, + "id": "way/1075221226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1077736115", + "highway": "residential", + "import": "yes", + "name": "Gang Sepakat 3", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3082553, + -0.0376879 + ], + [ + 109.3082499, + -0.0376862 + ], + [ + 109.3082437, + -0.0376869 + ], + [ + 109.3082377, + -0.0376907 + ], + [ + 109.3082286, + -0.0376978 + ] + ] + }, + "id": "way/1077736115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1078441045", + "access": "yes", + "bicycle": "yes", + "foot": "yes", + "highway": "service", + "horse": "no", + "motor_vehicle": "yes", + "motorcar": "yes", + "name": "Perdana Square", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448413, + -0.0535874 + ], + [ + 109.3434583, + -0.0524579 + ] + ] + }, + "id": "way/1078441045" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1078441046", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450107, + -0.0537016 + ], + [ + 109.3449871, + -0.0536877 + ] + ] + }, + "id": "way/1078441046" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1078441047", + "highway": "service", + "name": "Vigor Sport Center" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451512, + -0.053265 + ], + [ + 109.3452058, + -0.0533089 + ] + ] + }, + "id": "way/1078441047" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1079383758", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431677, + -0.051075 + ], + [ + 109.3432565, + -0.0509852 + ], + [ + 109.3434316, + -0.0508279 + ], + [ + 109.3437132, + -0.0505757 + ], + [ + 109.3438064, + -0.0504967 + ] + ] + }, + "id": "way/1079383758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1079383759", + "access": "destination", + "highway": "service", + "motorcycle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442207, + -0.0501794 + ], + [ + 109.3442503, + -0.0502109 + ], + [ + 109.3446218, + -0.0498983 + ], + [ + 109.344681, + -0.0498485 + ], + [ + 109.3447375, + -0.049801 + ] + ] + }, + "id": "way/1079383759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1079383760", + "access": "private", + "highway": "service", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441998, + -0.050155 + ], + [ + 109.3442096, + -0.0501665 + ], + [ + 109.3442207, + -0.0501794 + ] + ] + }, + "id": "way/1079383760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1079383761", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446191, + -0.0499565 + ], + [ + 109.3442847, + -0.0502563 + ] + ] + }, + "id": "way/1079383761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1079383762", + "highway": "service", + "motorcar": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455398, + -0.0528797 + ], + [ + 109.3455127, + -0.0528545 + ] + ] + }, + "id": "way/1079383762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1079383763", + "bridge": "yes", + "highway": "service", + "layer": "1", + "motorcar": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456196, + -0.0529555 + ], + [ + 109.3455398, + -0.0528797 + ] + ] + }, + "id": "way/1079383763" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1079383764", + "highway": "service", + "motorcar": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456446, + -0.0529801 + ], + [ + 109.3456196, + -0.0529555 + ] + ] + }, + "id": "way/1079383764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1079383765", + "access": "private", + "highway": "service", + "motorcar": "no", + "oneway": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427892, + -0.050746 + ], + [ + 109.3427436, + -0.0507313 + ], + [ + 109.3426765, + -0.0506629 + ], + [ + 109.3425961, + -0.0505637 + ], + [ + 109.3425752, + -0.0505237 + ] + ] + }, + "id": "way/1079383765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095052133", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3835896, + -0.0514186 + ], + [ + 109.3838083, + -0.051734 + ], + [ + 109.3838707, + -0.0518239 + ], + [ + 109.3839396, + -0.0519267 + ], + [ + 109.384051, + -0.0520929 + ], + [ + 109.3840912, + -0.0521529 + ], + [ + 109.3841059, + -0.0521743 + ], + [ + 109.38412, + -0.052177 + ], + [ + 109.3841448, + -0.0521743 + ] + ] + }, + "id": "way/1095052133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095058897", + "highway": "residential", + "name": "Gang Bhakti Praja 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611979, + 0.0083851 + ], + [ + 109.3603884, + 0.008499 + ] + ] + }, + "id": "way/1095058897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095058898", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36168, + 0.0083205 + ], + [ + 109.3615184, + 0.008343 + ], + [ + 109.3611979, + 0.0083851 + ] + ] + }, + "id": "way/1095058898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095059369", + "highway": "residential", + "name": "Gang Bhakti Praja 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602417, + 0.0078486 + ], + [ + 109.3611024, + 0.0077324 + ] + ] + }, + "id": "way/1095059369" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095059370", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611024, + 0.0077324 + ], + [ + 109.3613927, + 0.0076976 + ], + [ + 109.3615857, + 0.0076743 + ] + ] + }, + "id": "way/1095059370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095061792", + "highway": "residential", + "name": "Jalan Komplek Landak Permai 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3656195, + -0.013055 + ], + [ + 109.3655685, + -0.0130489 + ], + [ + 109.3654083, + -0.0130355 + ], + [ + 109.3653741, + -0.0130194 + ], + [ + 109.365362, + -0.0129919 + ], + [ + 109.365362, + -0.0129075 + ], + [ + 109.3653727, + -0.0127029 + ], + [ + 109.3653928, + -0.0126768 + ], + [ + 109.365425, + -0.012664 + ], + [ + 109.3658616, + -0.0126842 + ], + [ + 109.3665468, + -0.0127096 + ], + [ + 109.3666917, + -0.012715 + ], + [ + 109.3672074, + -0.0127318 + ], + [ + 109.3674176, + -0.0127335 + ] + ] + }, + "id": "way/1095061792" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095061923", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643703, + -0.0113173 + ], + [ + 109.3645399, + -0.0113209 + ], + [ + 109.3648966, + -0.0113082 + ], + [ + 109.3650462, + -0.0113022 + ], + [ + 109.365136, + -0.0112975 + ] + ] + }, + "id": "way/1095061923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095064827", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556155, + -0.0394774 + ], + [ + 109.3557902, + -0.0393339 + ], + [ + 109.3558583, + -0.0392823 + ], + [ + 109.3559112, + -0.0392427 + ], + [ + 109.3559947, + -0.0391837 + ], + [ + 109.3560464, + -0.0391448 + ], + [ + 109.3561107, + -0.0390922 + ], + [ + 109.3561855, + -0.0390278 + ] + ] + }, + "id": "way/1095064827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095075995", + "highway": "residential", + "name": "Gang Mufakat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084501, + -0.0475666 + ], + [ + 109.3057518, + -0.0457209 + ], + [ + 109.3054389, + -0.045492 + ] + ] + }, + "id": "way/1095075995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095075996", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3049556, + -0.0459905 + ], + [ + 109.3047467, + -0.0458342 + ], + [ + 109.3046937, + -0.0457953 + ], + [ + 109.3045211, + -0.0456674 + ], + [ + 109.3044316, + -0.0456063 + ], + [ + 109.3043545, + -0.0455419 + ], + [ + 109.3042349, + -0.0454259 + ] + ] + }, + "id": "way/1095075996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095075997", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063667, + -0.0445742 + ], + [ + 109.3062466, + -0.0447195 + ] + ] + }, + "id": "way/1095075997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095075998", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Sarikaton Dalam 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145128, + -0.0479884 + ], + [ + 109.3143941, + -0.0478725 + ] + ] + }, + "id": "way/1095075998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095075999", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192045, + -0.0387972 + ], + [ + 109.3194151, + -0.0390565 + ], + [ + 109.3195037, + -0.0391657 + ], + [ + 109.3195093, + -0.0391703 + ], + [ + 109.3195152, + -0.0391737 + ], + [ + 109.319522, + -0.0391755 + ], + [ + 109.3195276, + -0.0391762 + ], + [ + 109.3195341, + -0.0391756 + ], + [ + 109.3195422, + -0.0391723 + ], + [ + 109.3195493, + -0.0391671 + ], + [ + 109.3196997, + -0.0390324 + ], + [ + 109.3197671, + -0.038976 + ], + [ + 109.3197979, + -0.039015 + ], + [ + 109.3201735, + -0.0394932 + ] + ] + }, + "id": "way/1095075999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095077012", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075836, + -0.0487418 + ], + [ + 109.305683, + -0.0474866 + ], + [ + 109.3042696, + -0.0465525 + ] + ] + }, + "id": "way/1095077012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095077013", + "highway": "residential", + "name": "Gang Bersatu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058394, + -0.0483127 + ], + [ + 109.3072371, + -0.0492246 + ] + ] + }, + "id": "way/1095077013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095077014", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072371, + -0.0492246 + ], + [ + 109.3079544, + -0.0497042 + ], + [ + 109.3087931, + -0.0502617 + ], + [ + 109.3094758, + -0.0507505 + ] + ] + }, + "id": "way/1095077014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095077015", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145501, + -0.0489276 + ], + [ + 109.314208, + -0.0492527 + ], + [ + 109.3139232, + -0.0495331 + ], + [ + 109.3136494, + -0.0498092 + ], + [ + 109.3134472, + -0.0500146 + ], + [ + 109.3131265, + -0.0503176 + ], + [ + 109.3129713, + -0.0504747 + ], + [ + 109.3127255, + -0.0507124 + ], + [ + 109.3126477, + -0.0506623 + ], + [ + 109.3119978, + -0.0502037 + ] + ] + }, + "id": "way/1095077015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095093250", + "highway": "residential", + "name": "Jalan Perumahan The Green Mansion" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2876959, + -0.0431869 + ], + [ + 109.2871159, + -0.0425291 + ], + [ + 109.2865017, + -0.0417995 + ], + [ + 109.2860511, + -0.0412685 + ], + [ + 109.2858848, + -0.0410539 + ], + [ + 109.2856595, + -0.040786 + ] + ] + }, + "id": "way/1095093250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095093251", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2979057, + -0.0447484 + ], + [ + 109.297018, + -0.0455741 + ] + ] + }, + "id": "way/1095093251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095093255", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071194, + -0.0397808 + ], + [ + 109.3061519, + -0.0408738 + ] + ] + }, + "id": "way/1095093255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095093256", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304348, + -0.0330596 + ], + [ + 109.3043049, + -0.0328115 + ] + ] + }, + "id": "way/1095093256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095093257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3039968, + -0.0311545 + ], + [ + 109.3037481, + -0.0311996 + ], + [ + 109.3039018, + -0.0320215 + ], + [ + 109.3040779, + -0.0328359 + ] + ] + }, + "id": "way/1095093257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095093258", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089531, + -0.0339521 + ], + [ + 109.3092596, + -0.0341939 + ], + [ + 109.3093691, + -0.0342761 + ], + [ + 109.309475, + -0.0343622 + ], + [ + 109.3095205, + -0.0344012 + ], + [ + 109.3096122, + -0.0344744 + ] + ] + }, + "id": "way/1095093258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095093259", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098567, + -0.0346745 + ], + [ + 109.3099692, + -0.0347632 + ], + [ + 109.3102477, + -0.0349658 + ], + [ + 109.3105932, + -0.0352074 + ], + [ + 109.3107394, + -0.0353328 + ], + [ + 109.3108129, + -0.0353979 + ] + ] + }, + "id": "way/1095093259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095093260", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117613, + -0.0354385 + ], + [ + 109.3127952, + -0.0363101 + ] + ] + }, + "id": "way/1095093260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095094001", + "highway": "residential", + "name": "Jalan Perumahan The Green Orchard" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2912162, + -0.0395926 + ], + [ + 109.2906108, + -0.0389457 + ], + [ + 109.2897525, + -0.0379881 + ], + [ + 109.2892376, + -0.0373927 + ] + ] + }, + "id": "way/1095094001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095094422", + "highway": "residential", + "name": "Jalan Perumahan D'Kinan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2934902, + -0.0372573 + ], + [ + 109.2930852, + -0.0368187 + ], + [ + 109.2922899, + -0.0358987 + ], + [ + 109.2914477, + -0.0349116 + ] + ] + }, + "id": "way/1095094422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095095112", + "highway": "residential", + "name": "Jalan Perumahan Golden Platinum" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946436, + -0.0362864 + ], + [ + 109.2943405, + -0.0358906 + ], + [ + 109.2936337, + -0.0349224 + ], + [ + 109.2931482, + -0.0342733 + ] + ] + }, + "id": "way/1095095112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1095095113", + "highway": "residential", + "name": "Jalan Perumahan Ampera Lestari 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2943569, + -0.0365327 + ], + [ + 109.2937759, + -0.0357377 + ], + [ + 109.292888, + -0.0345388 + ] + ] + }, + "id": "way/1095095113" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1105017725", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074401, + -0.0633669 + ], + [ + 109.3077793, + -0.0635754 + ] + ] + }, + "id": "way/1105017725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1105017726", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079835, + -0.0632268 + ], + [ + 109.3077793, + -0.0635754 + ], + [ + 109.3074959, + -0.0640835 + ], + [ + 109.3074491, + -0.0640555 + ], + [ + 109.3074187, + -0.0640458 + ] + ] + }, + "id": "way/1105017726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1105028297", + "highway": "residential", + "name": "Gang Alam Jaya II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2977537, + -0.0184444 + ], + [ + 109.2974431, + -0.018429 + ], + [ + 109.29726, + -0.0184373 + ], + [ + 109.2972382, + -0.0184388 + ], + [ + 109.2972133, + -0.018447 + ], + [ + 109.29719, + -0.0184599 + ], + [ + 109.2971734, + -0.0184734 + ], + [ + 109.2971629, + -0.01849 + ], + [ + 109.2971531, + -0.0185066 + ], + [ + 109.297141, + -0.0185269 + ], + [ + 109.297126, + -0.018545 + ], + [ + 109.2971162, + -0.018554 + ], + [ + 109.2970973, + -0.0185653 + ], + [ + 109.297077, + -0.0185721 + ], + [ + 109.2970393, + -0.0185796 + ], + [ + 109.2969949, + -0.0185902 + ], + [ + 109.2969685, + -0.0185909 + ], + [ + 109.296839, + -0.0186 + ], + [ + 109.2967041, + -0.018612 + ], + [ + 109.2964646, + -0.0186301 + ], + [ + 109.2962996, + -0.0186444 + ], + [ + 109.2960525, + -0.0186678 + ], + [ + 109.2957897, + -0.0186912 + ], + [ + 109.2954725, + -0.018719 + ], + [ + 109.2951983, + -0.0187461 + ], + [ + 109.2948917, + -0.0187762 + ], + [ + 109.2946265, + -0.0187973 + ], + [ + 109.2943696, + -0.0188162 + ], + [ + 109.2943335, + -0.0188207 + ], + [ + 109.2943214, + -0.0188207 + ], + [ + 109.2943094, + -0.0188109 + ], + [ + 109.2943003, + -0.0188018 + ], + [ + 109.2942853, + -0.0187657 + ], + [ + 109.294271, + -0.0187175 + ], + [ + 109.2942589, + -0.0186934 + ], + [ + 109.2942438, + -0.0186806 + ] + ] + }, + "id": "way/1105028297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1113147359", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343843, + -0.0790705 + ], + [ + 109.3467625, + -0.0808614 + ] + ] + }, + "id": "way/1113147359" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1113147360", + "highway": "residential", + "name": "Gang Kelinci" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459551, + -0.0821981 + ], + [ + 109.3469571, + -0.0828993 + ] + ] + }, + "id": "way/1113147360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1117077936", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563244, + -0.0010007 + ], + [ + 109.354903, + 0.0002825 + ], + [ + 109.3534646, + 0.001581 + ], + [ + 109.3534297, + 0.0016125 + ], + [ + 109.3529187, + 0.0019391 + ], + [ + 109.3520356, + 0.0024762 + ] + ] + }, + "id": "way/1117077936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1117077937", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562957, + -0.0012786 + ], + [ + 109.3564591, + -0.0012925 + ] + ] + }, + "id": "way/1117077937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1117077938", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563411, + -0.0008395 + ], + [ + 109.3563244, + -0.0010007 + ], + [ + 109.3562957, + -0.0012786 + ], + [ + 109.3562906, + -0.0013284 + ], + [ + 109.3562355, + -0.0018626 + ] + ] + }, + "id": "way/1117077938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1120502466", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339426, + -0.0273436 + ], + [ + 109.3394561, + -0.0274624 + ], + [ + 109.3395835, + -0.027965 + ], + [ + 109.3394807, + -0.0280112 + ], + [ + 109.339662, + -0.0285379 + ] + ] + }, + "id": "way/1120502466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1122202133", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3749899, + -0.0123919 + ], + [ + 109.375, + -0.0123975 + ] + ] + }, + "id": "way/1122202133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1122202134", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3749655, + -0.0123787 + ], + [ + 109.3749899, + -0.0123919 + ] + ] + }, + "id": "way/1122202134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1122213916", + "highway": "service", + "man_made": "pier" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338345, + -0.0111565 + ], + [ + 109.3336992, + -0.0112907 + ] + ] + }, + "id": "way/1122213916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1122213918", + "highway": "service", + "name": "Jalan Bardan", + "toll": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406282, + -0.0216562 + ], + [ + 109.3404326, + -0.0219029 + ] + ] + }, + "id": "way/1122213918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123841014", + "highway": "residential", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206815, + -0.0100932 + ], + [ + 109.3204562, + -0.0099241 + ] + ] + }, + "id": "way/1123841014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123841206", + "highway": "residential", + "name": "Gang Meninjau" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206815, + -0.0100932 + ], + [ + 109.3204679, + -0.0103949 + ], + [ + 109.3203109, + -0.0105867 + ], + [ + 109.3202332, + -0.0106832 + ], + [ + 109.3201529, + -0.0107796 + ] + ] + }, + "id": "way/1123841206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123844074", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236953, + -0.0155227 + ], + [ + 109.3237582, + -0.0155213 + ] + ] + }, + "id": "way/1123844074" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123844075", + "highway": "residential", + "name": "Gang Srikaya 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3232602, + -0.0156224 + ], + [ + 109.3233843, + -0.015593 + ], + [ + 109.3236953, + -0.0155227 + ] + ] + }, + "id": "way/1123844075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123845036", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303104, + -0.0179061 + ], + [ + 109.3303049, + -0.0178286 + ], + [ + 109.3303139, + -0.0175212 + ], + [ + 109.3303156, + -0.0174907 + ] + ] + }, + "id": "way/1123845036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123845088", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303156, + -0.0174907 + ], + [ + 109.3301392, + -0.0174287 + ] + ] + }, + "id": "way/1123845088" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123846181", + "highway": "residential", + "name": "Gang Pemancingan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3021189, + -0.0169186 + ], + [ + 109.2995447, + -0.016366 + ], + [ + 109.2995182, + -0.0163479 + ], + [ + 109.2995085, + -0.0163062 + ], + [ + 109.2995314, + -0.0161853 + ] + ] + }, + "id": "way/1123846181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123861235", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319026, + -0.0300114 + ], + [ + 109.3321408, + -0.030148 + ], + [ + 109.3323138, + -0.03025 + ] + ] + }, + "id": "way/1123861235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123861459", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325386, + -0.0304124 + ], + [ + 109.3323916, + -0.0302801 + ], + [ + 109.3323633, + -0.0302553 + ], + [ + 109.3323569, + -0.0302511 + ], + [ + 109.3323435, + -0.0302484 + ], + [ + 109.3323299, + -0.0302481 + ], + [ + 109.3323205, + -0.0302493 + ], + [ + 109.3323138, + -0.03025 + ] + ] + }, + "id": "way/1123861459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123877618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3625383, + -0.0390627 + ], + [ + 109.362887, + -0.0388505 + ], + [ + 109.3631713, + -0.0386761 + ], + [ + 109.3635415, + -0.0384495 + ], + [ + 109.364334, + -0.0379667 + ], + [ + 109.3653442, + -0.0373232 + ] + ] + }, + "id": "way/1123877618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123879434", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36224, + -0.0439474 + ], + [ + 109.3621091, + -0.0438508 + ] + ] + }, + "id": "way/1123879434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123880704", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642467, + -0.0431968 + ], + [ + 109.3649985, + -0.0425077 + ], + [ + 109.3650595, + -0.0424531 + ], + [ + 109.3662982, + -0.0416726 + ], + [ + 109.3668604, + -0.0413239 + ], + [ + 109.3671866, + -0.0411223 + ] + ] + }, + "id": "way/1123880704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123897316", + "highway": "residential", + "name": "Gang Karya Duta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456672, + -0.0749986 + ], + [ + 109.3454874, + -0.0753499 + ], + [ + 109.3454111, + -0.0754773 + ], + [ + 109.3453448, + -0.0755758 + ] + ] + }, + "id": "way/1123897316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123930075", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983517, + -0.0434813 + ], + [ + 109.300052, + -0.0422503 + ] + ] + }, + "id": "way/1123930075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1123930076", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302395, + -0.0453917 + ], + [ + 109.3018523, + -0.045728 + ] + ] + }, + "id": "way/1123930076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124074738", + "highway": "residential", + "name": "Jalan Abdul Muis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3711039, + -0.0302808 + ], + [ + 109.3707375, + -0.0303809 + ] + ] + }, + "id": "way/1124074738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124075456", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.371289, + -0.0315119 + ], + [ + 109.3712773, + -0.0317356 + ], + [ + 109.3712585, + -0.0320078 + ] + ] + }, + "id": "way/1124075456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124081451", + "alt_name": "Gang Sutra", + "highway": "residential", + "import": "yes", + "name": "Gang Sutera", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3629396, + -0.0478666 + ], + [ + 109.3630146, + -0.0477911 + ], + [ + 109.3632223, + -0.0476038 + ] + ] + }, + "id": "way/1124081451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124106450", + "highway": "residential", + "name": "Jalan Hazijah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3721155, + -0.0523948 + ], + [ + 109.3711697, + -0.0530822 + ], + [ + 109.3704776, + -0.0535771 + ], + [ + 109.3700525, + -0.0538869 + ], + [ + 109.3697092, + -0.0541511 + ] + ] + }, + "id": "way/1124106450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124147653", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250209, + -0.0458859 + ], + [ + 109.325088, + -0.0458376 + ], + [ + 109.3254192, + -0.0456056 + ], + [ + 109.3257666, + -0.0453763 + ], + [ + 109.3259275, + -0.0452655 + ] + ] + }, + "id": "way/1124147653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124159729", + "highway": "track", + "motor_vehicle": "no", + "surface": "unpaved", + "tracktype": "grade3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3800177, + -0.0464185 + ], + [ + 109.3800052, + -0.0464013 + ], + [ + 109.3795301, + -0.0457478 + ], + [ + 109.3790121, + -0.0450682 + ], + [ + 109.3786785, + -0.0446078 + ], + [ + 109.3785055, + -0.0443724 + ], + [ + 109.3783848, + -0.0442028 + ] + ] + }, + "id": "way/1124159729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124162688", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402833, + -0.0781961 + ], + [ + 109.3404832, + -0.0782682 + ], + [ + 109.340506, + -0.0782675 + ], + [ + 109.3405174, + -0.0782521 + ], + [ + 109.3405703, + -0.0781502 + ], + [ + 109.3405938, + -0.0780771 + ], + [ + 109.3405931, + -0.0780402 + ], + [ + 109.3405829, + -0.0780157 + ], + [ + 109.3401755, + -0.0777317 + ], + [ + 109.3401459, + -0.0776902 + ], + [ + 109.3401432, + -0.0776325 + ], + [ + 109.3401513, + -0.0775453 + ] + ] + }, + "id": "way/1124162688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124162744", + "highway": "residential", + "name": "Jalan Aloe Vera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401513, + -0.0775453 + ], + [ + 109.3399836, + -0.077713 + ], + [ + 109.3398836, + -0.0778434 + ], + [ + 109.3398602, + -0.0778739 + ], + [ + 109.3397436, + -0.0780342 + ] + ] + }, + "id": "way/1124162744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124329804", + "highway": "residential", + "motorcar": "no", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244184, + -0.0196921 + ], + [ + 109.3244717, + -0.0199631 + ] + ] + }, + "id": "way/1124329804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124330744", + "highway": "residential", + "motorcar": "no", + "name": "Gang Sebukit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224851, + -0.0155814 + ], + [ + 109.3228065, + -0.015193 + ] + ] + }, + "id": "way/1124330744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124331061", + "highway": "residential", + "name": "Gang Pakis" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140439, + -0.0082233 + ], + [ + 109.3142219, + -0.0083353 + ] + ] + }, + "id": "way/1124331061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124377141", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3206352, + -0.0366829 + ], + [ + 109.3194051, + -0.0350464 + ] + ] + }, + "id": "way/1124377141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1124378759", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343419, + -0.0423076 + ], + [ + 109.3343188, + -0.0422488 + ], + [ + 109.3343015, + -0.0421948 + ] + ] + }, + "id": "way/1124378759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1128368584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3021457, + -0.0480236 + ], + [ + 109.3027955, + -0.0475967 + ] + ] + }, + "id": "way/1128368584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1131550943", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191038, + -0.0078193 + ], + [ + 109.3191615, + -0.0077321 + ], + [ + 109.3191913, + -0.0076869 + ], + [ + 109.3192951, + -0.0075299 + ], + [ + 109.319439, + -0.0073122 + ], + [ + 109.3194662, + -0.0072936 + ], + [ + 109.3194986, + -0.0072998 + ], + [ + 109.319616, + -0.0073704 + ], + [ + 109.3196484, + -0.0073733 + ], + [ + 109.3196751, + -0.0073533 + ], + [ + 109.3197508, + -0.0072612 + ], + [ + 109.3198644, + -0.007123 + ], + [ + 109.3201654, + -0.0067566 + ], + [ + 109.3201736, + -0.0067481 + ], + [ + 109.3204692, + -0.00644 + ], + [ + 109.3202774, + -0.0062603 + ] + ] + }, + "id": "way/1131550943" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1131555674", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455172, + 0.0047688 + ], + [ + 109.3459171, + 0.0047381 + ] + ] + }, + "id": "way/1131555674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1131866457", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275784, + -0.0399019 + ], + [ + 109.3276017, + -0.0399294 + ] + ] + }, + "id": "way/1131866457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1131866458", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276017, + -0.0399294 + ], + [ + 109.3276276, + -0.0399601 + ] + ] + }, + "id": "way/1131866458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1131866459", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274337, + -0.040078 + ], + [ + 109.3274098, + -0.0400524 + ] + ] + }, + "id": "way/1131866459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1131866460", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274814, + -0.0401292 + ], + [ + 109.3274337, + -0.040078 + ] + ] + }, + "id": "way/1131866460" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1131866461", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266149, + -0.0406987 + ], + [ + 109.3266601, + -0.0407691 + ] + ] + }, + "id": "way/1131866461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1131866462", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266601, + -0.0407691 + ], + [ + 109.3266961, + -0.0408252 + ] + ] + }, + "id": "way/1131866462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1132346995", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "Gang Selamat Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083507, + -0.0588216 + ], + [ + 109.3082082, + -0.0587327 + ] + ] + }, + "id": "way/1132346995" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1132346996", + "highway": "residential", + "name": "Gang Selamat Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083549, + -0.0588242 + ], + [ + 109.3083507, + -0.0588216 + ] + ] + }, + "id": "way/1132346996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005468", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193519, + -0.0477681 + ], + [ + 109.3193385, + -0.0478327 + ] + ] + }, + "id": "way/1133005468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005469", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193081, + -0.0478035 + ], + [ + 109.3193519, + -0.0477681 + ] + ] + }, + "id": "way/1133005469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005470", + "highway": "unclassified", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319098, + -0.0477664 + ], + [ + 109.3191598, + -0.0477947 + ] + ] + }, + "id": "way/1133005470" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005471", + "highway": "unclassified", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3191227, + -0.0478238 + ], + [ + 109.319098, + -0.0477664 + ] + ] + }, + "id": "way/1133005471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005472", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190927, + -0.0480543 + ], + [ + 109.3191095, + -0.0479962 + ] + ] + }, + "id": "way/1133005472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005473", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319129, + -0.0480196 + ], + [ + 109.3190927, + -0.0480543 + ] + ] + }, + "id": "way/1133005473" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005474", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319289, + -0.0481118 + ], + [ + 109.3192483, + -0.0480575 + ] + ] + }, + "id": "way/1133005474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005475", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192794, + -0.048049 + ], + [ + 109.319289, + -0.0481118 + ] + ] + }, + "id": "way/1133005475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005476", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194145, + -0.0480104 + ], + [ + 109.319347, + -0.0479918 + ] + ] + }, + "id": "way/1133005476" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005477", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193633, + -0.0479529 + ], + [ + 109.3194145, + -0.0480104 + ] + ] + }, + "id": "way/1133005477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005480", + "highway": "service", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198704, + -0.0470915 + ], + [ + 109.3199086, + -0.0471023 + ] + ] + }, + "id": "way/1133005480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133005481", + "bridge": "yes", + "highway": "service", + "layer": "1", + "motor_vehicle": "private" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198141, + -0.0470875 + ], + [ + 109.3198704, + -0.0470915 + ] + ] + }, + "id": "way/1133005481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133066870", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251919, + -0.0396102 + ], + [ + 109.3250069, + -0.0397827 + ], + [ + 109.324502, + -0.0401751 + ], + [ + 109.3230335, + -0.0413164 + ] + ] + }, + "id": "way/1133066870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133066871", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219343, + -0.0345186 + ], + [ + 109.3221657, + -0.0349029 + ] + ] + }, + "id": "way/1133066871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133132105", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042534, + -0.0629218 + ], + [ + 109.3042213, + -0.0628847 + ] + ] + }, + "id": "way/1133132105" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1133132106", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3042647, + -0.0629347 + ], + [ + 109.3042534, + -0.0629218 + ] + ] + }, + "id": "way/1133132106" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1134414621", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3757239, + -0.0258461 + ], + [ + 109.3758005, + -0.0252503 + ], + [ + 109.3758166, + -0.0251725 + ], + [ + 109.3760728, + -0.0244202 + ] + ] + }, + "id": "way/1134414621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1135116404", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3730975, + -0.0256507 + ], + [ + 109.3730499, + -0.0259799 + ], + [ + 109.3730449, + -0.0260255 + ], + [ + 109.3730408, + -0.0260664 + ], + [ + 109.3730398, + -0.0261083 + ], + [ + 109.3730479, + -0.0261549 + ] + ] + }, + "id": "way/1135116404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1135119934", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3341273, + -0.025254 + ], + [ + 109.3341444, + -0.0253207 + ], + [ + 109.3341505, + -0.0253569 + ], + [ + 109.3341599, + -0.0253851 + ], + [ + 109.3341847, + -0.0253998 + ], + [ + 109.3342256, + -0.0253938 + ], + [ + 109.3342672, + -0.0253891 + ], + [ + 109.3342856, + -0.0253948 + ], + [ + 109.334302, + -0.0254267 + ], + [ + 109.3344931, + -0.0257827 + ] + ] + }, + "id": "way/1135119934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1140688411", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064887, + -0.0375386 + ], + [ + 109.3066236, + -0.0376756 + ], + [ + 109.3066418, + -0.0376928 + ], + [ + 109.3066947, + -0.037742 + ] + ] + }, + "id": "way/1140688411" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1140688412", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063997, + -0.0374718 + ], + [ + 109.3064887, + -0.0375386 + ] + ] + }, + "id": "way/1140688412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1140688413", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064887, + -0.0375386 + ], + [ + 109.3065276, + -0.037501 + ], + [ + 109.3066787, + -0.0373551 + ], + [ + 109.3068905, + -0.037111 + ] + ] + }, + "id": "way/1140688413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1140688553", + "foot": "no", + "highway": "residential", + "motor_vehicle": "no", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025894, + -0.0399067 + ], + [ + 109.3022046, + -0.0401496 + ], + [ + 109.3020357, + -0.0402562 + ], + [ + 109.3018322, + -0.0403848 + ], + [ + 109.3014152, + -0.040648 + ] + ] + }, + "id": "way/1140688553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1145032099", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178628, + -0.0493613 + ], + [ + 109.3177124, + -0.0492124 + ] + ] + }, + "id": "way/1145032099" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1146142224", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526887, + -0.056889 + ], + [ + 109.3526304, + -0.0568502 + ] + ] + }, + "id": "way/1146142224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1146155347", + "access": "destination", + "highway": "service", + "name": "Jalan Asahan", + "name:id": "Jalan Asahan", + "name:ms": "Jalan Asahan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437887, + -0.0255302 + ], + [ + 109.3439045, + -0.025459 + ] + ] + }, + "id": "way/1146155347" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1146155348", + "access": "destination", + "highway": "service", + "name": "Jalan Asahan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424417, + -0.0263689 + ], + [ + 109.3425892, + -0.026277 + ] + ] + }, + "id": "way/1146155348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1146759825", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386819, + -0.0275964 + ], + [ + 109.3387136, + -0.028249 + ] + ] + }, + "id": "way/1146759825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1146759826", + "highway": "tertiary", + "name": "Jalan Pattimura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3386479, + -0.0282577 + ], + [ + 109.3386257, + -0.0276187 + ] + ] + }, + "id": "way/1146759826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591128", + "highway": "residential", + "name": "Komplek Taman Pembangunan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2856449, + -0.0157759 + ], + [ + 109.2858083, + -0.0157759 + ], + [ + 109.2858964, + -0.0157575 + ], + [ + 109.2885374, + -0.0147529 + ] + ] + }, + "id": "way/1153591128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591129", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2854999, + -0.0157527 + ], + [ + 109.2856449, + -0.0157759 + ] + ] + }, + "id": "way/1153591129" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591138", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2918277, + -0.0157574 + ], + [ + 109.291808, + -0.0156539 + ], + [ + 109.2916276, + -0.0151053 + ], + [ + 109.2914002, + -0.0143692 + ], + [ + 109.2912198, + -0.0138712 + ] + ] + }, + "id": "way/1153591138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591139", + "bridge": "yes", + "highway": "track", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2918462, + -0.0158608 + ], + [ + 109.2918277, + -0.0157574 + ] + ] + }, + "id": "way/1153591139" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591140", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2918516, + -0.0159021 + ], + [ + 109.2918462, + -0.0158608 + ] + ] + }, + "id": "way/1153591140" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591141", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2917269, + -0.0159532 + ], + [ + 109.2918765, + -0.0166843 + ], + [ + 109.2920041, + -0.0173248 + ], + [ + 109.2922108, + -0.018297 + ] + ] + }, + "id": "way/1153591141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591142", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2880955, + -0.0427802 + ], + [ + 109.2871619, + -0.0416761 + ] + ] + }, + "id": "way/1153591142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591180", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004988, + -0.0528819 + ], + [ + 109.2995426, + -0.0538374 + ], + [ + 109.2983152, + -0.0550519 + ] + ] + }, + "id": "way/1153591180" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591181", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980191, + -0.05473 + ], + [ + 109.2989589, + -0.0538031 + ], + [ + 109.2999889, + -0.0527688 + ], + [ + 109.3001973, + -0.0525573 + ] + ] + }, + "id": "way/1153591181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591182", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161304, + -0.0698283 + ], + [ + 109.3163974, + -0.0701386 + ], + [ + 109.31783, + -0.072206 + ] + ] + }, + "id": "way/1153591182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591183", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159876, + -0.0697079 + ], + [ + 109.3161304, + -0.0698283 + ] + ] + }, + "id": "way/1153591183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591184", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159838, + -0.0697047 + ], + [ + 109.3159876, + -0.0697079 + ] + ] + }, + "id": "way/1153591184" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591185", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145781, + -0.0723022 + ], + [ + 109.3146826, + -0.0723822 + ] + ] + }, + "id": "way/1153591185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591186", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145269, + -0.0722606 + ], + [ + 109.3145781, + -0.0723022 + ] + ] + }, + "id": "way/1153591186" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591187", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361238, + -0.0824121 + ], + [ + 109.3374866, + -0.0803745 + ], + [ + 109.3376057, + -0.0802265 + ], + [ + 109.3376526, + -0.0801941 + ], + [ + 109.3377645, + -0.0802482 + ], + [ + 109.3380904, + -0.0804483 + ] + ] + }, + "id": "way/1153591187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153591188", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409886, + -0.0829689 + ], + [ + 109.3402999, + -0.0825455 + ], + [ + 109.3390113, + -0.0817264 + ] + ] + }, + "id": "way/1153591188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595243", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099348, + 0.0192113 + ], + [ + 109.3098789, + 0.0188828 + ], + [ + 109.3096762, + 0.0178616 + ] + ] + }, + "id": "way/1153595243" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595244", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095741, + 0.0191684 + ], + [ + 109.3095265, + 0.0189501 + ], + [ + 109.3093243, + 0.0178941 + ] + ] + }, + "id": "way/1153595244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595245", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456176, + 0.010073 + ], + [ + 109.3456593, + 0.0103015 + ], + [ + 109.3458653, + 0.0118293 + ] + ] + }, + "id": "way/1153595245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595246", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529187, + 0.0019391 + ], + [ + 109.3527647, + 0.0016653 + ], + [ + 109.3526926, + 0.001537 + ] + ] + }, + "id": "way/1153595246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595247", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520811, + 0.0025658 + ], + [ + 109.3520356, + 0.0024762 + ], + [ + 109.3519582, + 0.0023488 + ], + [ + 109.3518732, + 0.0022092 + ], + [ + 109.3518171, + 0.0021242 + ] + ] + }, + "id": "way/1153595247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595248", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519207, + 0.0023729 + ], + [ + 109.3518715, + 0.0024046 + ] + ] + }, + "id": "way/1153595248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595249", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518715, + 0.0024046 + ], + [ + 109.3518234, + 0.0024355 + ] + ] + }, + "id": "way/1153595249" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595250", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519582, + 0.0023488 + ], + [ + 109.3519207, + 0.0023729 + ] + ] + }, + "id": "way/1153595250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595251", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518732, + 0.0022092 + ], + [ + 109.3527647, + 0.0016653 + ], + [ + 109.3534103, + 0.0012761 + ] + ] + }, + "id": "way/1153595251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595252", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534646, + 0.001581 + ], + [ + 109.3534103, + 0.0012761 + ], + [ + 109.3534148, + 0.0011259 + ] + ] + }, + "id": "way/1153595252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595253", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534148, + 0.0011259 + ], + [ + 109.3536151, + 0.0009681 + ], + [ + 109.3546631, + 0.0000333 + ], + [ + 109.3547242, + -0.0000212 + ], + [ + 109.3553053, + -0.0005295 + ], + [ + 109.3562248, + -0.0013519 + ], + [ + 109.3562906, + -0.0013284 + ] + ] + }, + "id": "way/1153595253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595254", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563102, + -0.002576 + ], + [ + 109.3566111, + -0.0026498 + ], + [ + 109.357802, + -0.0026734 + ] + ] + }, + "id": "way/1153595254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595255", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546631, + 0.0000333 + ], + [ + 109.354903, + 0.0002825 + ], + [ + 109.3549948, + 0.0003694 + ] + ] + }, + "id": "way/1153595255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595256", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3706416, + -0.0161786 + ], + [ + 109.3703096, + -0.0161371 + ], + [ + 109.3702988, + -0.0160577 + ], + [ + 109.370306, + -0.0159494 + ], + [ + 109.3703421, + -0.0157438 + ], + [ + 109.3702901, + -0.0154718 + ] + ] + }, + "id": "way/1153595256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725847, + -0.0155577 + ], + [ + 109.3729216, + -0.0148103 + ], + [ + 109.3733403, + -0.013906 + ], + [ + 109.37375, + -0.0130108 + ], + [ + 109.3740019, + -0.0124433 + ], + [ + 109.3738017, + -0.012434 + ] + ] + }, + "id": "way/1153595257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595258", + "highway": "residential", + "name": "KOMPLEK TAMAN PANCA BHAKTI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105062, + 0.0180258 + ], + [ + 109.3103081, + 0.018038 + ] + ] + }, + "id": "way/1153595258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595259", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "name": "KOMPLEK TAMAN PANCA BHAKTI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103081, + 0.018038 + ], + [ + 109.3102446, + 0.0180419 + ] + ] + }, + "id": "way/1153595259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595260", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309511, + 0.0208461 + ], + [ + 109.310657, + 0.0206362 + ] + ] + }, + "id": "way/1153595260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595261", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.310657, + 0.0206362 + ], + [ + 109.3107369, + 0.0206216 + ] + ] + }, + "id": "way/1153595261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1153595305", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319645, + -0.0687741 + ], + [ + 109.332787, + -0.0695055 + ], + [ + 109.3337404, + -0.070419 + ], + [ + 109.3339462, + -0.0706162 + ] + ] + }, + "id": "way/1153595305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1154439899", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2876998, + -0.037194 + ], + [ + 109.2876748, + -0.037125 + ] + ] + }, + "id": "way/1154439899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1154654449", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357599, + -0.0651696 + ], + [ + 109.3575194, + -0.0652371 + ], + [ + 109.3574998, + -0.0652581 + ], + [ + 109.3574662, + -0.0652997 + ], + [ + 109.3574743, + -0.0653627 + ], + [ + 109.3576971, + -0.0655994 + ] + ] + }, + "id": "way/1154654449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1155941467", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509062, + -0.0380161 + ], + [ + 109.3510201, + -0.0381725 + ], + [ + 109.3512614, + -0.0385038 + ], + [ + 109.3513913, + -0.0386665 + ], + [ + 109.3514658, + -0.0387686 + ], + [ + 109.3516008, + -0.0389315 + ], + [ + 109.3517094, + -0.0390958 + ], + [ + 109.3518207, + -0.0392155 + ], + [ + 109.3518604, + -0.0392661 + ], + [ + 109.3519418, + -0.03937 + ], + [ + 109.3520124, + -0.0394592 + ], + [ + 109.3520894, + -0.0395565 + ], + [ + 109.352256, + -0.0397962 + ], + [ + 109.3522703, + -0.0398168 + ], + [ + 109.3524276, + -0.0399908 + ], + [ + 109.3524638, + -0.0400632 + ], + [ + 109.3526484, + -0.0402842 + ], + [ + 109.3527589, + -0.0403708 + ], + [ + 109.352833, + -0.0404798 + ], + [ + 109.352931, + -0.0405861 + ], + [ + 109.3530475, + -0.0407126 + ], + [ + 109.3532573, + -0.0409193 + ], + [ + 109.3533157, + -0.0409666 + ], + [ + 109.3532521, + -0.0410093 + ] + ] + }, + "id": "way/1155941467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1155941468", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352256, + -0.0397962 + ], + [ + 109.3520281, + -0.0399532 + ], + [ + 109.3519077, + -0.0400313 + ], + [ + 109.3518807, + -0.0400718 + ], + [ + 109.3519501, + -0.0401778 + ], + [ + 109.3520127, + -0.0402558 + ], + [ + 109.3520327, + -0.0403085 + ] + ] + }, + "id": "way/1155941468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1155941469", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522864, + -0.0405816 + ], + [ + 109.3523196, + -0.0405681 + ], + [ + 109.3523869, + -0.040681 + ], + [ + 109.3525109, + -0.0405914 + ], + [ + 109.3525267, + -0.0405799 + ], + [ + 109.3527589, + -0.0403708 + ] + ] + }, + "id": "way/1155941469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1155941470", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525109, + -0.0405914 + ], + [ + 109.3525705, + -0.0406726 + ], + [ + 109.3525256, + -0.0407151 + ] + ] + }, + "id": "way/1155941470" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1156837110", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540355, + -0.0124475 + ], + [ + 109.3540965, + -0.0124841 + ], + [ + 109.3541658, + -0.0125125 + ], + [ + 109.3542584, + -0.0125461 + ], + [ + 109.3549027, + -0.0127089 + ] + ] + }, + "id": "way/1156837110" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1159281880", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106644, + -0.0142305 + ], + [ + 109.3106751, + -0.0141835 + ], + [ + 109.3107092, + -0.0140391 + ], + [ + 109.3107354, + -0.013945 + ], + [ + 109.3108066, + -0.0136859 + ] + ] + }, + "id": "way/1159281880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1159281881", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115093, + -0.0138744 + ], + [ + 109.3117212, + -0.0139455 + ], + [ + 109.3120618, + -0.0140735 + ], + [ + 109.3124537, + -0.0142251 + ] + ] + }, + "id": "way/1159281881" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1159281882", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117346, + -0.0114039 + ], + [ + 109.3116361, + -0.0113601 + ], + [ + 109.3114194, + -0.0112639 + ] + ] + }, + "id": "way/1159281882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1159281883", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116361, + -0.0113601 + ], + [ + 109.3115229, + -0.0117007 + ] + ] + }, + "id": "way/1159281883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1163762032", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129652, + -0.0493017 + ], + [ + 109.3123339, + -0.048861 + ], + [ + 109.3118296, + -0.0484994 + ], + [ + 109.3114053, + -0.0481897 + ] + ] + }, + "id": "way/1163762032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1163762033", + "access": "no", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114053, + -0.0481897 + ], + [ + 109.3113186, + -0.0481263 + ] + ] + }, + "id": "way/1163762033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1167203660", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3017447, + -0.0418103 + ], + [ + 109.3018742, + -0.0420244 + ], + [ + 109.3018742, + -0.0420324 + ], + [ + 109.3018683, + -0.0420425 + ], + [ + 109.3004519, + -0.0429368 + ], + [ + 109.3004074, + -0.0429649 + ] + ] + }, + "id": "way/1167203660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1167867759", + "access": "yes", + "alt_name": "Jalan Pancasila", + "highway": "tertiary", + "name": "Jalan Gusti Hamzah", + "oneway": "no", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198973, + -0.0280011 + ], + [ + 109.3199799, + -0.0280777 + ], + [ + 109.3201212, + -0.0282692 + ], + [ + 109.3202193, + -0.0283913 + ], + [ + 109.3202864, + -0.0284763 + ], + [ + 109.3203893, + -0.0286127 + ], + [ + 109.3205988, + -0.0288653 + ], + [ + 109.3207604, + -0.0290712 + ], + [ + 109.3208071, + -0.0291382 + ], + [ + 109.3209017, + -0.029246 + ], + [ + 109.3209819, + -0.0293429 + ], + [ + 109.3210968, + -0.0295105 + ], + [ + 109.3212943, + -0.029787 + ], + [ + 109.3213972, + -0.0299187 + ], + [ + 109.3215792, + -0.0301797 + ], + [ + 109.3217359, + -0.0304223 + ], + [ + 109.3218569, + -0.0306106 + ], + [ + 109.3219167, + -0.0306944 + ], + [ + 109.3221274, + -0.0310391 + ], + [ + 109.3224044, + -0.0314489 + ], + [ + 109.3226056, + -0.0317947 + ], + [ + 109.3228664, + -0.0322703 + ] + ] + }, + "id": "way/1167867759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1167867760", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198973, + -0.0280011 + ], + [ + 109.3195009, + -0.0282893 + ] + ] + }, + "id": "way/1167867760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1168185556", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328583, + -0.0301083 + ], + [ + 109.33232, + -0.0296049 + ] + ] + }, + "id": "way/1168185556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1169820116", + "highway": "residential", + "maxspeed": "5", + "name": "Bali Mas 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528723, + -0.0698078 + ], + [ + 109.3529494, + -0.0698954 + ] + ] + }, + "id": "way/1169820116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1170628599", + "highway": "living_street", + "name": "Sapta Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248055, + -0.0328968 + ], + [ + 109.3248191, + -0.0328711 + ] + ] + }, + "id": "way/1170628599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1170628600", + "highway": "living_street", + "name": "Sapta Jaya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236181, + -0.0335813 + ], + [ + 109.3248055, + -0.0328968 + ] + ] + }, + "id": "way/1170628600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1170628601", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Bahagia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246314, + -0.0322133 + ], + [ + 109.3247103, + -0.0325205 + ] + ] + }, + "id": "way/1170628601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1173200163", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525127, + -0.0772266 + ], + [ + 109.3525355, + -0.0771876 + ], + [ + 109.3525914, + -0.077092 + ] + ] + }, + "id": "way/1173200163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1173603550", + "highway": "unclassified", + "name": "Jalan Tabrani Ahmad" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297362, + -0.0279025 + ], + [ + 109.2971473, + -0.0274771 + ] + ] + }, + "id": "way/1173603550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1174925688", + "highway": "tertiary", + "motorcycle": "yes", + "name": "Jalan Diponegoro", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390608, + -0.0294926 + ], + [ + 109.3391241, + -0.0294435 + ] + ] + }, + "id": "way/1174925688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1175224112", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561259, + -0.0780224 + ], + [ + 109.3561695, + -0.0780477 + ] + ] + }, + "id": "way/1175224112" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1175224114", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356039, + -0.0781671 + ], + [ + 109.3561016, + -0.0782021 + ] + ] + }, + "id": "way/1175224114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1175259052", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085139, + -0.0599869 + ], + [ + 109.3085273, + -0.0599623 + ] + ] + }, + "id": "way/1175259052" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1175259053", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090533, + -0.0610128 + ], + [ + 109.3087667, + -0.0614709 + ], + [ + 109.3087694, + -0.0615299 + ], + [ + 109.3087935, + -0.0615889 + ], + [ + 109.308833, + -0.0616146 + ], + [ + 109.3092066, + -0.0618571 + ] + ] + }, + "id": "way/1175259053" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1175259054", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092147, + -0.0611114 + ], + [ + 109.3095211, + -0.0605743 + ] + ] + }, + "id": "way/1175259054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1175388066", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3696596, + -0.0419136 + ], + [ + 109.3698795, + -0.0421509 + ], + [ + 109.3702188, + -0.0425371 + ], + [ + 109.3703028, + -0.0426506 + ], + [ + 109.3704622, + -0.0428315 + ] + ] + }, + "id": "way/1175388066" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1177211784", + "highway": "residential", + "lanes": "1", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3566211, + -0.0447087 + ], + [ + 109.3563507, + -0.044518 + ], + [ + 109.3563281, + -0.044502 + ], + [ + 109.356066, + -0.0442963 + ], + [ + 109.3558461, + -0.0440532 + ], + [ + 109.3557422, + -0.043946 + ], + [ + 109.3556716, + -0.0438949 + ], + [ + 109.3556281, + -0.0438336 + ], + [ + 109.3555023, + -0.0436664 + ], + [ + 109.3554888, + -0.0436534 + ] + ] + }, + "id": "way/1177211784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1177441132", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026411, + -0.010576 + ], + [ + 109.3029184, + -0.0105834 + ], + [ + 109.3035204, + -0.0106004 + ], + [ + 109.3041421, + -0.0106179 + ], + [ + 109.3050469, + -0.0106281 + ] + ] + }, + "id": "way/1177441132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1179905854", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522317, + -0.0415858 + ], + [ + 109.3524673, + -0.0413737 + ], + [ + 109.3525471, + -0.0413094 + ], + [ + 109.3525538, + -0.0412946 + ], + [ + 109.3525477, + -0.0412765 + ], + [ + 109.3524478, + -0.0411612 + ], + [ + 109.3524441, + -0.0411541 + ], + [ + 109.3524445, + -0.0411481 + ], + [ + 109.3524867, + -0.0411059 + ] + ] + }, + "id": "way/1179905854" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1183871433", + "highway": "tertiary", + "motor_vehicle": "destination", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3800859, + -0.0548967 + ], + [ + 109.3804233, + -0.0553661 + ], + [ + 109.3804434, + -0.0553876 + ], + [ + 109.3804675, + -0.0554104 + ], + [ + 109.3806674, + -0.0557139 + ], + [ + 109.3811387, + -0.0564295 + ] + ] + }, + "id": "way/1183871433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1183872739", + "highway": "residential", + "name": "Jalan Ampera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3770888, + -0.0593242 + ], + [ + 109.3790547, + -0.0579187 + ], + [ + 109.3800183, + -0.0572276 + ], + [ + 109.3810892, + -0.0564653 + ] + ] + }, + "id": "way/1183872739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1184442421", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532588, + -0.0628644 + ], + [ + 109.3533089, + -0.0629031 + ], + [ + 109.3538332, + -0.0633082 + ] + ] + }, + "id": "way/1184442421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1184650857", + "colour": "#606060", + "highway": "residential", + "motorcar": "no", + "name": "Komplek Anugerah Perdana Permai", + "vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379493, + -0.0566503 + ], + [ + 109.3379337, + -0.0566838 + ], + [ + 109.3379324, + -0.0567019 + ], + [ + 109.3379378, + -0.056719 + ], + [ + 109.3379482, + -0.0567346 + ] + ] + }, + "id": "way/1184650857" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1184918601", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599783, + -0.0491556 + ], + [ + 109.3601163, + -0.049236 + ], + [ + 109.3601585, + -0.0492601 + ], + [ + 109.3602853, + -0.0493667 + ] + ] + }, + "id": "way/1184918601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1185866804", + "highway": "living_street", + "import": "yes", + "motor_vehicle": "destination", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2877556, + -0.02395 + ], + [ + 109.287572, + -0.0240851 + ] + ] + }, + "id": "way/1185866804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1185866805", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2874953, + -0.0228343 + ], + [ + 109.2871486, + -0.0230916 + ] + ] + }, + "id": "way/1185866805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1185921439", + "highway": "residential", + "name": "Jalan Komp. Tongie 67" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286023, + -0.0390979 + ], + [ + 109.3285722, + -0.0390623 + ] + ] + }, + "id": "way/1185921439" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1185946277", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3669274, + -0.0318187 + ], + [ + 109.3667245, + -0.0319749 + ], + [ + 109.3666442, + -0.0320368 + ] + ] + }, + "id": "way/1185946277" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1186650044", + "highway": "residential", + "name": "Gang Ketela" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129647, + -0.0094513 + ], + [ + 109.313246, + -0.0095789 + ], + [ + 109.3136353, + -0.0097503 + ] + ] + }, + "id": "way/1186650044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1187502961", + "bridge": "yes", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.290285, + -0.0201749 + ], + [ + 109.2902958, + -0.020218 + ] + ] + }, + "id": "way/1187502961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1187502962", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2901848, + -0.0202869 + ], + [ + 109.2901774, + -0.0202968 + ], + [ + 109.2901732, + -0.0203059 + ], + [ + 109.2901718, + -0.0203134 + ], + [ + 109.2901732, + -0.0203237 + ], + [ + 109.2901866, + -0.020357 + ], + [ + 109.2902229, + -0.020421 + ], + [ + 109.2902665, + -0.0204995 + ], + [ + 109.2903122, + -0.0205819 + ], + [ + 109.2903493, + -0.0206416 + ] + ] + }, + "id": "way/1187502962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1187502963", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2902958, + -0.020218 + ], + [ + 109.2902944, + -0.0202253 + ], + [ + 109.2902875, + -0.0202313 + ], + [ + 109.2902795, + -0.0202345 + ], + [ + 109.2902617, + -0.0202418 + ], + [ + 109.2902338, + -0.0202552 + ], + [ + 109.2902154, + -0.0202662 + ], + [ + 109.2901848, + -0.0202869 + ] + ] + }, + "id": "way/1187502963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1187506504", + "highway": "footway", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463639, + -0.0577903 + ], + [ + 109.3468255, + -0.0573433 + ], + [ + 109.3469713, + -0.0571845 + ], + [ + 109.3472302, + -0.0568753 + ], + [ + 109.3472436, + -0.0568516 + ] + ] + }, + "id": "way/1187506504" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1187506623", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482758, + -0.0567986 + ], + [ + 109.3482847, + -0.0568045 + ], + [ + 109.3483632, + -0.0568813 + ] + ] + }, + "id": "way/1187506623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1188633824", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640055, + -0.0593103 + ], + [ + 109.3641752, + -0.0594913 + ], + [ + 109.3641943, + -0.0595271 + ], + [ + 109.3641905, + -0.0595605 + ], + [ + 109.3641778, + -0.0595987 + ], + [ + 109.3640758, + -0.0596757 + ] + ] + }, + "id": "way/1188633824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1188634383", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364535, + -0.0630634 + ], + [ + 109.364754, + -0.0631624 + ] + ] + }, + "id": "way/1188634383" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1189287974", + "highway": "residential", + "name": "Gang Media Sari 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496949, + -0.048648 + ], + [ + 109.3498676, + -0.0483916 + ] + ] + }, + "id": "way/1189287974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1190234299", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052371, + -0.0091976 + ], + [ + 109.3049641, + -0.0091228 + ] + ] + }, + "id": "way/1190234299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1191792583", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388396, + -0.0368991 + ], + [ + 109.338668, + -0.0367489 + ], + [ + 109.3386063, + -0.0367818 + ], + [ + 109.3385144, + -0.036751 + ], + [ + 109.3384883, + -0.0367677 + ], + [ + 109.3382811, + -0.0369179 + ] + ] + }, + "id": "way/1191792583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1191792584", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388639, + -0.036372 + ], + [ + 109.3390784, + -0.0367141 + ], + [ + 109.3388396, + -0.0368991 + ], + [ + 109.3389952, + -0.03717 + ] + ] + }, + "id": "way/1191792584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1192003760", + "highway": "service", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486769, + -0.0562187 + ], + [ + 109.3485776, + -0.0563593 + ], + [ + 109.3483684, + -0.0566686 + ], + [ + 109.3482701, + -0.0567954 + ] + ] + }, + "id": "way/1192003760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1192003761", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486988, + -0.0561937 + ], + [ + 109.3486769, + -0.0562187 + ] + ] + }, + "id": "way/1192003761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1192003767", + "highway": "service", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477498, + -0.0572551 + ], + [ + 109.3475238, + -0.0574353 + ], + [ + 109.3469439, + -0.0577842 + ] + ] + }, + "id": "way/1192003767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1192003768", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472436, + -0.0568516 + ], + [ + 109.3476064, + -0.0563609 + ], + [ + 109.3475749, + -0.0563345 + ], + [ + 109.3481884, + -0.0554769 + ], + [ + 109.3482248, + -0.0554275 + ] + ] + }, + "id": "way/1192003768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1192003769", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476064, + -0.0563609 + ], + [ + 109.3480299, + -0.056662 + ], + [ + 109.3480319, + -0.0566634 + ], + [ + 109.3476535, + -0.0571857 + ], + [ + 109.3475534, + -0.0573238 + ], + [ + 109.3475103, + -0.0573474 + ], + [ + 109.3474494, + -0.0573987 + ], + [ + 109.3471474, + -0.0576293 + ], + [ + 109.3470051, + -0.0575212 + ], + [ + 109.3469723, + -0.0574962 + ] + ] + }, + "id": "way/1192003769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1192003770", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480299, + -0.056662 + ], + [ + 109.348081, + -0.0565893 + ] + ] + }, + "id": "way/1192003770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1192232430", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2849458, + -0.0339216 + ], + [ + 109.2845815, + -0.0343077 + ], + [ + 109.2842687, + -0.0346393 + ] + ] + }, + "id": "way/1192232430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1192232431", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2860361, + -0.0328062 + ], + [ + 109.2860062, + -0.0329147 + ], + [ + 109.2859634, + -0.0329772 + ], + [ + 109.2858483, + -0.0331041 + ], + [ + 109.2857042, + -0.0332551 + ], + [ + 109.2856645, + -0.0332968 + ], + [ + 109.2853811, + -0.0335485 + ], + [ + 109.2851855, + -0.0337161 + ], + [ + 109.2849458, + -0.0339216 + ] + ] + }, + "id": "way/1192232431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1193680471", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3146435, + -0.047614 + ], + [ + 109.3140813, + -0.0470441 + ] + ] + }, + "id": "way/1193680471" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1197026447", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336838, + -0.0539976 + ], + [ + 109.3335343, + -0.053624 + ], + [ + 109.333258, + -0.052928 + ], + [ + 109.3331319, + -0.0525927 + ], + [ + 109.3329844, + -0.0521891 + ], + [ + 109.3328583, + -0.0518002 + ], + [ + 109.3327577, + -0.0515091 + ], + [ + 109.3326652, + -0.0512248 + ] + ] + }, + "id": "way/1197026447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204090341", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302266, + -0.0189873 + ], + [ + 109.3021553, + -0.018774 + ] + ] + }, + "id": "way/1204090341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204129313", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469014, + -0.018448 + ], + [ + 109.3468165, + -0.0191027 + ] + ] + }, + "id": "way/1204129313" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204398527", + "button_operated": "no", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326815, + -0.0355252 + ], + [ + 109.3327562, + -0.03561 + ], + [ + 109.3327894, + -0.0356475 + ] + ] + }, + "id": "way/1204398527" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204398528", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328855, + -0.0356651 + ], + [ + 109.3329671, + -0.0356043 + ] + ] + }, + "id": "way/1204398528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204398529", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "description": "Dua crosswalk tidak tersambung dan dipisahkan oleh median", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333002, + -0.0355675 + ], + [ + 109.3330668, + -0.0355193 + ], + [ + 109.333085, + -0.0355058 + ], + [ + 109.3331268, + -0.0354788 + ] + ] + }, + "id": "way/1204398529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204398531", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328999, + -0.0351503 + ], + [ + 109.3329037, + -0.0351625 + ], + [ + 109.3329464, + -0.0352122 + ], + [ + 109.3329713, + -0.0352411 + ] + ] + }, + "id": "way/1204398531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204685959", + "crossing": "uncontrolled", + "crossing:island": "no", + "crossing:markings": "zebra", + "description": "Zebra Cross terputus dengan Zebra Cross di lajur lainnya", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288605, + -0.0394576 + ], + [ + 109.3289028, + -0.0394358 + ], + [ + 109.3289319, + -0.0394208 + ] + ] + }, + "id": "way/1204685959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204685960", + "crossing": "uncontrolled", + "crossing:island": "no", + "crossing:markings": "zebra", + "description": "Zebra Cross terputus dengan Zebra Cross di lajur yang berbeda", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3289734, + -0.0394004 + ], + [ + 109.3290071, + -0.0393828 + ], + [ + 109.3290408, + -0.0393651 + ] + ] + }, + "id": "way/1204685960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204685961", + "crossing": "unmarked", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3381557, + -0.0417065 + ], + [ + 109.3381235, + -0.0417347 + ], + [ + 109.3379938, + -0.0418438 + ], + [ + 109.3379448, + -0.041885 + ] + ] + }, + "id": "way/1204685961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204685962", + "bicycle": "no", + "bridge": "yes", + "crossing": "bridge", + "crossing:markings": "yes", + "foot": "yes", + "footway": "crossing", + "highway": "footway", + "horse": "no", + "layer": "1", + "motor_vehicle": "no", + "surface": "metal" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343059, + -0.0375202 + ], + [ + 109.3343479, + -0.0374856 + ], + [ + 109.3345989, + -0.0372787 + ] + ] + }, + "id": "way/1204685962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204685963", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "layer": "1", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339201, + -0.0298311 + ], + [ + 109.3392311, + -0.0298146 + ], + [ + 109.3393024, + -0.0297757 + ], + [ + 109.339338, + -0.0297562 + ] + ] + }, + "id": "way/1204685963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204685964", + "crossing": "traffic_signals", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389252, + -0.0295041 + ], + [ + 109.3389592, + -0.0295567 + ], + [ + 109.3390032, + -0.0296247 + ], + [ + 109.339022, + -0.0296539 + ] + ] + }, + "id": "way/1204685964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204685965", + "crossing": "traffic_signals", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3393545, + -0.0295534 + ], + [ + 109.3393438, + -0.0295347 + ], + [ + 109.3393088, + -0.029473 + ] + ] + }, + "id": "way/1204685965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204685966", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400032, + -0.0309592 + ], + [ + 109.339984, + -0.0309183 + ], + [ + 109.3399561, + -0.0308591 + ] + ] + }, + "id": "way/1204685966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204703018", + "crossing": "pelican", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.343239, + -0.0383139 + ], + [ + 109.3432625, + -0.0383022 + ], + [ + 109.3433273, + -0.0382698 + ], + [ + 109.3433533, + -0.0382567 + ] + ] + }, + "id": "way/1204703018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204712582", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452191, + -0.0414005 + ], + [ + 109.3452429, + -0.041432 + ], + [ + 109.3452637, + -0.0414597 + ] + ] + }, + "id": "way/1204712582" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204712583", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452963, + -0.0415068 + ], + [ + 109.3452909, + -0.0414993 + ], + [ + 109.345268, + -0.0414674 + ] + ] + }, + "id": "way/1204712583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204713204", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452534, + -0.041193 + ], + [ + 109.3452797, + -0.0411718 + ], + [ + 109.3453066, + -0.0411501 + ] + ] + }, + "id": "way/1204713204" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1204713205", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453666, + -0.0410986 + ], + [ + 109.3453553, + -0.0411084 + ], + [ + 109.3453126, + -0.041145 + ] + ] + }, + "id": "way/1204713205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205109797", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213087, + 0.0044364 + ], + [ + 109.3213811, + 0.0043371 + ], + [ + 109.321534, + 0.0041789 + ] + ] + }, + "id": "way/1205109797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205109798", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3210573, + 0.0078471 + ], + [ + 109.3212712, + 0.0080413 + ], + [ + 109.321648, + 0.0084436 + ], + [ + 109.3218398, + 0.0086448 + ] + ] + }, + "id": "way/1205109798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205136345", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456407, + -0.0413952 + ], + [ + 109.3456562, + -0.0413758 + ], + [ + 109.3456954, + -0.0413266 + ] + ] + }, + "id": "way/1205136345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205149548", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246622, + -0.0427145 + ], + [ + 109.3246178, + -0.0426636 + ], + [ + 109.3245773, + -0.0426172 + ] + ] + }, + "id": "way/1205149548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205149549", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324334, + -0.0430047 + ], + [ + 109.3242949, + -0.0429661 + ], + [ + 109.3242676, + -0.0429392 + ] + ] + }, + "id": "way/1205149549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205149550", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "description": "Zebra cross terpisahkan oleh median jalan sehingga tidak bisa dilalui pengguna kursi roda atau disabilitas", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3242552, + -0.0429295 + ], + [ + 109.3241959, + -0.042872 + ] + ] + }, + "id": "way/1205149550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205152318", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3183989, + -0.0488548 + ], + [ + 109.3183745, + -0.0488317 + ], + [ + 109.3183095, + -0.0487701 + ] + ] + }, + "id": "way/1205152318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205152319", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "crossing:signals": "no", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171105, + -0.0501905 + ], + [ + 109.3170752, + -0.0501553 + ], + [ + 109.3170129, + -0.0500929 + ] + ] + }, + "id": "way/1205152319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205383187", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3374123, + -0.0270063 + ], + [ + 109.3374409, + -0.0270702 + ], + [ + 109.3375126, + -0.0272948 + ], + [ + 109.3375066, + -0.0273136 + ], + [ + 109.3374885, + -0.0273277 + ], + [ + 109.336832, + -0.0275021 + ], + [ + 109.3358869, + -0.0277533 + ] + ] + }, + "id": "way/1205383187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205383188", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361454, + -0.0274765 + ], + [ + 109.3361963, + -0.0274631 + ], + [ + 109.3362781, + -0.0274363 + ], + [ + 109.3363331, + -0.0274082 + ], + [ + 109.3363962, + -0.027384 + ], + [ + 109.3364578, + -0.0273599 + ], + [ + 109.3365155, + -0.0273357 + ], + [ + 109.3365678, + -0.027329 + ] + ] + }, + "id": "way/1205383188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205383339", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334799, + -0.0277243 + ], + [ + 109.3350282, + -0.0275872 + ] + ] + }, + "id": "way/1205383339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205390624", + "crossing": "uncontrolled", + "crossing:island": "no", + "crossing:markings": "zebra", + "description": "Di antara dua Zebra Cross yang bersebrangan terdapat jembatan sambungan", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432301, + -0.0481598 + ], + [ + 109.3433015, + -0.0480956 + ], + [ + 109.3433282, + -0.0480729 + ] + ] + }, + "id": "way/1205390624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205390625", + "crossing": "uncontrolled", + "crossing:island": "no", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433823, + -0.0480268 + ], + [ + 109.3433926, + -0.0480187 + ], + [ + 109.3434652, + -0.0479545 + ] + ] + }, + "id": "way/1205390625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205391224", + "check_date": "2023-09-06", + "crossing": "zebra", + "crossing:island": "no", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286545, + -0.0391658 + ], + [ + 109.3287162, + -0.0391178 + ], + [ + 109.3288133, + -0.039044 + ], + [ + 109.3288684, + -0.0390022 + ] + ] + }, + "id": "way/1205391224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205391860", + "crossing": "zebra", + "crossing:island": "no", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286204, + -0.0391817 + ], + [ + 109.3285709, + -0.0391265 + ], + [ + 109.3285492, + -0.0391024 + ] + ] + }, + "id": "way/1205391860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205392664", + "crossing": "marked", + "crossing:island": "no", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "layer": "1", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3155059, + -0.0515733 + ], + [ + 109.3155639, + -0.0516302 + ], + [ + 109.3155786, + -0.0516447 + ], + [ + 109.3155913, + -0.0516567 + ] + ] + }, + "id": "way/1205392664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205393096", + "check_date": "2023-09-06", + "crossing": "marked", + "crossing:island": "no", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153088, + -0.051942 + ], + [ + 109.3152786, + -0.0519152 + ], + [ + 109.3152301, + -0.0518722 + ], + [ + 109.3152156, + -0.0518594 + ] + ] + }, + "id": "way/1205393096" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205394951", + "crossing": "marked", + "crossing:markings": "yes", + "description": "Cat zebra cross telah hilang", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427508, + -0.0384727 + ], + [ + 109.3427337, + -0.0384442 + ], + [ + 109.3426833, + -0.0383601 + ] + ] + }, + "id": "way/1205394951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205403008", + "bicycle": "yes", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Tidak terdapat Zebra Crossing di depan Universitas Terbuka", + "foot": "yes", + "footway": "crossing", + "highway": "footway", + "horse": "yes", + "motor_vehicle": "yes", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294117, + -0.0447909 + ], + [ + 109.3294323, + -0.0448257 + ], + [ + 109.3294524, + -0.0448596 + ] + ] + }, + "id": "way/1205403008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205403465", + "bicycle": "yes", + "crossing": "unmarked", + "crossing:island": "no", + "crossing:markings": "yes", + "description": "Tidak terdapat Zebra Crossing yang memudahkan pejalan kaki unutk menyebrang di kawasan ramai perkantoran dan tempat ibadah", + "foot": "yes", + "footway": "crossing", + "highway": "footway", + "motor_vehicle": "yes", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358693, + -0.0407339 + ], + [ + 109.3358872, + -0.0407541 + ], + [ + 109.3359298, + -0.0408022 + ] + ] + }, + "id": "way/1205403465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205404317", + "crossing": "unmarked", + "crossing:island": "no", + "crossing:markings": "yes", + "description": "Tidak terdapat Zebra Cross pada jalan yang berada pada persimpangan dan pintu masuk pusat perbelanjaan", + "foot": "yes", + "footway": "crossing", + "highway": "footway", + "motor_vehicle": "yes", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456435, + -0.0530204 + ], + [ + 109.3456243, + -0.0530053 + ], + [ + 109.3455534, + -0.0529496 + ] + ] + }, + "id": "way/1205404317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205407349", + "bicycle": "yes", + "crossing": "traffic_signals", + "crossing:island": "no", + "crossing:markings": "zebra", + "description": "Tidak terdapat pedestrian traffic light", + "footway": "crossing", + "highway": "footway", + "layer": "1", + "motor_vehicle": "yes", + "surface": "asphalt", + "tactile_paving": "no", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070539, + -0.0598131 + ], + [ + 109.3070934, + -0.0597753 + ], + [ + 109.3071304, + -0.0597397 + ] + ] + }, + "id": "way/1205407349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1205407350", + "bicycle": "yes", + "crossing": "traffic_signals", + "crossing:island": "no", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "motor_vehicle": "yes", + "surface": "asphalt", + "tactile_paving": "no", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070886, + -0.0599876 + ], + [ + 109.3071428, + -0.0600314 + ], + [ + 109.3071852, + -0.0600655 + ] + ] + }, + "id": "way/1205407350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206042169", + "crossing": "marked", + "crossing:markings": "yes", + "description": "Zebra cross pudar dan tidak dicat kembali", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312491, + -0.0366544 + ], + [ + 109.3313234, + -0.0367479 + ], + [ + 109.3313409, + -0.0367699 + ] + ] + }, + "id": "way/1206042169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206045955", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "crossing:signals": "no", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405976, + -0.0371564 + ], + [ + 109.3406758, + -0.0370835 + ], + [ + 109.3406944, + -0.0370662 + ] + ] + }, + "id": "way/1206045955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206046443", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370728, + -0.0354558 + ], + [ + 109.3370521, + -0.0354328 + ], + [ + 109.337018, + -0.0353947 + ] + ] + }, + "id": "way/1206046443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206049094", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "traffic_signals:sound": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073404, + -0.0600592 + ], + [ + 109.3073715, + -0.0600082 + ], + [ + 109.307383, + -0.0599894 + ] + ] + }, + "id": "way/1206049094" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206049095", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "traffic_signals:sound": "no", + "traffic_signals:vibration": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073944, + -0.0598519 + ], + [ + 109.30736, + -0.0598164 + ], + [ + 109.3073143, + -0.0597692 + ] + ] + }, + "id": "way/1206049095" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206052426", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Jalan yang memerlukan zebra cross karena sulit bagi pejalan kaki untuk menyeberang menyeberang.", + "footway": "crossing", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318942, + -0.0477382 + ], + [ + 109.3190017, + -0.0476768 + ], + [ + 109.3190616, + -0.0476152 + ] + ] + }, + "id": "way/1206052426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206052513", + "crossing": "unmarked", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190906, + -0.0481688 + ], + [ + 109.3190381, + -0.0481111 + ], + [ + 109.3189864, + -0.0480543 + ] + ] + }, + "id": "way/1206052513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206052578", + "crossing": "unmarked", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193725, + -0.0475999 + ], + [ + 109.319499, + -0.0477365 + ] + ] + }, + "id": "way/1206052578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206766354", + "crossing": "uncontrolled", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392017, + -0.0293128 + ], + [ + 109.3392344, + -0.0293641 + ], + [ + 109.3392627, + -0.0294084 + ] + ] + }, + "id": "way/1206766354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206766657", + "crossing": "uncontrolled", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426711, + -0.0270786 + ], + [ + 109.3427194, + -0.0271506 + ], + [ + 109.3427342, + -0.0271726 + ] + ] + }, + "id": "way/1206766657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206766701", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Belum ada zebra cross atau ZoSS di depan sekolah", + "footway": "crossing", + "highway": "footway", + "layer": "1", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198048, + -0.0485033 + ], + [ + 109.3198258, + -0.0484809 + ], + [ + 109.3198616, + -0.0484444 + ] + ] + }, + "id": "way/1206766701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206766702", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Belum ada zebra cross atau ZoSS di lingkungan sekolah", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3201833, + -0.0489482 + ], + [ + 109.3202088, + -0.0489232 + ], + [ + 109.320237, + -0.0488957 + ] + ] + }, + "id": "way/1206766702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206767220", + "crossing": "uncontrolled", + "crossing:markings": "yes", + "crossing:signals": "no", + "description": "Belum ada zebra cross", + "footway": "crossing", + "highway": "footway", + "layer": "-1", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3164094, + -0.0509114 + ], + [ + 109.3164269, + -0.0508935 + ], + [ + 109.3164584, + -0.0508612 + ] + ] + }, + "id": "way/1206767220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206767692", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Belum ada zebra cross di depan Puskesmas sebagai pusat kegiatan", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186136, + -0.0531671 + ], + [ + 109.3186377, + -0.0531389 + ], + [ + 109.3186498, + -0.0531248 + ] + ] + }, + "id": "way/1206767692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206767693", + "crossing": "unmarked", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124218, + -0.054595 + ], + [ + 109.3124541, + -0.0545547 + ], + [ + 109.3124644, + -0.0545418 + ] + ] + }, + "id": "way/1206767693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206767980", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Cat zebra cross telah hilang", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479391, + -0.0397055 + ], + [ + 109.3479318, + -0.0396945 + ], + [ + 109.3478608, + -0.0395877 + ], + [ + 109.3478235, + -0.0395315 + ] + ] + }, + "id": "way/1206767980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206768991", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Cat zebra cross telah hilang", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480309, + -0.0392636 + ], + [ + 109.3479943, + -0.0392863 + ], + [ + 109.3479018, + -0.0393438 + ], + [ + 109.3478511, + -0.0393734 + ] + ] + }, + "id": "way/1206768991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206769032", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Belum memiliki zebra cross", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098903, + -0.0571323 + ], + [ + 109.3099111, + -0.0571063 + ], + [ + 109.3099221, + -0.0570924 + ] + ] + }, + "id": "way/1206769032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206769106", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Cat zebra cross telah hilang", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481026, + -0.0397386 + ], + [ + 109.3481322, + -0.0397202 + ], + [ + 109.34823, + -0.0396593 + ] + ] + }, + "id": "way/1206769106" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206769579", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Cat zebra cross telah hilang", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428773, + -0.0272761 + ], + [ + 109.3429131, + -0.0272508 + ], + [ + 109.3429901, + -0.0271963 + ], + [ + 109.3430165, + -0.0271776 + ] + ] + }, + "id": "way/1206769579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206769779", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Cat zebra cross telah hilang", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428434, + -0.0269142 + ], + [ + 109.3428157, + -0.0269322 + ], + [ + 109.3427969, + -0.0269445 + ], + [ + 109.342743, + -0.0269797 + ], + [ + 109.3426851, + -0.0270175 + ] + ] + }, + "id": "way/1206769779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206770557", + "crossing": "marked", + "crossing:markings": "yes", + "description": "Cat zebra cross telah hilang", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455596, + -0.0411311 + ], + [ + 109.3456108, + -0.0411852 + ], + [ + 109.345664, + -0.0412392 + ] + ] + }, + "id": "way/1206770557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206770614", + "crossing": "marked", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429068, + -0.037336 + ], + [ + 109.3429547, + -0.0373941 + ], + [ + 109.3429899, + -0.0374366 + ] + ] + }, + "id": "way/1206770614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206771108", + "crossing": "unmarked", + "crossing:markings": "yes", + "footway": "crossing", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091994, + -0.0581051 + ], + [ + 109.3092274, + -0.0580709 + ], + [ + 109.309256, + -0.0580361 + ] + ] + }, + "id": "way/1206771108" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1206771109", + "crossing": "unmarked", + "crossing:markings": "yes", + "description": "Jalan belum memiliki zebra cross", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3186753, + -0.0532902 + ], + [ + 109.318712, + -0.0533217 + ], + [ + 109.3187267, + -0.0533344 + ] + ] + }, + "id": "way/1206771109" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1207052922", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287572, + -0.0373203 + ], + [ + 109.3289586, + -0.0371442 + ] + ] + }, + "id": "way/1207052922" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1208935172", + "highway": "residential", + "name": "Gang Elektro" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456542, + -0.0347861 + ], + [ + 109.3458107, + -0.0351758 + ], + [ + 109.3458563, + -0.0353113 + ], + [ + 109.34592, + -0.0354944 + ] + ] + }, + "id": "way/1208935172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1212631773", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389691, + -0.0564703 + ], + [ + 109.3386502, + -0.0568354 + ] + ] + }, + "id": "way/1212631773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1212642317", + "highway": "residential", + "name": "Gang Kelontan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572515, + -0.0300253 + ], + [ + 109.3567951, + -0.0303473 + ] + ] + }, + "id": "way/1212642317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1212642318", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3587495, + -0.0297579 + ], + [ + 109.3585752, + -0.0295822 + ], + [ + 109.3583581, + -0.0293568 + ], + [ + 109.3583447, + -0.0293452 + ], + [ + 109.3583339, + -0.02934 + ] + ] + }, + "id": "way/1212642318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1212642319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599614, + -0.0313282 + ], + [ + 109.3598835, + -0.0312182 + ], + [ + 109.359835, + -0.0311471 + ], + [ + 109.3596724, + -0.0308588 + ], + [ + 109.359494, + -0.0305799 + ], + [ + 109.359317, + -0.0303438 + ], + [ + 109.3592287, + -0.0302412 + ], + [ + 109.3589721, + -0.0299824 + ], + [ + 109.3587495, + -0.0297579 + ] + ] + }, + "id": "way/1212642319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1213208499", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010424, + -0.0397015 + ], + [ + 109.3010721, + -0.0397094 + ], + [ + 109.3010889, + -0.0397208 + ], + [ + 109.3011022, + -0.039734 + ], + [ + 109.3011144, + -0.039751 + ], + [ + 109.3011211, + -0.0397751 + ], + [ + 109.3011244, + -0.0397924 + ], + [ + 109.3011238, + -0.0398087 + ], + [ + 109.3011182, + -0.0398342 + ] + ] + }, + "id": "way/1213208499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1213208500", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020024, + -0.0392672 + ], + [ + 109.3019683, + -0.0391968 + ], + [ + 109.3019586, + -0.0391884 + ], + [ + 109.3019447, + -0.0391871 + ], + [ + 109.3019319, + -0.0391917 + ], + [ + 109.3010424, + -0.0397015 + ], + [ + 109.300983, + -0.0397329 + ], + [ + 109.3009575, + -0.0397544 + ], + [ + 109.3009521, + -0.0397745 + ], + [ + 109.3009508, + -0.0398 + ], + [ + 109.3010055, + -0.0399064 + ] + ] + }, + "id": "way/1213208500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1213246558", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639896, + -0.063925 + ], + [ + 109.3641126, + -0.063992 + ] + ] + }, + "id": "way/1213246558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1213246559", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638104, + -0.0643371 + ], + [ + 109.3636769, + -0.0642747 + ] + ] + }, + "id": "way/1213246559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1213246560", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636769, + -0.0642747 + ], + [ + 109.3631069, + -0.0640082 + ], + [ + 109.363064, + -0.0639988 + ], + [ + 109.3630385, + -0.0640203 + ], + [ + 109.3630157, + -0.064082 + ], + [ + 109.3630278, + -0.0641088 + ], + [ + 109.363064, + -0.0641437 + ], + [ + 109.3635213, + -0.0643355 + ], + [ + 109.3635643, + -0.0643381 + ], + [ + 109.36363, + -0.0643234 + ], + [ + 109.3636541, + -0.0643033 + ], + [ + 109.3636769, + -0.0642747 + ] + ] + }, + "id": "way/1213246560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1213510778", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3637764, + -0.0647309 + ], + [ + 109.3636621, + -0.0646756 + ] + ] + }, + "id": "way/1213510778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1214308472", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498655, + -0.007773 + ], + [ + 109.349885, + -0.0077529 + ], + [ + 109.3499567, + -0.0076463 + ], + [ + 109.3499668, + -0.0076396 + ], + [ + 109.3499789, + -0.0076389 + ] + ] + }, + "id": "way/1214308472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1214462558", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396193, + -0.0575458 + ], + [ + 109.3392762, + -0.0573174 + ], + [ + 109.3386502, + -0.0568354 + ], + [ + 109.3381637, + -0.056486 + ] + ] + }, + "id": "way/1214462558" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1214706008", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2998044, + -0.0483817 + ], + [ + 109.2999265, + -0.048549 + ] + ] + }, + "id": "way/1214706008" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1214954637", + "highway": "residential", + "name": "Gang Tirta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654753, + -0.0430615 + ], + [ + 109.3654029, + -0.0431031 + ], + [ + 109.3652004, + -0.0432546 + ], + [ + 109.3649778, + -0.0434276 + ], + [ + 109.3646917, + -0.0436399 + ] + ] + }, + "id": "way/1214954637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1214954638", + "highway": "residential", + "name": "Gang Tirta" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3687611, + -0.0410458 + ], + [ + 109.3686739, + -0.0410961 + ], + [ + 109.3685706, + -0.0411625 + ], + [ + 109.3683507, + -0.0412866 + ], + [ + 109.3681448, + -0.041418 + ], + [ + 109.3679316, + -0.0415608 + ], + [ + 109.3677337, + -0.0416882 + ], + [ + 109.3675125, + -0.0418244 + ], + [ + 109.367227, + -0.0419841 + ] + ] + }, + "id": "way/1214954638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1215212354", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556128, + -0.0244007 + ], + [ + 109.3555753, + -0.0244389 + ], + [ + 109.3555284, + -0.0244564 + ], + [ + 109.3553115, + -0.0244561 + ] + ] + }, + "id": "way/1215212354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1215212355", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585552, + -0.0241049 + ], + [ + 109.3585325, + -0.024571 + ], + [ + 109.3585312, + -0.0246186 + ] + ] + }, + "id": "way/1215212355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1216669764", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3804226, + -0.0543831 + ], + [ + 109.3805138, + -0.0544976 + ], + [ + 109.3806798, + -0.0547147 + ], + [ + 109.3806965, + -0.0547286 + ], + [ + 109.3807207, + -0.0547342 + ], + [ + 109.3807452, + -0.0547256 + ] + ] + }, + "id": "way/1216669764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217924817", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3015075, + -0.0100064 + ], + [ + 109.3007899, + -0.0101275 + ] + ] + }, + "id": "way/1217924817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217924818", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3008241, + -0.0104178 + ], + [ + 109.3007899, + -0.0101275 + ] + ] + }, + "id": "way/1217924818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217925359", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993092, + -0.0093829 + ], + [ + 109.3006149, + -0.0091404 + ], + [ + 109.3011237, + -0.0090402 + ], + [ + 109.3013231, + -0.0090208 + ] + ] + }, + "id": "way/1217925359" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217933338", + "highway": "residential", + "motorcar": "no", + "name": "Gang Lamtoro" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060031, + -0.011317 + ], + [ + 109.3059432, + -0.0115469 + ], + [ + 109.305935, + -0.0115523 + ], + [ + 109.3059162, + -0.011555 + ], + [ + 109.305162, + -0.0113854 + ] + ] + }, + "id": "way/1217933338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217945390", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996418, + -0.0080802 + ], + [ + 109.299672, + -0.0080761 + ], + [ + 109.2997049, + -0.0080708 + ] + ] + }, + "id": "way/1217945390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217945391", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996375, + -0.0076731 + ], + [ + 109.2996284, + -0.0076195 + ], + [ + 109.2996144, + -0.007541 + ], + [ + 109.2995829, + -0.0074394 + ] + ] + }, + "id": "way/1217945391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217945392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2987914, + -0.0092324 + ], + [ + 109.298863, + -0.0091984 + ], + [ + 109.2991706, + -0.0090522 + ] + ] + }, + "id": "way/1217945392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217945393", + "highway": "residential", + "motorcar": "destination", + "name": "Matan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2987745, + -0.0082125 + ], + [ + 109.2988928, + -0.0084757 + ], + [ + 109.2990004, + -0.0087211 + ], + [ + 109.2991706, + -0.0090522 + ] + ] + }, + "id": "way/1217945393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217945394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999853, + -0.0085224 + ], + [ + 109.3002978, + -0.0084637 + ], + [ + 109.3005471, + -0.0084107 + ], + [ + 109.3008567, + -0.0083368 + ] + ] + }, + "id": "way/1217945394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217945395", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2999853, + -0.0085224 + ], + [ + 109.3000444, + -0.0088746 + ] + ] + }, + "id": "way/1217945395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217988258", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3015369, + -0.0103 + ], + [ + 109.3015675, + -0.0104763 + ], + [ + 109.3016025, + -0.0105129 + ], + [ + 109.3016846, + -0.0105457 + ] + ] + }, + "id": "way/1217988258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1217988259", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3015202, + -0.0100747 + ], + [ + 109.3015305, + -0.0101143 + ], + [ + 109.3015369, + -0.0103 + ] + ] + }, + "id": "way/1217988259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1218217149", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.357599, + -0.0247166 + ], + [ + 109.3584493, + -0.0246988 + ], + [ + 109.358456, + -0.0246911 + ], + [ + 109.3584637, + -0.0246649 + ], + [ + 109.3584758, + -0.0245851 + ], + [ + 109.3584835, + -0.0245751 + ], + [ + 109.3585029, + -0.0245721 + ], + [ + 109.3585325, + -0.024571 + ] + ] + }, + "id": "way/1218217149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1218217150", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580001, + -0.0268443 + ], + [ + 109.3584222, + -0.0267619 + ] + ] + }, + "id": "way/1218217150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1218217151", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585423, + -0.0249592 + ], + [ + 109.3590756, + -0.0249385 + ] + ] + }, + "id": "way/1218217151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1219901824", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2871079, + -0.0274216 + ], + [ + 109.2872527, + -0.0272754 + ], + [ + 109.2872675, + -0.0272606 + ], + [ + 109.2873855, + -0.0271426 + ], + [ + 109.2875209, + -0.0270112 + ], + [ + 109.2877999, + -0.0267215 + ], + [ + 109.2880825, + -0.0264332 + ], + [ + 109.28839, + -0.0261663 + ], + [ + 109.2887105, + -0.0258619 + ], + [ + 109.2888045, + -0.0257815 + ], + [ + 109.2889573, + -0.0256516 + ], + [ + 109.2890409, + -0.0255795 + ] + ] + }, + "id": "way/1219901824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1220190130", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2895909, + -0.0168318 + ], + [ + 109.2896574, + -0.0171707 + ], + [ + 109.2896966, + -0.0173539 + ] + ] + }, + "id": "way/1220190130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1223410407", + "highway": "residential", + "name": "Komplek Sei Raya Lestari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533543, + -0.0758852 + ], + [ + 109.3533698, + -0.0758756 + ], + [ + 109.3534081, + -0.0759005 + ] + ] + }, + "id": "way/1223410407" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1223410408", + "highway": "residential", + "name": "Komplek Sei Raya Lestari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534081, + -0.0759005 + ], + [ + 109.3549289, + -0.0768479 + ], + [ + 109.355159, + -0.0770042 + ], + [ + 109.3563273, + -0.0777028 + ] + ] + }, + "id": "way/1223410408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1227091768", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348869, + 0.00379 + ], + [ + 109.3488953, + 0.0039938 + ], + [ + 109.3490154, + 0.0054663 + ] + ] + }, + "id": "way/1227091768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1229241422", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028013, + -0.0207039 + ], + [ + 109.3027827, + -0.0206662 + ] + ] + }, + "id": "way/1229241422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1230532726", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342078, + -0.0360568 + ], + [ + 109.3421512, + -0.0360313 + ] + ] + }, + "id": "way/1230532726" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1230780687", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128007, + -0.0263781 + ], + [ + 109.3131566, + -0.0262798 + ] + ] + }, + "id": "way/1230780687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1230784534", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982551, + -0.0174934 + ], + [ + 109.2981669, + -0.0174656 + ] + ] + }, + "id": "way/1230784534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1230970836", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400171, + -0.0484836 + ], + [ + 109.3401432, + -0.0488216 + ] + ] + }, + "id": "way/1230970836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1230970837", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402842, + -0.0499003 + ], + [ + 109.3401217, + -0.0493741 + ], + [ + 109.3401231, + -0.0493446 + ], + [ + 109.3401419, + -0.0493178 + ], + [ + 109.3401727, + -0.0492909 + ], + [ + 109.3402183, + -0.0492842 + ], + [ + 109.3402612, + -0.049303 + ], + [ + 109.3402787, + -0.0493392 + ], + [ + 109.3404553, + -0.0498321 + ] + ] + }, + "id": "way/1230970837" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1230973226", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424741, + -0.0460012 + ], + [ + 109.3423567, + -0.0459529 + ] + ] + }, + "id": "way/1230973226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1230973227", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422715, + -0.0459107 + ], + [ + 109.3422098, + -0.0460716 + ], + [ + 109.3421683, + -0.0461394 + ], + [ + 109.3420905, + -0.0462084 + ] + ] + }, + "id": "way/1230973227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1230973228", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423567, + -0.0459529 + ], + [ + 109.3422715, + -0.0459107 + ], + [ + 109.3421991, + -0.0458108 + ] + ] + }, + "id": "way/1230973228" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231045644", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3561629, + -0.0642474 + ], + [ + 109.3562956, + -0.0642722 + ] + ] + }, + "id": "way/1231045644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231045645", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559756, + -0.0642101 + ], + [ + 109.356052, + -0.0642253 + ], + [ + 109.3561629, + -0.0642474 + ] + ] + }, + "id": "way/1231045645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231045646", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562956, + -0.0642722 + ], + [ + 109.3563833, + -0.0642919 + ], + [ + 109.3564618, + -0.0642986 + ], + [ + 109.3565395, + -0.0642999 + ], + [ + 109.3566399, + -0.0642397 + ], + [ + 109.3567402, + -0.0641795 + ] + ] + }, + "id": "way/1231045646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231047081", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547228, + -0.0664063 + ], + [ + 109.3552722, + -0.0670539 + ], + [ + 109.3556732, + -0.0674911 + ], + [ + 109.3564376, + -0.0683427 + ], + [ + 109.3564698, + -0.0683802 + ] + ] + }, + "id": "way/1231047081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231260812", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570559, + -0.0128022 + ], + [ + 109.3570664, + -0.0126788 + ] + ] + }, + "id": "way/1231260812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231297783", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128163, + -0.0403603 + ], + [ + 109.3124534, + -0.040779 + ] + ] + }, + "id": "way/1231297783" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231298595", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3001202, + -0.0320807 + ], + [ + 109.3007027, + -0.0329523 + ], + [ + 109.3010353, + -0.0334378 + ] + ] + }, + "id": "way/1231298595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231300136", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457585, + -0.0289841 + ], + [ + 109.345926, + -0.0289249 + ], + [ + 109.3459596, + -0.0289196 + ], + [ + 109.3460428, + -0.0288498 + ], + [ + 109.3460776, + -0.0289102 + ], + [ + 109.3461599, + -0.0291384 + ], + [ + 109.3462399, + -0.0293602 + ] + ] + }, + "id": "way/1231300136" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231300166", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297162, + -0.0197082 + ], + [ + 109.2970696, + -0.0196901 + ], + [ + 109.2964715, + -0.0197987 + ], + [ + 109.2963977, + -0.0198135 + ], + [ + 109.2961657, + -0.0199221 + ], + [ + 109.296104, + -0.0199302 + ], + [ + 109.2937718, + -0.0202198 + ] + ] + }, + "id": "way/1231300166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231300945", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248883, + -0.0353226 + ], + [ + 109.3250906, + -0.0355795 + ], + [ + 109.325088, + -0.0355969 + ], + [ + 109.3250088, + -0.0356565 + ] + ] + }, + "id": "way/1231300945" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231300946", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248066, + -0.0353825 + ], + [ + 109.3248883, + -0.0353226 + ], + [ + 109.3251336, + -0.0351423 + ], + [ + 109.3252663, + -0.0351034 + ], + [ + 109.3254219, + -0.0349948 + ], + [ + 109.3254769, + -0.0350082 + ], + [ + 109.325611, + -0.0351852 + ] + ] + }, + "id": "way/1231300946" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231339133", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121812, + -0.0743763 + ], + [ + 109.3130052, + -0.0748775 + ] + ] + }, + "id": "way/1231339133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231339134", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120925, + -0.076851 + ], + [ + 109.3122879, + -0.0769632 + ], + [ + 109.3125105, + -0.0770195 + ], + [ + 109.3126339, + -0.077108 + ], + [ + 109.3132347, + -0.0775694 + ] + ] + }, + "id": "way/1231339134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1231339135", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311267, + -0.0785776 + ], + [ + 109.3124295, + -0.079478 + ] + ] + }, + "id": "way/1231339135" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232069908", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476593, + -0.0505585 + ], + [ + 109.3481664, + -0.0509284 + ], + [ + 109.3486512, + -0.0513012 + ] + ] + }, + "id": "way/1232069908" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232093887", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368023, + -0.0627962 + ], + [ + 109.3370743, + -0.062482 + ], + [ + 109.3372671, + -0.0622593 + ] + ] + }, + "id": "way/1232093887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232103396", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.305863, + -0.0335831 + ], + [ + 109.3059933, + -0.0335303 + ], + [ + 109.3060195, + -0.0335457 + ], + [ + 109.306055, + -0.0335813 + ], + [ + 109.3060845, + -0.0335866 + ], + [ + 109.3066813, + -0.0333734 + ] + ] + }, + "id": "way/1232103396" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232126613", + "access": "yes", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "motorcycle": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2809662, + -0.0446083 + ], + [ + 109.2813425, + -0.044237 + ], + [ + 109.2817065, + -0.0438618 + ], + [ + 109.2819313, + -0.0436392 + ], + [ + 109.2821781, + -0.0434026 + ], + [ + 109.2827102, + -0.0428857 + ] + ] + }, + "id": "way/1232126613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232299581", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532921, + -0.0794791 + ], + [ + 109.3534322, + -0.0795845 + ], + [ + 109.3535535, + -0.0796703 + ] + ] + }, + "id": "way/1232299581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232305817", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632236, + -0.0167558 + ], + [ + 109.3632424, + -0.0162542 + ] + ] + }, + "id": "way/1232305817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232305818", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630261, + -0.0167722 + ], + [ + 109.3632236, + -0.0167558 + ], + [ + 109.3632209, + -0.0175497 + ] + ] + }, + "id": "way/1232305818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232320036", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592325, + -0.0661942 + ], + [ + 109.3593655, + -0.0661981 + ], + [ + 109.3596603, + -0.0663974 + ], + [ + 109.3597193, + -0.0664349 + ], + [ + 109.3597917, + -0.0664873 + ], + [ + 109.3598836, + -0.0665677 + ], + [ + 109.3599406, + -0.0666301 + ] + ] + }, + "id": "way/1232320036" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232320037", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359268, + -0.066278 + ], + [ + 109.3593655, + -0.0661981 + ], + [ + 109.3594471, + -0.0661312 + ] + ] + }, + "id": "way/1232320037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232373348", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645265, + -0.0591507 + ], + [ + 109.3649791, + -0.0588188 + ] + ] + }, + "id": "way/1232373348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232583431", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463754, + -0.061924 + ], + [ + 109.3465128, + -0.062067 + ], + [ + 109.3465111, + -0.0620794 + ], + [ + 109.3465027, + -0.0620918 + ], + [ + 109.3463384, + -0.0622494 + ], + [ + 109.3463233, + -0.0622542 + ], + [ + 109.3463069, + -0.0622534 + ], + [ + 109.346201, + -0.0621407 + ], + [ + 109.3462015, + -0.0621307 + ], + [ + 109.346206, + -0.0621226 + ], + [ + 109.3463754, + -0.061924 + ] + ] + }, + "id": "way/1232583431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232583432", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460783, + -0.0616237 + ], + [ + 109.3460001, + -0.0617139 + ], + [ + 109.3459963, + -0.0617218 + ], + [ + 109.3459958, + -0.0617314 + ], + [ + 109.346036, + -0.0617726 + ], + [ + 109.3460415, + -0.0617738 + ], + [ + 109.3460474, + -0.0617723 + ], + [ + 109.3461414, + -0.0616874 + ] + ] + }, + "id": "way/1232583432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232583433", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455099, + -0.0613934 + ], + [ + 109.3456334, + -0.0615138 + ] + ] + }, + "id": "way/1232583433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232583434", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453464, + -0.0615571 + ], + [ + 109.3454723, + -0.0616882 + ] + ] + }, + "id": "way/1232583434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232583435", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457422, + -0.0613959 + ], + [ + 109.3456337, + -0.0612905 + ], + [ + 109.3456171, + -0.0612888 + ], + [ + 109.3456015, + -0.0612925 + ], + [ + 109.3455099, + -0.0613934 + ], + [ + 109.3453464, + -0.0615571 + ], + [ + 109.3452267, + -0.0616707 + ], + [ + 109.3452203, + -0.0616854 + ], + [ + 109.345222, + -0.0617002 + ], + [ + 109.3453437, + -0.0618274 + ] + ] + }, + "id": "way/1232583435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232583436", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458602, + -0.0614009 + ], + [ + 109.3456808, + -0.061595 + ], + [ + 109.3455378, + -0.0617498 + ], + [ + 109.345521, + -0.0617478 + ], + [ + 109.3454723, + -0.0616882 + ] + ] + }, + "id": "way/1232583436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232583437", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457953, + -0.0613384 + ], + [ + 109.3458602, + -0.0614009 + ], + [ + 109.3460783, + -0.0616237 + ], + [ + 109.3461414, + -0.0616874 + ], + [ + 109.3462967, + -0.0618445 + ], + [ + 109.3463754, + -0.061924 + ] + ] + }, + "id": "way/1232583437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232825338", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.322733, + -0.0440566 + ], + [ + 109.3229368, + -0.0438823 + ] + ] + }, + "id": "way/1232825338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232825339", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228415, + -0.0443724 + ], + [ + 109.3227469, + -0.044265 + ], + [ + 109.3226874, + -0.0441974 + ], + [ + 109.3226847, + -0.0441626 + ], + [ + 109.322733, + -0.0440566 + ], + [ + 109.322737, + -0.0440164 + ], + [ + 109.3227236, + -0.0439855 + ], + [ + 109.3223722, + -0.043665 + ] + ] + }, + "id": "way/1232825339" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232831384", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34236, + -0.0696932 + ], + [ + 109.3430749, + -0.0706091 + ], + [ + 109.3437494, + -0.0714701 + ] + ] + }, + "id": "way/1232831384" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1232855032", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414785, + -0.0281817 + ], + [ + 109.3417452, + -0.0285833 + ] + ] + }, + "id": "way/1232855032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1233195916", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2921968, + -0.0385844 + ], + [ + 109.2922242, + -0.0386171 + ], + [ + 109.2922913, + -0.0386909 + ], + [ + 109.2923234, + -0.038723 + ], + [ + 109.2923556, + -0.0387512 + ], + [ + 109.2924146, + -0.0387968 + ], + [ + 109.2924327, + -0.0388149 + ], + [ + 109.2924508, + -0.0388357 + ], + [ + 109.2927673, + -0.0392568 + ], + [ + 109.2943324, + -0.0412537 + ] + ] + }, + "id": "way/1233195916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1233234627", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474648, + -0.0185489 + ], + [ + 109.3474314, + -0.018586 + ], + [ + 109.347417, + -0.0186038 + ], + [ + 109.3474128, + -0.0186202 + ], + [ + 109.3474043, + -0.0187258 + ], + [ + 109.3473979, + -0.0190095 + ], + [ + 109.3473952, + -0.0193139 + ], + [ + 109.3473942, + -0.0194909 + ], + [ + 109.3473919, + -0.0199181 + ], + [ + 109.3473967, + -0.01993 + ], + [ + 109.3474086, + -0.0199355 + ], + [ + 109.347467, + -0.0199335 + ], + [ + 109.3474811, + -0.01994 + ], + [ + 109.3474864, + -0.019953 + ], + [ + 109.3474904, + -0.0200026 + ], + [ + 109.3475801, + -0.0204493 + ], + [ + 109.3476916, + -0.021005 + ] + ] + }, + "id": "way/1233234627" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1234542089", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444425, + -0.0489883 + ], + [ + 109.3445185, + -0.0490711 + ] + ] + }, + "id": "way/1234542089" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1234542090", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443801, + -0.0489042 + ], + [ + 109.3444425, + -0.0489883 + ] + ] + }, + "id": "way/1234542090" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1234542091", + "covered": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446088, + -0.0490076 + ], + [ + 109.3447829, + -0.0488436 + ] + ] + }, + "id": "way/1234542091" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1234542092", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443819, + -0.0491833 + ], + [ + 109.3444379, + -0.0491387 + ], + [ + 109.3444884, + -0.0490985 + ], + [ + 109.3445185, + -0.0490711 + ], + [ + 109.3446088, + -0.0490076 + ] + ] + }, + "id": "way/1234542092" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1234542093", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441726, + -0.0489315 + ], + [ + 109.3442278, + -0.0488859 + ], + [ + 109.3442758, + -0.0488464 + ], + [ + 109.3443033, + -0.0488296 + ], + [ + 109.3443127, + -0.0488266 + ], + [ + 109.3443248, + -0.0488323 + ], + [ + 109.3443801, + -0.0489042 + ] + ] + }, + "id": "way/1234542093" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1234777340", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514635, + -0.0783593 + ], + [ + 109.3512878, + -0.0782132 + ], + [ + 109.3511556, + -0.0780978 + ] + ] + }, + "id": "way/1234777340" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1234862543", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257585, + -0.04337 + ], + [ + 109.3258527, + -0.0435916 + ] + ] + }, + "id": "way/1234862543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1236250150", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "name:id": "Jalan Gajah Mada", + "name:ms": "Jalan Gajah Mada", + "oneway": "yes", + "source": "GPS" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421512, + -0.0360313 + ], + [ + 109.3422512, + -0.0363786 + ], + [ + 109.3423685, + -0.0367879 + ], + [ + 109.3424667, + -0.0370172 + ], + [ + 109.3424983, + -0.0370828 + ], + [ + 109.3425351, + -0.0371408 + ], + [ + 109.3425685, + -0.0371824 + ], + [ + 109.3428408, + -0.0374613 + ], + [ + 109.3429039, + -0.0375335 + ], + [ + 109.3429397, + -0.0375754 + ], + [ + 109.3429743, + -0.0376193 + ], + [ + 109.3430028, + -0.0376592 + ], + [ + 109.3430286, + -0.0377015 + ], + [ + 109.3430594, + -0.0377511 + ], + [ + 109.3430859, + -0.037797 + ], + [ + 109.3431501, + -0.0379244 + ], + [ + 109.3432878, + -0.0381977 + ], + [ + 109.3433076, + -0.0382337 + ], + [ + 109.3433273, + -0.0382698 + ], + [ + 109.3435436, + -0.0386648 + ], + [ + 109.3437639, + -0.0390186 + ], + [ + 109.3439359, + -0.0392806 + ], + [ + 109.3440244, + -0.0394277 + ], + [ + 109.3441966, + -0.0397226 + ] + ] + }, + "id": "way/1236250150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1236250188", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "name:id": "Jalan Gajah Mada", + "name:ms": "Jalan Gajah Mada", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441172, + -0.0397779 + ], + [ + 109.3441065, + -0.0397632 + ], + [ + 109.3439464, + -0.0394723 + ], + [ + 109.3437129, + -0.0390858 + ], + [ + 109.3434871, + -0.0387001 + ], + [ + 109.3432818, + -0.0383363 + ], + [ + 109.3432625, + -0.0383022 + ], + [ + 109.3432022, + -0.0381954 + ], + [ + 109.3431137, + -0.0380103 + ], + [ + 109.3430091, + -0.0378111 + ], + [ + 109.3429656, + -0.0377367 + ], + [ + 109.3429119, + -0.0376602 + ], + [ + 109.3428764, + -0.0376113 + ], + [ + 109.3428254, + -0.0375523 + ], + [ + 109.3427657, + -0.0374859 + ], + [ + 109.3426106, + -0.0373307 + ], + [ + 109.3425579, + -0.037274 + ], + [ + 109.3425002, + -0.0372136 + ], + [ + 109.3424586, + -0.0371533 + ], + [ + 109.3424184, + -0.0370775 + ], + [ + 109.3423735, + -0.0369749 + ], + [ + 109.3423171, + -0.0368448 + ], + [ + 109.3422829, + -0.036755 + ], + [ + 109.3422601, + -0.0366866 + ], + [ + 109.3422062, + -0.0365038 + ], + [ + 109.3421842, + -0.0364173 + ], + [ + 109.3421308, + -0.0362396 + ], + [ + 109.342078, + -0.0360568 + ] + ] + }, + "id": "way/1236250188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1236468896", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214026, + 0.0086126 + ], + [ + 109.3214026, + 0.0089532 + ], + [ + 109.3214187, + 0.0089934 + ], + [ + 109.3214616, + 0.0090069 + ], + [ + 109.3220678, + 0.0090444 + ] + ] + }, + "id": "way/1236468896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1236478610", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Jalan Perdana Komp Bali Agung 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360788, + -0.053366 + ], + [ + 109.3361554, + -0.0535677 + ] + ] + }, + "id": "way/1236478610" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1236740295", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3548547, + -0.0606733 + ], + [ + 109.3548323, + -0.060697 + ], + [ + 109.3548102, + -0.0607245 + ], + [ + 109.3548035, + -0.0607379 + ], + [ + 109.3548028, + -0.0607527 + ], + [ + 109.3548095, + -0.0607681 + ], + [ + 109.3549959, + -0.0609458 + ], + [ + 109.3550161, + -0.0609733 + ], + [ + 109.3550268, + -0.0610021 + ], + [ + 109.3550288, + -0.061029 + ], + [ + 109.3550268, + -0.0610544 + ], + [ + 109.3550127, + -0.0610927 + ], + [ + 109.3548578, + -0.0613367 + ], + [ + 109.3548417, + -0.0613703 + ], + [ + 109.3548363, + -0.0613958 + ], + [ + 109.354841, + -0.0614279 + ] + ] + }, + "id": "way/1236740295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1236741389", + "highway": "service", + "name": "Jalan Letkol Sugiono" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3359919, + -0.0493298 + ], + [ + 109.3360554, + -0.049249 + ], + [ + 109.3363868, + -0.0490668 + ], + [ + 109.3366689, + -0.0489085 + ], + [ + 109.337009, + -0.0488162 + ], + [ + 109.337383, + -0.0486366 + ], + [ + 109.3378191, + -0.0484434 + ] + ] + }, + "id": "way/1236741389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1236741390", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3378191, + -0.0484434 + ], + [ + 109.3383182, + -0.0482293 + ], + [ + 109.3383998, + -0.0481899 + ] + ] + }, + "id": "way/1236741390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1236741391", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383998, + -0.0481899 + ], + [ + 109.3384722, + -0.0481349 + ], + [ + 109.3385527, + -0.0480598 + ], + [ + 109.3388236, + -0.0477326 + ], + [ + 109.3390381, + -0.0474965 + ], + [ + 109.3391602, + -0.0473638 + ], + [ + 109.3392594, + -0.0472806 + ], + [ + 109.3393841, + -0.0471935 + ], + [ + 109.3394794, + -0.0471331 + ], + [ + 109.3397516, + -0.0469829 + ], + [ + 109.3400848, + -0.0468388 + ] + ] + }, + "id": "way/1236741391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1237146038", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401663, + 0.0152249 + ], + [ + 109.3410297, + 0.0203879 + ], + [ + 109.341662, + 0.0237621 + ] + ] + }, + "id": "way/1237146038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1237147250", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2959038, + 0.0149697 + ], + [ + 109.2970616, + 0.014445 + ] + ] + }, + "id": "way/1237147250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1237151166", + "highway": "residential", + "name": "JALN KARYA USAHA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.29469, + 0.0104217 + ], + [ + 109.2948951, + 0.0109732 + ], + [ + 109.2949748, + 0.011209 + ], + [ + 109.2949807, + 0.0112262 + ], + [ + 109.2950976, + 0.0115859 + ], + [ + 109.295405, + 0.0125317 + ], + [ + 109.2957249, + 0.0135344 + ], + [ + 109.2957738, + 0.0137266 + ], + [ + 109.2958571, + 0.0140538 + ], + [ + 109.2958666, + 0.0141191 + ], + [ + 109.295878, + 0.014268 + ], + [ + 109.2958754, + 0.0144403 + ], + [ + 109.295874, + 0.0145919 + ], + [ + 109.2958774, + 0.0147589 + ], + [ + 109.2958908, + 0.014895 + ], + [ + 109.2959038, + 0.0149697 + ] + ] + }, + "id": "way/1237151166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1237151389", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680538, + 0.0152788 + ], + [ + 109.3679827, + 0.015288 + ], + [ + 109.3677476, + 0.0153261 + ], + [ + 109.3652929, + 0.0156762 + ], + [ + 109.3652634, + 0.0156842 + ] + ] + }, + "id": "way/1237151389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1237151581", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2990001, + 0.0257763 + ], + [ + 109.2995077, + 0.0256701 + ] + ] + }, + "id": "way/1237151581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1237158779", + "highway": "residential", + "name": "Jalan Parit Pangeran 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593563, + 0.0190236 + ], + [ + 109.359252, + 0.0183931 + ], + [ + 109.3592217, + 0.018266 + ], + [ + 109.3590186, + 0.0170627 + ], + [ + 109.3589816, + 0.0168435 + ], + [ + 109.3588606, + 0.0162126 + ], + [ + 109.3588366, + 0.0160257 + ], + [ + 109.3588046, + 0.0157364 + ], + [ + 109.3587943, + 0.0156613 + ], + [ + 109.3587432, + 0.0154381 + ], + [ + 109.3586788, + 0.0151957 + ], + [ + 109.3586169, + 0.0149051 + ], + [ + 109.3585807, + 0.0147653 + ], + [ + 109.3584847, + 0.0144128 + ], + [ + 109.3584539, + 0.0142997 + ], + [ + 109.3584305, + 0.0142036 + ], + [ + 109.358401, + 0.0140709 + ], + [ + 109.3582843, + 0.0131576 + ], + [ + 109.3582535, + 0.0130114 + ], + [ + 109.358224, + 0.0128719 + ], + [ + 109.3581898, + 0.0125832 + ], + [ + 109.3581751, + 0.0124106 + ], + [ + 109.358136, + 0.0119523 + ], + [ + 109.358036, + 0.0110118 + ] + ] + }, + "id": "way/1237158779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1237207279", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113376, + 0.0072634 + ], + [ + 109.3112519, + 0.0087817 + ], + [ + 109.3112424, + 0.0090068 + ], + [ + 109.3112358, + 0.0091201 + ], + [ + 109.3112088, + 0.009401 + ], + [ + 109.3111998, + 0.0094615 + ], + [ + 109.3111468, + 0.0104344 + ], + [ + 109.3111137, + 0.0109514 + ], + [ + 109.3110765, + 0.0111752 + ], + [ + 109.3110702, + 0.0112198 + ], + [ + 109.3110338, + 0.0115289 + ], + [ + 109.3110077, + 0.0118755 + ], + [ + 109.3109792, + 0.012224 + ], + [ + 109.310938, + 0.0124937 + ], + [ + 109.310883, + 0.0129819 + ], + [ + 109.3108347, + 0.0137463 + ], + [ + 109.3107998, + 0.0142479 + ], + [ + 109.310765, + 0.0147092 + ], + [ + 109.3107138, + 0.0152821 + ], + [ + 109.3106625, + 0.0159292 + ] + ] + }, + "id": "way/1237207279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1237969537", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425381, + -0.011717 + ], + [ + 109.3425827, + -0.0117306 + ], + [ + 109.3426082, + -0.0117239 + ], + [ + 109.3426377, + -0.0117092 + ], + [ + 109.3426792, + -0.0116998 + ], + [ + 109.3427128, + -0.0116944 + ], + [ + 109.3427476, + -0.0117025 + ], + [ + 109.3427865, + -0.011732 + ], + [ + 109.3428254, + -0.0117843 + ], + [ + 109.3428348, + -0.0118272 + ], + [ + 109.3428335, + -0.0118835 + ], + [ + 109.3428147, + -0.0119117 + ] + ] + }, + "id": "way/1237969537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1237969538", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431306, + -0.0142492 + ], + [ + 109.343502, + -0.0144417 + ], + [ + 109.343662, + -0.0144958 + ] + ] + }, + "id": "way/1237969538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1239794877", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337644, + -0.0523362 + ], + [ + 109.3336631, + -0.0523688 + ], + [ + 109.3336241, + -0.0523768 + ], + [ + 109.333604, + -0.0523876 + ], + [ + 109.3335979, + -0.0523963 + ], + [ + 109.3336026, + -0.0524171 + ] + ] + }, + "id": "way/1239794877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1241379532", + "bicycle": "no", + "foot": "yes", + "footway": "sidewalk", + "highway": "footway", + "horse": "no", + "motor_vehicle": "no", + "name": "Trotoar Jalan Sutan Syahrir", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319466, + -0.0474767 + ], + [ + 109.3207398, + -0.0462254 + ], + [ + 109.3211861, + -0.0457871 + ] + ] + }, + "id": "way/1241379532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1241385516", + "bicycle": "no", + "foot": "designated", + "footway": "sidewalk", + "highway": "footway", + "horse": "no", + "motor_vehicle": "no", + "name": "Trotoar Jalan Sutan Syahrir", + "surface": "paved", + "width": "0" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211861, + -0.0457871 + ], + [ + 109.3212321, + -0.0457439 + ], + [ + 109.321922, + -0.0450921 + ], + [ + 109.3220404, + -0.0449734 + ], + [ + 109.3223652, + -0.0446477 + ], + [ + 109.3227469, + -0.044265 + ], + [ + 109.3230853, + -0.0439256 + ] + ] + }, + "id": "way/1241385516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1241845434", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285589, + -0.0441798 + ], + [ + 109.3288578, + -0.0440003 + ], + [ + 109.3289557, + -0.0439426 + ] + ] + }, + "id": "way/1241845434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1243105425", + "highway": "residential", + "name": "Gang Alpokat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3169713, + -0.010985 + ], + [ + 109.3169984, + -0.0109226 + ] + ] + }, + "id": "way/1243105425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1243930076", + "highway": "tertiary", + "name": "Jalan Agus Salim", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339159, + -0.0295164 + ], + [ + 109.3390927, + -0.0295632 + ] + ] + }, + "id": "way/1243930076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1243930148", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390927, + -0.0295632 + ], + [ + 109.3390608, + -0.0294926 + ] + ] + }, + "id": "way/1243930148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1243930149", + "highway": "tertiary", + "name": "Jalan Gajah Mada", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391503, + -0.02967 + ], + [ + 109.3390927, + -0.0295632 + ] + ] + }, + "id": "way/1243930149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1246747145", + "highway": "residential", + "name": "Gang Bukit Raya 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3183563, + -0.015632 + ], + [ + 109.31906, + -0.0199509 + ], + [ + 109.319153, + -0.0204703 + ] + ] + }, + "id": "way/1246747145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1246747602", + "highway": "residential", + "name": "Gang Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194892, + -0.0154218 + ], + [ + 109.3195174, + -0.015574 + ] + ] + }, + "id": "way/1246747602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1249395348", + "highway": "residential", + "name": "Gang Sudimoro" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288021, + -0.0470079 + ], + [ + 109.3289253, + -0.0469442 + ], + [ + 109.329199, + -0.0468122 + ] + ] + }, + "id": "way/1249395348" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1258115236", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.285749, + -0.0287433 + ], + [ + 109.2858686, + -0.028629 + ], + [ + 109.2860962, + -0.0284033 + ], + [ + 109.2863094, + -0.0281882 + ], + [ + 109.286782, + -0.0277112 + ], + [ + 109.2868863, + -0.0276185 + ], + [ + 109.2871079, + -0.0274216 + ] + ] + }, + "id": "way/1258115236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1258115237", + "highway": "residential", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2850613, + -0.029401 + ], + [ + 109.285749, + -0.0287433 + ] + ] + }, + "id": "way/1258115237" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1258115238", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2863094, + -0.0281882 + ], + [ + 109.2852672, + -0.0268701 + ] + ] + }, + "id": "way/1258115238" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317614", + "highway": "residential", + "name": "Jalan Pemda", + "name:en": "Pemda Street", + "oneway": "no", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640799, + -0.0359336 + ], + [ + 109.3641501, + -0.036018 + ], + [ + 109.3650676, + -0.0370379 + ] + ] + }, + "id": "way/1259317614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317615", + "highway": "tertiary", + "name": "Jalan Pemda", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3741358, + -0.0470568 + ], + [ + 109.3742447, + -0.0471825 + ], + [ + 109.3745167, + -0.0474962 + ], + [ + 109.3745479, + -0.0475325 + ], + [ + 109.3745689, + -0.047557 + ], + [ + 109.3749083, + -0.0479522 + ], + [ + 109.3754447, + -0.0485744 + ], + [ + 109.3759409, + -0.0491752 + ], + [ + 109.3761685, + -0.0494801 + ] + ] + }, + "id": "way/1259317615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317616", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3745479, + -0.0475325 + ], + [ + 109.3748832, + -0.0472344 + ], + [ + 109.3764114, + -0.046076 + ] + ] + }, + "id": "way/1259317616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317617", + "highway": "living_street", + "name": "Gang Trisakti" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3773025, + -0.0521609 + ], + [ + 109.3776844, + -0.0518857 + ], + [ + 109.3778317, + -0.0517796 + ] + ] + }, + "id": "way/1259317617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317618", + "highway": "residential", + "name": "Jalan Sami Sumping" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3694051, + -0.0447435 + ], + [ + 109.3702939, + -0.044298 + ], + [ + 109.3707579, + -0.0440593 + ], + [ + 109.3712807, + -0.0438036 + ] + ] + }, + "id": "way/1259317618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317619", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3712807, + -0.0438036 + ], + [ + 109.3714879, + -0.0440263 + ], + [ + 109.3715485, + -0.0441053 + ], + [ + 109.3717695, + -0.044372 + ], + [ + 109.3719314, + -0.0445605 + ], + [ + 109.3723901, + -0.0450946 + ], + [ + 109.3725409, + -0.0452809 + ] + ] + }, + "id": "way/1259317619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317620", + "highway": "residential", + "name": "Gang Sepakat", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751526, + -0.0119291 + ], + [ + 109.3754101, + -0.0112574 + ], + [ + 109.3759849, + -0.0114461 + ] + ] + }, + "id": "way/1259317620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317621", + "highway": "living_street", + "layer": "-1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751309, + -0.0121521 + ], + [ + 109.3761908, + -0.0124665 + ] + ] + }, + "id": "way/1259317621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317622", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3750748, + -0.0121354 + ], + [ + 109.3751309, + -0.0121521 + ] + ] + }, + "id": "way/1259317622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317623", + "highway": "living_street", + "layer": "-1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3750643, + -0.0121323 + ], + [ + 109.3750748, + -0.0121354 + ] + ] + }, + "id": "way/1259317623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317624", + "highway": "path", + "motor_vehicle": "no", + "surface": "ground" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751422, + -0.011953 + ], + [ + 109.3746403, + -0.0118137 + ] + ] + }, + "id": "way/1259317624" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317625", + "highway": "living_street", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3748971, + -0.0125625 + ], + [ + 109.3740743, + -0.0123984 + ], + [ + 109.3740207, + -0.012385 + ], + [ + 109.3740019, + -0.0124433 + ] + ] + }, + "id": "way/1259317625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317630", + "highway": "living_street", + "layer": "-1", + "name": "Gang Sepakat Jalur 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.37412, + -0.0142603 + ], + [ + 109.3745351, + -0.0143788 + ], + [ + 109.3745593, + -0.0144098 + ] + ] + }, + "id": "way/1259317630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317631", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "name": "Gang Sepakat Jalur 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740635, + -0.0142442 + ], + [ + 109.37412, + -0.0142603 + ] + ] + }, + "id": "way/1259317631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1259317632", + "highway": "living_street", + "layer": "-1", + "name": "Gang Sepakat Jalur 4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740351, + -0.014236 + ], + [ + 109.3740635, + -0.0142442 + ] + ] + }, + "id": "way/1259317632" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1266353046", + "highway": "residential", + "name": "Ade Irma Suryani Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388269, + -0.0380706 + ], + [ + 109.3387847, + -0.0380948 + ], + [ + 109.3387575, + -0.0381113 + ], + [ + 109.3385385, + -0.0382634 + ] + ] + }, + "id": "way/1266353046" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1266353201", + "highway": "living_street", + "name": "Ade Irma Suryani Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3391092, + -0.0377863 + ], + [ + 109.3388598, + -0.0379579 + ], + [ + 109.3388283, + -0.0379794 + ], + [ + 109.3388101, + -0.0379955 + ], + [ + 109.3388021, + -0.0380103 + ], + [ + 109.3387981, + -0.0380304 + ], + [ + 109.3388269, + -0.0380706 + ] + ] + }, + "id": "way/1266353201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908153", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605626, + -0.0687498 + ], + [ + 109.3605369, + -0.068713 + ], + [ + 109.35854, + -0.0663831 + ], + [ + 109.3585073, + -0.0663759 + ], + [ + 109.3577764, + -0.0655287 + ], + [ + 109.3575194, + -0.0652371 + ], + [ + 109.3574934, + -0.06523 + ], + [ + 109.3572091, + -0.0649145 + ], + [ + 109.3570202, + -0.0647054 + ], + [ + 109.3566399, + -0.0642397 + ], + [ + 109.3563024, + -0.0638681 + ], + [ + 109.3562715, + -0.0638023 + ], + [ + 109.356239, + -0.0637304 + ], + [ + 109.3562043, + -0.0636552 + ], + [ + 109.356167, + -0.063601 + ] + ] + }, + "id": "way/1267908153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908154", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356167, + -0.063601 + ], + [ + 109.3561242, + -0.063642 + ], + [ + 109.3545332, + -0.0617249 + ], + [ + 109.3543813, + -0.0615421 + ], + [ + 109.3532491, + -0.0601796 + ], + [ + 109.3528567, + -0.0597124 + ], + [ + 109.3529009, + -0.0596705 + ], + [ + 109.3528379, + -0.0595913 + ], + [ + 109.3525273, + -0.0592007 + ], + [ + 109.3521974, + -0.0587857 + ], + [ + 109.3518528, + -0.0583943 + ], + [ + 109.3518156, + -0.0583611 + ], + [ + 109.3517783, + -0.0583269 + ], + [ + 109.3517545, + -0.0582994 + ], + [ + 109.3517069, + -0.0582235 + ] + ] + }, + "id": "way/1267908154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908155", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3517069, + -0.0582235 + ], + [ + 109.3514592, + -0.0579273 + ], + [ + 109.3512586, + -0.0577124 + ], + [ + 109.3496791, + -0.0557482 + ] + ] + }, + "id": "way/1267908155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908156", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498523, + -0.0550368 + ], + [ + 109.3498953, + -0.0551404 + ], + [ + 109.3499406, + -0.0553187 + ], + [ + 109.3499477, + -0.0554686 + ], + [ + 109.3498774, + -0.0555783 + ], + [ + 109.3499151, + -0.0556216 + ], + [ + 109.351695, + -0.0577757 + ], + [ + 109.3518993, + -0.0580427 + ] + ] + }, + "id": "way/1267908156" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908157", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518993, + -0.0580427 + ], + [ + 109.3518431, + -0.0580977 + ], + [ + 109.3518726, + -0.0581317 + ], + [ + 109.3518931, + -0.0581571 + ], + [ + 109.3519022, + -0.0581659 + ], + [ + 109.3519408, + -0.0581113 + ], + [ + 109.3519604, + -0.0581279 + ], + [ + 109.3520084, + -0.0581849 + ], + [ + 109.353389, + -0.0598192 + ], + [ + 109.3537416, + -0.0602414 + ] + ] + }, + "id": "way/1267908157" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908158", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537416, + -0.0602414 + ], + [ + 109.3538665, + -0.060413 + ], + [ + 109.3539446, + -0.0604923 + ], + [ + 109.3540114, + -0.0605674 + ], + [ + 109.3541746, + -0.060763 + ], + [ + 109.3544886, + -0.0611435 + ], + [ + 109.354778, + -0.061494 + ], + [ + 109.3550397, + -0.061844 + ], + [ + 109.356329, + -0.0633802 + ], + [ + 109.3563464, + -0.0634041 + ], + [ + 109.3564224, + -0.0635046 + ] + ] + }, + "id": "way/1267908158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908159", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564224, + -0.0635046 + ], + [ + 109.3572229, + -0.0644916 + ], + [ + 109.357492, + -0.0647963 + ], + [ + 109.357893, + -0.0652502 + ], + [ + 109.3588138, + -0.0662227 + ], + [ + 109.3603465, + -0.0679972 + ], + [ + 109.3608856, + -0.0686213 + ], + [ + 109.3613132, + -0.0691239 + ], + [ + 109.3614154, + -0.069244 + ] + ] + }, + "id": "way/1267908159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908160", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328999, + -0.0351503 + ], + [ + 109.3328553, + -0.0351406 + ], + [ + 109.3328112, + -0.0350908 + ], + [ + 109.3321658, + -0.0343626 + ], + [ + 109.3321691, + -0.0342791 + ], + [ + 109.3321992, + -0.0342123 + ], + [ + 109.3326742, + -0.033789 + ], + [ + 109.3330021, + -0.0334928 + ], + [ + 109.3340763, + -0.0324203 + ], + [ + 109.334713, + -0.0317677 + ], + [ + 109.3354045, + -0.0311637 + ], + [ + 109.3357204, + -0.0308308 + ], + [ + 109.3362705, + -0.0302874 + ], + [ + 109.337818, + -0.03025 + ], + [ + 109.337845, + -0.0302066 + ] + ] + }, + "id": "way/1267908160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1267908169", + "access": "private", + "highway": "residential", + "maxspeed": "20" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585862, + -0.0692483 + ], + [ + 109.3583354, + -0.0692443 + ], + [ + 109.3580972, + -0.069061 + ], + [ + 109.3579769, + -0.0690009 + ], + [ + 109.35781, + -0.0692413 + ] + ] + }, + "id": "way/1267908169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059011", + "bicycle": "no", + "bridge": "yes", + "crossing": "bridge", + "crossing:markings": "no", + "foot": "yes", + "footway": "crossing", + "highway": "footway", + "horse": "no", + "layer": "1", + "motor_vehicle": "no", + "surface": "metal" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464311, + -0.0513898 + ], + [ + 109.3461537, + -0.051626 + ], + [ + 109.3461025, + -0.0516702 + ] + ] + }, + "id": "way/1268059011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059012", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no", + "traffic_signals:sound": "walk", + "traffic_signals:vibration": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497338, + -0.0556984 + ], + [ + 109.3496952, + -0.0557326 + ], + [ + 109.3496791, + -0.0557482 + ] + ] + }, + "id": "way/1268059012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059013", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no", + "traffic_signals:sound": "walk", + "traffic_signals:vibration": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491344, + -0.0555983 + ], + [ + 109.3492242, + -0.0556609 + ] + ] + }, + "id": "way/1268059013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059014", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no", + "traffic_signals:sound": "walk", + "traffic_signals:vibration": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349225, + -0.054973 + ], + [ + 109.3492693, + -0.0549242 + ], + [ + 109.3493419, + -0.0548637 + ] + ] + }, + "id": "way/1268059014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059015", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no", + "traffic_signals:sound": "walk", + "traffic_signals:vibration": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497738, + -0.0549755 + ], + [ + 109.3498124, + -0.0550023 + ], + [ + 109.3498523, + -0.0550368 + ] + ] + }, + "id": "way/1268059015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059017", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496791, + -0.0557482 + ], + [ + 109.3494858, + -0.0557619 + ], + [ + 109.3493375, + -0.0557248 + ] + ] + }, + "id": "way/1268059017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059018", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "crossing:signals": "no", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493375, + -0.0557248 + ], + [ + 109.3492773, + -0.0556928 + ] + ] + }, + "id": "way/1268059018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059019", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492773, + -0.0556928 + ], + [ + 109.3492242, + -0.0556609 + ] + ] + }, + "id": "way/1268059019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059020", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490647, + -0.0550272 + ], + [ + 109.3480608, + -0.0537932 + ], + [ + 109.3474222, + -0.0530125 + ], + [ + 109.3471346, + -0.0526615 + ] + ] + }, + "id": "way/1268059020" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059021", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471346, + -0.0526615 + ], + [ + 109.3470627, + -0.0525805 + ], + [ + 109.3468937, + -0.05239 + ] + ] + }, + "id": "way/1268059021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059022", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468937, + -0.05239 + ], + [ + 109.346643, + -0.0521052 + ], + [ + 109.3465171, + -0.0519936 + ], + [ + 109.3464601, + -0.0519351 + ] + ] + }, + "id": "way/1268059022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059023", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491344, + -0.0555983 + ], + [ + 109.3490595, + -0.0554043 + ], + [ + 109.349081, + -0.0550817 + ], + [ + 109.3490647, + -0.0550272 + ] + ] + }, + "id": "way/1268059023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268059024", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463831, + -0.0518945 + ], + [ + 109.3462342, + -0.0517176 + ], + [ + 109.3461537, + -0.051626 + ] + ] + }, + "id": "way/1268059024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268609497", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt", + "tactile_paving": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3595798, + -0.0722912 + ], + [ + 109.3596227, + -0.0723187 + ], + [ + 109.3596638, + -0.072346 + ] + ] + }, + "id": "way/1268609497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1268972915", + "highway": "residential", + "name": "Jalan Halmahera 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274436, + -0.0417131 + ], + [ + 109.328739, + -0.0405486 + ] + ] + }, + "id": "way/1268972915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780692", + "highway": "trunk", + "maxweight": "5", + "motorcycle": "yes", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3553356, + -0.0349694 + ], + [ + 109.3559052, + -0.0346237 + ], + [ + 109.3559776, + -0.0345797 + ] + ] + }, + "id": "way/1271780692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780693", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353386, + -0.0364837 + ], + [ + 109.3534, + -0.0365014 + ] + ] + }, + "id": "way/1271780693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780694", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539003, + -0.0386345 + ], + [ + 109.3539512, + -0.0385594 + ] + ] + }, + "id": "way/1271780694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780695", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3530259, + -0.0367436 + ], + [ + 109.3526879, + -0.0369903 + ], + [ + 109.3530836, + -0.0375257 + ], + [ + 109.3530983, + -0.0375456 + ], + [ + 109.3534244, + -0.0379991 + ], + [ + 109.3535998, + -0.0382429 + ], + [ + 109.3539003, + -0.0386345 + ], + [ + 109.3545172, + -0.0393426 + ] + ] + }, + "id": "way/1271780695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780696", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508841, + -0.0341552 + ], + [ + 109.3507307, + -0.0342327 + ] + ] + }, + "id": "way/1271780696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780697", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512396, + -0.0346246 + ], + [ + 109.3510293, + -0.0347091 + ] + ] + }, + "id": "way/1271780697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780698", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351501, + -0.0346863 + ], + [ + 109.3512854, + -0.0347593 + ], + [ + 109.3511145, + -0.0348172 + ] + ] + }, + "id": "way/1271780698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780699", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518336, + -0.0359054 + ], + [ + 109.3520455, + -0.0357612 + ] + ] + }, + "id": "way/1271780699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780700", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520385, + -0.0362038 + ], + [ + 109.3519945, + -0.0362382 + ] + ] + }, + "id": "way/1271780700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780701", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3522182, + -0.0364349 + ], + [ + 109.352176, + -0.036467 + ] + ] + }, + "id": "way/1271780701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780702", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502585, + -0.0333525 + ], + [ + 109.3504731, + -0.0332527 + ], + [ + 109.3506655, + -0.0336644 + ], + [ + 109.3508841, + -0.0341552 + ], + [ + 109.3510625, + -0.0345334 + ], + [ + 109.3511926, + -0.0344865 + ], + [ + 109.3512396, + -0.0346246 + ], + [ + 109.3512854, + -0.0347593 + ], + [ + 109.3513628, + -0.0349865 + ], + [ + 109.3514501, + -0.0352429 + ], + [ + 109.3518336, + -0.0359054 + ], + [ + 109.3519127, + -0.0360422 + ], + [ + 109.3520385, + -0.0362038 + ], + [ + 109.3522182, + -0.0364349 + ], + [ + 109.3522413, + -0.0364646 + ] + ] + }, + "id": "way/1271780702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780703", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504594, + -0.0337617 + ], + [ + 109.3506655, + -0.0336644 + ], + [ + 109.3507795, + -0.0335933 + ] + ] + }, + "id": "way/1271780703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780704", + "highway": "trunk", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540922, + -0.0356128 + ], + [ + 109.3553356, + -0.0349694 + ] + ] + }, + "id": "way/1271780704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780705", + "access": "yes", + "bridge": "yes", + "foot": "yes", + "highway": "trunk", + "layer": "1", + "name": "Jalan Perintis Kemerdekaan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495363, + -0.0383194 + ], + [ + 109.3540922, + -0.0356128 + ] + ] + }, + "id": "way/1271780705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271780706", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543254, + -0.0351584 + ], + [ + 109.3544273, + -0.0353179 + ], + [ + 109.3558346, + -0.0344258 + ] + ] + }, + "id": "way/1271780706" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271781529", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474327, + -0.027236 + ], + [ + 109.3473443, + -0.0272479 + ], + [ + 109.3471196, + -0.0268275 + ] + ] + }, + "id": "way/1271781529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1271781530", + "bridge": "yes", + "highway": "path", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471196, + -0.0268275 + ], + [ + 109.3469949, + -0.0267617 + ], + [ + 109.3464249, + -0.0253844 + ], + [ + 109.3463631, + -0.0253312 + ], + [ + 109.3463002, + -0.0252771 + ], + [ + 109.3461098, + -0.0247876 + ], + [ + 109.3463418, + -0.0236061 + ], + [ + 109.3466932, + -0.0234961 + ], + [ + 109.3467857, + -0.0234143 + ], + [ + 109.3471022, + -0.023356 + ], + [ + 109.3471538, + -0.0233419 + ], + [ + 109.347237, + -0.0233332 + ], + [ + 109.347353, + -0.023301 + ], + [ + 109.3474006, + -0.0233084 + ], + [ + 109.3477446, + -0.0232843 + ], + [ + 109.3480222, + -0.0232896 + ], + [ + 109.348328, + -0.0233379 + ], + [ + 109.3502203, + -0.0230241 + ], + [ + 109.3528113, + -0.0223374 + ], + [ + 109.3539405, + -0.0220531 + ] + ] + }, + "id": "way/1271781530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1274090290", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567425, + -0.0180223 + ], + [ + 109.3567395, + -0.018099 + ], + [ + 109.3567489, + -0.018215 + ], + [ + 109.3567756, + -0.0184026 + ], + [ + 109.3568077, + -0.0185709 + ], + [ + 109.3568698, + -0.0188589 + ], + [ + 109.3568919, + -0.0189689 + ], + [ + 109.3569014, + -0.0190943 + ], + [ + 109.3569056, + -0.0191101 + ], + [ + 109.3569164, + -0.0191268 + ], + [ + 109.3569418, + -0.0191268 + ], + [ + 109.357194, + -0.0190746 + ] + ] + }, + "id": "way/1274090290" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1274090291", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537963, + -0.0170803 + ], + [ + 109.3537594, + -0.0170904 + ], + [ + 109.3537447, + -0.0171011 + ], + [ + 109.353741, + -0.0171135 + ], + [ + 109.3537511, + -0.0174236 + ] + ] + }, + "id": "way/1274090291" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1274090292", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516459, + -0.0159806 + ], + [ + 109.3517243, + -0.0159967 + ], + [ + 109.3517686, + -0.0160007 + ], + [ + 109.3518148, + -0.0159987 + ], + [ + 109.351843, + -0.0159893 + ], + [ + 109.3518638, + -0.0159685 + ], + [ + 109.3519409, + -0.0158203 + ], + [ + 109.3519503, + -0.0158116 + ], + [ + 109.3519603, + -0.0158096 + ], + [ + 109.3519778, + -0.0158103 + ], + [ + 109.3523658, + -0.0160445 + ] + ] + }, + "id": "way/1274090292" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1276278541", + "highway": "residential", + "name": "Jalan Petani" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013753, + -0.044814 + ], + [ + 109.3015638, + -0.0451748 + ], + [ + 109.3016714, + -0.0453766 + ], + [ + 109.3017588, + -0.0455512 + ], + [ + 109.3018523, + -0.045728 + ], + [ + 109.3019327, + -0.0458964 + ], + [ + 109.3019519, + -0.0459318 + ], + [ + 109.3021556, + -0.0462894 + ], + [ + 109.3023409, + -0.0466503 + ], + [ + 109.3025197, + -0.0470232 + ], + [ + 109.3026206, + -0.0472364 + ], + [ + 109.3026606, + -0.0473209 + ], + [ + 109.3027955, + -0.0475967 + ], + [ + 109.3028052, + -0.0476165 + ], + [ + 109.3029353, + -0.0478872 + ], + [ + 109.3029817, + -0.0479864 + ], + [ + 109.3030735, + -0.0481826 + ], + [ + 109.3032537, + -0.0484876 + ], + [ + 109.3033254, + -0.0486219 + ], + [ + 109.3034436, + -0.0488485 + ], + [ + 109.303515, + -0.0489865 + ], + [ + 109.3035782, + -0.0490995 + ], + [ + 109.3036284, + -0.049189 + ], + [ + 109.3040366, + -0.0499172 + ], + [ + 109.3041091, + -0.0499937 + ], + [ + 109.3042164, + -0.0500768 + ], + [ + 109.3047018, + -0.0504108 + ], + [ + 109.3060246, + -0.0512816 + ] + ] + }, + "id": "way/1276278541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1276278542", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013753, + -0.044814 + ], + [ + 109.3028889, + -0.0438318 + ] + ] + }, + "id": "way/1276278542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1276279575", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3054389, + -0.045492 + ], + [ + 109.3049556, + -0.0459905 + ] + ] + }, + "id": "way/1276279575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1276342334", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061236, + -0.0443714 + ], + [ + 109.3068063, + -0.0436643 + ] + ] + }, + "id": "way/1276342334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1278016219", + "highway": "living_street", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3802099, + -0.0466927 + ], + [ + 109.3800177, + -0.0464185 + ] + ] + }, + "id": "way/1278016219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1279638241", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437263, + -0.085834 + ], + [ + 109.3445307, + -0.0863649 + ], + [ + 109.3462129, + -0.087471 + ] + ] + }, + "id": "way/1279638241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1280423794", + "highway": "residential", + "name": "Komplek Acisa Asri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536808, + -0.0677927 + ], + [ + 109.3536572, + -0.0677703 + ] + ] + }, + "id": "way/1280423794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1280423795", + "highway": "residential", + "name": "Komplek Acisa Asri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537358, + -0.0678448 + ], + [ + 109.3536808, + -0.0677927 + ] + ] + }, + "id": "way/1280423795" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1281422930", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3822489, + -0.0495123 + ], + [ + 109.3842091, + -0.0481393 + ] + ] + }, + "id": "way/1281422930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1281422931", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3836994, + -0.048716 + ], + [ + 109.3837767, + -0.0488326 + ], + [ + 109.3838699, + -0.0489436 + ] + ] + }, + "id": "way/1281422931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628769", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460778, + -0.0515223 + ], + [ + 109.3453477, + -0.0506297 + ] + ] + }, + "id": "way/1284628769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628770", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453477, + -0.0506297 + ], + [ + 109.3447066, + -0.049878 + ] + ] + }, + "id": "way/1284628770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628771", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446122, + -0.0497904 + ], + [ + 109.3440016, + -0.04907 + ], + [ + 109.3438913, + -0.0489399 + ], + [ + 109.3437405, + -0.048762 + ], + [ + 109.343705, + -0.0487201 + ], + [ + 109.3435094, + -0.0484893 + ], + [ + 109.3432301, + -0.0481598 + ], + [ + 109.3428856, + -0.0477534 + ], + [ + 109.3426156, + -0.0474348 + ] + ] + }, + "id": "way/1284628771" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628772", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426156, + -0.0474348 + ], + [ + 109.342616, + -0.0473569 + ], + [ + 109.3424596, + -0.0471636 + ], + [ + 109.3424116, + -0.047121 + ], + [ + 109.3417858, + -0.0464216 + ], + [ + 109.3411476, + -0.0456851 + ] + ] + }, + "id": "way/1284628772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628773", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410075, + -0.0455656 + ], + [ + 109.3407436, + -0.0452777 + ], + [ + 109.3403148, + -0.0447338 + ], + [ + 109.3395961, + -0.0438927 + ], + [ + 109.3391104, + -0.0433099 + ], + [ + 109.338876, + -0.0430331 + ], + [ + 109.3388129, + -0.0429571 + ], + [ + 109.3387259, + -0.0428304 + ] + ] + }, + "id": "way/1284628773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628774", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3387259, + -0.0428304 + ], + [ + 109.3380968, + -0.0420566 + ], + [ + 109.3380434, + -0.0419964 + ], + [ + 109.3379448, + -0.041885 + ] + ] + }, + "id": "way/1284628774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628775", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379448, + -0.041885 + ], + [ + 109.3365734, + -0.0401735 + ] + ] + }, + "id": "way/1284628775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628776", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3365734, + -0.0401735 + ], + [ + 109.3364144, + -0.0399827 + ], + [ + 109.3361408, + -0.0396439 + ], + [ + 109.3358903, + -0.039345 + ], + [ + 109.3356174, + -0.0390387 + ] + ] + }, + "id": "way/1284628776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628777", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356174, + -0.0390387 + ], + [ + 109.3353587, + -0.0387133 + ], + [ + 109.3344529, + -0.0376056 + ] + ] + }, + "id": "way/1284628777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628778", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344529, + -0.0376056 + ], + [ + 109.3333379, + -0.0362132 + ] + ] + }, + "id": "way/1284628778" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628779", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333379, + -0.0362132 + ], + [ + 109.3329343, + -0.0357031 + ], + [ + 109.3328855, + -0.0356651 + ], + [ + 109.3327894, + -0.0356475 + ] + ] + }, + "id": "way/1284628779" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284628781", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343059, + -0.0375202 + ], + [ + 109.3343941, + -0.0376536 + ] + ] + }, + "id": "way/1284628781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284632959", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461537, + -0.051626 + ], + [ + 109.3461301, + -0.0515851 + ], + [ + 109.3460778, + -0.0515223 + ] + ] + }, + "id": "way/1284632959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284632960", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447066, + -0.049878 + ], + [ + 109.344681, + -0.0498485 + ], + [ + 109.3446424, + -0.0498185 + ], + [ + 109.3446122, + -0.0497904 + ] + ] + }, + "id": "way/1284632960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284632961", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410075, + -0.0455656 + ], + [ + 109.3410566, + -0.0454915 + ], + [ + 109.3410703, + -0.0455001 + ], + [ + 109.3411027, + -0.0455315 + ], + [ + 109.3411944, + -0.0456286 + ], + [ + 109.3411476, + -0.0456851 + ] + ] + }, + "id": "way/1284632961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284632962", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496549, + -0.0548995 + ], + [ + 109.3493419, + -0.0548637 + ], + [ + 109.347557, + -0.0528035 + ] + ] + }, + "id": "way/1284632962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284632963", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347557, + -0.0528035 + ], + [ + 109.3474997, + -0.0526912 + ], + [ + 109.3466944, + -0.0517656 + ] + ] + }, + "id": "way/1284632963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284632964", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466207, + -0.0516766 + ], + [ + 109.3464871, + -0.0515153 + ], + [ + 109.346481, + -0.0514532 + ], + [ + 109.3464311, + -0.0513898 + ], + [ + 109.3464129, + -0.0513668 + ], + [ + 109.3463605, + -0.0513704 + ], + [ + 109.3459511, + -0.0508835 + ], + [ + 109.3453479, + -0.0502252 + ], + [ + 109.3452567, + -0.0501198 + ], + [ + 109.3446127, + -0.0493482 + ], + [ + 109.3444379, + -0.0491387 + ], + [ + 109.3442278, + -0.0488859 + ], + [ + 109.3441311, + -0.0487674 + ], + [ + 109.3440832, + -0.0487119 + ], + [ + 109.3440712, + -0.0486624 + ], + [ + 109.343839, + -0.0483909 + ], + [ + 109.3435108, + -0.0480075 + ], + [ + 109.3434652, + -0.0479545 + ], + [ + 109.3427632, + -0.0471387 + ], + [ + 109.3424014, + -0.0467432 + ] + ] + }, + "id": "way/1284632964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284632965", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424014, + -0.0467432 + ], + [ + 109.3423631, + -0.0466926 + ], + [ + 109.3423275, + -0.0466113 + ], + [ + 109.3423389, + -0.0465315 + ], + [ + 109.3423931, + -0.0464403 + ], + [ + 109.3423415, + -0.0464152 + ], + [ + 109.3422588, + -0.0463613 + ], + [ + 109.3421693, + -0.0463063 + ], + [ + 109.3420421, + -0.046247 + ], + [ + 109.3413316, + -0.0454147 + ], + [ + 109.3412942, + -0.0454396 + ], + [ + 109.3412135, + -0.0453283 + ], + [ + 109.341183, + -0.0452764 + ], + [ + 109.3412089, + -0.0452494 + ], + [ + 109.3406862, + -0.0446467 + ], + [ + 109.3404301, + -0.0443278 + ], + [ + 109.3398402, + -0.0436815 + ], + [ + 109.3392672, + -0.0430271 + ], + [ + 109.3389162, + -0.0426018 + ], + [ + 109.3384824, + -0.0420955 + ], + [ + 109.3381557, + -0.0417065 + ], + [ + 109.3381198, + -0.0416638 + ], + [ + 109.3378296, + -0.0413455 + ], + [ + 109.3367208, + -0.0400203 + ], + [ + 109.3363096, + -0.039522 + ], + [ + 109.3362789, + -0.039485 + ], + [ + 109.3361385, + -0.0393166 + ], + [ + 109.3357486, + -0.038819 + ], + [ + 109.3354792, + -0.0384788 + ], + [ + 109.3351378, + -0.0380118 + ], + [ + 109.3349258, + -0.0377036 + ] + ] + }, + "id": "way/1284632965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1284632966", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333095, + -0.0352127 + ], + [ + 109.3331247, + -0.0352207 + ], + [ + 109.3331078, + -0.0353183 + ], + [ + 109.3331268, + -0.0354788 + ], + [ + 109.3337866, + -0.036341 + ], + [ + 109.3341657, + -0.0367944 + ], + [ + 109.3343432, + -0.0370052 + ], + [ + 109.3345513, + -0.0372278 + ] + ] + }, + "id": "way/1284632966" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1287921425", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281117, + -0.0251527 + ], + [ + 109.3281014, + -0.0251406 + ] + ] + }, + "id": "way/1287921425" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1287921426", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286037, + -0.0257051 + ], + [ + 109.3282932, + -0.0253594 + ] + ] + }, + "id": "way/1287921426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056567", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "crossing:signals": "no", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498354, + -0.055616 + ], + [ + 109.349805, + -0.0556385 + ], + [ + 109.3497771, + -0.0556606 + ] + ] + }, + "id": "way/1289056567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056568", + "foot": "yes", + "footway": "traffic_island", + "highway": "footway", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497771, + -0.0556606 + ], + [ + 109.3497338, + -0.0556984 + ] + ] + }, + "id": "way/1289056568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056569", + "footway": "traffic_island", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433282, + -0.0480729 + ], + [ + 109.3433616, + -0.0480426 + ], + [ + 109.3433823, + -0.0480268 + ] + ] + }, + "id": "way/1289056569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056570", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326815, + -0.0355252 + ], + [ + 109.3327015, + -0.0354994 + ], + [ + 109.3327497, + -0.0354186 + ], + [ + 109.3327924, + -0.035348 + ] + ] + }, + "id": "way/1289056570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056571", + "crossing": "traffic_signals", + "crossing:markings": "zebra", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3326941, + -0.0352004 + ], + [ + 109.3327067, + -0.0351898 + ], + [ + 109.3327774, + -0.0351247 + ], + [ + 109.3328112, + -0.0350908 + ] + ] + }, + "id": "way/1289056571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056572", + "footway": "traffic_island", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329671, + -0.0356043 + ], + [ + 109.333002, + -0.0355675 + ] + ] + }, + "id": "way/1289056572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056573", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3349258, + -0.0377036 + ], + [ + 109.3347137, + -0.0374091 + ], + [ + 109.3345989, + -0.0372787 + ] + ] + }, + "id": "way/1289056573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056574", + "foot": "yes", + "highway": "footway", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3345513, + -0.0372278 + ], + [ + 109.3345989, + -0.0372787 + ] + ] + }, + "id": "way/1289056574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056575", + "bicycle": "designated", + "bridge": "yes", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "layer": "1", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466729, + -0.0517396 + ], + [ + 109.3466207, + -0.0516766 + ] + ] + }, + "id": "way/1289056575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056576", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466944, + -0.0517656 + ], + [ + 109.3466729, + -0.0517396 + ] + ] + }, + "id": "way/1289056576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056577", + "footway": "traffic_island", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349225, + -0.054973 + ], + [ + 109.3491719, + -0.0550158 + ] + ] + }, + "id": "way/1289056577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056578", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "crossing:signals": "no", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491719, + -0.0550158 + ], + [ + 109.3491036, + -0.0550636 + ], + [ + 109.349081, + -0.0550817 + ] + ] + }, + "id": "way/1289056578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056579", + "footway": "traffic_island", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497738, + -0.0549755 + ], + [ + 109.3497292, + -0.0549465 + ] + ] + }, + "id": "way/1289056579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056580", + "crossing": "uncontrolled", + "crossing:markings": "zebra", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497292, + -0.0549465 + ], + [ + 109.3497026, + -0.0549316 + ], + [ + 109.3496549, + -0.0548995 + ] + ] + }, + "id": "way/1289056580" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056581", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498354, + -0.055616 + ], + [ + 109.3498774, + -0.0555783 + ] + ] + }, + "id": "way/1289056581" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056583", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563024, + -0.0638681 + ], + [ + 109.356052, + -0.0642253 + ], + [ + 109.3559755, + -0.0643332 + ], + [ + 109.3559229, + -0.0643004 + ] + ] + }, + "id": "way/1289056583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056584", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420905, + -0.0462084 + ], + [ + 109.3420421, + -0.046247 + ] + ] + }, + "id": "way/1289056584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056585", + "crossing": "traffic_signals", + "crossing:signals": "yes", + "footway": "crossing", + "highway": "footway", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333095, + -0.0352127 + ], + [ + 109.3329713, + -0.0352411 + ] + ] + }, + "id": "way/1289056585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056586", + "bicycle": "designated", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464338, + -0.051903 + ], + [ + 109.3464117, + -0.051876 + ], + [ + 109.3463831, + -0.0518945 + ] + ] + }, + "id": "way/1289056586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289056587", + "bicycle": "designated", + "bridge": "yes", + "foot": "yes", + "highway": "footway", + "incline": "0%", + "layer": "1", + "motor_vehicle": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464601, + -0.0519351 + ], + [ + 109.3464338, + -0.051903 + ] + ] + }, + "id": "way/1289056587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289277244", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3311225, + -0.0369579 + ], + [ + 109.3308989, + -0.0371611 + ], + [ + 109.3307675, + -0.0372818 + ], + [ + 109.33033, + -0.0376485 + ], + [ + 109.3302022, + -0.0377448 + ] + ] + }, + "id": "way/1289277244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289277245", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3303057, + -0.0376276 + ], + [ + 109.3306486, + -0.0373364 + ], + [ + 109.3307367, + -0.0372619 + ], + [ + 109.3307624, + -0.0372411 + ], + [ + 109.3307899, + -0.0372184 + ], + [ + 109.3308782, + -0.0371446 + ], + [ + 109.3311225, + -0.0369579 + ] + ] + }, + "id": "way/1289277245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289277246", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3296016, + -0.0382285 + ], + [ + 109.329413, + -0.0384072 + ], + [ + 109.3292679, + -0.0385487 + ], + [ + 109.3292116, + -0.0386042 + ], + [ + 109.3291713, + -0.0386371 + ] + ] + }, + "id": "way/1289277246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1289277247", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323809, + -0.0358605 + ], + [ + 109.3322892, + -0.0359359 + ], + [ + 109.3319126, + -0.0362455 + ], + [ + 109.3317997, + -0.0363384 + ], + [ + 109.3316944, + -0.0364287 + ], + [ + 109.3313317, + -0.0367409 + ], + [ + 109.3313234, + -0.0367479 + ], + [ + 109.3311225, + -0.0369579 + ] + ] + }, + "id": "way/1289277247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1291975255", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Angket", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525742, + -0.0238228 + ], + [ + 109.3525933, + -0.0237523 + ] + ] + }, + "id": "way/1291975255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1291975256", + "highway": "residential", + "lanes": "1", + "name": "Gang Angket", + "width": "2.5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523879, + -0.0249482 + ], + [ + 109.3524242, + -0.0246844 + ], + [ + 109.3524545, + -0.0244919 + ], + [ + 109.3524747, + -0.0243451 + ], + [ + 109.3525176, + -0.0240876 + ], + [ + 109.3525592, + -0.0238649 + ], + [ + 109.3525742, + -0.0238228 + ] + ] + }, + "id": "way/1291975256" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1291996130", + "highway": "residential", + "name": "Gang Aman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3278265, + -0.0236435 + ], + [ + 109.328088, + -0.0235914 + ], + [ + 109.3282581, + -0.0235709 + ], + [ + 109.3283499, + -0.0235599 + ], + [ + 109.3285862, + -0.0235414 + ], + [ + 109.3293946, + -0.0235118 + ] + ] + }, + "id": "way/1291996130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1293796701", + "highway": "living_street", + "name": "Gang Karya A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317591, + -0.0459737 + ], + [ + 109.3179694, + -0.0456277 + ], + [ + 109.3181068, + -0.0454976 + ], + [ + 109.3182383, + -0.0453763 + ], + [ + 109.3184568, + -0.0451775 + ] + ] + }, + "id": "way/1293796701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1296353893", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640799, + -0.0359336 + ], + [ + 109.3639305, + -0.0357813 + ], + [ + 109.3637286, + -0.0355584 + ], + [ + 109.3635201, + -0.0353434 + ] + ] + }, + "id": "way/1296353893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1298940536", + "bicycle": "yes", + "foot": "yes", + "highway": "residential", + "horse": "no", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2890082, + -0.0129671 + ], + [ + 109.2891309, + -0.012886 + ] + ] + }, + "id": "way/1298940536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1298940538", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.285769, + -0.0142974 + ], + [ + 109.285926, + -0.0143289 + ] + ] + }, + "id": "way/1298940538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1298940539", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.285926, + -0.0143289 + ], + [ + 109.2860055, + -0.0143337 + ] + ] + }, + "id": "way/1298940539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1298940541", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891309, + -0.012886 + ], + [ + 109.2890676, + -0.0128556 + ], + [ + 109.2890571, + -0.012788 + ], + [ + 109.2891513, + -0.0123008 + ], + [ + 109.2892732, + -0.0116084 + ], + [ + 109.28929, + -0.0114598 + ] + ] + }, + "id": "way/1298940541" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1298940542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2887762, + -0.012306 + ], + [ + 109.2890234, + -0.0123021 + ] + ] + }, + "id": "way/1298940542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1298940543", + "bicycle": "yes", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2890234, + -0.0123021 + ], + [ + 109.2891513, + -0.0123008 + ] + ] + }, + "id": "way/1298940543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1298940544", + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.278736, + -0.0181505 + ], + [ + 109.278787, + -0.0184162 + ], + [ + 109.2789311, + -0.0189409 + ], + [ + 109.2791009, + -0.0195226 + ], + [ + 109.2801497, + -0.0220415 + ] + ] + }, + "id": "way/1298940544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1299955703", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443333, + -0.0675717 + ], + [ + 109.3443948, + -0.0676466 + ], + [ + 109.3445092, + -0.0677988 + ], + [ + 109.3445739, + -0.0678799 + ], + [ + 109.3446765, + -0.0680359 + ], + [ + 109.3447942, + -0.0681851 + ], + [ + 109.3450262, + -0.0684634 + ], + [ + 109.345167, + -0.0686323 + ], + [ + 109.3454781, + -0.0690239 + ], + [ + 109.3457772, + -0.0694115 + ], + [ + 109.3461757, + -0.0699599 + ], + [ + 109.3463197, + -0.0701324 + ] + ] + }, + "id": "way/1299955703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1299955704", + "highway": "living_street", + "import": "yes", + "motorcar": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462399, + -0.0702323 + ], + [ + 109.3463197, + -0.0701324 + ] + ] + }, + "id": "way/1299955704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1300418757", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Suez" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456857, + -0.0366222 + ], + [ + 109.3456994, + -0.0366648 + ] + ] + }, + "id": "way/1300418757" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1300418758", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Suez" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456759, + -0.0365933 + ], + [ + 109.3456857, + -0.0366222 + ] + ] + }, + "id": "way/1300418758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1300418759", + "highway": "living_street", + "motorcar": "destination", + "name": "Gang Suez" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455017, + -0.0361242 + ], + [ + 109.3456759, + -0.0365933 + ] + ] + }, + "id": "way/1300418759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1300442694", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102113, + -0.0315079 + ], + [ + 109.3102183, + -0.0319821 + ] + ] + }, + "id": "way/1300442694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1301450222", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079576, + -0.024969 + ], + [ + 109.3078674, + -0.0246757 + ] + ] + }, + "id": "way/1301450222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1301450223", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087198, + -0.027384 + ], + [ + 109.3083602, + -0.0262364 + ] + ] + }, + "id": "way/1301450223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1301706890", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136494, + -0.0498092 + ], + [ + 109.3130698, + -0.0493742 + ] + ] + }, + "id": "way/1301706890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302179545", + "access": "private", + "highway": "unclassified", + "name": "Jalan Sidas" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356806, + -0.0207723 + ], + [ + 109.3356694, + -0.0206995 + ] + ] + }, + "id": "way/1302179545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302179547", + "access": "private", + "highway": "residential", + "name": "Jalan Rajawali" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356388, + -0.0205447 + ], + [ + 109.3356183, + -0.0205551 + ], + [ + 109.3356097, + -0.020563 + ], + [ + 109.3356009, + -0.0205712 + ], + [ + 109.3355104, + -0.0206947 + ] + ] + }, + "id": "way/1302179547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302204754", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3153486, + 0.0058172 + ], + [ + 109.3155849, + 0.0063206 + ] + ] + }, + "id": "way/1302204754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302336166", + "highway": "service", + "name": "Jalan Bardan", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394861, + -0.0228819 + ], + [ + 109.3395657, + -0.0228125 + ] + ] + }, + "id": "way/1302336166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302336167", + "highway": "service", + "name": "Jalan Bardan", + "toll": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404326, + -0.0219029 + ], + [ + 109.3401357, + -0.0222703 + ] + ] + }, + "id": "way/1302336167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302987990", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3631029, + -0.0349438 + ], + [ + 109.3631253, + -0.0349188 + ] + ] + }, + "id": "way/1302987990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302987991", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630359, + -0.0349867 + ], + [ + 109.3631029, + -0.0349438 + ] + ] + }, + "id": "way/1302987991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302991290", + "highway": "residential", + "name": "Komplek Pelangi Fortuna" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3696596, + -0.0419136 + ], + [ + 109.3696918, + -0.0418887 + ], + [ + 109.369983, + -0.0416875 + ], + [ + 109.3701933, + -0.0415359 + ] + ] + }, + "id": "way/1302991290" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302991291", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3689975, + -0.0412383 + ], + [ + 109.3696086, + -0.0418679 + ], + [ + 109.3696388, + -0.0418941 + ], + [ + 109.3696596, + -0.0419136 + ] + ] + }, + "id": "way/1302991291" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1302991345", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3689975, + -0.0412383 + ], + [ + 109.3688843, + -0.0410882 + ], + [ + 109.3688074, + -0.0410135 + ] + ] + }, + "id": "way/1302991345" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1303020130", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098301, + -0.0315927 + ], + [ + 109.3102113, + -0.0315079 + ] + ] + }, + "id": "way/1303020130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1303020131", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097893, + -0.0316018 + ], + [ + 109.3098301, + -0.0315927 + ] + ] + }, + "id": "way/1303020131" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1303190178", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287706, + -0.0351691 + ], + [ + 109.328264, + -0.0357523 + ] + ] + }, + "id": "way/1303190178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1303190179", + "highway": "residential", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272674, + -0.0367753 + ], + [ + 109.3268029, + -0.0372482 + ], + [ + 109.3264961, + -0.0375201 + ] + ] + }, + "id": "way/1303190179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1303274059", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551887, + -0.0112613 + ], + [ + 109.3556088, + -0.011272 + ], + [ + 109.3560514, + -0.0112948 + ] + ] + }, + "id": "way/1303274059" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1303274060", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544472, + -0.0136848 + ], + [ + 109.3544166, + -0.0142635 + ] + ] + }, + "id": "way/1303274060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1303404749", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529162, + -0.0691785 + ], + [ + 109.3529467, + -0.0692023 + ] + ] + }, + "id": "way/1303404749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1303404750", + "access": "private", + "highway": "residential", + "name": "Gang Anggrek" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496463, + -0.0671813 + ], + [ + 109.3496383, + -0.0671752 + ] + ] + }, + "id": "way/1303404750" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1303409235", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3291268, + -0.0499293 + ], + [ + 109.3294063, + -0.0496611 + ] + ] + }, + "id": "way/1303409235" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1304372766", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3524087, + -0.0770399 + ], + [ + 109.3526074, + -0.0767004 + ] + ] + }, + "id": "way/1304372766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1304596449", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392048, + -0.0601184 + ], + [ + 109.3392131, + -0.0601261 + ], + [ + 109.3392188, + -0.0601307 + ] + ] + }, + "id": "way/1304596449" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1304596729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3393008, + -0.0602025 + ], + [ + 109.339334, + -0.0602316 + ] + ] + }, + "id": "way/1304596729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1304596730", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392188, + -0.0601307 + ], + [ + 109.3393008, + -0.0602025 + ] + ] + }, + "id": "way/1304596730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1304967207", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3181376, + -0.0269104 + ], + [ + 109.318196, + -0.0272204 + ] + ] + }, + "id": "way/1304967207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1304996138", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3137842, + -0.0132267 + ], + [ + 109.3126445, + -0.0124793 + ] + ] + }, + "id": "way/1304996138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1305156774", + "highway": "residential", + "motor_vehicle": "destination", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077132, + -0.0485488 + ], + [ + 109.3091237, + -0.0495967 + ] + ] + }, + "id": "way/1305156774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1305156775", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091237, + -0.0495967 + ], + [ + 109.3104023, + -0.0505404 + ], + [ + 109.3109018, + -0.0509056 + ], + [ + 109.3109118, + -0.050916 + ], + [ + 109.3109145, + -0.0509237 + ], + [ + 109.3109172, + -0.0509335 + ], + [ + 109.3109165, + -0.0509425 + ], + [ + 109.3109108, + -0.0509539 + ], + [ + 109.3107827, + -0.0511068 + ] + ] + }, + "id": "way/1305156775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1305156877", + "highway": "residential", + "motor_vehicle": "destination", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3095311, + -0.0491743 + ], + [ + 109.3094225, + -0.0490936 + ], + [ + 109.3080728, + -0.0480745 + ] + ] + }, + "id": "way/1305156877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1306303730", + "highway": "living_street", + "name": "Mubarak" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276908, + -0.0300351 + ], + [ + 109.3287797, + -0.0291515 + ] + ] + }, + "id": "way/1306303730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1306303731", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264978, + -0.030825 + ], + [ + 109.3262919, + -0.0305395 + ] + ] + }, + "id": "way/1306303731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1306400263", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444767, + -0.0298128 + ], + [ + 109.3441978, + -0.0299334 + ] + ] + }, + "id": "way/1306400263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1306525368", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406296, + -0.071562 + ], + [ + 109.3409499, + -0.0719627 + ], + [ + 109.3412483, + -0.072356 + ], + [ + 109.3415588, + -0.0727606 + ], + [ + 109.3418234, + -0.0731073 + ], + [ + 109.3422771, + -0.0737214 + ], + [ + 109.3423666, + -0.0738379 + ] + ] + }, + "id": "way/1306525368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1307174566", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3774114, + -0.0405304 + ], + [ + 109.3783046, + -0.0398705 + ], + [ + 109.3783985, + -0.0398011 + ] + ] + }, + "id": "way/1307174566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1307174567", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3770321, + -0.0404137 + ], + [ + 109.377169, + -0.0403082 + ], + [ + 109.3784851, + -0.0392947 + ] + ] + }, + "id": "way/1307174567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1307175877", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3773722, + -0.0405602 + ], + [ + 109.377169, + -0.0403082 + ] + ] + }, + "id": "way/1307175877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1307415402", + "highway": "residential", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337851, + -0.032628 + ], + [ + 109.3338535, + -0.0326963 + ], + [ + 109.3336747, + -0.0328754 + ], + [ + 109.3336019, + -0.0328027 + ] + ] + }, + "id": "way/1307415402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1307415403", + "highway": "residential", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3338535, + -0.0326963 + ], + [ + 109.3340484, + -0.0328997 + ] + ] + }, + "id": "way/1307415403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1307430177", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651557, + -0.0296676 + ], + [ + 109.3650686, + -0.0295435 + ], + [ + 109.3649869, + -0.0294122 + ], + [ + 109.3646338, + -0.0289545 + ] + ] + }, + "id": "way/1307430177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1307430178", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365085, + -0.0293229 + ], + [ + 109.3649869, + -0.0294122 + ] + ] + }, + "id": "way/1307430178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1308962533", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3315376, + -0.0591987 + ], + [ + 109.3316044, + -0.0593331 + ], + [ + 109.3316299, + -0.05936 + ] + ] + }, + "id": "way/1308962533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1308962534", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318485, + -0.0596503 + ], + [ + 109.3318485, + -0.059663 + ], + [ + 109.3318418, + -0.0596738 + ], + [ + 109.3317457, + -0.059745 + ] + ] + }, + "id": "way/1308962534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1309203539", + "highway": "residential", + "name": "Jalan Amanah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3775258, + -0.0513529 + ], + [ + 109.3776103, + -0.0512852 + ], + [ + 109.3777893, + -0.051143 + ], + [ + 109.3779308, + -0.0510277 + ], + [ + 109.3781582, + -0.0508466 + ], + [ + 109.3785833, + -0.0505107 + ], + [ + 109.3789762, + -0.0501949 + ], + [ + 109.3792502, + -0.0499871 + ], + [ + 109.380319, + -0.0491395 + ] + ] + }, + "id": "way/1309203539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1309518078", + "highway": "trunk_link", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628206, + -0.0174397 + ], + [ + 109.3630177, + -0.0173765 + ] + ] + }, + "id": "way/1309518078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1309524402", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3245907, + -0.022116 + ], + [ + 109.3247125, + -0.0225303 + ], + [ + 109.3248145, + -0.0228875 + ] + ] + }, + "id": "way/1309524402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1309524403", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3245907, + -0.022116 + ], + [ + 109.3249936, + -0.0220103 + ] + ] + }, + "id": "way/1309524403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1311397087", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284468, + -0.0156999 + ], + [ + 109.3284784, + -0.0157189 + ] + ] + }, + "id": "way/1311397087" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1312507303", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410638, + -0.0828428 + ], + [ + 109.3414531, + -0.0830799 + ] + ] + }, + "id": "way/1312507303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1312507304", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403247, + -0.0845165 + ], + [ + 109.3405136, + -0.0841723 + ] + ] + }, + "id": "way/1312507304" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1312507305", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392273, + -0.0861109 + ], + [ + 109.339147, + -0.0861887 + ], + [ + 109.3389686, + -0.0864549 + ], + [ + 109.3388639, + -0.0866106 + ], + [ + 109.3385048, + -0.087237 + ] + ] + }, + "id": "way/1312507305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1312507306", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3385048, + -0.087237 + ], + [ + 109.3358145, + -0.0858575 + ] + ] + }, + "id": "way/1312507306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1312507308", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3358463, + -0.0697669 + ], + [ + 109.3370864, + -0.0687023 + ], + [ + 109.3382137, + -0.0677693 + ] + ] + }, + "id": "way/1312507308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1312507311", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3596233, + 0.0050657 + ], + [ + 109.3572985, + 0.0052813 + ] + ] + }, + "id": "way/1312507311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1313435405", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445467, + -0.0388887 + ], + [ + 109.3450114, + -0.0385755 + ], + [ + 109.3449363, + -0.0384575 + ] + ] + }, + "id": "way/1313435405" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1313673649", + "highway": "trunk", + "motorcycle": "yes", + "name": "Jalan Tanjung Pura", + "name:id": "Jalan Tanjung Pura", + "name:ms": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458704, + -0.032904 + ], + [ + 109.3459487, + -0.0330846 + ], + [ + 109.346085, + -0.0333989 + ], + [ + 109.3461185, + -0.0334787 + ], + [ + 109.3461822, + -0.0336497 + ], + [ + 109.3462365, + -0.0338059 + ], + [ + 109.3462855, + -0.0339876 + ], + [ + 109.3463083, + -0.0340956 + ], + [ + 109.3463704, + -0.0344064 + ], + [ + 109.3465351, + -0.0350953 + ], + [ + 109.3466106, + -0.0355113 + ], + [ + 109.3466471, + -0.035691 + ], + [ + 109.3467014, + -0.0359628 + ], + [ + 109.3467202, + -0.0360615 + ], + [ + 109.3467564, + -0.0362514 + ], + [ + 109.3468038, + -0.0365412 + ], + [ + 109.3468408, + -0.0367398 + ], + [ + 109.3469863, + -0.0373959 + ] + ] + }, + "id": "way/1313673649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1313673650", + "highway": "trunk", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3457929, + -0.0329374 + ], + [ + 109.345717, + -0.0327552 + ], + [ + 109.3456404, + -0.0325653 + ], + [ + 109.3455062, + -0.0321943 + ], + [ + 109.3454888, + -0.0321235 + ], + [ + 109.3454546, + -0.031988 + ], + [ + 109.3453614, + -0.0316271 + ], + [ + 109.3453594, + -0.0316192 + ], + [ + 109.3452595, + -0.031271 + ], + [ + 109.3452334, + -0.03118 + ], + [ + 109.345177, + -0.0310244 + ], + [ + 109.3451419, + -0.0309402 + ], + [ + 109.344999, + -0.0306611 + ], + [ + 109.3447376, + -0.0302706 + ], + [ + 109.3444767, + -0.0298128 + ], + [ + 109.3443984, + -0.0296754 + ] + ] + }, + "id": "way/1313673650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1313673651", + "highway": "trunk", + "motorcycle": "yes", + "name": "Jalan Tanjung Pura", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345777, + -0.0327112 + ], + [ + 109.3458489, + -0.0328557 + ], + [ + 109.3458704, + -0.032904 + ] + ] + }, + "id": "way/1313673651" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1316465886", + "highway": "residential", + "name": "Gang Sultan Rajasa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2967537, + -0.0346776 + ], + [ + 109.2959585, + -0.033588 + ] + ] + }, + "id": "way/1316465886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1317791971", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347047, + -0.034165 + ], + [ + 109.3348217, + -0.0343269 + ], + [ + 109.3348981, + -0.0343685 + ], + [ + 109.3349579, + -0.0343732 + ], + [ + 109.3352307, + -0.0342719 + ], + [ + 109.3359364, + -0.0338271 + ] + ] + }, + "id": "way/1317791971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1317810623", + "highway": "residential", + "name": "Gang Harapan 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3016225, + -0.0385651 + ], + [ + 109.3016016, + -0.0385764 + ], + [ + 109.3004432, + -0.0392028 + ], + [ + 109.2993079, + -0.0397425 + ] + ] + }, + "id": "way/1317810623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1322527560", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334757, + -0.0344027 + ], + [ + 109.3337821, + -0.0341378 + ], + [ + 109.3338096, + -0.0341117 + ], + [ + 109.333844, + -0.0341144 + ], + [ + 109.3338839, + -0.0341488 + ], + [ + 109.3339669, + -0.0342553 + ] + ] + }, + "id": "way/1322527560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1329305883", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085273, + -0.0599623 + ], + [ + 109.3087604, + -0.0595343 + ] + ] + }, + "id": "way/1329305883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1329523370", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081747, + -0.0275538 + ], + [ + 109.3083181, + -0.0275107 + ] + ] + }, + "id": "way/1329523370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1329523371", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080956, + -0.0275776 + ], + [ + 109.3081747, + -0.0275538 + ] + ] + }, + "id": "way/1329523371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1330539930", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301558, + -0.0377637 + ], + [ + 109.3301859, + -0.0377258 + ], + [ + 109.3303057, + -0.0376276 + ] + ] + }, + "id": "way/1330539930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1330539931", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302022, + -0.0377448 + ], + [ + 109.3301558, + -0.0377637 + ] + ] + }, + "id": "way/1330539931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1330784317", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.303608, + -0.0560551 + ], + [ + 109.3027961, + -0.0569822 + ] + ] + }, + "id": "way/1330784317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1330786239", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704648, + -0.0358386 + ], + [ + 109.3695644, + -0.0364901 + ] + ] + }, + "id": "way/1330786239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1330786240", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3705861, + -0.0357514 + ], + [ + 109.3704648, + -0.0358386 + ] + ] + }, + "id": "way/1330786240" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1330786241", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3706121, + -0.0357321 + ], + [ + 109.3705861, + -0.0357514 + ] + ] + }, + "id": "way/1330786241" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1333109028", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401606, + -0.0448676 + ], + [ + 109.3406469, + -0.04542 + ] + ] + }, + "id": "way/1333109028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1333109029", + "highway": "service", + "name": "Jalan Letnan Kolonel Sugiono" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3400511, + -0.0449621 + ], + [ + 109.3405603, + -0.0455476 + ] + ] + }, + "id": "way/1333109029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1333109030", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3406469, + -0.04542 + ], + [ + 109.3407761, + -0.0456106 + ], + [ + 109.3408299, + -0.0457799 + ], + [ + 109.3408126, + -0.045901 + ], + [ + 109.3405102, + -0.0465836 + ] + ] + }, + "id": "way/1333109030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1333109031", + "highway": "service", + "name": "Jalan Letnan Kolonel Sugiono", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401606, + -0.0448676 + ], + [ + 109.3403148, + -0.0447338 + ], + [ + 109.3404185, + -0.044644 + ] + ] + }, + "id": "way/1333109031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1333109343", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408365, + -0.0451414 + ], + [ + 109.34075, + -0.0452682 + ], + [ + 109.3407436, + -0.0452777 + ], + [ + 109.3406469, + -0.04542 + ] + ] + }, + "id": "way/1333109343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1333109344", + "highway": "service", + "motor_vehicle": "destination", + "name": "Jalan Letnan Kolonel Sugiono" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401606, + -0.0448676 + ], + [ + 109.3401094, + -0.0449117 + ], + [ + 109.3400511, + -0.0449621 + ] + ] + }, + "id": "way/1333109344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1339372859", + "highway": "living_street", + "motorcar": "no", + "name": "Gang jeruk" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.327186, + -0.030809 + ], + [ + 109.3272653, + -0.0309105 + ] + ] + }, + "id": "way/1339372859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1339373878", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3265673, + -0.0316951 + ], + [ + 109.3270473, + -0.0313108 + ], + [ + 109.3271439, + -0.031229 + ] + ] + }, + "id": "way/1339373878" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1339373918", + "highway": "living_street", + "name": "Gang karimata Dalam II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264006, + -0.0314278 + ], + [ + 109.3271171, + -0.0308421 + ] + ] + }, + "id": "way/1339373918" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1340001125", + "highway": "residential", + "motorcar": "no", + "name": "Jalan Masjid" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3659035, + -0.0401756 + ], + [ + 109.3661089, + -0.04005 + ], + [ + 109.3661927, + -0.0399935 + ], + [ + 109.3662867, + -0.0399173 + ], + [ + 109.3663209, + -0.0398985 + ], + [ + 109.3663631, + -0.0398898 + ], + [ + 109.3665375, + -0.0398784 + ], + [ + 109.3667829, + -0.0398771 + ], + [ + 109.3670699, + -0.039857 + ], + [ + 109.3673267, + -0.0398415 + ], + [ + 109.3676104, + -0.039814 + ] + ] + }, + "id": "way/1340001125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1341679954", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453065, + -0.0708371 + ], + [ + 109.3451294, + -0.0706064 + ] + ] + }, + "id": "way/1341679954" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1341679955", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449815, + -0.0711318 + ], + [ + 109.3453065, + -0.0708371 + ], + [ + 109.3454593, + -0.071049 + ] + ] + }, + "id": "way/1341679955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1342042165", + "highway": "service", + "name": "Jalan Profesor Dokter Haji Hadari Nawawi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452058, + -0.0635222 + ], + [ + 109.3448409, + -0.0631409 + ], + [ + 109.3445234, + -0.062809 + ], + [ + 109.3443103, + -0.0625863 + ], + [ + 109.344274, + -0.0625502 + ], + [ + 109.3442697, + -0.0624819 + ], + [ + 109.3445088, + -0.0622355 + ] + ] + }, + "id": "way/1342042165" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1342042166", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450034, + -0.0617406 + ], + [ + 109.3446032, + -0.0613731 + ], + [ + 109.3443622, + -0.0611346 + ], + [ + 109.344215, + -0.060999 + ], + [ + 109.3441119, + -0.060902 + ], + [ + 109.3437525, + -0.0605049 + ] + ] + }, + "id": "way/1342042166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1342042168", + "highway": "service", + "name": "Jalan Profesor Dokter Haji Hadari Nawawi", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461739, + -0.0605165 + ], + [ + 109.3460739, + -0.0606191 + ], + [ + 109.3458902, + -0.0608102 + ], + [ + 109.3455936, + -0.061132 + ], + [ + 109.3453905, + -0.0613414 + ], + [ + 109.3450034, + -0.0617406 + ] + ] + }, + "id": "way/1342042168" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1342042170", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437525, + -0.0605049 + ], + [ + 109.343707, + -0.0605522 + ], + [ + 109.3432827, + -0.0609974 + ], + [ + 109.3431446, + -0.0611336 + ], + [ + 109.3430668, + -0.0612 + ], + [ + 109.3430219, + -0.0612167 + ], + [ + 109.3429857, + -0.0612221 + ], + [ + 109.3429179, + -0.0612301 + ], + [ + 109.3428167, + -0.0612321 + ], + [ + 109.3427845, + -0.0612362 + ], + [ + 109.3427503, + -0.0611795 + ], + [ + 109.3427164, + -0.0611285 + ], + [ + 109.3426987, + -0.0611158 + ], + [ + 109.3426695, + -0.0611118 + ], + [ + 109.3426373, + -0.0611131 + ], + [ + 109.3426065, + -0.0611128 + ], + [ + 109.3425914, + -0.0611074 + ], + [ + 109.3425719, + -0.0610907 + ], + [ + 109.3425461, + -0.0610585 + ], + [ + 109.342463, + -0.0609478 + ], + [ + 109.3423105, + -0.0607112 + ], + [ + 109.3421696, + -0.0605153 + ] + ] + }, + "id": "way/1342042170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1342042171", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467946, + -0.0581451 + ], + [ + 109.3463639, + -0.0577903 + ] + ] + }, + "id": "way/1342042171" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1342042172", + "highway": "service", + "name": "Jalan Profesor Dokter Haji Hadari Nawawi", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445088, + -0.0622355 + ], + [ + 109.3447711, + -0.0620015 + ], + [ + 109.3449619, + -0.0617873 + ], + [ + 109.3450034, + -0.0617406 + ] + ] + }, + "id": "way/1342042172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1343939045", + "highway": "residential", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.28746, + -0.0383508 + ], + [ + 109.2876252, + -0.0381917 + ], + [ + 109.2878072, + -0.0379956 + ], + [ + 109.2880152, + -0.0377805 + ], + [ + 109.2881046, + -0.0376903 + ], + [ + 109.2884382, + -0.0373667 + ], + [ + 109.2885809, + -0.0372298 + ], + [ + 109.2891635, + -0.0366926 + ] + ] + }, + "id": "way/1343939045" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1343939046", + "highway": "track", + "motor_vehicle": "no", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2969812, + -0.0298669 + ], + [ + 109.2971332, + -0.0297692 + ] + ] + }, + "id": "way/1343939046" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1343939192", + "highway": "track", + "motor_vehicle": "no", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2952136, + -0.0312054 + ], + [ + 109.2961527, + -0.0304426 + ], + [ + 109.2969315, + -0.0298988 + ], + [ + 109.2969812, + -0.0298669 + ] + ] + }, + "id": "way/1343939192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1346808835", + "highway": "residential", + "motorcar": "no", + "motorcycle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3381302, + -0.0950105 + ], + [ + 109.3382898, + -0.0949971 + ], + [ + 109.3384836, + -0.0949857 + ], + [ + 109.3389342, + -0.0949696 + ], + [ + 109.3394002, + -0.0949468 + ], + [ + 109.3399226, + -0.094926 + ], + [ + 109.3402693, + -0.0949113 + ], + [ + 109.3403618, + -0.0949113 + ], + [ + 109.3404631, + -0.0949146 + ], + [ + 109.3405858, + -0.0949133 + ], + [ + 109.3406924, + -0.0949153 + ], + [ + 109.3407849, + -0.0949126 + ], + [ + 109.3408305, + -0.0949099 + ], + [ + 109.34086, + -0.0949106 + ], + [ + 109.3409016, + -0.0949106 + ], + [ + 109.3409371, + -0.0949166 + ] + ] + }, + "id": "way/1346808835" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1346808836", + "bridge": "yes", + "highway": "residential", + "layer": "1", + "motorcar": "no", + "motorcycle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379632, + -0.09503 + ], + [ + 109.3381302, + -0.0950105 + ] + ] + }, + "id": "way/1346808836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1351751820", + "highway": "residential", + "motor_vehicle": "destination", + "name": "Gang Anugrah Mulya", + "oneway": "no", + "surface": "paved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3013919, + -0.0382353 + ], + [ + 109.2999478, + -0.0390083 + ] + ] + }, + "id": "way/1351751820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1352893115", + "bridge": "yes", + "highway": "path", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514286, + -0.0455258 + ], + [ + 109.3513708, + -0.045469 + ] + ] + }, + "id": "way/1352893115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1352893116", + "highway": "path", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514659, + -0.0455624 + ], + [ + 109.3514286, + -0.0455258 + ] + ] + }, + "id": "way/1352893116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1354915078", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3843463, + -0.0525427 + ], + [ + 109.3851265, + -0.0519108 + ] + ] + }, + "id": "way/1354915078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1354915082", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3838243, + -0.0545977 + ], + [ + 109.3850159, + -0.0536281 + ], + [ + 109.3850233, + -0.0536026 + ], + [ + 109.3850226, + -0.0535751 + ], + [ + 109.3850132, + -0.0535503 + ], + [ + 109.3849616, + -0.0534718 + ], + [ + 109.3846196, + -0.0529615 + ], + [ + 109.3843463, + -0.0525427 + ], + [ + 109.3841059, + -0.0521743 + ] + ] + }, + "id": "way/1354915082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1354915083", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3806674, + -0.0557139 + ], + [ + 109.3815753, + -0.0549611 + ], + [ + 109.3830572, + -0.0537823 + ], + [ + 109.3831122, + -0.0537716 + ], + [ + 109.3831551, + -0.0537863 + ], + [ + 109.383194, + -0.0538239 + ], + [ + 109.3833026, + -0.0539459 + ], + [ + 109.3833375, + -0.0539593 + ], + [ + 109.3833804, + -0.0539553 + ], + [ + 109.3834488, + -0.0539017 + ], + [ + 109.3846196, + -0.0529615 + ] + ] + }, + "id": "way/1354915083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1354915086", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3838083, + -0.051734 + ], + [ + 109.3855141, + -0.0503236 + ] + ] + }, + "id": "way/1354915086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1355423016", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628561, + -0.0564766 + ], + [ + 109.3630627, + -0.0563304 + ], + [ + 109.3632142, + -0.056254 + ], + [ + 109.3633689, + -0.0561848 + ] + ] + }, + "id": "way/1355423016" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1355423017", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3620701, + -0.0542635 + ], + [ + 109.3621519, + -0.0542233 + ], + [ + 109.3627375, + -0.0539359 + ], + [ + 109.3635227, + -0.0535409 + ] + ] + }, + "id": "way/1355423017" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1355423018", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3629244, + -0.0554557 + ], + [ + 109.3628056, + -0.0555151 + ], + [ + 109.3627808, + -0.0555032 + ], + [ + 109.3627395, + -0.0554477 + ], + [ + 109.3627142, + -0.0553999 + ], + [ + 109.3627319, + -0.0553434 + ], + [ + 109.3628247, + -0.0552898 + ] + ] + }, + "id": "way/1355423018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1357186188", + "highway": "residential", + "name": "Gang parit Damang Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3257135, + -0.0647812 + ], + [ + 109.3261394, + -0.0643088 + ], + [ + 109.326551, + -0.0638536 + ], + [ + 109.3265667, + -0.0638356 + ], + [ + 109.3268078, + -0.0635725 + ], + [ + 109.3268239, + -0.0635548 + ], + [ + 109.3270796, + -0.0632738 + ], + [ + 109.3272007, + -0.0631544 + ], + [ + 109.3273665, + -0.062999 + ], + [ + 109.3276602, + -0.0627114 + ], + [ + 109.3279173, + -0.0624545 + ], + [ + 109.3280384, + -0.0623369 + ], + [ + 109.3281181, + -0.0622578 + ], + [ + 109.3281957, + -0.0621857 + ], + [ + 109.3283203, + -0.062056 + ], + [ + 109.3284769, + -0.0619145 + ], + [ + 109.3287876, + -0.061622 + ], + [ + 109.3290786, + -0.0613254 + ], + [ + 109.3293881, + -0.0610234 + ] + ] + }, + "id": "way/1357186188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1357186189", + "highway": "residential", + "import": "yes", + "name": "Jalan Parit Demang", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305663, + -0.0705323 + ], + [ + 109.33062, + -0.070581 + ] + ] + }, + "id": "way/1357186189" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1357186190", + "bridge": "yes", + "highway": "residential", + "import": "yes", + "layer": "1", + "name": "Jalan Parit Demang", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3305059, + -0.0704776 + ], + [ + 109.3305663, + -0.0705323 + ] + ] + }, + "id": "way/1357186190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1357200870", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445908, + -0.0335594 + ], + [ + 109.3441595, + -0.0337206 + ] + ] + }, + "id": "way/1357200870" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1357200871", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344624, + -0.0331045 + ], + [ + 109.3447921, + -0.0334404 + ] + ] + }, + "id": "way/1357200871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1359242957", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3795409, + -0.0353856 + ], + [ + 109.3796692, + -0.0353582 + ] + ] + }, + "id": "way/1359242957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1359242958", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3789209, + -0.0355787 + ], + [ + 109.3792443, + -0.0354777 + ], + [ + 109.3795409, + -0.0353856 + ] + ] + }, + "id": "way/1359242958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1359544889", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286403, + -0.0670992 + ], + [ + 109.3279307, + -0.066202 + ] + ] + }, + "id": "way/1359544889" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362475193", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503544, + -0.0584865 + ], + [ + 109.3502844, + -0.0585818 + ], + [ + 109.3496877, + -0.0594214 + ], + [ + 109.3496219, + -0.0595207 + ], + [ + 109.349215, + -0.0601355 + ], + [ + 109.3490538, + -0.060379 + ] + ] + }, + "id": "way/1362475193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362477489", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117745, + -0.0302851 + ], + [ + 109.3116528, + -0.0310338 + ], + [ + 109.3116005, + -0.0313926 + ], + [ + 109.3115756, + -0.0317076 + ], + [ + 109.311565, + -0.0320122 + ] + ] + }, + "id": "way/1362477489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362477490", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111941, + -0.0301896 + ], + [ + 109.3112209, + -0.030203 + ], + [ + 109.3112483, + -0.0302269 + ], + [ + 109.3112732, + -0.0302486 + ], + [ + 109.311296, + -0.0302741 + ] + ] + }, + "id": "way/1362477490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362477491", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311296, + -0.0302741 + ], + [ + 109.3113323, + -0.0302835 + ], + [ + 109.3117745, + -0.0302851 + ] + ] + }, + "id": "way/1362477491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362480552", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3112667, + -0.0358157 + ], + [ + 109.3113225, + -0.0358722 + ], + [ + 109.3113588, + -0.0359092 + ], + [ + 109.3113972, + -0.0358567 + ], + [ + 109.3114201, + -0.0358293 + ], + [ + 109.3117613, + -0.0354385 + ] + ] + }, + "id": "way/1362480552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362532306", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3141177, + -0.0306161 + ], + [ + 109.3143414, + -0.0305575 + ] + ] + }, + "id": "way/1362532306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362790469", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3758736, + -0.029318 + ], + [ + 109.3757883, + -0.0278563 + ] + ] + }, + "id": "way/1362790469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362792766", + "highway": "living_street", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2862716, + -0.0215633 + ], + [ + 109.2863431, + -0.0219154 + ], + [ + 109.2863503, + -0.0219488 + ] + ] + }, + "id": "way/1362792766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362793331", + "highway": "residential", + "motorcar": "no", + "name": "Perumahan Warga Sejahtera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2901327, + -0.0123439 + ], + [ + 109.2902351, + -0.0123048 + ], + [ + 109.2904525, + -0.0121821 + ], + [ + 109.2906568, + -0.0120778 + ], + [ + 109.2907585, + -0.0120157 + ], + [ + 109.290818, + -0.0119795 + ], + [ + 109.2908447, + -0.0119468 + ], + [ + 109.290855, + -0.0119142 + ], + [ + 109.2908687, + -0.0117355 + ] + ] + }, + "id": "way/1362793331" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1362794562", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.28929, + -0.0114598 + ], + [ + 109.2892547, + -0.011474 + ], + [ + 109.2892435, + -0.0114766 + ], + [ + 109.2892104, + -0.0114773 + ] + ] + }, + "id": "way/1362794562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873885", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337404, + -0.070419 + ], + [ + 109.3335906, + -0.0705877 + ], + [ + 109.3330702, + -0.0700727 + ] + ] + }, + "id": "way/1365873885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873886", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425947, + -0.074906 + ], + [ + 109.3438849, + -0.0756705 + ], + [ + 109.3447164, + -0.0761693 + ], + [ + 109.3445528, + -0.0764563 + ] + ] + }, + "id": "way/1365873886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873887", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408786, + -0.076776 + ], + [ + 109.340162, + -0.0764724 + ] + ] + }, + "id": "way/1365873887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873888", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3424082, + -0.0751271 + ], + [ + 109.3420234, + -0.074678 + ] + ] + }, + "id": "way/1365873888" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873889", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3388025, + -0.0732864 + ], + [ + 109.3387438, + -0.0732377 + ], + [ + 109.3379518, + -0.0725806 + ] + ] + }, + "id": "way/1365873889" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873890", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377257, + -0.0742041 + ], + [ + 109.3376783, + -0.0741617 + ], + [ + 109.336777, + -0.0733557 + ] + ] + }, + "id": "way/1365873890" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873891", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3379172, + -0.0740387 + ], + [ + 109.3383729, + -0.0747263 + ] + ] + }, + "id": "way/1365873891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873892", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376096, + -0.0743044 + ], + [ + 109.3383461, + -0.0753915 + ] + ] + }, + "id": "way/1365873892" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873893", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364058, + -0.075386 + ], + [ + 109.3373859, + -0.0768292 + ] + ] + }, + "id": "way/1365873893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873894", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33645, + -0.0753274 + ], + [ + 109.3363919, + -0.0752828 + ], + [ + 109.3362433, + -0.0751689 + ], + [ + 109.3361494, + -0.075244 + ], + [ + 109.3355486, + -0.0747645 + ] + ] + }, + "id": "way/1365873894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1365873895", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366818, + -0.0751058 + ], + [ + 109.3366566, + -0.075052 + ], + [ + 109.3365732, + -0.0748738 + ], + [ + 109.335958, + -0.0743539 + ], + [ + 109.334304, + -0.0729709 + ] + ] + }, + "id": "way/1365873895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1366247754", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3637204, + -0.0645424 + ], + [ + 109.3638379, + -0.0645957 + ] + ] + }, + "id": "way/1366247754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1366480935", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251125, + -0.0157056 + ], + [ + 109.3252878, + -0.0158358 + ] + ] + }, + "id": "way/1366480935" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1368642012", + "highway": "residential", + "motorcar": "no", + "motorcycle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3513725, + -0.0778163 + ], + [ + 109.3513219, + -0.0779019 + ], + [ + 109.3512677, + -0.0779705 + ], + [ + 109.3512197, + -0.0780259 + ] + ] + }, + "id": "way/1368642012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1368642013", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505421, + -0.0769499 + ], + [ + 109.3511993, + -0.0776566 + ], + [ + 109.3513725, + -0.0778163 + ] + ] + }, + "id": "way/1368642013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1368642014", + "highway": "residential", + "motorcar": "no", + "motorcycle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3512197, + -0.0780259 + ], + [ + 109.3511556, + -0.0780978 + ] + ] + }, + "id": "way/1368642014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1368929754", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509588, + -0.0411121 + ], + [ + 109.351123, + -0.041297 + ] + ] + }, + "id": "way/1368929754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1370792595", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500352, + -0.0858146 + ], + [ + 109.3505099, + -0.0861056 + ], + [ + 109.3506903, + -0.0862229 + ] + ] + }, + "id": "way/1370792595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1374159069", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033104, + 0.0076614 + ], + [ + 109.3034144, + 0.0076215 + ], + [ + 109.3037165, + 0.0075427 + ], + [ + 109.3039773, + 0.0074817 + ], + [ + 109.3041912, + 0.0074321 + ], + [ + 109.3043987, + 0.0073835 + ], + [ + 109.3045469, + 0.0073425 + ], + [ + 109.3047676, + 0.0072879 + ] + ] + }, + "id": "way/1374159069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1374159070", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3025427, + 0.0093475 + ], + [ + 109.3026312, + 0.0093146 + ], + [ + 109.302709, + 0.0093153 + ], + [ + 109.3027747, + 0.0093562 + ], + [ + 109.3027995, + 0.0094045 + ], + [ + 109.3028189, + 0.0094139 + ], + [ + 109.3028484, + 0.0094119 + ], + [ + 109.3030583, + 0.0093421 + ] + ] + }, + "id": "way/1374159070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1374159071", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020806, + 0.0092962 + ], + [ + 109.3022878, + 0.0092804 + ], + [ + 109.3024662, + 0.0092711 + ], + [ + 109.3025105, + 0.0092925 + ], + [ + 109.3025427, + 0.0093475 + ], + [ + 109.3026982, + 0.0097954 + ], + [ + 109.3028699, + 0.0102688 + ], + [ + 109.3030335, + 0.0106242 + ], + [ + 109.3031643, + 0.0108643 + ], + [ + 109.3032005, + 0.0108904 + ], + [ + 109.3032595, + 0.0108998 + ], + [ + 109.303348, + 0.0108784 + ], + [ + 109.3034419, + 0.0108301 + ], + [ + 109.3035143, + 0.0107563 + ], + [ + 109.303578, + 0.0106732 + ], + [ + 109.3036303, + 0.0106189 + ], + [ + 109.3037302, + 0.0105733 + ], + [ + 109.3038341, + 0.0105344 + ] + ] + }, + "id": "way/1374159071" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1374159072", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023234, + 0.0113028 + ], + [ + 109.3018614, + 0.0114611 + ], + [ + 109.3014282, + 0.0116254 + ], + [ + 109.3013592, + 0.0116761 + ] + ] + }, + "id": "way/1374159072" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1374217316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102721, + 0.0110232 + ], + [ + 109.3105725, + 0.0109508 + ] + ] + }, + "id": "way/1374217316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1374217317", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3101414, + 0.0106484 + ], + [ + 109.3102721, + 0.0110232 + ], + [ + 109.3104109, + 0.0114416 + ], + [ + 109.3104109, + 0.0114577 + ], + [ + 109.3104049, + 0.0114752 + ], + [ + 109.3103801, + 0.0115087 + ], + [ + 109.3102607, + 0.0115375 + ] + ] + }, + "id": "way/1374217317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1374403679", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3656107, + -0.0303022 + ], + [ + 109.3654706, + -0.0301226 + ] + ] + }, + "id": "way/1374403679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1375772070", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455344, + -0.004313 + ], + [ + 109.3461058, + -0.0046214 + ], + [ + 109.3466368, + -0.0049084 + ], + [ + 109.3471491, + -0.0052111 + ] + ] + }, + "id": "way/1375772070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1376392175", + "highway": "residential", + "name": "Gang Madyosari II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226659, + -0.0566295 + ], + [ + 109.322506, + -0.0568157 + ], + [ + 109.3224678, + -0.0568602 + ] + ] + }, + "id": "way/1376392175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1376392176", + "highway": "residential", + "motorcar": "no", + "name": "Gang Madyosari II" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224724, + -0.0564767 + ], + [ + 109.3226659, + -0.0566295 + ] + ] + }, + "id": "way/1376392176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1386639883", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375924, + -0.0852044 + ], + [ + 109.3378472, + -0.0853371 + ], + [ + 109.3392273, + -0.0861109 + ] + ] + }, + "id": "way/1386639883" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1386642579", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351733, + -0.0617007 + ], + [ + 109.3514521, + -0.0619295 + ], + [ + 109.3514541, + -0.061955 + ], + [ + 109.3515453, + -0.0620556 + ], + [ + 109.3515775, + -0.0620509 + ], + [ + 109.3517035, + -0.0619456 + ], + [ + 109.3518392, + -0.0618344 + ] + ] + }, + "id": "way/1386642579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1386646695", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363795, + -0.0051505 + ], + [ + 109.3637902, + -0.0053088 + ] + ] + }, + "id": "way/1386646695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1386646696", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636081, + -0.0053023 + ], + [ + 109.3636295, + -0.0053031 + ], + [ + 109.3637902, + -0.0053088 + ], + [ + 109.3640987, + -0.0053336 + ] + ] + }, + "id": "way/1386646696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1386646697", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636148, + -0.0051458 + ], + [ + 109.3636415, + -0.0051465 + ], + [ + 109.363795, + -0.0051505 + ], + [ + 109.3641222, + -0.0051626 + ], + [ + 109.3641416, + -0.0051579 + ], + [ + 109.3641624, + -0.0051492 + ], + [ + 109.3641899, + -0.0051391 + ], + [ + 109.3643367, + -0.0051311 + ] + ] + }, + "id": "way/1386646697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1387291704", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413393, + -0.0705309 + ], + [ + 109.3413504, + -0.0705803 + ], + [ + 109.3413811, + -0.0706228 + ], + [ + 109.3413926, + -0.0706295 + ], + [ + 109.3414339, + -0.0706535 + ], + [ + 109.3414897, + -0.0706775 + ] + ] + }, + "id": "way/1387291704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1387291705", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341656, + -0.0701787 + ], + [ + 109.3410073, + -0.069584 + ] + ] + }, + "id": "way/1387291705" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1387292621", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439568, + -0.0676444 + ], + [ + 109.3430913, + -0.0668259 + ] + ] + }, + "id": "way/1387292621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1387292622", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456719, + -0.065837 + ], + [ + 109.3448011, + -0.0650139 + ] + ] + }, + "id": "way/1387292622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1387292623", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468321, + -0.0640634 + ], + [ + 109.3466318, + -0.0638815 + ] + ] + }, + "id": "way/1387292623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1387295316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431243, + -0.0868641 + ], + [ + 109.3453471, + -0.0882741 + ] + ] + }, + "id": "way/1387295316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1387917991", + "highway": "service", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3363581, + -0.0482601 + ], + [ + 109.3362164, + -0.0482781 + ] + ] + }, + "id": "way/1387917991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388074056", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633073, + -0.0643405 + ], + [ + 109.3633617, + -0.0643629 + ], + [ + 109.3637204, + -0.0645424 + ] + ] + }, + "id": "way/1388074056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388074057", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636621, + -0.0646756 + ], + [ + 109.3634019, + -0.0645447 + ], + [ + 109.3632778, + -0.0644883 + ], + [ + 109.363244, + -0.0644741 + ] + ] + }, + "id": "way/1388074057" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388074058", + "covered": "yes", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363244, + -0.0644741 + ], + [ + 109.3632028, + -0.0644562 + ], + [ + 109.3631732, + -0.0644132 + ], + [ + 109.3631853, + -0.0643576 + ], + [ + 109.3632114, + -0.0643207 + ], + [ + 109.3632478, + -0.0643194 + ], + [ + 109.3633073, + -0.0643405 + ] + ] + }, + "id": "way/1388074058" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388074141", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411806, + -0.0167992 + ], + [ + 109.340905, + -0.0171031 + ], + [ + 109.3408379, + -0.0171956 + ], + [ + 109.3408372, + -0.0172104 + ], + [ + 109.3408453, + -0.0172225 + ], + [ + 109.3411236, + -0.0174665 + ], + [ + 109.3413254, + -0.0176342 + ] + ] + }, + "id": "way/1388074141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388137456", + "highway": "residential", + "name": "Gang Wisuda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567143, + -0.0770416 + ], + [ + 109.3561935, + -0.0767215 + ], + [ + 109.3556435, + -0.0763638 + ], + [ + 109.3553056, + -0.0761452 + ] + ] + }, + "id": "way/1388137456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388202477", + "highway": "cycleway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367503, + -0.0485776 + ], + [ + 109.3368409, + -0.0486238 + ], + [ + 109.3369425, + -0.0486072 + ], + [ + 109.3370274, + -0.0485573 + ], + [ + 109.3370921, + -0.0484779 + ], + [ + 109.3370995, + -0.0483855 + ], + [ + 109.3370406, + -0.0481107 + ], + [ + 109.337012, + -0.0479771 + ], + [ + 109.3369425, + -0.0476521 + ], + [ + 109.3368995, + -0.0476028 + ], + [ + 109.3368353, + -0.0475652 + ], + [ + 109.3367078, + -0.0475486 + ], + [ + 109.3366192, + -0.0475837 + ], + [ + 109.3365693, + -0.0476872 + ], + [ + 109.3365453, + -0.0477648 + ], + [ + 109.3365434, + -0.0478627 + ], + [ + 109.3366672, + -0.0484594 + ], + [ + 109.336706, + -0.0485204 + ], + [ + 109.3367503, + -0.0485776 + ] + ] + }, + "id": "way/1388202477" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388202478", + "highway": "cycleway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368384, + -0.047875 + ], + [ + 109.3369203, + -0.0482623 + ], + [ + 109.3369257, + -0.0482876 + ], + [ + 109.3369398, + -0.0483678 + ], + [ + 109.3369268, + -0.0484161 + ], + [ + 109.3368997, + -0.0484468 + ], + [ + 109.3368644, + -0.0484539 + ], + [ + 109.3368278, + -0.0484374 + ], + [ + 109.3368137, + -0.0484091 + ], + [ + 109.3367076, + -0.0478172 + ], + [ + 109.3367087, + -0.0477701 + ], + [ + 109.3367264, + -0.0477324 + ], + [ + 109.3367524, + -0.047717 + ], + [ + 109.3367842, + -0.0477206 + ], + [ + 109.3368184, + -0.0477536 + ], + [ + 109.3368254, + -0.0477984 + ], + [ + 109.3368384, + -0.047875 + ] + ] + }, + "id": "way/1388202478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388202479", + "highway": "cycleway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368384, + -0.047875 + ], + [ + 109.337012, + -0.0479771 + ] + ] + }, + "id": "way/1388202479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388202480", + "highway": "cycleway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369203, + -0.0482623 + ], + [ + 109.336987, + -0.0481969 + ], + [ + 109.3370176, + -0.0481556 + ], + [ + 109.3370406, + -0.0481107 + ] + ] + }, + "id": "way/1388202480" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388209226", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681272, + -0.0382152 + ], + [ + 109.3681836, + -0.0382885 + ], + [ + 109.3682456, + -0.0383692 + ], + [ + 109.3683048, + -0.0384461 + ], + [ + 109.3683489, + -0.0384312 + ], + [ + 109.3683862, + -0.0384112 + ], + [ + 109.3697679, + -0.0374153 + ] + ] + }, + "id": "way/1388209226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388910039", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454455, + -0.0528766 + ], + [ + 109.3455018, + -0.0529219 + ] + ] + }, + "id": "way/1388910039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388910040", + "access": "private", + "highway": "service", + "motorcar": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455127, + -0.0528545 + ], + [ + 109.3454614, + -0.0528066 + ] + ] + }, + "id": "way/1388910040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388910041", + "access": "destination", + "highway": "service", + "motorcycle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460778, + -0.0515223 + ], + [ + 109.3460534, + -0.0515368 + ], + [ + 109.3460156, + -0.0515561 + ] + ] + }, + "id": "way/1388910041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388910042", + "access": "destination", + "highway": "service", + "motorcycle": "no", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461301, + -0.0515851 + ], + [ + 109.3461095, + -0.0515938 + ], + [ + 109.3460654, + -0.0516218 + ] + ] + }, + "id": "way/1388910042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1388971182", + "bridge": "yes", + "highway": "service", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351217, + -0.0109587 + ], + [ + 109.3512518, + -0.0109851 + ] + ] + }, + "id": "way/1388971182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1389694203", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2948108, + -0.0318098 + ], + [ + 109.2953847, + -0.0326989 + ] + ] + }, + "id": "way/1389694203" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1390278318", + "access": "destination", + "highway": "residential", + "maxspeed": "20", + "name": "Bali Mas 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529494, + -0.0698954 + ], + [ + 109.3540049, + -0.0710946 + ], + [ + 109.3549933, + -0.072142 + ], + [ + 109.3550053, + -0.0721863 + ], + [ + 109.355012, + -0.0722292 + ], + [ + 109.3550061, + -0.072281 + ] + ] + }, + "id": "way/1390278318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1391613536", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344085, + -0.0175377 + ], + [ + 109.3349923, + -0.018023 + ], + [ + 109.3353202, + -0.0182956 + ], + [ + 109.3353338, + -0.0183133 + ], + [ + 109.335332, + -0.0183373 + ], + [ + 109.3353199, + -0.018357 + ], + [ + 109.3351311, + -0.0185976 + ] + ] + }, + "id": "way/1391613536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1392275458", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3349451, + -0.0330931 + ], + [ + 109.3349253, + -0.0331175 + ], + [ + 109.3348083, + -0.0332621 + ], + [ + 109.3348254, + -0.0332797 + ], + [ + 109.3348965, + -0.033353 + ] + ] + }, + "id": "way/1392275458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1394521265", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332714, + -0.0287211 + ], + [ + 109.3335122, + -0.0285258 + ], + [ + 109.3338802, + -0.0281934 + ] + ] + }, + "id": "way/1394521265" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1394527378", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507376, + -0.0141936 + ], + [ + 109.3509019, + -0.0142097 + ], + [ + 109.3509163, + -0.0142134 + ], + [ + 109.3509277, + -0.0142181 + ], + [ + 109.3509404, + -0.0142264 + ], + [ + 109.3509636, + -0.0142415 + ], + [ + 109.350975, + -0.0142496 + ], + [ + 109.350988, + -0.0142559 + ], + [ + 109.3510056, + -0.0142581 + ], + [ + 109.3513678, + -0.0143017 + ] + ] + }, + "id": "way/1394527378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1394528575", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469578, + -0.0338269 + ], + [ + 109.3470743, + -0.0340732 + ] + ] + }, + "id": "way/1394528575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1394528576", + "highway": "living_street", + "name": "Gang Tiga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463704, + -0.0344064 + ], + [ + 109.3465498, + -0.0343259 + ], + [ + 109.3470466, + -0.0340879 + ], + [ + 109.3471438, + -0.03429 + ] + ] + }, + "id": "way/1394528576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1394533108", + "highway": "living_street", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321985, + -0.02945 + ], + [ + 109.3320966, + -0.0292917 + ], + [ + 109.3318181, + -0.0289287 + ] + ] + }, + "id": "way/1394533108" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1395639327", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2945027, + -0.0316704 + ], + [ + 109.2945397, + -0.0317275 + ] + ] + }, + "id": "way/1395639327" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1395639328", + "access": "no", + "highway": "footway", + "name": "Jalan Puskesmas Pal 3", + "surface": "grass" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2945027, + -0.0316704 + ], + [ + 109.2952136, + -0.0312054 + ] + ] + }, + "id": "way/1395639328" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1395710356", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.375729, + -0.0410572 + ], + [ + 109.3757792, + -0.041017 + ] + ] + }, + "id": "way/1395710356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1395710357", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3744334, + -0.0419581 + ], + [ + 109.375729, + -0.0410572 + ] + ] + }, + "id": "way/1395710357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1395711503", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3004664, + -0.0079085 + ], + [ + 109.3005471, + -0.0084107 + ] + ] + }, + "id": "way/1395711503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1395716648", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615988, + -0.0305187 + ], + [ + 109.3619491, + -0.0303846 + ] + ] + }, + "id": "way/1395716648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1395716649", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3615693, + -0.0305305 + ], + [ + 109.3615988, + -0.0305187 + ] + ] + }, + "id": "way/1395716649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1395716650", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614525, + -0.030674 + ], + [ + 109.3615181, + -0.0305631 + ], + [ + 109.3615271, + -0.0305516 + ], + [ + 109.3615378, + -0.0305436 + ], + [ + 109.3615693, + -0.0305305 + ] + ] + }, + "id": "way/1395716650" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1411745110", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098127, + -0.0290806 + ], + [ + 109.3093544, + -0.0292404 + ] + ] + }, + "id": "way/1411745110" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1411818486", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536924, + -0.0620851 + ], + [ + 109.3532498, + -0.0624432 + ], + [ + 109.3527549, + -0.0628361 + ] + ] + }, + "id": "way/1411818486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1411818487", + "access": "private", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532281, + -0.0601978 + ], + [ + 109.3532012, + -0.06022 + ], + [ + 109.3530844, + -0.0603214 + ], + [ + 109.3528756, + -0.0604959 + ], + [ + 109.3526436, + -0.0607011 + ] + ] + }, + "id": "way/1411818487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1411818488", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519637, + -0.0619912 + ], + [ + 109.3520442, + -0.0619563 + ], + [ + 109.3521112, + -0.0619376 + ], + [ + 109.3522038, + -0.0619429 + ], + [ + 109.3522909, + -0.0619644 + ], + [ + 109.3523365, + -0.0619952 + ], + [ + 109.3523593, + -0.0620207 + ], + [ + 109.3523821, + -0.0620489 + ], + [ + 109.3524143, + -0.0621079 + ], + [ + 109.3524384, + -0.062195 + ], + [ + 109.3524371, + -0.0622581 + ], + [ + 109.352413, + -0.0623412 + ], + [ + 109.3523808, + -0.0623935 + ], + [ + 109.3523387, + -0.0624632 + ] + ] + }, + "id": "way/1411818488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1412968884", + "access": "destination", + "highway": "residential", + "name": "Gang Amali", + "smoothness": "horrible", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413393, + -0.0705309 + ], + [ + 109.3407424, + -0.0700585 + ], + [ + 109.3405214, + -0.0698836 + ] + ] + }, + "id": "way/1412968884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1412968885", + "access": "destination", + "highway": "residential", + "name": "Gang Amali", + "smoothness": "horrible", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405214, + -0.0698836 + ], + [ + 109.3400788, + -0.0695256 + ], + [ + 109.3392017, + -0.0687745 + ], + [ + 109.3389228, + -0.0685412 + ], + [ + 109.3387726, + -0.0683883 + ], + [ + 109.3385906, + -0.068176 + ] + ] + }, + "id": "way/1412968885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413025621", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342185, + -0.088462 + ], + [ + 109.3390261, + -0.0866836 + ] + ] + }, + "id": "way/1413025621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413025622", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433421, + -0.0865216 + ], + [ + 109.3439265, + -0.0868942 + ] + ] + }, + "id": "way/1413025622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028613", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2948139, + -0.0516271 + ], + [ + 109.2967243, + -0.0496981 + ] + ] + }, + "id": "way/1413028613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2945215, + -0.0512999 + ], + [ + 109.2964213, + -0.049392 + ] + ] + }, + "id": "way/1413028614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028615", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2965787, + -0.0495511 + ], + [ + 109.2970232, + -0.0490889 + ] + ] + }, + "id": "way/1413028615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028616", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296324, + -0.0492936 + ], + [ + 109.2964213, + -0.049392 + ], + [ + 109.2965787, + -0.0495511 + ], + [ + 109.2967243, + -0.0496981 + ], + [ + 109.2968336, + -0.0498086 + ] + ] + }, + "id": "way/1413028616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028617", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.296454, + -0.0484541 + ], + [ + 109.2970232, + -0.0490889 + ], + [ + 109.2972802, + -0.0493754 + ] + ] + }, + "id": "way/1413028617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028618", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2961308, + -0.0487827 + ], + [ + 109.296454, + -0.0484541 + ], + [ + 109.2960423, + -0.0480451 + ] + ] + }, + "id": "way/1413028618" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028619", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950633, + -0.0495406 + ], + [ + 109.2953551, + -0.049836 + ] + ] + }, + "id": "way/1413028619" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2944132, + -0.0501826 + ], + [ + 109.2950633, + -0.0495406 + ], + [ + 109.2959826, + -0.0486326 + ], + [ + 109.2961308, + -0.0487827 + ], + [ + 109.2962744, + -0.0489281 + ], + [ + 109.2953551, + -0.049836 + ], + [ + 109.2947051, + -0.0504781 + ], + [ + 109.2944132, + -0.0501826 + ] + ] + }, + "id": "way/1413028620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028621", + "highway": "residential", + "name": "Jalan Komplek Pesona Ampera" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2931268, + -0.0497442 + ], + [ + 109.2937135, + -0.0491642 + ] + ] + }, + "id": "way/1413028621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413028622", + "highway": "residential", + "name": "Jalan Perumahan Ampera Emerald" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2916301, + -0.048202 + ], + [ + 109.2922635, + -0.0475629 + ] + ] + }, + "id": "way/1413028622" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413029258", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2899215, + -0.043382 + ], + [ + 109.2911073, + -0.0446872 + ] + ] + }, + "id": "way/1413029258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413029536", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2972401, + -0.0490841 + ], + [ + 109.2990638, + -0.0475287 + ] + ] + }, + "id": "way/1413029536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413029936", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301164, + -0.0481912 + ], + [ + 109.3026206, + -0.0472364 + ] + ] + }, + "id": "way/1413029936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413029937", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3015167, + -0.0499642 + ], + [ + 109.2995162, + -0.0515847 + ] + ] + }, + "id": "way/1413029937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413032479", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2807527, + -0.0380218 + ], + [ + 109.2817783, + -0.0395974 + ] + ] + }, + "id": "way/1413032479" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413032608", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2821243, + -0.0371808 + ], + [ + 109.2841447, + -0.0401553 + ] + ] + }, + "id": "way/1413032608" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413033259", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2806503, + -0.0367206 + ], + [ + 109.2808877, + -0.0365526 + ] + ] + }, + "id": "way/1413033259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413033260", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2812868, + -0.0371244 + ], + [ + 109.2810501, + -0.0372948 + ], + [ + 109.2806503, + -0.0367206 + ], + [ + 109.2801985, + -0.0360717 + ], + [ + 109.2804332, + -0.0359014 + ], + [ + 109.2808877, + -0.0365526 + ], + [ + 109.2812868, + -0.0371244 + ], + [ + 109.281453, + -0.0373626 + ] + ] + }, + "id": "way/1413033260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413033261", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.27839, + -0.0334391 + ], + [ + 109.2785476, + -0.0333526 + ], + [ + 109.2789113, + -0.0339258 + ] + ] + }, + "id": "way/1413033261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413033263", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2790565, + -0.0337358 + ], + [ + 109.2789113, + -0.0339258 + ], + [ + 109.2783733, + -0.0346769 + ], + [ + 109.2776665, + -0.0353971 + ], + [ + 109.2772333, + -0.0346957 + ], + [ + 109.2771314, + -0.0347709 + ], + [ + 109.2768605, + -0.0349706 + ], + [ + 109.2756388, + -0.0329389 + ] + ] + }, + "id": "way/1413033263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413033481", + "highway": "residential", + "layer": "-1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029664, + -0.0419189 + ], + [ + 109.3035407, + -0.0415708 + ] + ] + }, + "id": "way/1413033481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413033482", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026271, + -0.0416708 + ], + [ + 109.3033406, + -0.0412277 + ] + ] + }, + "id": "way/1413033482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034134", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058994, + -0.041703 + ], + [ + 109.3053903, + -0.0422869 + ] + ] + }, + "id": "way/1413034134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034199", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255332, + -0.0641879 + ], + [ + 109.3257599, + -0.0640243 + ], + [ + 109.3250115, + -0.0625853 + ] + ] + }, + "id": "way/1413034199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034200", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250115, + -0.0625853 + ], + [ + 109.3248828, + -0.0629065 + ], + [ + 109.3255332, + -0.0641879 + ], + [ + 109.3253638, + -0.064364 + ] + ] + }, + "id": "way/1413034200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034529", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355231, + -0.0761023 + ], + [ + 109.335552, + -0.0761328 + ] + ] + }, + "id": "way/1413034529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034530", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3354627, + -0.0760433 + ], + [ + 109.3355231, + -0.0761023 + ] + ] + }, + "id": "way/1413034530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034531", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340439, + -0.074898 + ], + [ + 109.3354627, + -0.0760433 + ] + ] + }, + "id": "way/1413034531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034767", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434184, + -0.0782179 + ], + [ + 109.3436248, + -0.077874 + ] + ] + }, + "id": "way/1413034767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034768", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432114, + -0.0779274 + ], + [ + 109.3433444, + -0.0777057 + ] + ] + }, + "id": "way/1413034768" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034769", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428589, + -0.0778749 + ], + [ + 109.343062, + -0.0775363 + ] + ] + }, + "id": "way/1413034769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034770", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3425893, + -0.0777032 + ], + [ + 109.3427881, + -0.0773719 + ] + ] + }, + "id": "way/1413034770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034771", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423422, + -0.0775502 + ], + [ + 109.3425389, + -0.0772224 + ] + ] + }, + "id": "way/1413034771" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034772", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3420488, + -0.0773747 + ], + [ + 109.3422457, + -0.0770465 + ] + ] + }, + "id": "way/1413034772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034773", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417947, + -0.077212 + ], + [ + 109.3419871, + -0.0768913 + ] + ] + }, + "id": "way/1413034773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413034774", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415253, + -0.0770445 + ], + [ + 109.3417151, + -0.0767281 + ] + ] + }, + "id": "way/1413034774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413035001", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417913, + -0.0703346 + ], + [ + 109.3437964, + -0.0729567 + ] + ] + }, + "id": "way/1413035001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413035002", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383005, + -0.078067 + ], + [ + 109.339073, + -0.0774219 + ], + [ + 109.3398836, + -0.0778434 + ] + ] + }, + "id": "way/1413035002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413035040", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3289396, + -0.0586545 + ], + [ + 109.3294409, + -0.0583609 + ] + ] + }, + "id": "way/1413035040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413035234", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415299, + -0.0524171 + ], + [ + 109.3414454, + -0.0521609 + ] + ] + }, + "id": "way/1413035234" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413035310", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3268207, + -0.0484407 + ], + [ + 109.326272, + -0.0491477 + ], + [ + 109.3262204, + -0.0492142 + ] + ] + }, + "id": "way/1413035310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413035311", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3261568, + -0.0490536 + ], + [ + 109.326272, + -0.0491477 + ], + [ + 109.3263915, + -0.0492454 + ] + ] + }, + "id": "way/1413035311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413035446", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087909, + -0.0263017 + ], + [ + 109.3090943, + -0.0272393 + ] + ] + }, + "id": "way/1413035446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413035572", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304958, + -0.0374584 + ], + [ + 109.3058691, + -0.036945 + ] + ] + }, + "id": "way/1413035572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173175", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3218912, + -0.0266592 + ], + [ + 109.3219226, + -0.0267086 + ] + ] + }, + "id": "way/1413173175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173176", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226802, + -0.0262281 + ], + [ + 109.3219226, + -0.0267086 + ], + [ + 109.3214148, + -0.0270301 + ] + ] + }, + "id": "way/1413173176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173177", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205841, + -0.0275918 + ], + [ + 109.3207649, + -0.027502 + ], + [ + 109.3208052, + -0.0275181 + ] + ] + }, + "id": "way/1413173177" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173178", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208052, + -0.0275181 + ], + [ + 109.3207904, + -0.027559 + ], + [ + 109.3206049, + -0.0276511 + ] + ] + }, + "id": "way/1413173178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173179", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3213207, + -0.0272073 + ], + [ + 109.3212437, + -0.0272955 + ], + [ + 109.3211934, + -0.0273082 + ] + ] + }, + "id": "way/1413173179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173180", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211934, + -0.0273082 + ], + [ + 109.3212014, + -0.027264 + ], + [ + 109.321274, + -0.0271742 + ] + ] + }, + "id": "way/1413173180" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173181", + "highway": "residential", + "junction": "roundabout" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214434, + -0.0271589 + ], + [ + 109.3214266, + -0.027182 + ], + [ + 109.3214039, + -0.0271995 + ], + [ + 109.3213773, + -0.02721 + ], + [ + 109.3213488, + -0.0272127 + ], + [ + 109.3213207, + -0.0272073 + ], + [ + 109.321295, + -0.0271941 + ], + [ + 109.321274, + -0.0271742 + ], + [ + 109.3212597, + -0.02715 + ], + [ + 109.3212527, + -0.0271227 + ], + [ + 109.3212534, + -0.0270946 + ], + [ + 109.3212618, + -0.0270678 + ], + [ + 109.3212773, + -0.0270442 + ], + [ + 109.3212986, + -0.0270259 + ], + [ + 109.3213241, + -0.027014 + ], + [ + 109.3213555, + -0.0270096 + ], + [ + 109.3213868, + -0.0270152 + ], + [ + 109.3214148, + -0.0270301 + ], + [ + 109.321435, + -0.0270503 + ], + [ + 109.3214488, + -0.0270754 + ], + [ + 109.321455, + -0.0271034 + ], + [ + 109.3214531, + -0.0271319 + ], + [ + 109.3214434, + -0.0271589 + ] + ] + }, + "id": "way/1413173181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173182", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211934, + -0.0273082 + ], + [ + 109.3209969, + -0.0274222 + ], + [ + 109.3208052, + -0.0275181 + ] + ] + }, + "id": "way/1413173182" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173914", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249118, + -0.0308252 + ], + [ + 109.3249762, + -0.0309257 + ] + ] + }, + "id": "way/1413173914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173915", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324569, + -0.0310452 + ], + [ + 109.3246352, + -0.0311484 + ] + ] + }, + "id": "way/1413173915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173916", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3245127, + -0.0306064 + ], + [ + 109.3242981, + -0.030272 + ], + [ + 109.32371, + -0.0306493 + ], + [ + 109.3239245, + -0.0309837 + ], + [ + 109.3241404, + -0.0313201 + ], + [ + 109.324569, + -0.0310452 + ], + [ + 109.3249118, + -0.0308252 + ], + [ + 109.3251006, + -0.0307041 + ] + ] + }, + "id": "way/1413173916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173920", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237804, + -0.0295106 + ], + [ + 109.3227867, + -0.0301679 + ] + ] + }, + "id": "way/1413173920" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173921", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227867, + -0.0301679 + ], + [ + 109.322729, + -0.0301601 + ], + [ + 109.3219167, + -0.0306944 + ] + ] + }, + "id": "way/1413173921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173922", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3232399, + -0.0306563 + ], + [ + 109.3235965, + -0.0312006 + ] + ] + }, + "id": "way/1413173922" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413173923", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.32352, + -0.0312384 + ], + [ + 109.3234454, + -0.0312857 + ], + [ + 109.3230428, + -0.0315401 + ], + [ + 109.3229905, + -0.0315347 + ], + [ + 109.3229435, + -0.0315052 + ], + [ + 109.3226472, + -0.0310063 + ], + [ + 109.3226485, + -0.0309634 + ], + [ + 109.3226914, + -0.0309259 + ], + [ + 109.3230468, + -0.0307113 + ], + [ + 109.3230911, + -0.0307207 + ], + [ + 109.3231165, + -0.0307569 + ], + [ + 109.3234454, + -0.0312857 + ] + ] + }, + "id": "way/1413173923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413174965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3058312, + -0.0386887 + ], + [ + 109.3070157, + -0.0380348 + ] + ] + }, + "id": "way/1413174965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413175031", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3027961, + -0.037744 + ], + [ + 109.3038546, + -0.0368137 + ] + ] + }, + "id": "way/1413175031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413175086", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034043, + -0.0361537 + ], + [ + 109.3041493, + -0.0357445 + ] + ] + }, + "id": "way/1413175086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413175087", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040568, + -0.0354454 + ], + [ + 109.3032549, + -0.0358931 + ] + ] + }, + "id": "way/1413175087" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413175138", + "highway": "residential", + "name": "Gang Sukma 18" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022844, + -0.0394951 + ], + [ + 109.3031663, + -0.0386681 + ], + [ + 109.3038395, + -0.0380659 + ], + [ + 109.3044414, + -0.0374987 + ] + ] + }, + "id": "way/1413175138" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413175351", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429676, + -0.0574127 + ], + [ + 109.34229, + -0.0568116 + ] + ] + }, + "id": "way/1413175351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176459", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3790685, + -0.0506413 + ], + [ + 109.3815906, + -0.0486072 + ] + ] + }, + "id": "way/1413176459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176512", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3821194, + -0.0500782 + ], + [ + 109.3822494, + -0.0502512 + ] + ] + }, + "id": "way/1413176512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176513", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.381914, + -0.0502325 + ], + [ + 109.3820481, + -0.050411 + ] + ] + }, + "id": "way/1413176513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176514", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3816953, + -0.0503969 + ], + [ + 109.3818285, + -0.0505741 + ] + ] + }, + "id": "way/1413176514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176515", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3814768, + -0.0505611 + ], + [ + 109.3815961, + -0.05072 + ] + ] + }, + "id": "way/1413176515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176516", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3812576, + -0.0507259 + ], + [ + 109.3813928, + -0.0509059 + ] + ] + }, + "id": "way/1413176516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176517", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3810467, + -0.0508844 + ], + [ + 109.3811744, + -0.0510542 + ] + ] + }, + "id": "way/1413176517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176518", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3808325, + -0.0510454 + ], + [ + 109.3809697, + -0.051228 + ] + ] + }, + "id": "way/1413176518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176519", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3806214, + -0.051204 + ], + [ + 109.3807529, + -0.0513789 + ] + ] + }, + "id": "way/1413176519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176520", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3803002, + -0.0514454 + ], + [ + 109.3804472, + -0.051641 + ] + ] + }, + "id": "way/1413176520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176521", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3800838, + -0.051608 + ], + [ + 109.3802304, + -0.0518031 + ] + ] + }, + "id": "way/1413176521" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176522", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3798624, + -0.0517744 + ], + [ + 109.3799922, + -0.0519472 + ] + ] + }, + "id": "way/1413176522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176523", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3796437, + -0.0519388 + ], + [ + 109.3797716, + -0.052109 + ] + ] + }, + "id": "way/1413176523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3794301, + -0.0520993 + ], + [ + 109.37956, + -0.0522722 + ] + ] + }, + "id": "way/1413176524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413176525", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3792121, + -0.0522632 + ], + [ + 109.3793444, + -0.0524392 + ] + ] + }, + "id": "way/1413176525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413177511", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3772337, + -0.0550711 + ], + [ + 109.3780267, + -0.0544649 + ] + ] + }, + "id": "way/1413177511" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413177512", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3774059, + -0.0553455 + ], + [ + 109.3772337, + -0.0550711 + ] + ] + }, + "id": "way/1413177512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413178584", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.372833, + -0.0501817 + ], + [ + 109.3723331, + -0.0505254 + ] + ] + }, + "id": "way/1413178584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413178585", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3741741, + -0.0505757 + ], + [ + 109.373526, + -0.0509941 + ] + ] + }, + "id": "way/1413178585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413178625", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3770936, + -0.048775 + ], + [ + 109.3761685, + -0.0494801 + ] + ] + }, + "id": "way/1413178625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413178759", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725451, + -0.0400747 + ], + [ + 109.3735957, + -0.0393549 + ], + [ + 109.37353, + -0.0392045 + ] + ] + }, + "id": "way/1413178759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413179535", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3791443, + -0.0411499 + ], + [ + 109.3800017, + -0.0405728 + ], + [ + 109.3801034, + -0.0407127 + ] + ] + }, + "id": "way/1413179535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180200", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3691078, + -0.0511218 + ], + [ + 109.3693083, + -0.0513849 + ] + ] + }, + "id": "way/1413180200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180201", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3689071, + -0.0512727 + ], + [ + 109.3691078, + -0.0511218 + ], + [ + 109.3699211, + -0.05051 + ] + ] + }, + "id": "way/1413180201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180202", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704837, + -0.0428555 + ], + [ + 109.3709111, + -0.0425269 + ], + [ + 109.3710728, + -0.042705 + ] + ] + }, + "id": "way/1413180202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180203", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680232, + -0.051053 + ], + [ + 109.3684046, + -0.0507916 + ], + [ + 109.3684248, + -0.0507095 + ], + [ + 109.3698736, + -0.0496875 + ] + ] + }, + "id": "way/1413180203" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180204", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3707066, + -0.0476158 + ], + [ + 109.3699539, + -0.0481148 + ] + ] + }, + "id": "way/1413180204" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180205", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693099, + -0.0436268 + ], + [ + 109.3696724, + -0.0442013 + ] + ] + }, + "id": "way/1413180205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180206", + "highway": "residential", + "name": "Gang Hasan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725739, + -0.045318 + ], + [ + 109.3713825, + -0.0460787 + ] + ] + }, + "id": "way/1413180206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180207", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3719314, + -0.0445605 + ], + [ + 109.3718471, + -0.04461 + ], + [ + 109.3707262, + -0.0452678 + ] + ] + }, + "id": "way/1413180207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180287", + "highway": "residential", + "name": "Gang Melati" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3661064, + -0.0386301 + ], + [ + 109.366345, + -0.0390001 + ], + [ + 109.3667218, + -0.0387498 + ] + ] + }, + "id": "way/1413180287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180590", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.36882, + -0.0350426 + ], + [ + 109.3694268, + -0.0345333 + ] + ] + }, + "id": "way/1413180590" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180591", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680096, + -0.0368151 + ], + [ + 109.3694451, + -0.0356639 + ] + ] + }, + "id": "way/1413180591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180592", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701018, + -0.0376489 + ], + [ + 109.3699947, + -0.0375007 + ], + [ + 109.371166, + -0.0366537 + ], + [ + 109.3712588, + -0.036782 + ] + ] + }, + "id": "way/1413180592" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180593", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3689286, + -0.0372145 + ], + [ + 109.3691164, + -0.0374828 + ] + ] + }, + "id": "way/1413180593" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180594", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3686003, + -0.0373964 + ], + [ + 109.3688306, + -0.0376922 + ] + ] + }, + "id": "way/1413180594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180595", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683339, + -0.0376451 + ], + [ + 109.3685285, + -0.0379136 + ] + ] + }, + "id": "way/1413180595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180797", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3729214, + -0.030455 + ], + [ + 109.3728661, + -0.0289188 + ] + ] + }, + "id": "way/1413180797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180894", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3737739, + -0.034379 + ], + [ + 109.3741133, + -0.0347485 + ] + ] + }, + "id": "way/1413180894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180895", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3735684, + -0.0345677 + ], + [ + 109.3739159, + -0.0349461 + ] + ] + }, + "id": "way/1413180895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180896", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373662, + -0.0350999 + ], + [ + 109.3733541, + -0.0347645 + ] + ] + }, + "id": "way/1413180896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180897", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3740128, + -0.0341597 + ], + [ + 109.3737739, + -0.034379 + ], + [ + 109.3735684, + -0.0345677 + ], + [ + 109.3733541, + -0.0347645 + ] + ] + }, + "id": "way/1413180897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180898", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373167, + -0.0349311 + ], + [ + 109.3733541, + -0.0347645 + ] + ] + }, + "id": "way/1413180898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180925", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3750022, + -0.0339957 + ], + [ + 109.3750302, + -0.0340355 + ], + [ + 109.3744451, + -0.0345784 + ] + ] + }, + "id": "way/1413180925" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413180978", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3766948, + -0.039282 + ], + [ + 109.3768847, + -0.0395158 + ] + ] + }, + "id": "way/1413180978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413191435", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373117, + -0.0062974 + ], + [ + 109.3745165, + -0.0061318 + ], + [ + 109.3744917, + -0.0058547 + ] + ] + }, + "id": "way/1413191435" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413191436", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3662417, + -0.0026429 + ], + [ + 109.3685651, + -0.0026332 + ], + [ + 109.3686017, + -0.002633 + ] + ] + }, + "id": "way/1413191436" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413192316", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3673975, + 0.0055415 + ], + [ + 109.3678008, + 0.0055576 + ] + ] + }, + "id": "way/1413192316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413192317", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3679978, + 0.0061163 + ], + [ + 109.3680281, + 0.0058225 + ], + [ + 109.3690804, + 0.0059081 + ] + ] + }, + "id": "way/1413192317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413192318", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3675212, + 0.0060622 + ], + [ + 109.3679978, + 0.0061163 + ], + [ + 109.368736, + 0.0062 + ] + ] + }, + "id": "way/1413192318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413192319", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3598004, + 0.0097501 + ], + [ + 109.3605084, + 0.009633 + ], + [ + 109.3604173, + 0.0092301 + ] + ] + }, + "id": "way/1413192319" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413192320", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619973, + 0.0108582 + ], + [ + 109.3620433, + 0.0111691 + ] + ] + }, + "id": "way/1413192320" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413192321", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609034, + 0.0110611 + ], + [ + 109.3619973, + 0.0108582 + ], + [ + 109.3632191, + 0.0106315 + ] + ] + }, + "id": "way/1413192321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413192322", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3626688, + 0.0104143 + ], + [ + 109.3631583, + 0.0103374 + ] + ] + }, + "id": "way/1413192322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413192323", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609733, + 0.0113617 + ], + [ + 109.3620433, + 0.0111691 + ], + [ + 109.3632841, + 0.0109457 + ], + [ + 109.3632191, + 0.0106315 + ], + [ + 109.3631583, + 0.0103374 + ], + [ + 109.3631845, + 0.010257 + ], + [ + 109.3632631, + 0.0101941 + ], + [ + 109.3648316, + 0.0100073 + ] + ] + }, + "id": "way/1413192323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413192324", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3581751, + 0.0124106 + ], + [ + 109.3602392, + 0.0118861 + ] + ] + }, + "id": "way/1413192324" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413194053", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2899013, + -0.0141672 + ], + [ + 109.2906323, + -0.0164037 + ] + ] + }, + "id": "way/1413194053" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413400673", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339832, + -0.0358772 + ], + [ + 109.3396798, + -0.0357058 + ] + ] + }, + "id": "way/1413400673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413400674", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397248, + -0.03596 + ], + [ + 109.339832, + -0.0358772 + ] + ] + }, + "id": "way/1413400674" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413400675", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401611, + -0.0362189 + ], + [ + 109.3400372, + -0.0363214 + ] + ] + }, + "id": "way/1413400675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413400676", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396798, + -0.0357058 + ], + [ + 109.3395774, + -0.0357968 + ] + ] + }, + "id": "way/1413400676" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413400677", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395698, + -0.0355818 + ], + [ + 109.3394607, + -0.0356676 + ] + ] + }, + "id": "way/1413400677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413400678", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403123, + -0.0363896 + ], + [ + 109.3401611, + -0.0362189 + ], + [ + 109.3399152, + -0.0359564 + ] + ] + }, + "id": "way/1413400678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413400679", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396798, + -0.0357058 + ], + [ + 109.3395698, + -0.0355818 + ], + [ + 109.3394928, + -0.035495 + ] + ] + }, + "id": "way/1413400679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413400680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405352, + -0.0366287 + ], + [ + 109.3403779, + -0.0364606 + ], + [ + 109.3403123, + -0.0363896 + ] + ] + }, + "id": "way/1413400680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413473788", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497027, + -0.0877811 + ], + [ + 109.3493204, + -0.0875553 + ], + [ + 109.348733, + -0.0872039 + ], + [ + 109.3482368, + -0.0868982 + ] + ] + }, + "id": "way/1413473788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413515409", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448146, + -0.0667438 + ], + [ + 109.343846, + -0.0658724 + ], + [ + 109.343508, + -0.0655787 + ] + ] + }, + "id": "way/1413515409" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1413773673", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480524, + -0.0552481 + ], + [ + 109.3482923, + -0.0549383 + ], + [ + 109.3483824, + -0.0550081 + ], + [ + 109.3484227, + -0.0549562 + ] + ] + }, + "id": "way/1413773673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1414039653", + "access": "yes", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Karya Kita 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472944, + -0.0750505 + ], + [ + 109.3461991, + -0.0743815 + ] + ] + }, + "id": "way/1414039653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1414039654", + "highway": "residential", + "name": "Jalan Karya Kita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458079, + -0.0750742 + ], + [ + 109.3459824, + -0.074729 + ], + [ + 109.3460843, + -0.0745546 + ], + [ + 109.3461991, + -0.0743815 + ] + ] + }, + "id": "way/1414039654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1415227158", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405962, + -0.0218976 + ], + [ + 109.3409224, + -0.0219478 + ], + [ + 109.3410172, + -0.0219716 + ], + [ + 109.3412391, + -0.0221232 + ], + [ + 109.3413826, + -0.0222534 + ], + [ + 109.3412734, + -0.0223516 + ] + ] + }, + "id": "way/1415227158" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1415227159", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397959, + -0.0211988 + ], + [ + 109.3399018, + -0.0213001 + ], + [ + 109.3399829, + -0.0214376 + ], + [ + 109.340054, + -0.0216099 + ], + [ + 109.3402264, + -0.021752 + ], + [ + 109.3402354, + -0.0218384 + ] + ] + }, + "id": "way/1415227159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1415227160", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395162, + -0.0209608 + ], + [ + 109.3394881, + -0.0209939 + ], + [ + 109.3394775, + -0.02103 + ], + [ + 109.3394732, + -0.0210801 + ], + [ + 109.339485, + -0.0211269 + ], + [ + 109.3394977, + -0.0211652 + ], + [ + 109.3395233, + -0.0212014 + ], + [ + 109.3395552, + -0.0212365 + ], + [ + 109.3396063, + -0.021261 + ], + [ + 109.339667, + -0.0212653 + ], + [ + 109.3397159, + -0.0212546 + ], + [ + 109.3397702, + -0.0212291 + ], + [ + 109.3397959, + -0.0211988 + ] + ] + }, + "id": "way/1415227160" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1415227161", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390371, + -0.0215489 + ], + [ + 109.339101, + -0.0211469 + ], + [ + 109.3391789, + -0.0208361 + ], + [ + 109.3392996, + -0.0208461 + ], + [ + 109.3395162, + -0.0209608 + ] + ] + }, + "id": "way/1415227161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1415227162", + "highway": "footway", + "incline": "down" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402952, + -0.0218422 + ], + [ + 109.3404872, + -0.0216059 + ], + [ + 109.3404845, + -0.0215965 + ], + [ + 109.3404778, + -0.0215918 + ], + [ + 109.3404684, + -0.0215904 + ], + [ + 109.3402552, + -0.0218557 + ], + [ + 109.3402354, + -0.0218384 + ] + ] + }, + "id": "way/1415227162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1415227163", + "highway": "footway", + "incline": "up" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3405962, + -0.0218976 + ], + [ + 109.340329, + -0.0222488 + ], + [ + 109.3403163, + -0.0222541 + ], + [ + 109.3403014, + -0.022251 + ], + [ + 109.3402961, + -0.0222371 + ], + [ + 109.3404845, + -0.0219934 + ] + ] + }, + "id": "way/1415227163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1415227164", + "bridge": "yes", + "highway": "footway", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3402952, + -0.0218422 + ], + [ + 109.3404845, + -0.0219934 + ] + ] + }, + "id": "way/1415227164" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1416213523", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3064005, + -0.0312599 + ], + [ + 109.3061803, + -0.030135 + ], + [ + 109.3061256, + -0.0298495 + ], + [ + 109.3060756, + -0.02955 + ], + [ + 109.3059662, + -0.0289249 + ] + ] + }, + "id": "way/1416213523" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1416213524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3037429, + -0.0298453 + ], + [ + 109.3038194, + -0.0302714 + ], + [ + 109.3039012, + -0.0306965 + ], + [ + 109.3039968, + -0.0311545 + ] + ] + }, + "id": "way/1416213524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1416481081", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347219, + -0.0585633 + ], + [ + 109.3472515, + -0.0585955 + ], + [ + 109.3475993, + -0.0589663 + ] + ] + }, + "id": "way/1416481081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1417656310", + "highway": "living_street", + "name": "JALAN FISIP SEPAKAT" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490538, + -0.060379 + ], + [ + 109.3488515, + -0.0606768 + ], + [ + 109.3486266, + -0.0610076 + ], + [ + 109.3485023, + -0.0611903 + ], + [ + 109.3483576, + -0.0614242 + ] + ] + }, + "id": "way/1417656310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1417656311", + "highway": "living_street", + "name": "JALAN RUSUNAWA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483576, + -0.0614242 + ], + [ + 109.3485225, + -0.0615501 + ], + [ + 109.3490777, + -0.0619448 + ], + [ + 109.3491794, + -0.0620113 + ] + ] + }, + "id": "way/1417656311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1417656312", + "highway": "living_street", + "name": "LORONG RUSUN DAN BANGUNAN DINASTI" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474218, + -0.0639219 + ], + [ + 109.3482167, + -0.06302 + ], + [ + 109.3482488, + -0.0629836 + ], + [ + 109.3484504, + -0.062731 + ], + [ + 109.3490777, + -0.0619448 + ] + ] + }, + "id": "way/1417656312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1417976212", + "highway": "living_street", + "name": "JALAN RUSUNAWA" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492287, + -0.0620438 + ], + [ + 109.3492743, + -0.0620843 + ] + ] + }, + "id": "way/1417976212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1419061644", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347118, + -0.0597244 + ], + [ + 109.3471617, + -0.0596786 + ], + [ + 109.34764, + -0.0591722 + ], + [ + 109.3482716, + -0.0597811 + ] + ] + }, + "id": "way/1419061644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1419061645", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470051, + -0.059625 + ], + [ + 109.3470601, + -0.0596728 + ], + [ + 109.347118, + -0.0597244 + ], + [ + 109.3471325, + -0.0597379 + ], + [ + 109.3471912, + -0.0597888 + ], + [ + 109.3473909, + -0.0599646 + ] + ] + }, + "id": "way/1419061645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1421519068", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518073, + -0.0309769 + ], + [ + 109.3516506, + -0.0308062 + ], + [ + 109.3514749, + -0.0306308 + ], + [ + 109.3512871, + -0.0304451 + ] + ] + }, + "id": "way/1421519068" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1423241293", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.285521, + -0.0389812 + ], + [ + 109.2855714, + -0.0390351 + ] + ] + }, + "id": "way/1423241293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1423241294", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2861185, + -0.0384475 + ], + [ + 109.2861537, + -0.0384907 + ] + ] + }, + "id": "way/1423241294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1424734468", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472567, + -0.0641541 + ], + [ + 109.3470298, + -0.0639532 + ], + [ + 109.3469708, + -0.0639425 + ], + [ + 109.3469279, + -0.0639653 + ], + [ + 109.3468321, + -0.0640634 + ], + [ + 109.346602, + -0.0642992 + ], + [ + 109.3465899, + -0.0643462 + ], + [ + 109.3466073, + -0.0643864 + ], + [ + 109.3468401, + -0.0645965 + ] + ] + }, + "id": "way/1424734468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1424919342", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440758, + -0.0678546 + ], + [ + 109.3445601, + -0.0685412 + ], + [ + 109.3447144, + -0.0687551 + ], + [ + 109.3448377, + -0.0689421 + ], + [ + 109.3449135, + -0.0690052 + ], + [ + 109.3450154, + -0.069087 + ], + [ + 109.3450972, + -0.0691795 + ], + [ + 109.3452582, + -0.069378 + ] + ] + }, + "id": "way/1424919342" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1425204565", + "highway": "living_street", + "motorcar": "destination", + "name": "Gang Rambutan Luar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288511, + -0.0164661 + ], + [ + 109.3287492, + -0.016576 + ], + [ + 109.3285963, + -0.0167584 + ], + [ + 109.3282922, + -0.0171309 + ], + [ + 109.328243, + -0.0171897 + ] + ] + }, + "id": "way/1425204565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1425207483", + "highway": "living_street", + "motorcar": "no", + "source": "FB Maxar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282922, + -0.0171309 + ], + [ + 109.3284956, + -0.0174187 + ], + [ + 109.3285442, + -0.0174976 + ], + [ + 109.3285654, + -0.0175319 + ], + [ + 109.3286012, + -0.017571 + ] + ] + }, + "id": "way/1425207483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1425208222", + "access": "destination", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.327775, + -0.0172413 + ], + [ + 109.3279235, + -0.0179128 + ], + [ + 109.3281444, + -0.0188043 + ] + ] + }, + "id": "way/1425208222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1426564557", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646696, + -0.0306579 + ], + [ + 109.3647222, + -0.0306269 + ], + [ + 109.3649527, + -0.0304927 + ] + ] + }, + "id": "way/1426564557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1427293746", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453614, + -0.0316271 + ], + [ + 109.3452333, + -0.0316585 + ], + [ + 109.3452203, + -0.0316054 + ], + [ + 109.3451452, + -0.031299 + ], + [ + 109.3452595, + -0.031271 + ] + ] + }, + "id": "way/1427293746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1427306607", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340081, + -0.0342141 + ], + [ + 109.3342182, + -0.0344342 + ] + ] + }, + "id": "way/1427306607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1432453389", + "highway": "tertiary", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333845, + -0.0478106 + ], + [ + 109.3349069, + -0.0485823 + ] + ] + }, + "id": "way/1432453389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1432453390", + "highway": "tertiary", + "name": "Jalan Mohammad Sohor", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348384, + -0.0486679 + ], + [ + 109.3343512, + -0.0483221 + ], + [ + 109.3337438, + -0.0478753 + ] + ] + }, + "id": "way/1432453390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1434771466", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411624, + -0.0645755 + ], + [ + 109.3414079, + -0.0648048 + ], + [ + 109.3416506, + -0.0650516 + ] + ] + }, + "id": "way/1434771466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1434771467", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403336, + -0.0638258 + ], + [ + 109.3411624, + -0.0645755 + ] + ] + }, + "id": "way/1434771467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1435829363", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3104529, + -0.0633716 + ], + [ + 109.3106362, + -0.0634865 + ], + [ + 109.3111164, + -0.0637649 + ] + ] + }, + "id": "way/1435829363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1435832149", + "highway": "residential", + "name": "Gang Usaha Kita" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085989, + -0.0635861 + ], + [ + 109.3089731, + -0.0629402 + ] + ] + }, + "id": "way/1435832149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1443395749", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3099079, + -0.0693329 + ], + [ + 109.3107246, + -0.0684444 + ] + ] + }, + "id": "way/1443395749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1444465301", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3361454, + -0.0274765 + ], + [ + 109.3359642, + -0.0275549 + ], + [ + 109.3358974, + -0.0275734 + ] + ] + }, + "id": "way/1444465301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1444757082", + "highway": "residential", + "name": "Gang Harun Johar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682404, + -0.0519543 + ], + [ + 109.3685644, + -0.0516985 + ] + ] + }, + "id": "way/1444757082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1447863507", + "highway": "residential", + "name": "Kompl. Sentarum Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3087069, + -0.0472446 + ], + [ + 109.3106859, + -0.048715 + ] + ] + }, + "id": "way/1447863507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1447863508", + "highway": "living_street", + "motorcar": "no", + "name": "Kompl. Sentarum Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106859, + -0.048715 + ], + [ + 109.3106946, + -0.0487337 + ], + [ + 109.3107147, + -0.0487518 + ], + [ + 109.3107361, + -0.0487706 + ], + [ + 109.3107611, + -0.0487709 + ] + ] + }, + "id": "way/1447863508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1450178070", + "highway": "residential", + "lanes": "1", + "name": "Gang Bayan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329426, + -0.0240427 + ], + [ + 109.3291596, + -0.0240815 + ], + [ + 109.3288129, + -0.0241369 + ], + [ + 109.3284773, + -0.0241969 + ], + [ + 109.3283606, + -0.0242217 + ], + [ + 109.3280541, + -0.0242867 + ] + ] + }, + "id": "way/1450178070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1451250702", + "highway": "residential", + "import": "yes", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463537, + -0.0505681 + ], + [ + 109.3460228, + -0.0501917 + ], + [ + 109.345932, + -0.0500982 + ], + [ + 109.345654, + -0.0497781 + ] + ] + }, + "id": "way/1451250702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1451250703", + "highway": "residential", + "name": "Komplek Palapa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3491431, + -0.0468994 + ], + [ + 109.3488253, + -0.0473517 + ], + [ + 109.3476456, + -0.0489275 + ], + [ + 109.3471705, + -0.0495838 + ], + [ + 109.3469036, + -0.0499799 + ], + [ + 109.3466254, + -0.050329 + ], + [ + 109.3463537, + -0.0505681 + ] + ] + }, + "id": "way/1451250703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1451523939", + "highway": "residential", + "name": "Komplek Palapa" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463537, + -0.0505681 + ], + [ + 109.3462707, + -0.0506542 + ], + [ + 109.346207, + -0.0507078 + ], + [ + 109.3459511, + -0.0508835 + ], + [ + 109.3458726, + -0.0509374 + ] + ] + }, + "id": "way/1451523939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1452445887", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3448156, + -0.0354521 + ], + [ + 109.3449998, + -0.0354074 + ], + [ + 109.3453053, + -0.0353201 + ], + [ + 109.3456302, + -0.0352359 + ] + ] + }, + "id": "way/1452445887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1452756613", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3284796, + -0.0193106 + ], + [ + 109.3285158, + -0.0195305 + ], + [ + 109.3285212, + -0.0195439 + ], + [ + 109.3285373, + -0.0195546 + ], + [ + 109.3288995, + -0.0195187 + ], + [ + 109.3291178, + -0.019497 + ] + ] + }, + "id": "way/1452756613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1454362245", + "highway": "residential", + "name": "Gang Selamat Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208123, + -0.0166844 + ], + [ + 109.3210182, + -0.0181529 + ], + [ + 109.3210271, + -0.0182122 + ] + ] + }, + "id": "way/1454362245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1454367257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993081, + -0.0467195 + ], + [ + 109.2992575, + -0.0467565 + ], + [ + 109.2992427, + -0.0467824 + ], + [ + 109.2992427, + -0.0468097 + ], + [ + 109.2991436, + -0.0468945 + ], + [ + 109.298869, + -0.0471547 + ], + [ + 109.2986555, + -0.0473765 + ] + ] + }, + "id": "way/1454367257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1454672678", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31592, + 0.0145507 + ], + [ + 109.3170731, + 0.0143343 + ] + ] + }, + "id": "way/1454672678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1454677216", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3208258, + 0.018584 + ], + [ + 109.3213498, + 0.0185629 + ] + ] + }, + "id": "way/1454677216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1454677222", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3380743, + -0.0821541 + ], + [ + 109.3405441, + -0.0837018 + ] + ] + }, + "id": "way/1454677222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1454683992", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449239, + -0.0726481 + ], + [ + 109.3457525, + -0.073167 + ] + ] + }, + "id": "way/1454683992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1454683993", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332698, + -0.0764123 + ], + [ + 109.3342816, + -0.0771653 + ], + [ + 109.3343408, + -0.0772094 + ] + ] + }, + "id": "way/1454683993" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1455584023", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478153, + -0.0104937 + ], + [ + 109.3483519, + -0.0109813 + ], + [ + 109.3487245, + -0.0113522 + ], + [ + 109.3488512, + -0.011511 + ], + [ + 109.3489179, + -0.0116284 + ], + [ + 109.3489505, + -0.0116879 + ] + ] + }, + "id": "way/1455584023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1455584024", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490759, + -0.0115455 + ], + [ + 109.3490063, + -0.0116238 + ], + [ + 109.3489746, + -0.0116606 + ], + [ + 109.3489505, + -0.0116879 + ] + ] + }, + "id": "way/1455584024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1455584025", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443549, + -0.0126383 + ], + [ + 109.3444074, + -0.0126604 + ] + ] + }, + "id": "way/1455584025" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1455584026", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444074, + -0.0126604 + ], + [ + 109.3450126, + -0.0129116 + ] + ] + }, + "id": "way/1455584026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1455584027", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344324, + -0.0126253 + ], + [ + 109.3443549, + -0.0126383 + ] + ] + }, + "id": "way/1455584027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1455797323", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2934359, + -0.0099648 + ], + [ + 109.2928371, + -0.0099792 + ], + [ + 109.2926424, + -0.0099757 + ] + ] + }, + "id": "way/1455797323" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1455898355", + "highway": "residential", + "lanes": "2", + "width": "5" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3211344, + -0.0621348 + ], + [ + 109.3211719, + -0.0621736 + ] + ] + }, + "id": "way/1455898355" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1455922915", + "highway": "residential", + "motorcar": "no", + "name": "Gang Citra Perdana", + "width": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445686, + -0.0671082 + ], + [ + 109.344523, + -0.0670583 + ] + ] + }, + "id": "way/1455922915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1456226628", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339825, + -0.054244 + ], + [ + 109.3400507, + -0.054013 + ], + [ + 109.3400812, + -0.0539819 + ], + [ + 109.3401957, + -0.0538655 + ], + [ + 109.3402921, + -0.0537676 + ], + [ + 109.3405402, + -0.0534511 + ] + ] + }, + "id": "way/1456226628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1456811080", + "bridge": "yes", + "highway": "residential", + "lanes": "1", + "layer": "1", + "name": "Gang Kenanga 3", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422305, + 0.0075836 + ], + [ + 109.3423035, + 0.0075915 + ] + ] + }, + "id": "way/1456811080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1456811081", + "highway": "residential", + "lanes": "1", + "name": "Gang Kenanga 3", + "width": "2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421696, + 0.0075756 + ], + [ + 109.3422305, + 0.0075836 + ] + ] + }, + "id": "way/1456811081" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1456811082", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423455, + 0.0074723 + ], + [ + 109.3423714, + 0.0074801 + ], + [ + 109.3423842, + 0.0074911 + ], + [ + 109.3423916, + 0.0075145 + ], + [ + 109.3423939, + 0.0076014 + ] + ] + }, + "id": "way/1456811082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1456811083", + "highway": "track", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360211, + 0.0078135 + ], + [ + 109.3397367, + 0.0076309 + ] + ] + }, + "id": "way/1456811083" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1457534032", + "highway": "service", + "name": "Jalan Letnan Kolonel Sugiono" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3382844, + -0.0481188 + ], + [ + 109.3383689, + -0.047915 + ], + [ + 109.3384398, + -0.0476387 + ] + ] + }, + "id": "way/1457534032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1457662421", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3440662, + -0.0490106 + ], + [ + 109.3440016, + -0.04907 + ], + [ + 109.3439305, + -0.0491354 + ], + [ + 109.3441156, + -0.0493902 + ] + ] + }, + "id": "way/1457662421" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1457662422", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439599, + -0.0488855 + ], + [ + 109.3438913, + -0.0489399 + ], + [ + 109.3437749, + -0.0490321 + ], + [ + 109.3436234, + -0.0488672 + ], + [ + 109.3437405, + -0.048762 + ], + [ + 109.3438055, + -0.0487038 + ] + ] + }, + "id": "way/1457662422" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1457922992", + "bicycle": "yes", + "foot": "yes", + "highway": "living_street", + "motor_vehicle": "yes", + "name": "Gang Kelantan 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415581, + -0.0321087 + ], + [ + 109.341548, + -0.0320886 + ] + ] + }, + "id": "way/1457922992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1461448117", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3762511, + -0.0495773 + ], + [ + 109.3762752, + -0.0496007 + ], + [ + 109.3763024, + -0.0496417 + ], + [ + 109.3763892, + -0.0497724 + ] + ] + }, + "id": "way/1461448117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039691", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704211, + -0.0428645 + ], + [ + 109.3704622, + -0.0428315 + ] + ] + }, + "id": "way/1462039691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039692", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703962, + -0.0428845 + ], + [ + 109.3704091, + -0.0428741 + ] + ] + }, + "id": "way/1462039692" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039693", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3704091, + -0.0428741 + ], + [ + 109.3704211, + -0.0428645 + ] + ] + }, + "id": "way/1462039693" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039694", + "highway": "tertiary", + "name": "Jalan Pemda", + "surface": "asphalt" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373357, + -0.0461842 + ], + [ + 109.3737914, + -0.046662 + ], + [ + 109.3738354, + -0.0467103 + ], + [ + 109.3740416, + -0.0469482 + ], + [ + 109.3741358, + -0.0470568 + ] + ] + }, + "id": "way/1462039694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039695", + "highway": "tertiary", + "name": "Jalan Pemda", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3763892, + -0.0497724 + ], + [ + 109.3765542, + -0.0500218 + ], + [ + 109.3767352, + -0.05027 + ], + [ + 109.3768895, + -0.0504886 + ], + [ + 109.3770007, + -0.0506625 + ], + [ + 109.377047, + -0.0507285 + ], + [ + 109.3771247, + -0.0508392 + ], + [ + 109.3771958, + -0.0509308 + ], + [ + 109.3773536, + -0.0511489 + ], + [ + 109.3774704, + -0.0512987 + ], + [ + 109.3775017, + -0.0513381 + ], + [ + 109.3775138, + -0.0513536 + ], + [ + 109.3775258, + -0.0513529 + ] + ] + }, + "id": "way/1462039695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039696", + "highway": "tertiary", + "name": "Jalan Pemda", + "surface": "concrete" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3761685, + -0.0494801 + ], + [ + 109.3762252, + -0.0495561 + ], + [ + 109.3762511, + -0.0495773 + ] + ] + }, + "id": "way/1462039696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039698", + "access": "yes", + "highway": "tertiary", + "name": "Jalan Gusti Sulung Lelanang", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329917, + -0.0351879 + ], + [ + 109.3329464, + -0.0352122 + ], + [ + 109.3328693, + -0.0352537 + ] + ] + }, + "id": "way/1462039698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039699", + "highway": "primary", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329313, + -0.0353455 + ], + [ + 109.3330668, + -0.0355193 + ], + [ + 109.3330881, + -0.0355465 + ] + ] + }, + "id": "way/1462039699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039700", + "highway": "primary", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328693, + -0.0354648 + ], + [ + 109.3327924, + -0.035348 + ] + ] + }, + "id": "way/1462039700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039701", + "access": "yes", + "highway": "tertiary", + "name": "Jalan Gusti Sulung Lelanang", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331236, + -0.035091 + ], + [ + 109.3330641, + -0.0351347 + ], + [ + 109.3329917, + -0.0351879 + ] + ] + }, + "id": "way/1462039701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462039702", + "highway": "primary", + "name": "Jalan Ahmad Yani", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330881, + -0.0355465 + ], + [ + 109.3332379, + -0.0357471 + ], + [ + 109.3334135, + -0.0359993 + ], + [ + 109.3337159, + -0.0363966 + ], + [ + 109.3340969, + -0.0368631 + ], + [ + 109.3342032, + -0.0369954 + ], + [ + 109.3342654, + -0.0370702 + ], + [ + 109.3343039, + -0.0371148 + ], + [ + 109.3344642, + -0.0373005 + ], + [ + 109.3346223, + -0.0374836 + ], + [ + 109.3349357, + -0.0378849 + ], + [ + 109.3350608, + -0.03807 + ], + [ + 109.3354272, + -0.0385186 + ], + [ + 109.3355712, + -0.0386942 + ], + [ + 109.3357032, + -0.0388559 + ], + [ + 109.3361022, + -0.0393435 + ], + [ + 109.3362419, + -0.0395158 + ], + [ + 109.3362705, + -0.0395511 + ], + [ + 109.3366877, + -0.0400456 + ], + [ + 109.3374138, + -0.0409063 + ], + [ + 109.3378015, + -0.0413652 + ], + [ + 109.338085, + -0.0416905 + ], + [ + 109.3381235, + -0.0417347 + ], + [ + 109.3384571, + -0.0421174 + ], + [ + 109.3388819, + -0.0426318 + ], + [ + 109.3392316, + -0.0430554 + ], + [ + 109.3396762, + -0.0435939 + ] + ] + }, + "id": "way/1462039702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1462633405", + "highway": "primary", + "name": "Jalan Hassanudin", + "ref": "002.1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325663, + -0.0174109 + ], + [ + 109.3323013, + -0.0176239 + ] + ] + }, + "id": "way/1462633405" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1469343426", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465621, + -0.0588804 + ], + [ + 109.3466079, + -0.0589106 + ], + [ + 109.3466605, + -0.0589263 + ], + [ + 109.3467154, + -0.0589262 + ], + [ + 109.3467679, + -0.0589103 + ] + ] + }, + "id": "way/1469343426" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1469343427", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465468, + -0.0588612 + ], + [ + 109.3466112, + -0.0587954 + ], + [ + 109.3466285, + -0.0587777 + ], + [ + 109.34667, + -0.0587353 + ], + [ + 109.3467069, + -0.0586994 + ], + [ + 109.346706, + -0.0586983 + ], + [ + 109.3466933, + -0.0586836 + ], + [ + 109.3466923, + -0.0586574 + ], + [ + 109.3467047, + -0.0586287 + ], + [ + 109.346733, + -0.0586141 + ], + [ + 109.3467703, + -0.0586232 + ], + [ + 109.3467931, + -0.0586062 + ], + [ + 109.3468021, + -0.0585976 + ], + [ + 109.3468449, + -0.0585563 + ], + [ + 109.3468626, + -0.0585373 + ] + ] + }, + "id": "way/1469343427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1469343428", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468626, + -0.0585373 + ], + [ + 109.3468708, + -0.0585285 + ], + [ + 109.3469185, + -0.0584772 + ] + ] + }, + "id": "way/1469343428" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1469343429", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466803, + -0.058485 + ], + [ + 109.3467316, + -0.0584848 + ], + [ + 109.3467644, + -0.0584852 + ], + [ + 109.3467962, + -0.0584917 + ], + [ + 109.3468269, + -0.0585033 + ], + [ + 109.3468587, + -0.0585214 + ], + [ + 109.3468708, + -0.0585285 + ] + ] + }, + "id": "way/1469343429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1469343430", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468708, + -0.0585285 + ], + [ + 109.3469011, + -0.0585735 + ], + [ + 109.3469112, + -0.0586013 + ], + [ + 109.3469214, + -0.0586321 + ], + [ + 109.3469249, + -0.0586485 + ], + [ + 109.3469316, + -0.0586757 + ], + [ + 109.3469285, + -0.0587041 + ], + [ + 109.3469209, + -0.0587513 + ] + ] + }, + "id": "way/1469343430" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1469343431", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468513, + -0.0588236 + ], + [ + 109.3467776, + -0.0588495 + ], + [ + 109.346723, + -0.058849 + ], + [ + 109.3466852, + -0.0588458 + ], + [ + 109.3466604, + -0.058831 + ], + [ + 109.3466337, + -0.0588137 + ], + [ + 109.3466112, + -0.0587954 + ], + [ + 109.3465889, + -0.0587719 + ] + ] + }, + "id": "way/1469343431" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1469343432", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3466226, + -0.0585451 + ], + [ + 109.3466096, + -0.0585898 + ], + [ + 109.3465976, + -0.0586203 + ], + [ + 109.3465879, + -0.0586612 + ], + [ + 109.3465814, + -0.0586883 + ], + [ + 109.3465924, + -0.0587298 + ], + [ + 109.3466058, + -0.0587512 + ], + [ + 109.3466285, + -0.0587777 + ], + [ + 109.3466385, + -0.0587943 + ] + ] + }, + "id": "way/1469343432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1469343433", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467684, + -0.0585761 + ], + [ + 109.3467949, + -0.0585917 + ], + [ + 109.3468021, + -0.0585976 + ], + [ + 109.346823, + -0.0586307 + ], + [ + 109.3468243, + -0.0586738 + ], + [ + 109.3468096, + -0.0586979 + ], + [ + 109.3467774, + -0.0587148 + ], + [ + 109.3467582, + -0.0587185 + ], + [ + 109.3467424, + -0.0587158 + ], + [ + 109.3467257, + -0.0587173 + ], + [ + 109.346713, + -0.058709 + ], + [ + 109.346706, + -0.0586983 + ] + ] + }, + "id": "way/1469343433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1471876997", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472957, + -0.0426677 + ], + [ + 109.3474886, + -0.0424475 + ] + ] + }, + "id": "way/1471876997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1472391342", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.379939, + -0.0547371 + ], + [ + 109.3796951, + -0.0544005 + ], + [ + 109.3794134, + -0.0540237 + ], + [ + 109.3793303, + -0.0539124 + ] + ] + }, + "id": "way/1472391342" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1473521735", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3541904, + -0.0810804 + ], + [ + 109.3544274, + -0.0807533 + ], + [ + 109.3545234, + -0.0806297 + ] + ] + }, + "id": "way/1473521735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1473521737", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537172, + -0.081758 + ], + [ + 109.3539513, + -0.0814231 + ] + ] + }, + "id": "way/1473521737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1473521739", + "highway": "tertiary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539513, + -0.0814231 + ], + [ + 109.3541904, + -0.0810804 + ] + ] + }, + "id": "way/1473521739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1476764170", + "highway": "tertiary_link" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2955073, + -0.0292274 + ], + [ + 109.2955546, + -0.0292761 + ] + ] + }, + "id": "way/1476764170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1477458258", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333842, + -0.0665114 + ], + [ + 109.3338788, + -0.0665468 + ] + ] + }, + "id": "way/1477458258" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1477458259", + "bridge": "yes", + "highway": "path", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337964, + -0.0664675 + ], + [ + 109.333842, + -0.0665114 + ] + ] + }, + "id": "way/1477458259" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1477458260", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329877, + -0.0675199 + ], + [ + 109.3330291, + -0.0675591 + ] + ] + }, + "id": "way/1477458260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1477458261", + "bridge": "yes", + "highway": "service", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329428, + -0.0674824 + ], + [ + 109.3329877, + -0.0675199 + ] + ] + }, + "id": "way/1477458261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1477458262", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328308, + -0.0673757 + ], + [ + 109.3329428, + -0.0674824 + ] + ] + }, + "id": "way/1477458262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479607233", + "highway": "residential", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3804152, + -0.0544019 + ], + [ + 109.3803669, + -0.0544408 + ], + [ + 109.379939, + -0.0547371 + ] + ] + }, + "id": "way/1479607233" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479607234", + "highway": "tertiary", + "motor_vehicle": "destination", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.379939, + -0.0547371 + ], + [ + 109.3800325, + -0.0548505 + ], + [ + 109.3800859, + -0.0548967 + ] + ] + }, + "id": "way/1479607234" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479953796", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578163, + -0.0227599 + ], + [ + 109.3573214, + -0.0228028 + ] + ] + }, + "id": "way/1479953796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479953797", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506207, + -0.0236402 + ], + [ + 109.3506414, + -0.0239062 + ], + [ + 109.350642, + -0.0239494 + ] + ] + }, + "id": "way/1479953797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479953798", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349918, + -0.0236028 + ], + [ + 109.3506207, + -0.0236402 + ], + [ + 109.3506481, + -0.0236417 + ] + ] + }, + "id": "way/1479953798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479953799", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499058, + -0.0230677 + ], + [ + 109.3499158, + -0.0232809 + ], + [ + 109.3499133, + -0.0234902 + ], + [ + 109.349918, + -0.0236028 + ], + [ + 109.3499252, + -0.0237785 + ], + [ + 109.3499507, + -0.0239233 + ], + [ + 109.349964, + -0.0239383 + ] + ] + }, + "id": "way/1479953799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479955936", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352986, + -0.0229879 + ], + [ + 109.3527871, + -0.0229644 + ], + [ + 109.3527154, + -0.023234 + ], + [ + 109.3527295, + -0.0232427 + ] + ] + }, + "id": "way/1479955936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479955937", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489736, + -0.0271184 + ], + [ + 109.3492641, + -0.0274031 + ], + [ + 109.3493327, + -0.0274639 + ], + [ + 109.3495041, + -0.0276157 + ], + [ + 109.350109, + -0.0280938 + ], + [ + 109.3501568, + -0.0281298 + ], + [ + 109.3503866, + -0.0283429 + ] + ] + }, + "id": "way/1479955937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479955938", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.355869, + -0.0271802 + ], + [ + 109.355871, + -0.026971 + ], + [ + 109.3552742, + -0.0269824 + ] + ] + }, + "id": "way/1479955938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479955939", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584815, + -0.0228685 + ], + [ + 109.3584815, + -0.0227317 + ], + [ + 109.3584815, + -0.0226445 + ], + [ + 109.3585324, + -0.0219633 + ], + [ + 109.3586142, + -0.0219069 + ], + [ + 109.3586893, + -0.0215006 + ] + ] + }, + "id": "way/1479955939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479956187", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539058, + -0.0234516 + ], + [ + 109.3538868, + -0.0237363 + ] + ] + }, + "id": "way/1479956187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479957088", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3538706, + -0.024095 + ], + [ + 109.3535992, + -0.0240929 + ] + ] + }, + "id": "way/1479957088" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479957451", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533122, + -0.0243893 + ], + [ + 109.3533534, + -0.02439 + ], + [ + 109.3533608, + -0.0245033 + ], + [ + 109.3534574, + -0.0245094 + ] + ] + }, + "id": "way/1479957451" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479957452", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529038, + -0.0239441 + ], + [ + 109.3531318, + -0.0240011 + ], + [ + 109.3532719, + -0.0240272 + ], + [ + 109.3532988, + -0.0240292 + ], + [ + 109.3533122, + -0.0243893 + ], + [ + 109.3530138, + -0.0243843 + ] + ] + }, + "id": "way/1479957452" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479957845", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3517163, + -0.0231092 + ], + [ + 109.3520988, + -0.0232645 + ], + [ + 109.3523104, + -0.0233325 + ], + [ + 109.3522353, + -0.0236711 + ] + ] + }, + "id": "way/1479957845" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479957846", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.351606, + -0.0237 + ], + [ + 109.3517163, + -0.0231092 + ], + [ + 109.3513565, + -0.023003 + ] + ] + }, + "id": "way/1479957846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479957998", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507535, + -0.0237908 + ], + [ + 109.3508077, + -0.0239971 + ], + [ + 109.3508216, + -0.0240489 + ], + [ + 109.3509792, + -0.0246339 + ], + [ + 109.3510149, + -0.024796 + ], + [ + 109.3507983, + -0.0248319 + ] + ] + }, + "id": "way/1479957998" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479958274", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508216, + -0.0240489 + ], + [ + 109.3506531, + -0.0240846 + ] + ] + }, + "id": "way/1479958274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479958461", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3504177, + -0.0245218 + ], + [ + 109.3505914, + -0.0251829 + ] + ] + }, + "id": "way/1479958461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479958462", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503499, + -0.0239363 + ], + [ + 109.3503661, + -0.0241801 + ], + [ + 109.3503356, + -0.0241992 + ], + [ + 109.3503564, + -0.0243595 + ], + [ + 109.3503983, + -0.0244457 + ], + [ + 109.3504177, + -0.0245218 + ], + [ + 109.3503919, + -0.0245338 + ] + ] + }, + "id": "way/1479958462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479959048", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495678, + -0.0249466 + ], + [ + 109.3495511, + -0.0249831 + ], + [ + 109.349539, + -0.0250522 + ] + ] + }, + "id": "way/1479959048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479959049", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495793, + -0.0241104 + ], + [ + 109.3495826, + -0.0242271 + ], + [ + 109.3495678, + -0.0249466 + ] + ] + }, + "id": "way/1479959049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479959050", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495345, + -0.024119 + ], + [ + 109.349521, + -0.0249455 + ], + [ + 109.3495678, + -0.0249466 + ] + ] + }, + "id": "way/1479959050" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479959196", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490519, + -0.0251913 + ], + [ + 109.349049, + -0.0251827 + ], + [ + 109.3490686, + -0.0248007 + ], + [ + 109.3490481, + -0.0247528 + ], + [ + 109.3490506, + -0.0246084 + ], + [ + 109.3490563, + -0.0245463 + ], + [ + 109.3490508, + -0.0244174 + ], + [ + 109.3490551, + -0.0243298 + ] + ] + }, + "id": "way/1479959196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479959654", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478525, + -0.0253992 + ], + [ + 109.3473565, + -0.0263886 + ] + ] + }, + "id": "way/1479959654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479959655", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480477, + -0.0253811 + ], + [ + 109.3482294, + -0.0254736 + ], + [ + 109.3478037, + -0.0265741 + ], + [ + 109.3477491, + -0.0265619 + ], + [ + 109.3477008, + -0.0265507 + ], + [ + 109.3476189, + -0.0265145 + ], + [ + 109.3473565, + -0.0263886 + ] + ] + }, + "id": "way/1479959655" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479959656", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480659, + -0.0253151 + ], + [ + 109.3480477, + -0.0253811 + ], + [ + 109.3479424, + -0.0253589 + ], + [ + 109.3478525, + -0.0253992 + ], + [ + 109.3477962, + -0.0253764 + ] + ] + }, + "id": "way/1479959656" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479959657", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.348446, + -0.0252667 + ], + [ + 109.3483508, + -0.0252674 + ], + [ + 109.3482182, + -0.025322 + ], + [ + 109.3481827, + -0.0253286 + ], + [ + 109.3481462, + -0.0253237 + ], + [ + 109.3480659, + -0.0253151 + ], + [ + 109.34804, + -0.0253123 + ] + ] + }, + "id": "way/1479959657" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479959658", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485547, + -0.0240448 + ], + [ + 109.348502, + -0.024673 + ], + [ + 109.3485006, + -0.0246954 + ], + [ + 109.3485197, + -0.0246938 + ], + [ + 109.348515, + -0.0247588 + ], + [ + 109.3484567, + -0.0247565 + ], + [ + 109.3484513, + -0.0248165 + ], + [ + 109.3484983, + -0.0248326 + ], + [ + 109.348446, + -0.0252667 + ], + [ + 109.3487699, + -0.0252875 + ] + ] + }, + "id": "way/1479959658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479960012", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479052, + -0.0252249 + ], + [ + 109.3478776, + -0.0252731 + ], + [ + 109.3477325, + -0.0252661 + ], + [ + 109.3475541, + -0.0252225 + ], + [ + 109.3475249, + -0.0252128 + ], + [ + 109.3474508, + -0.0252075 + ], + [ + 109.346898, + -0.0252081 + ], + [ + 109.3467803, + -0.0252208 + ], + [ + 109.3464249, + -0.0253844 + ] + ] + }, + "id": "way/1479960012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479960145", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482294, + -0.0254736 + ], + [ + 109.3486106, + -0.0256822 + ], + [ + 109.3486394, + -0.0257321 + ] + ] + }, + "id": "way/1479960145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479960760", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472896, + -0.0263802 + ], + [ + 109.3472135, + -0.0265639 + ], + [ + 109.3471237, + -0.0265123 + ], + [ + 109.3470968, + -0.0264754 + ], + [ + 109.3470499, + -0.0263634 + ], + [ + 109.3469745, + -0.0261961 + ] + ] + }, + "id": "way/1479960760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479960761", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347309, + -0.0264 + ], + [ + 109.3472896, + -0.0263802 + ], + [ + 109.3472142, + -0.02618 + ] + ] + }, + "id": "way/1479960761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479960895", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471237, + -0.0265123 + ], + [ + 109.3470673, + -0.0265492 + ], + [ + 109.3471371, + -0.0266826 + ], + [ + 109.3470988, + -0.0267316 + ], + [ + 109.3472249, + -0.0269086 + ], + [ + 109.3473577, + -0.0272365 + ], + [ + 109.3474327, + -0.027236 + ] + ] + }, + "id": "way/1479960895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479960960", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478037, + -0.0265741 + ], + [ + 109.347819, + -0.026631 + ], + [ + 109.3479213, + -0.0266749 + ], + [ + 109.3478175, + -0.0269758 + ] + ] + }, + "id": "way/1479960960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479962090", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34839, + -0.0266048 + ], + [ + 109.3482736, + -0.0269569 + ], + [ + 109.3483068, + -0.0269689 + ] + ] + }, + "id": "way/1479962090" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479962091", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485409, + -0.0262508 + ], + [ + 109.3488778, + -0.0265213 + ], + [ + 109.3489113, + -0.0265458 + ] + ] + }, + "id": "way/1479962091" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479962206", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493212, + -0.0260259 + ], + [ + 109.3491763, + -0.025734 + ] + ] + }, + "id": "way/1479962206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479962450", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534209, + -0.0253626 + ], + [ + 109.3533692, + -0.0256386 + ] + ] + }, + "id": "way/1479962450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479963250", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3569418, + -0.0257731 + ], + [ + 109.3569285, + -0.0250998 + ] + ] + }, + "id": "way/1479963250" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479966371", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576982, + -0.0257842 + ], + [ + 109.3577087, + -0.0255326 + ] + ] + }, + "id": "way/1479966371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479966941", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3493327, + -0.0274639 + ], + [ + 109.349148, + -0.0276241 + ] + ] + }, + "id": "way/1479966941" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479967543", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479936, + -0.0276284 + ], + [ + 109.348103, + -0.0277937 + ], + [ + 109.3481509, + -0.0277699 + ], + [ + 109.348276, + -0.0279771 + ] + ] + }, + "id": "way/1479967543" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479967764", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495869, + -0.028703 + ], + [ + 109.3494073, + -0.0288912 + ] + ] + }, + "id": "way/1479967764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479967765", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492989, + -0.0289481 + ], + [ + 109.3493801, + -0.0289209 + ], + [ + 109.3494073, + -0.0288912 + ] + ] + }, + "id": "way/1479967765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479967962", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487879, + -0.0287173 + ], + [ + 109.3490991, + -0.0290657 + ] + ] + }, + "id": "way/1479967962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479968050", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480027, + -0.0287969 + ], + [ + 109.3482958, + -0.0285991 + ] + ] + }, + "id": "way/1479968050" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479968254", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3492793, + -0.031267 + ], + [ + 109.3492909, + -0.0312652 + ], + [ + 109.3494713, + -0.0311914 + ], + [ + 109.349535, + -0.0312699 + ], + [ + 109.3495832, + -0.0312531 + ], + [ + 109.3496154, + -0.0312974 + ], + [ + 109.3496868, + -0.031259 + ], + [ + 109.3497517, + -0.0312938 + ], + [ + 109.3498766, + -0.0313525 + ] + ] + }, + "id": "way/1479968254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479968255", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494677, + -0.0318437 + ], + [ + 109.3495363, + -0.0317862 + ], + [ + 109.3494686, + -0.0316323 + ], + [ + 109.349374, + -0.0314422 + ], + [ + 109.3492793, + -0.031267 + ], + [ + 109.3492114, + -0.0311415 + ], + [ + 109.3491199, + -0.0309768 + ], + [ + 109.3493603, + -0.030835 + ] + ] + }, + "id": "way/1479968255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479968297", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499355, + -0.0314951 + ], + [ + 109.350181, + -0.0313699 + ] + ] + }, + "id": "way/1479968297" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479968298", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497086, + -0.0316239 + ], + [ + 109.3497358, + -0.0316665 + ], + [ + 109.3499598, + -0.0315398 + ], + [ + 109.3499355, + -0.0314951 + ], + [ + 109.3498626, + -0.0313609 + ] + ] + }, + "id": "way/1479968298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479968903", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498392, + -0.0326117 + ], + [ + 109.3505893, + -0.0321785 + ], + [ + 109.350695, + -0.0321174 + ], + [ + 109.3507701, + -0.0322643 + ], + [ + 109.3507986, + -0.0322509 + ], + [ + 109.3508285, + -0.0323129 + ], + [ + 109.3507909, + -0.0323387 + ], + [ + 109.3508234, + -0.032386 + ], + [ + 109.3508258, + -0.0324705 + ], + [ + 109.3508559, + -0.0325298 + ], + [ + 109.3507983, + -0.0325962 + ], + [ + 109.3504375, + -0.0328071 + ], + [ + 109.3505002, + -0.0329211 + ], + [ + 109.3505311, + -0.0329094 + ], + [ + 109.3505864, + -0.0330394 + ], + [ + 109.3505619, + -0.0330519 + ], + [ + 109.3506028, + -0.0331457 + ] + ] + }, + "id": "way/1479968903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479968904", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500902, + -0.0318633 + ], + [ + 109.3503286, + -0.0317151 + ], + [ + 109.3503135, + -0.0316779 + ], + [ + 109.3503335, + -0.0316651 + ] + ] + }, + "id": "way/1479968904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479968961", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506619, + -0.0316957 + ], + [ + 109.3508244, + -0.0320013 + ] + ] + }, + "id": "way/1479968961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479969049", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560362, + -0.0321702 + ], + [ + 109.3560011, + -0.0321121 + ], + [ + 109.3560581, + -0.0320859 + ], + [ + 109.355987, + -0.0319545 + ] + ] + }, + "id": "way/1479969049" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479969143", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554442, + -0.0309042 + ], + [ + 109.3557493, + -0.0314346 + ], + [ + 109.3559476, + -0.0313005 + ] + ] + }, + "id": "way/1479969143" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479969290", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554462, + -0.0299433 + ], + [ + 109.3557042, + -0.0302902 + ] + ] + }, + "id": "way/1479969290" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479969625", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.355311, + -0.0283672 + ], + [ + 109.355301, + -0.0282289 + ] + ] + }, + "id": "way/1479969625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479969755", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3556953, + -0.0283714 + ], + [ + 109.3556933, + -0.0281511 + ] + ] + }, + "id": "way/1479969755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479969938", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3563991, + -0.028697 + ], + [ + 109.3565944, + -0.0290311 + ] + ] + }, + "id": "way/1479969938" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479969939", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3562086, + -0.0283762 + ], + [ + 109.3562303, + -0.0284207 + ], + [ + 109.3562888, + -0.028541 + ], + [ + 109.3563991, + -0.028697 + ], + [ + 109.3563028, + -0.0287536 + ] + ] + }, + "id": "way/1479969939" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479970033", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567221, + -0.0290655 + ], + [ + 109.3569546, + -0.0294031 + ] + ] + }, + "id": "way/1479970033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479970074", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572574, + -0.0292143 + ], + [ + 109.3573305, + -0.0291697 + ], + [ + 109.357367, + -0.0291499 + ], + [ + 109.3572228, + -0.0289105 + ], + [ + 109.3571095, + -0.0287392 + ], + [ + 109.3569526, + -0.0284411 + ], + [ + 109.3569516, + -0.0283821 + ] + ] + }, + "id": "way/1479970074" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479970343", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539133, + -0.0290294 + ], + [ + 109.3535408, + -0.0293004 + ] + ] + }, + "id": "way/1479970343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479970344", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353766, + -0.0282967 + ], + [ + 109.3537447, + -0.0284153 + ], + [ + 109.3536293, + -0.0283623 + ] + ] + }, + "id": "way/1479970344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479970467", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3517484, + -0.0292019 + ], + [ + 109.3521823, + -0.0288914 + ] + ] + }, + "id": "way/1479970467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479970474", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505638, + -0.0297129 + ], + [ + 109.3512871, + -0.0304451 + ] + ] + }, + "id": "way/1479970474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479971412", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3560741, + -0.040043 + ], + [ + 109.3562753, + -0.0403934 + ] + ] + }, + "id": "way/1479971412" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479972245", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557476, + -0.0407906 + ], + [ + 109.3559729, + -0.0406294 + ] + ] + }, + "id": "way/1479972245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479972270", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554602, + -0.0404699 + ], + [ + 109.3555357, + -0.0405617 + ], + [ + 109.3556705, + -0.0407005 + ], + [ + 109.3557473, + -0.0407903 + ] + ] + }, + "id": "way/1479972270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479972663", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478465, + -0.0412886 + ], + [ + 109.3476762, + -0.0414938 + ] + ] + }, + "id": "way/1479972663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479975852", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469017, + -0.0403798 + ], + [ + 109.3470991, + -0.0407028 + ] + ] + }, + "id": "way/1479975852" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479976839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479605, + -0.0405321 + ], + [ + 109.3481389, + -0.0407173 + ] + ] + }, + "id": "way/1479976839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479976973", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554888, + -0.0436534 + ], + [ + 109.3552923, + -0.0434316 + ], + [ + 109.354987, + -0.0430869 + ], + [ + 109.354954, + -0.0431161 + ] + ] + }, + "id": "way/1479976973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479977193", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354257, + -0.0420906 + ], + [ + 109.3540867, + -0.0422636 + ], + [ + 109.3540344, + -0.0423065 + ] + ] + }, + "id": "way/1479977193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479977194", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.354257, + -0.0420906 + ], + [ + 109.3543591, + -0.0422047 + ], + [ + 109.3546157, + -0.0424916 + ], + [ + 109.3546258, + -0.042635 + ], + [ + 109.354987, + -0.0430869 + ] + ] + }, + "id": "way/1479977194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479977844", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3539912, + -0.0417656 + ], + [ + 109.3539807, + -0.0418096 + ], + [ + 109.3535455, + -0.0422092 + ], + [ + 109.3534684, + -0.0421469 + ], + [ + 109.3533417, + -0.0422522 + ], + [ + 109.3536545, + -0.0426219 + ] + ] + }, + "id": "way/1479977844" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479978594", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3518604, + -0.0392661 + ], + [ + 109.35155, + -0.0395626 + ], + [ + 109.3514722, + -0.0394653 + ] + ] + }, + "id": "way/1479978594" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479978595", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520124, + -0.0394592 + ], + [ + 109.3513468, + -0.0400018 + ] + ] + }, + "id": "way/1479978595" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479978596", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352931, + -0.0405861 + ], + [ + 109.3528817, + -0.04062 + ], + [ + 109.3528938, + -0.0406422 + ], + [ + 109.3527804, + -0.0407458 + ] + ] + }, + "id": "way/1479978596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479978950", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3517826, + -0.0423092 + ], + [ + 109.3516096, + -0.0421401 + ] + ] + }, + "id": "way/1479978950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1479978951", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3521616, + -0.0427017 + ], + [ + 109.3517826, + -0.0423092 + ], + [ + 109.3519342, + -0.0421898 + ] + ] + }, + "id": "way/1479978951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480000400", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476278, + -0.0373914 + ], + [ + 109.3478137, + -0.0377199 + ], + [ + 109.3477271, + -0.0377655 + ] + ] + }, + "id": "way/1480000400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480002061", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481469, + -0.0372395 + ], + [ + 109.3483018, + -0.037567 + ] + ] + }, + "id": "way/1480002061" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480002062", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483406, + -0.03716 + ], + [ + 109.3485217, + -0.0374665 + ], + [ + 109.3486785, + -0.0377459 + ] + ] + }, + "id": "way/1480002062" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480004042", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481013, + -0.0352828 + ], + [ + 109.3479822, + -0.034981 + ] + ] + }, + "id": "way/1480004042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480004043", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490493, + -0.0350232 + ], + [ + 109.3481851, + -0.0354655 + ], + [ + 109.3481013, + -0.0352828 + ] + ] + }, + "id": "way/1480004043" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480004044", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479061, + -0.036344 + ], + [ + 109.3475416, + -0.0355048 + ], + [ + 109.3481013, + -0.0352828 + ] + ] + }, + "id": "way/1480004044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480006103", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487176, + -0.0344146 + ], + [ + 109.3479056, + -0.0348379 + ] + ] + }, + "id": "way/1480006103" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480006104", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488585, + -0.0346731 + ], + [ + 109.3484083, + -0.0349157 + ] + ] + }, + "id": "way/1480006104" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480007080", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497661, + -0.03634 + ], + [ + 109.3493036, + -0.0367027 + ], + [ + 109.3491165, + -0.0369126 + ] + ] + }, + "id": "way/1480007080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480007567", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3498952, + -0.0375606 + ], + [ + 109.3497274, + -0.0373323 + ] + ] + }, + "id": "way/1480007567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480007821", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3489948, + -0.0361785 + ], + [ + 109.3488859, + -0.0360221 + ], + [ + 109.3488, + -0.0360636 + ], + [ + 109.3487112, + -0.0359274 + ] + ] + }, + "id": "way/1480007821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480007822", + "highway": "unclassified" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494883, + -0.0358495 + ], + [ + 109.3489948, + -0.0361785 + ], + [ + 109.3488114, + -0.0362883 + ] + ] + }, + "id": "way/1480007822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480008257", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543032, + -0.0372773 + ], + [ + 109.3541658, + -0.0370675 + ], + [ + 109.3539814, + -0.037181 + ] + ] + }, + "id": "way/1480008257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480019501", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3534244, + -0.0379991 + ], + [ + 109.353634, + -0.037854 + ] + ] + }, + "id": "way/1480019501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480020132", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570053, + -0.0355879 + ], + [ + 109.3583179, + -0.0347561 + ], + [ + 109.3583574, + -0.0347242 + ] + ] + }, + "id": "way/1480020132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480020810", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3514063, + -0.0339598 + ], + [ + 109.3511168, + -0.0340822 + ] + ] + }, + "id": "way/1480020810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480022691", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529718, + -0.0342614 + ], + [ + 109.3530272, + -0.0344711 + ], + [ + 109.352987, + -0.0345127 + ], + [ + 109.3526832, + -0.0346629 + ], + [ + 109.3526302, + -0.0345455 + ], + [ + 109.3525136, + -0.0345824 + ], + [ + 109.352478, + -0.0345764 + ] + ] + }, + "id": "way/1480022691" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480455227", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3800052, + -0.0464013 + ], + [ + 109.3794872, + -0.0468019 + ] + ] + }, + "id": "way/1480455227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480455720", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3691309, + -0.0488185 + ], + [ + 109.3686796, + -0.0490613 + ], + [ + 109.3685853, + -0.0489134 + ] + ] + }, + "id": "way/1480455720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480455899", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3733411, + -0.0485636 + ], + [ + 109.3734764, + -0.0488149 + ], + [ + 109.3741228, + -0.0484045 + ] + ] + }, + "id": "way/1480455899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480456947", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693846, + -0.0464264 + ], + [ + 109.3720172, + -0.0448291 + ] + ] + }, + "id": "way/1480456947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480457850", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.377838, + -0.0444751 + ], + [ + 109.3780079, + -0.0447325 + ], + [ + 109.3780596, + -0.0448143 + ], + [ + 109.3764114, + -0.046076 + ] + ] + }, + "id": "way/1480457850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480458257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3768094, + -0.0448452 + ], + [ + 109.3766735, + -0.0446628 + ] + ] + }, + "id": "way/1480458257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480465440", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651757, + -0.0605218 + ], + [ + 109.3649059, + -0.0602358 + ], + [ + 109.3648415, + -0.0602965 + ], + [ + 109.3648089, + -0.060262 + ], + [ + 109.3647539, + -0.0603138 + ], + [ + 109.3645955, + -0.0601459 + ], + [ + 109.3647357, + -0.0600137 + ], + [ + 109.3647703, + -0.0600503 + ] + ] + }, + "id": "way/1480465440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480465441", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654511, + -0.0605816 + ], + [ + 109.36542, + -0.0605544 + ], + [ + 109.3652775, + -0.0604302 + ], + [ + 109.3651757, + -0.0605218 + ], + [ + 109.3650817, + -0.0606058 + ], + [ + 109.3652788, + -0.0608357 + ], + [ + 109.3653185, + -0.060882 + ] + ] + }, + "id": "way/1480465441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480466658", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364493, + -0.0597294 + ], + [ + 109.364493, + -0.0597972 + ], + [ + 109.3642891, + -0.059936 + ] + ] + }, + "id": "way/1480466658" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480467096", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3640864, + -0.0574858 + ], + [ + 109.3645196, + -0.0572075 + ], + [ + 109.364654, + -0.0571025 + ], + [ + 109.364921, + -0.056905 + ], + [ + 109.3650855, + -0.056777 + ], + [ + 109.3652043, + -0.0566973 + ], + [ + 109.3652748, + -0.0566515 + ], + [ + 109.3654206, + -0.0565664 + ] + ] + }, + "id": "way/1480467096" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480467591", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3663618, + -0.0564545 + ], + [ + 109.3665935, + -0.0567949 + ] + ] + }, + "id": "way/1480467591" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480468178", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.365871, + -0.0576759 + ], + [ + 109.3657093, + -0.0574314 + ] + ] + }, + "id": "way/1480468178" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480469163", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361116, + -0.0564318 + ], + [ + 109.3610816, + -0.0563986 + ] + ] + }, + "id": "way/1480469163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480470637", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360772, + -0.0569159 + ], + [ + 109.3606158, + -0.0567938 + ] + ] + }, + "id": "way/1480470637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480489229", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602278, + -0.0576667 + ], + [ + 109.3594657, + -0.0569119 + ], + [ + 109.3592266, + -0.056675 + ] + ] + }, + "id": "way/1480489229" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480490446", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3594657, + -0.0569119 + ], + [ + 109.359602, + -0.0567555 + ] + ] + }, + "id": "way/1480490446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480490955", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602817, + -0.0575887 + ], + [ + 109.3601874, + -0.0574964 + ], + [ + 109.3601203, + -0.0574308 + ] + ] + }, + "id": "way/1480490955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480491489", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601148, + -0.0578302 + ], + [ + 109.3600213, + -0.0577694 + ], + [ + 109.3599802, + -0.0577426 + ] + ] + }, + "id": "way/1480491489" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480491490", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3601709, + -0.057749 + ], + [ + 109.3600923, + -0.0576967 + ], + [ + 109.3600848, + -0.0576916 + ] + ] + }, + "id": "way/1480491490" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480491789", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359259, + -0.0589612 + ], + [ + 109.3591771, + -0.0588974 + ], + [ + 109.3591366, + -0.0588658 + ] + ] + }, + "id": "way/1480491789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480491790", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592148, + -0.059017 + ], + [ + 109.3591293, + -0.0589494 + ], + [ + 109.3589167, + -0.0587813 + ] + ] + }, + "id": "way/1480491790" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480562082", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3787406, + -0.0264561 + ], + [ + 109.3787858, + -0.0262682 + ] + ] + }, + "id": "way/1480562082" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480562335", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3777841, + -0.0261419 + ], + [ + 109.377729, + -0.0263943 + ] + ] + }, + "id": "way/1480562335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480562861", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3775218, + -0.026064 + ], + [ + 109.3775493, + -0.0259242 + ] + ] + }, + "id": "way/1480562861" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480563283", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3772891, + -0.0249284 + ], + [ + 109.3775251, + -0.025025 + ] + ] + }, + "id": "way/1480563283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480563284", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3775251, + -0.025025 + ], + [ + 109.3778403, + -0.0251511 + ], + [ + 109.3780335, + -0.0252128 + ] + ] + }, + "id": "way/1480563284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480563481", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3760906, + -0.0258726 + ], + [ + 109.376184, + -0.0251618 + ], + [ + 109.3760835, + -0.0251605 + ] + ] + }, + "id": "way/1480563481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480564260", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.372952, + -0.0245764 + ], + [ + 109.3731612, + -0.0239763 + ], + [ + 109.373239, + -0.0237228 + ], + [ + 109.3734442, + -0.023818 + ] + ] + }, + "id": "way/1480564260" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480564859", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3746447, + -0.025772 + ], + [ + 109.3745264, + -0.0264144 + ] + ] + }, + "id": "way/1480564859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480565222", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3739881, + -0.0268712 + ], + [ + 109.3743843, + -0.02692 + ], + [ + 109.3744326, + -0.0270239 + ] + ] + }, + "id": "way/1480565222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480567341", + "highway": "residential", + "name": "Gang Sunan Kalijaga" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3727227, + -0.0263956 + ], + [ + 109.3728668, + -0.0260389 + ], + [ + 109.3729848, + -0.0256461 + ] + ] + }, + "id": "way/1480567341" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480567342", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3727227, + -0.0263956 + ], + [ + 109.3726596, + -0.0266813 + ], + [ + 109.3726757, + -0.0269227 + ], + [ + 109.3726583, + -0.0272807 + ], + [ + 109.3728648, + -0.0273102 + ], + [ + 109.3728648, + -0.0273888 + ] + ] + }, + "id": "way/1480567342" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480567343", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3734925, + -0.0265692 + ], + [ + 109.3734349, + -0.0265674 + ], + [ + 109.3733037, + -0.0265476 + ], + [ + 109.3731599, + -0.026523 + ], + [ + 109.3730333, + -0.0264888 + ], + [ + 109.3729462, + -0.0264565 + ], + [ + 109.3728302, + -0.0264186 + ], + [ + 109.3727227, + -0.0263956 + ] + ] + }, + "id": "way/1480567343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480567344", + "highway": "residential", + "name": "Gang Nangka" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3735322, + -0.026572 + ], + [ + 109.3735187, + -0.0266114 + ] + ] + }, + "id": "way/1480567344" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480567572", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3719855, + -0.0266716 + ], + [ + 109.3718201, + -0.0266585 + ] + ] + }, + "id": "way/1480567572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480571413", + "access": "permissive", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3702778, + -0.0221108 + ], + [ + 109.3707903, + -0.0223141 + ], + [ + 109.3709686, + -0.0223848 + ], + [ + 109.3713091, + -0.0225198 + ] + ] + }, + "id": "way/1480571413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480571414", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3700674, + -0.0237297 + ], + [ + 109.3695879, + -0.0233965 + ] + ] + }, + "id": "way/1480571414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480574216", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431501, + -0.0379244 + ], + [ + 109.3432434, + -0.0378848 + ] + ] + }, + "id": "way/1480574216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480574565", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442031, + -0.0383867 + ], + [ + 109.3448606, + -0.0380361 + ] + ] + }, + "id": "way/1480574565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480576051", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446484, + -0.0375968 + ], + [ + 109.3450128, + -0.0374678 + ], + [ + 109.3452354, + -0.0380029 + ] + ] + }, + "id": "way/1480576051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480577060", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453266, + -0.0344581 + ], + [ + 109.3455133, + -0.0348598 + ] + ] + }, + "id": "way/1480577060" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480577494", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449998, + -0.0354074 + ], + [ + 109.3451013, + -0.0356774 + ] + ] + }, + "id": "way/1480577494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480579124", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437343, + -0.0350613 + ], + [ + 109.3437709, + -0.0351463 + ], + [ + 109.3438252, + -0.0351238 + ] + ] + }, + "id": "way/1480579124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480579125", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437343, + -0.0350613 + ], + [ + 109.343646, + -0.0348776 + ], + [ + 109.3436674, + -0.0348673 + ] + ] + }, + "id": "way/1480579125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480580379", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432501, + -0.0342805 + ], + [ + 109.3430601, + -0.0344141 + ] + ] + }, + "id": "way/1480580379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480580828", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418003, + -0.0340691 + ], + [ + 109.3415545, + -0.0336545 + ] + ] + }, + "id": "way/1480580828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480581456", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.338919, + -0.032893 + ], + [ + 109.3390388, + -0.033018 + ], + [ + 109.3390576, + -0.0330019 + ], + [ + 109.3391783, + -0.0331253 + ], + [ + 109.3392527, + -0.033071 + ], + [ + 109.3393392, + -0.0330944 + ] + ] + }, + "id": "way/1480581456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480581805", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408287, + -0.0335409 + ], + [ + 109.3401231, + -0.0339829 + ] + ] + }, + "id": "way/1480581805" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480581949", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390603, + -0.0339487 + ], + [ + 109.33913, + -0.0340278 + ] + ] + }, + "id": "way/1480581949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480581950", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3390603, + -0.0339487 + ], + [ + 109.3388484, + -0.0336906 + ] + ] + }, + "id": "way/1480581950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480582387", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337145, + -0.0327335 + ], + [ + 109.3369474, + -0.0328705 + ], + [ + 109.3367784, + -0.0330381 + ], + [ + 109.3365745, + -0.0332554 + ], + [ + 109.3362674, + -0.0334968 + ], + [ + 109.3360756, + -0.0336228 + ], + [ + 109.3361212, + -0.0336818 + ], + [ + 109.3359201, + -0.0337945 + ], + [ + 109.3359364, + -0.0338271 + ] + ] + }, + "id": "way/1480582387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480583637", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367699, + -0.0336689 + ], + [ + 109.337111, + -0.0341459 + ] + ] + }, + "id": "way/1480583637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480585208", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375153, + -0.035011 + ], + [ + 109.3372377, + -0.0346494 + ] + ] + }, + "id": "way/1480585208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480585209", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372149, + -0.0346675 + ], + [ + 109.3371499, + -0.0345871 + ] + ] + }, + "id": "way/1480585209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480585210", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372377, + -0.0346494 + ], + [ + 109.3372149, + -0.0346675 + ], + [ + 109.3371217, + -0.0347413 + ] + ] + }, + "id": "way/1480585210" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480585211", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372377, + -0.0346494 + ], + [ + 109.3374523, + -0.0344979 + ], + [ + 109.337463, + -0.0344878 + ], + [ + 109.3374389, + -0.0344322 + ], + [ + 109.3374892, + -0.0343832 + ], + [ + 109.3374328, + -0.0342947 + ], + [ + 109.3376588, + -0.0341365 + ] + ] + }, + "id": "way/1480585211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480585567", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3404342, + -0.0344751 + ], + [ + 109.3406253, + -0.0346964 + ] + ] + }, + "id": "way/1480585567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480585568", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368149, + -0.0348446 + ], + [ + 109.3367697, + -0.0347996 + ] + ] + }, + "id": "way/1480585568" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480586983", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371481, + -0.0365022 + ], + [ + 109.3376528, + -0.0361066 + ], + [ + 109.3374395, + -0.0358356 + ] + ] + }, + "id": "way/1480586983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1480587125", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408835, + -0.0382456 + ], + [ + 109.340807, + -0.0381397 + ] + ] + }, + "id": "way/1480587125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481001437", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3578082, + -0.0219244 + ], + [ + 109.3579128, + -0.0218815 + ] + ] + }, + "id": "way/1481001437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481002546", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570143, + -0.0162166 + ], + [ + 109.3570559, + -0.0163896 + ], + [ + 109.357072, + -0.0171648 + ] + ] + }, + "id": "way/1481002546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481003564", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3502771, + -0.0168216 + ], + [ + 109.3505884, + -0.0169449 + ], + [ + 109.3506309, + -0.0169644 + ], + [ + 109.3508084, + -0.0170457 + ] + ] + }, + "id": "way/1481003564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481003802", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479604, + -0.0170967 + ], + [ + 109.3484084, + -0.0173103 + ] + ] + }, + "id": "way/1481003802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481004037", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480817, + -0.016852 + ], + [ + 109.3485318, + -0.017087 + ] + ] + }, + "id": "way/1481004037" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481004388", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477107, + -0.0185937 + ], + [ + 109.3477446, + -0.0183986 + ] + ] + }, + "id": "way/1481004388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481004389", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480591, + -0.0186567 + ], + [ + 109.348215, + -0.0176357 + ] + ] + }, + "id": "way/1481004389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481004769", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495564, + -0.0179083 + ], + [ + 109.3495148, + -0.0183007 + ], + [ + 109.3494511, + -0.0187614 + ] + ] + }, + "id": "way/1481004769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481005163", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505167, + -0.0186638 + ], + [ + 109.350529, + -0.0177844 + ] + ] + }, + "id": "way/1481005163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481007754", + "highway": "living_street", + "name": "Gang Generasi 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509205, + -0.0176805 + ], + [ + 109.3509151, + -0.0178264 + ], + [ + 109.3509002, + -0.0180357 + ], + [ + 109.3508801, + -0.0183326 + ], + [ + 109.3508614, + -0.0186274 + ] + ] + }, + "id": "way/1481007754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481008766", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3516646, + -0.0185334 + ], + [ + 109.35165, + -0.0186475 + ], + [ + 109.3516437, + -0.0188362 + ], + [ + 109.3516378, + -0.019111 + ] + ] + }, + "id": "way/1481008766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481008899", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352065, + -0.01933 + ], + [ + 109.3518611, + -0.0193434 + ], + [ + 109.351849, + -0.0193515 + ], + [ + 109.3518464, + -0.0193682 + ], + [ + 109.3518591, + -0.0199476 + ], + [ + 109.3518464, + -0.0199858 + ] + ] + }, + "id": "way/1481008899" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481009299", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3503211, + -0.0186844 + ], + [ + 109.3503455, + -0.019078 + ], + [ + 109.3503504, + -0.0193677 + ], + [ + 109.3504509, + -0.0193642 + ], + [ + 109.350458, + -0.0194078 + ] + ] + }, + "id": "way/1481009299" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481009529", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473942, + -0.0194909 + ], + [ + 109.3475676, + -0.0194923 + ] + ] + }, + "id": "way/1481009529" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481010051", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481684, + -0.0207087 + ], + [ + 109.3481127, + -0.0203432 + ], + [ + 109.3479719, + -0.0203479 + ] + ] + }, + "id": "way/1481010051" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481010052", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347876, + -0.0201125 + ], + [ + 109.3479297, + -0.0201152 + ], + [ + 109.3479719, + -0.0203479 + ] + ] + }, + "id": "way/1481010052" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481010053", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347467, + -0.0199335 + ], + [ + 109.3478043, + -0.0198859 + ], + [ + 109.347876, + -0.0201125 + ] + ] + }, + "id": "way/1481010053" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481010054", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475801, + -0.0204493 + ], + [ + 109.3475944, + -0.0204438 + ], + [ + 109.3479719, + -0.0203479 + ] + ] + }, + "id": "way/1481010054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481010055", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3474475, + -0.0204714 + ], + [ + 109.3475801, + -0.0204493 + ] + ] + }, + "id": "way/1481010055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481010056", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473967, + -0.01993 + ], + [ + 109.3473664, + -0.0199556 + ], + [ + 109.3474475, + -0.0204714 + ], + [ + 109.3475316, + -0.0210067 + ] + ] + }, + "id": "way/1481010056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481010057", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482213, + -0.0209887 + ], + [ + 109.3481965, + -0.020712 + ], + [ + 109.3481684, + -0.0207087 + ] + ] + }, + "id": "way/1481010057" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481021709", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351344, + -0.0208876 + ], + [ + 109.3349116, + -0.0206946 + ] + ] + }, + "id": "way/1481021709" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481021710", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352636, + -0.0209995 + ], + [ + 109.3352048, + -0.0209486 + ] + ] + }, + "id": "way/1481021710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481021711", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352048, + -0.0209486 + ], + [ + 109.3351344, + -0.0208876 + ] + ] + }, + "id": "way/1481021711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481022677", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3350071, + -0.0213163 + ], + [ + 109.3342632, + -0.0206294 + ] + ] + }, + "id": "way/1481022677" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481022797", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333967, + -0.0201225 + ], + [ + 109.3343579, + -0.0205297 + ] + ] + }, + "id": "way/1481022797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481032589", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331808, + -0.0190381 + ], + [ + 109.3327188, + -0.018695 + ], + [ + 109.332684, + -0.0187379 + ] + ] + }, + "id": "way/1481032589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481032667", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324231, + -0.0181478 + ], + [ + 109.3323541, + -0.0182149 + ], + [ + 109.3322642, + -0.0184462 + ], + [ + 109.3320624, + -0.0187493 + ], + [ + 109.3321563, + -0.0188425 + ], + [ + 109.3322086, + -0.0188056 + ], + [ + 109.3323067, + -0.0188614 + ] + ] + }, + "id": "way/1481032667" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481033791", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3316853, + -0.0183215 + ], + [ + 109.3318411, + -0.0185334 + ] + ] + }, + "id": "way/1481033791" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481036144", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3312249, + -0.0202037 + ], + [ + 109.3308869, + -0.0203003 + ], + [ + 109.3309177, + -0.020425 + ], + [ + 109.3307139, + -0.0204948 + ], + [ + 109.3306603, + -0.0204532 + ], + [ + 109.3304792, + -0.0205615 + ] + ] + }, + "id": "way/1481036144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481036145", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308315, + -0.0195431 + ], + [ + 109.3311044, + -0.0194793 + ] + ] + }, + "id": "way/1481036145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481036146", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310653, + -0.0191483 + ], + [ + 109.3311044, + -0.0194793 + ], + [ + 109.3311216, + -0.0196204 + ], + [ + 109.3311577, + -0.0198281 + ] + ] + }, + "id": "way/1481036146" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481036147", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3308769, + -0.0198854 + ], + [ + 109.3311577, + -0.0198281 + ], + [ + 109.3312249, + -0.0202037 + ], + [ + 109.3314761, + -0.0201249 + ] + ] + }, + "id": "way/1481036147" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481036148", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307108, + -0.0186131 + ], + [ + 109.3307561, + -0.0189621 + ], + [ + 109.3308315, + -0.0195431 + ], + [ + 109.3308346, + -0.0195667 + ], + [ + 109.3308769, + -0.0198854 + ], + [ + 109.3308949, + -0.0200213 + ] + ] + }, + "id": "way/1481036148" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481036294", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3311162, + -0.0188375 + ], + [ + 109.3310391, + -0.0188915 + ], + [ + 109.3307561, + -0.0189621 + ] + ] + }, + "id": "way/1481036294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481037219", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3314689, + -0.0192516 + ], + [ + 109.3316466, + -0.0190906 + ], + [ + 109.3319638, + -0.0194514 + ] + ] + }, + "id": "way/1481037219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481037257", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3302727, + -0.0203036 + ], + [ + 109.3302291, + -0.020022 + ] + ] + }, + "id": "way/1481037257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481039187", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288995, + -0.0195187 + ], + [ + 109.3288364, + -0.019041 + ] + ] + }, + "id": "way/1481039187" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481040847", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280409, + -0.0213739 + ], + [ + 109.3283165, + -0.0213057 + ] + ] + }, + "id": "way/1481040847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481040848", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282798, + -0.0210359 + ], + [ + 109.328312, + -0.0212431 + ], + [ + 109.3283165, + -0.0213057 + ], + [ + 109.3283187, + -0.0213356 + ] + ] + }, + "id": "way/1481040848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481040849", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3283187, + -0.0213356 + ], + [ + 109.3283281, + -0.0214107 + ] + ] + }, + "id": "way/1481040849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481040850", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280681, + -0.0217623 + ], + [ + 109.3280409, + -0.0213739 + ], + [ + 109.3280384, + -0.0213383 + ], + [ + 109.3280367, + -0.0213243 + ], + [ + 109.3280303, + -0.0212699 + ] + ] + }, + "id": "way/1481040850" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481041095", + "highway": "residential", + "name": "Gang Walet" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3270839, + -0.0214426 + ], + [ + 109.3262042, + -0.0216652 + ], + [ + 109.3260374, + -0.021708 + ] + ] + }, + "id": "way/1481041095" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481042199", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274592, + -0.0172518 + ], + [ + 109.3271573, + -0.0173009 + ], + [ + 109.3269024, + -0.0173203 + ] + ] + }, + "id": "way/1481042199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481045498", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285442, + -0.0174976 + ], + [ + 109.3286633, + -0.0173941 + ], + [ + 109.329004, + -0.0168966 + ] + ] + }, + "id": "way/1481045498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481053497", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248071, + -0.019235 + ], + [ + 109.324843, + -0.019387 + ] + ] + }, + "id": "way/1481053497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481053498", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3255798, + -0.0191047 + ], + [ + 109.3256078, + -0.0192412 + ] + ] + }, + "id": "way/1481053498" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481053499", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3253833, + -0.0191379 + ], + [ + 109.3254195, + -0.0192771 + ] + ] + }, + "id": "way/1481053499" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481053500", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250469, + -0.0191946 + ], + [ + 109.3250782, + -0.0193422 + ] + ] + }, + "id": "way/1481053500" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481053501", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3245421, + -0.0192797 + ], + [ + 109.324568, + -0.0194387 + ] + ] + }, + "id": "way/1481053501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481053502", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244515, + -0.0189094 + ], + [ + 109.3245421, + -0.0192797 + ], + [ + 109.3246619, + -0.0192595 + ], + [ + 109.3248071, + -0.019235 + ], + [ + 109.3250469, + -0.0191946 + ], + [ + 109.3253833, + -0.0191379 + ], + [ + 109.3255798, + -0.0191047 + ], + [ + 109.325902, + -0.0190504 + ] + ] + }, + "id": "way/1481053502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481056963", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452203, + -0.0316054 + ], + [ + 109.345118, + -0.0315937 + ], + [ + 109.3450731, + -0.0315206 + ] + ] + }, + "id": "way/1481056963" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481057678", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417894, + -0.0310242 + ], + [ + 109.3414099, + -0.031196 + ] + ] + }, + "id": "way/1481057678" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481058162", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410402, + -0.0324788 + ], + [ + 109.3408341, + -0.0318713 + ] + ] + }, + "id": "way/1481058162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481058642", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34361, + -0.0308816 + ], + [ + 109.3435509, + -0.0307904 + ], + [ + 109.343099, + -0.0309889 + ] + ] + }, + "id": "way/1481058642" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481060472", + "highway": "residential", + "name": "Gang Sampit" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453669, + -0.0313438 + ], + [ + 109.3457337, + -0.0312028 + ] + ] + }, + "id": "way/1481060472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481061565", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459043, + -0.0288019 + ], + [ + 109.345749, + -0.0283898 + ], + [ + 109.3458067, + -0.0283724 + ], + [ + 109.3456914, + -0.0280814 + ], + [ + 109.3455626, + -0.0277334 + ], + [ + 109.345279, + -0.0278306 + ] + ] + }, + "id": "way/1481061565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481061566", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460428, + -0.0288498 + ], + [ + 109.3460038, + -0.0287694 + ], + [ + 109.3459043, + -0.0288019 + ], + [ + 109.3458603, + -0.0288163 + ] + ] + }, + "id": "way/1481061566" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481061567", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3461599, + -0.0291384 + ], + [ + 109.3460642, + -0.0292039 + ] + ] + }, + "id": "way/1481061567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481062181", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456933, + -0.028832 + ], + [ + 109.3451992, + -0.0290859 + ], + [ + 109.3450905, + -0.0291087 + ], + [ + 109.3448451, + -0.0291704 + ], + [ + 109.3443331, + -0.0294264 + ] + ] + }, + "id": "way/1481062181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481063419", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446522, + -0.027976 + ], + [ + 109.3449698, + -0.0286526 + ] + ] + }, + "id": "way/1481063419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481063559", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444779, + -0.0273536 + ], + [ + 109.3447741, + -0.0279146 + ] + ] + }, + "id": "way/1481063559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481063912", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437884, + -0.0276914 + ], + [ + 109.3433672, + -0.0269079 + ], + [ + 109.3433485, + -0.0268771 + ] + ] + }, + "id": "way/1481063912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481064293", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3410758, + -0.0293895 + ], + [ + 109.3416371, + -0.0290793 + ] + ] + }, + "id": "way/1481064293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1481064450", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401, + -0.0299167 + ], + [ + 109.339759, + -0.0292392 + ] + ] + }, + "id": "way/1481064450" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482078195", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.336832, + -0.0275021 + ], + [ + 109.3368401, + -0.0275417 + ], + [ + 109.3369138, + -0.0279057 + ], + [ + 109.3359818, + -0.0280935 + ], + [ + 109.3359442, + -0.0278614 + ] + ] + }, + "id": "way/1482078195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482078483", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362878, + -0.0284528 + ], + [ + 109.3360522, + -0.0285045 + ] + ] + }, + "id": "way/1482078483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482078484", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.336328, + -0.0286372 + ], + [ + 109.3362878, + -0.0284528 + ], + [ + 109.3362674, + -0.028359 + ], + [ + 109.3359295, + -0.0284321 + ], + [ + 109.3354473, + -0.0285702 + ], + [ + 109.3354708, + -0.0286514 + ], + [ + 109.3354252, + -0.0286715 + ] + ] + }, + "id": "way/1482078484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482078654", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3374605, + -0.0284457 + ], + [ + 109.3375325, + -0.0288868 + ] + ] + }, + "id": "way/1482078654" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482078885", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372951, + -0.0289339 + ], + [ + 109.3374208, + -0.0296572 + ], + [ + 109.3378957, + -0.0295758 + ] + ] + }, + "id": "way/1482078885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482079125", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360202, + -0.0302803 + ], + [ + 109.3361156, + -0.0303691 + ] + ] + }, + "id": "way/1482079125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482079126", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3360632, + -0.0300502 + ], + [ + 109.3359985, + -0.0301634 + ], + [ + 109.3360689, + -0.0302332 + ], + [ + 109.3360202, + -0.0302803 + ], + [ + 109.335967, + -0.0303318 + ] + ] + }, + "id": "way/1482079126" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482079229", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368673, + -0.0323794 + ], + [ + 109.3364015, + -0.032672 + ] + ] + }, + "id": "way/1482079229" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482079494", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414994, + -0.0278938 + ], + [ + 109.3411471, + -0.0272669 + ] + ] + }, + "id": "way/1482079494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482081803", + "highway": "living_street", + "motorcar": "no", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460258, + -0.0438078 + ], + [ + 109.3473308, + -0.0447212 + ] + ] + }, + "id": "way/1482081803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482081999", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499261, + -0.0446401 + ], + [ + 109.3497697, + -0.0448613 + ] + ] + }, + "id": "way/1482081999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482082308", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508711, + -0.046186 + ], + [ + 109.350857, + -0.0461743 + ] + ] + }, + "id": "way/1482082308" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482082309", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507815, + -0.0461013 + ], + [ + 109.3506622, + -0.0459885 + ] + ] + }, + "id": "way/1482082309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482082634", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3496494, + -0.0472955 + ], + [ + 109.3491431, + -0.0468994 + ] + ] + }, + "id": "way/1482082634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482082635", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349757, + -0.0473797 + ], + [ + 109.3497412, + -0.0473681 + ] + ] + }, + "id": "way/1482082635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482083098", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3499313, + -0.0471797 + ], + [ + 109.3504736, + -0.047561 + ] + ] + }, + "id": "way/1482083098" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482083569", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350074, + -0.0480789 + ], + [ + 109.3497646, + -0.0478788 + ], + [ + 109.3495029, + -0.0477051 + ] + ] + }, + "id": "way/1482083569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482086078", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3525907, + -0.045291 + ], + [ + 109.3524338, + -0.045267 + ], + [ + 109.3521072, + -0.0456713 + ] + ] + }, + "id": "way/1482086078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482087695", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3526077, + -0.0454901 + ], + [ + 109.3525136, + -0.0454058 + ], + [ + 109.3525612, + -0.0453716 + ], + [ + 109.3525448, + -0.0453319 + ] + ] + }, + "id": "way/1482087695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482088997", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3520182, + -0.0458342 + ], + [ + 109.3516794, + -0.0462735 + ], + [ + 109.3518965, + -0.0464238 + ] + ] + }, + "id": "way/1482088997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482089679", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3541425, + -0.0446822 + ], + [ + 109.354316, + -0.0450061 + ], + [ + 109.354092, + -0.0451295 + ], + [ + 109.3541779, + -0.0452475 + ], + [ + 109.354143, + -0.0452823 + ] + ] + }, + "id": "way/1482089679" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482092551", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544404, + -0.0457531 + ], + [ + 109.35432, + -0.0456123 + ], + [ + 109.3542422, + -0.0454353 + ], + [ + 109.3544534, + -0.0453268 + ] + ] + }, + "id": "way/1482092551" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482099821", + "barrier": "gate", + "highway": "living_street", + "name": "Gang Mendawai I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3572109, + -0.0451388 + ], + [ + 109.3570223, + -0.0453079 + ] + ] + }, + "id": "way/1482099821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482100159", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3576356, + -0.0455885 + ], + [ + 109.3571987, + -0.0460549 + ], + [ + 109.357314, + -0.0461548 + ], + [ + 109.3573107, + -0.0461749 + ] + ] + }, + "id": "way/1482100159" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482100457", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580111, + -0.045911 + ], + [ + 109.3577667, + -0.0461984 + ] + ] + }, + "id": "way/1482100457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482100458", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3579148, + -0.0458289 + ], + [ + 109.3576486, + -0.0461179 + ] + ] + }, + "id": "way/1482100458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482100817", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3554984, + -0.048515 + ], + [ + 109.3552199, + -0.0482087 + ] + ] + }, + "id": "way/1482100817" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482101116", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555714, + -0.0481644 + ], + [ + 109.3557805, + -0.0478882 + ], + [ + 109.3557188, + -0.0478613 + ], + [ + 109.3559012, + -0.047628 + ] + ] + }, + "id": "way/1482101116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482101268", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3567336, + -0.0478638 + ], + [ + 109.3568252, + -0.0477339 + ], + [ + 109.3571576, + -0.0472796 + ] + ] + }, + "id": "way/1482101268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482102986", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3577037, + -0.0161025 + ], + [ + 109.357717, + -0.0157727 + ], + [ + 109.3577559, + -0.0145067 + ] + ] + }, + "id": "way/1482102986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482103891", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509726, + -0.0154485 + ], + [ + 109.3504603, + -0.0152725 + ], + [ + 109.3504147, + -0.0153121 + ] + ] + }, + "id": "way/1482103891" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482104937", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484459, + -0.0148729 + ], + [ + 109.3485796, + -0.0149389 + ], + [ + 109.3485862, + -0.0149383 + ], + [ + 109.3485926, + -0.0149348 + ], + [ + 109.3486039, + -0.0149051 + ], + [ + 109.3486056, + -0.0149037 + ], + [ + 109.3486088, + -0.0149041 + ], + [ + 109.3486199, + -0.0149124 + ], + [ + 109.3486218, + -0.014913 + ], + [ + 109.3486237, + -0.0149119 + ], + [ + 109.3486431, + -0.0148735 + ], + [ + 109.3486471, + -0.0148715 + ], + [ + 109.3486515, + -0.0148724 + ], + [ + 109.3487377, + -0.0149124 + ], + [ + 109.3488265, + -0.014949 + ] + ] + }, + "id": "way/1482104937" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482105038", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482307, + -0.0146489 + ], + [ + 109.3484668, + -0.0148286 + ] + ] + }, + "id": "way/1482105038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482105179", + "access": "private", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570664, + -0.0126788 + ], + [ + 109.3571611, + -0.011565 + ] + ] + }, + "id": "way/1482105179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482106111", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3559023, + -0.0127611 + ], + [ + 109.3559079, + -0.0125078 + ] + ] + }, + "id": "way/1482106111" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482106191", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537445, + -0.0139255 + ], + [ + 109.3538138, + -0.0138757 + ], + [ + 109.353911, + -0.0137168 + ] + ] + }, + "id": "way/1482106191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482106819", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550526, + -0.0120594 + ], + [ + 109.3549885, + -0.012047 + ] + ] + }, + "id": "way/1482106819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482106820", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549885, + -0.012047 + ], + [ + 109.3549228, + -0.0120344 + ] + ] + }, + "id": "way/1482106820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482106821", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3550926, + -0.0120671 + ], + [ + 109.3550526, + -0.0120594 + ] + ] + }, + "id": "way/1482106821" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482107461", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3537226, + -0.0128082 + ], + [ + 109.3536092, + -0.0129705 + ] + ] + }, + "id": "way/1482107461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482110833", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532773, + -0.0114131 + ], + [ + 109.3536267, + -0.011681 + ] + ] + }, + "id": "way/1482110833" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482111466", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497198, + -0.0130074 + ], + [ + 109.3499105, + -0.0129464 + ] + ] + }, + "id": "way/1482111466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482112217", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.34944, + -0.013673 + ], + [ + 109.3493648, + -0.0136348 + ] + ] + }, + "id": "way/1482112217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482112368", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494528, + -0.0134067 + ], + [ + 109.3490428, + -0.0131214 + ], + [ + 109.3489583, + -0.0132354 + ], + [ + 109.3489023, + -0.013229 + ] + ] + }, + "id": "way/1482112368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482113434", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600573, + -0.0643502 + ], + [ + 109.3597146, + -0.0639995 + ] + ] + }, + "id": "way/1482113434" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482113968", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3607759, + -0.0633027 + ], + [ + 109.3606113, + -0.0634887 + ], + [ + 109.3604509, + -0.0636707 + ] + ] + }, + "id": "way/1482113968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482114423", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3612464, + -0.0642898 + ], + [ + 109.3615013, + -0.0639523 + ] + ] + }, + "id": "way/1482114423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482114563", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614815, + -0.0631382 + ], + [ + 109.3615107, + -0.0630837 + ], + [ + 109.3616183, + -0.062883 + ], + [ + 109.3614601, + -0.0628307 + ], + [ + 109.3613662, + -0.0630145 + ], + [ + 109.3615107, + -0.0630837 + ] + ] + }, + "id": "way/1482114563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482114564", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618386, + -0.0633031 + ], + [ + 109.3614815, + -0.0631382 + ], + [ + 109.3611208, + -0.0629715 + ] + ] + }, + "id": "way/1482114564" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482116872", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586012, + -0.071223 + ], + [ + 109.3587175, + -0.0711483 + ], + [ + 109.3588074, + -0.071167 + ], + [ + 109.3598873, + -0.0719069 + ] + ] + }, + "id": "way/1482116872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482117301", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592244, + -0.0674991 + ], + [ + 109.3590816, + -0.0676614 + ], + [ + 109.3590622, + -0.067817 + ] + ] + }, + "id": "way/1482117301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482117302", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3596167, + -0.067936 + ], + [ + 109.3592244, + -0.0674991 + ], + [ + 109.3594564, + -0.0672993 + ] + ] + }, + "id": "way/1482117302" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482117303", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359838, + -0.0677428 + ], + [ + 109.3596167, + -0.067936 + ], + [ + 109.3594028, + -0.0681227 + ], + [ + 109.3592566, + -0.0680315 + ] + ] + }, + "id": "way/1482117303" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482118402", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3589321, + -0.0671075 + ], + [ + 109.3587039, + -0.066836 + ], + [ + 109.3585394, + -0.0666402 + ], + [ + 109.3584734, + -0.0665617 + ], + [ + 109.3582186, + -0.0668245 + ] + ] + }, + "id": "way/1482118402" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482118403", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591463, + -0.0672836 + ], + [ + 109.3589321, + -0.0671075 + ], + [ + 109.3586062, + -0.0673985 + ], + [ + 109.3585418, + -0.0673543 + ], + [ + 109.3584895, + -0.0674026 + ], + [ + 109.3584064, + -0.0673435 + ], + [ + 109.3584801, + -0.0672497 + ], + [ + 109.3583943, + -0.0671612 + ], + [ + 109.3587039, + -0.066836 + ] + ] + }, + "id": "way/1482118403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482118404", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3593263, + -0.0671493 + ], + [ + 109.3591463, + -0.0672836 + ], + [ + 109.359093, + -0.0673234 + ], + [ + 109.3591292, + -0.0674106 + ], + [ + 109.3588408, + -0.0676104 + ] + ] + }, + "id": "way/1482118404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482119379", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.359207, + -0.0077606 + ], + [ + 109.3581113, + -0.0077198 + ], + [ + 109.3577881, + -0.0077077 + ], + [ + 109.357446, + -0.007695 + ], + [ + 109.3573093, + -0.0076899 + ] + ] + }, + "id": "way/1482119379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482120702", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544786, + -0.0070614 + ], + [ + 109.352197, + -0.0048843 + ] + ] + }, + "id": "way/1482120702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482120773", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353536, + -0.0081575 + ], + [ + 109.3523593, + -0.0069362 + ], + [ + 109.3521515, + -0.0067203 + ] + ] + }, + "id": "way/1482120773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482122086", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3523407, + -0.0107709 + ], + [ + 109.3522272, + -0.0109844 + ], + [ + 109.3521962, + -0.0110413 + ], + [ + 109.3521429, + -0.0111089 + ] + ] + }, + "id": "way/1482122086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482122470", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3501428, + -0.0101304 + ], + [ + 109.3499775, + -0.0103144 + ] + ] + }, + "id": "way/1482122470" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482122672", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3494828, + -0.0094695 + ], + [ + 109.3498769, + -0.0089398 + ] + ] + }, + "id": "way/1482122672" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482122673", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3495947, + -0.0095752 + ], + [ + 109.3500754, + -0.0090203 + ] + ] + }, + "id": "way/1482122673" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482123245", + "highway": "residential", + "name": "Gang Amal 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471546, + -0.0096845 + ], + [ + 109.3478579, + -0.0099476 + ], + [ + 109.347815, + -0.010061 + ], + [ + 109.3478264, + -0.0100889 + ] + ] + }, + "id": "way/1482123245" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482123502", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485946, + -0.0095396 + ], + [ + 109.3486284, + -0.0095446 + ], + [ + 109.3487383, + -0.0094186 + ] + ] + }, + "id": "way/1482123502" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482123503", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3483876, + -0.0093643 + ], + [ + 109.3485946, + -0.0095396 + ], + [ + 109.3487893, + -0.0097498 + ] + ] + }, + "id": "way/1482123503" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482123996", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3487849, + -0.0087896 + ], + [ + 109.3488416, + -0.0086709 + ], + [ + 109.3483447, + -0.0084181 + ], + [ + 109.3484292, + -0.0082847 + ] + ] + }, + "id": "way/1482123996" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482124545", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484292, + -0.0082847 + ], + [ + 109.3482041, + -0.0081681 + ] + ] + }, + "id": "way/1482124545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482125820", + "highway": "living_street", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3558767, + -0.0060525 + ], + [ + 109.3555109, + -0.005984 + ], + [ + 109.3553787, + -0.0059161 + ] + ] + }, + "id": "way/1482125820" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482130555", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3677057, + -0.0520646 + ], + [ + 109.3678511, + -0.0522454 + ], + [ + 109.3679905, + -0.0524158 + ] + ] + }, + "id": "way/1482130555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482130913", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619945, + -0.0498552 + ], + [ + 109.3619224, + -0.0497805 + ], + [ + 109.3618367, + -0.0496861 + ] + ] + }, + "id": "way/1482130913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482140625", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591463, + -0.0513033 + ], + [ + 109.3587067, + -0.0519231 + ] + ] + }, + "id": "way/1482140625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482141342", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3589482, + -0.0524369 + ], + [ + 109.3591842, + -0.0526377 + ] + ] + }, + "id": "way/1482141342" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482191387", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350857, + -0.0461743 + ], + [ + 109.3507815, + -0.0461013 + ] + ] + }, + "id": "way/1482191387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482191388", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3497412, + -0.0473681 + ], + [ + 109.3496494, + -0.0472955 + ] + ] + }, + "id": "way/1482191388" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482380644", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680167, + -0.0533853 + ], + [ + 109.3678933, + -0.0534512 + ] + ] + }, + "id": "way/1482380644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482380645", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3678933, + -0.0534512 + ], + [ + 109.3677547, + -0.0535252 + ] + ] + }, + "id": "way/1482380645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482382038", + "bridge": "yes", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651169, + -0.053982 + ], + [ + 109.3654949, + -0.0545561 + ] + ] + }, + "id": "way/1482382038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482382039", + "bridge": "yes", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643791, + -0.0528582 + ], + [ + 109.3648687, + -0.053593 + ] + ] + }, + "id": "way/1482382039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482382040", + "bridge": "yes", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364246, + -0.0526519 + ], + [ + 109.3643791, + -0.0528582 + ] + ] + }, + "id": "way/1482382040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482382041", + "bridge": "yes", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3651169, + -0.053982 + ], + [ + 109.3648687, + -0.053593 + ] + ] + }, + "id": "way/1482382041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482383033", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3600181, + -0.0536859 + ], + [ + 109.3597208, + -0.0539151 + ], + [ + 109.3594323, + -0.0541375 + ], + [ + 109.3591661, + -0.0543427 + ] + ] + }, + "id": "way/1482383033" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482383395", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623021, + -0.0513924 + ], + [ + 109.3623881, + -0.0514662 + ], + [ + 109.3626147, + -0.0512543 + ] + ] + }, + "id": "way/1482383395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482385134", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.339021, + -0.0117608 + ], + [ + 109.3389255, + -0.0115348 + ], + [ + 109.338892, + -0.0114825 + ], + [ + 109.3388631, + -0.011451 + ], + [ + 109.3386499, + -0.0111975 + ] + ] + }, + "id": "way/1482385134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482386067", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3392063, + -0.0123048 + ], + [ + 109.3390616, + -0.0120485 + ], + [ + 109.3390241, + -0.0120686 + ], + [ + 109.3390033, + -0.0120753 + ], + [ + 109.3388747, + -0.0118329 + ] + ] + }, + "id": "way/1482386067" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482386734", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3389106, + -0.0125039 + ], + [ + 109.3392011, + -0.0128342 + ] + ] + }, + "id": "way/1482386734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482387107", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397649, + -0.0140333 + ], + [ + 109.3397006, + -0.013971 + ], + [ + 109.3397415, + -0.0139307 + ], + [ + 109.3396296, + -0.013802 + ] + ] + }, + "id": "way/1482387107" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482387727", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.337092, + -0.0129056 + ], + [ + 109.3366838, + -0.0133386 + ], + [ + 109.3369118, + -0.0136055 + ], + [ + 109.3370439, + -0.0136846 + ], + [ + 109.3370607, + -0.0138583 + ], + [ + 109.3371425, + -0.0139884 + ], + [ + 109.3371499, + -0.0140709 + ], + [ + 109.3372129, + -0.0141057 + ] + ] + }, + "id": "way/1482387727" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482388023", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.338611, + -0.0137819 + ], + [ + 109.3386948, + -0.013869 + ], + [ + 109.3387981, + -0.0139817 + ] + ] + }, + "id": "way/1482388023" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482388604", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408568, + -0.0136746 + ], + [ + 109.3405978, + -0.013395 + ], + [ + 109.3407527, + -0.0132756 + ] + ] + }, + "id": "way/1482388604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482388605", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3409056, + -0.0137284 + ], + [ + 109.3408819, + -0.0137017 + ] + ] + }, + "id": "way/1482388605" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482388606", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408819, + -0.0137017 + ], + [ + 109.3408568, + -0.0136746 + ] + ] + }, + "id": "way/1482388606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482389467", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Baiduri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418881, + -0.0125175 + ], + [ + 109.3416747, + -0.0123516 + ] + ] + }, + "id": "way/1482389467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482389675", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411142, + -0.0125465 + ], + [ + 109.3412265, + -0.012422 + ], + [ + 109.3413368, + -0.0122926 + ] + ] + }, + "id": "way/1482389675" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482390389", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Rapi Indah 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411752, + -0.013396 + ], + [ + 109.3419121, + -0.0141621 + ], + [ + 109.3420234, + -0.01426 + ], + [ + 109.3423279, + -0.0138684 + ] + ] + }, + "id": "way/1482390389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482391556", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3427943, + -0.0146647 + ], + [ + 109.3422675, + -0.0142412 + ] + ] + }, + "id": "way/1482391556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482393680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430007, + -0.0144266 + ], + [ + 109.3428227, + -0.0143096 + ] + ] + }, + "id": "way/1482393680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482393973", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411296, + -0.0157023 + ], + [ + 109.3416386, + -0.0161527 + ] + ] + }, + "id": "way/1482393973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482394162", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417669, + -0.0160017 + ], + [ + 109.3419644, + -0.0161134 + ], + [ + 109.3419993, + -0.0160812 + ], + [ + 109.3423104, + -0.0161603 + ] + ] + }, + "id": "way/1482394162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482397077", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447843, + -0.0154238 + ], + [ + 109.3442175, + -0.0151719 + ], + [ + 109.344184, + -0.0152524 + ], + [ + 109.3440351, + -0.0151987 + ] + ] + }, + "id": "way/1482397077" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482397142", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.342906, + -0.0145444 + ], + [ + 109.3435233, + -0.0148775 + ] + ] + }, + "id": "way/1482397142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482397284", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455282, + -0.0149736 + ], + [ + 109.3451113, + -0.0147656 + ] + ] + }, + "id": "way/1482397284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482401456", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3469347, + -0.0145484 + ], + [ + 109.3467656, + -0.0144584 + ] + ] + }, + "id": "way/1482401456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482401641", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3460435, + -0.0124425 + ], + [ + 109.3456116, + -0.0122624 + ] + ] + }, + "id": "way/1482401641" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482401708", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445106, + -0.0120842 + ], + [ + 109.3440485, + -0.0118862 + ], + [ + 109.34378, + -0.0121936 + ] + ] + }, + "id": "way/1482401708" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482411787", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.356052, + -0.0642253 + ], + [ + 109.3560044, + -0.0643502 + ], + [ + 109.3561453, + -0.0645634 + ], + [ + 109.3563223, + -0.0645983 + ], + [ + 109.3564095, + -0.0644857 + ], + [ + 109.3564711, + -0.0644588 + ], + [ + 109.3565637, + -0.0644374 + ], + [ + 109.3565395, + -0.0642999 + ] + ] + }, + "id": "way/1482411787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482412574", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544686, + -0.0619022 + ], + [ + 109.3545821, + -0.0618094 + ] + ] + }, + "id": "way/1482412574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482412575", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544686, + -0.0619022 + ], + [ + 109.3543374, + -0.0620093 + ] + ] + }, + "id": "way/1482412575" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482412576", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3547737, + -0.0622756 + ], + [ + 109.3548632, + -0.0622024 + ], + [ + 109.3549963, + -0.0620936 + ] + ] + }, + "id": "way/1482412576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482412577", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544686, + -0.0619022 + ], + [ + 109.3547737, + -0.0622756 + ], + [ + 109.3547197, + -0.0623196 + ] + ] + }, + "id": "way/1482412577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482413077", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549347, + -0.0631912 + ], + [ + 109.3548692, + -0.063282 + ] + ] + }, + "id": "way/1482413077" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482413078", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3546128, + -0.0628624 + ], + [ + 109.3549347, + -0.0631912 + ], + [ + 109.3550013, + -0.0632592 + ] + ] + }, + "id": "way/1482413078" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482413079", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3549777, + -0.0625357 + ], + [ + 109.3546128, + -0.0628624 + ], + [ + 109.3545762, + -0.0628951 + ] + ] + }, + "id": "way/1482413079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482413080", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3551481, + -0.0622766 + ], + [ + 109.3549128, + -0.0624639 + ], + [ + 109.3549777, + -0.0625357 + ], + [ + 109.3553627, + -0.0629615 + ] + ] + }, + "id": "way/1482413080" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482414124", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352704, + -0.0628763 + ], + [ + 109.3527777, + -0.0629742 + ], + [ + 109.3528649, + -0.0630882 + ] + ] + }, + "id": "way/1482414124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482414556", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3517003, + -0.0611074 + ], + [ + 109.3517826, + -0.0612201 + ], + [ + 109.3518749, + -0.0613325 + ] + ] + }, + "id": "way/1482414556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482414557", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.352307, + -0.0606514 + ], + [ + 109.3517003, + -0.0611074 + ], + [ + 109.3514219, + -0.0613166 + ], + [ + 109.3515117, + -0.0614266 + ], + [ + 109.3516217, + -0.0615567 + ] + ] + }, + "id": "way/1482414557" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482415196", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500494, + -0.0607727 + ], + [ + 109.3500497, + -0.0607731 + ], + [ + 109.350083, + -0.0608193 + ], + [ + 109.3519355, + -0.0625196 + ] + ] + }, + "id": "way/1482415196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482416377", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505119, + -0.0604297 + ], + [ + 109.3503988, + -0.0603348 + ] + ] + }, + "id": "way/1482416377" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482416378", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3505555, + -0.0604664 + ], + [ + 109.3505119, + -0.0604297 + ] + ] + }, + "id": "way/1482416378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482416379", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3510947, + -0.061043 + ], + [ + 109.3507487, + -0.0607225 + ], + [ + 109.3505267, + -0.0604952 + ], + [ + 109.3505555, + -0.0604664 + ] + ] + }, + "id": "way/1482416379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482416825", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482167, + -0.06302 + ], + [ + 109.34771, + -0.0626408 + ] + ] + }, + "id": "way/1482416825" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482416826", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484504, + -0.062731 + ], + [ + 109.3479437, + -0.0623258 + ] + ] + }, + "id": "way/1482416826" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482418193", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3500098, + -0.0607177 + ], + [ + 109.3500494, + -0.0607727 + ] + ] + }, + "id": "way/1482418193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482418194", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.349215, + -0.0601355 + ], + [ + 109.3494076, + -0.0602518 + ], + [ + 109.3499842, + -0.0606823 + ], + [ + 109.3500098, + -0.0607177 + ] + ] + }, + "id": "way/1482418194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482421512", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3661563, + -0.0494951 + ], + [ + 109.3664624, + -0.0492836 + ] + ] + }, + "id": "way/1482421512" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482421915", + "bridge": "yes", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3639067, + -0.0489149 + ], + [ + 109.363988, + -0.0490455 + ] + ] + }, + "id": "way/1482421915" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482422221", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364995, + -0.049232 + ], + [ + 109.3646931, + -0.0488603 + ] + ] + }, + "id": "way/1482422221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482422587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646014, + -0.0478951 + ], + [ + 109.3648772, + -0.0477152 + ] + ] + }, + "id": "way/1482422587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482422875", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632507, + -0.0464179 + ], + [ + 109.3640645, + -0.0456418 + ] + ] + }, + "id": "way/1482422875" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482423024", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628854, + -0.0459341 + ], + [ + 109.3623841, + -0.0464223 + ] + ] + }, + "id": "way/1482423024" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482423289", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3585103, + -0.0463129 + ], + [ + 109.3582729, + -0.0466926 + ], + [ + 109.3583374, + -0.0467523 + ] + ] + }, + "id": "way/1482423289" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482423745", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588871, + -0.0466591 + ], + [ + 109.3587681, + -0.0467767 + ], + [ + 109.3586405, + -0.0469019 + ] + ] + }, + "id": "way/1482423745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482424022", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3580772, + -0.0492548 + ], + [ + 109.3582025, + -0.049354 + ], + [ + 109.3583627, + -0.0494726 + ] + ] + }, + "id": "way/1482424022" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482424180", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360591, + -0.0483482 + ], + [ + 109.3602946, + -0.0480343 + ], + [ + 109.3602752, + -0.0480521 + ] + ] + }, + "id": "way/1482424180" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482424316", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602045, + -0.0488477 + ], + [ + 109.3602476, + -0.0488396 + ], + [ + 109.3602733, + -0.0488247 + ], + [ + 109.3603298, + -0.0487396 + ], + [ + 109.3603312, + -0.0487146 + ], + [ + 109.3603379, + -0.0486914 + ], + [ + 109.360591, + -0.0483482 + ] + ] + }, + "id": "way/1482424316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482424362", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602946, + -0.0480343 + ], + [ + 109.3598471, + -0.0475665 + ] + ] + }, + "id": "way/1482424362" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482424413", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.361047, + -0.0488254 + ], + [ + 109.360591, + -0.0483482 + ] + ] + }, + "id": "way/1482424413" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482424859", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3276508, + -0.0318693 + ], + [ + 109.327748, + -0.0320068 + ], + [ + 109.3279123, + -0.0318734 + ], + [ + 109.3281853, + -0.032162 + ] + ] + }, + "id": "way/1482424859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482430266", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Cendana" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3299454, + -0.0291596 + ], + [ + 109.3301939, + -0.0295507 + ], + [ + 109.3304356, + -0.0299309 + ] + ] + }, + "id": "way/1482430266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482430887", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329317, + -0.0290648 + ], + [ + 109.3292461, + -0.028935 + ], + [ + 109.3291555, + -0.028823 + ], + [ + 109.3289735, + -0.0286062 + ] + ] + }, + "id": "way/1482430887" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482432181", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294772, + -0.028147 + ], + [ + 109.3292128, + -0.0278616 + ], + [ + 109.3292194, + -0.0278448 + ], + [ + 109.3292628, + -0.0277912 + ] + ] + }, + "id": "way/1482432181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482433637", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281223, + -0.0280752 + ], + [ + 109.3287291, + -0.0275892 + ] + ] + }, + "id": "way/1482433637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482434556", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3314193, + -0.0274189 + ], + [ + 109.3314783, + -0.0274377 + ], + [ + 109.3315776, + -0.0273572 + ], + [ + 109.3316634, + -0.0274712 + ] + ] + }, + "id": "way/1482434556" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482434983", + "highway": "residential", + "name": "Gang Madu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3323732, + -0.0269103 + ], + [ + 109.3316634, + -0.0274712 + ] + ] + }, + "id": "way/1482434983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482436142", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3316634, + -0.0274712 + ], + [ + 109.3319236, + -0.0277186 + ], + [ + 109.3319975, + -0.0277085 + ] + ] + }, + "id": "way/1482436142" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482436738", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310747, + -0.0280063 + ], + [ + 109.3310201, + -0.0279692 + ] + ] + }, + "id": "way/1482436738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482436739", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310747, + -0.0280063 + ], + [ + 109.331133, + -0.0280867 + ] + ] + }, + "id": "way/1482436739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482436740", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3313019, + -0.0275195 + ], + [ + 109.33142, + -0.0277521 + ], + [ + 109.3312517, + -0.0278588 + ], + [ + 109.3312691, + -0.0278977 + ], + [ + 109.3310747, + -0.0280063 + ] + ] + }, + "id": "way/1482436740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482438644", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332944, + -0.0330961 + ], + [ + 109.3331051, + -0.0329013 + ] + ] + }, + "id": "way/1482438644" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482439948", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318867, + -0.0322105 + ], + [ + 109.331947, + -0.0321114 + ], + [ + 109.3319048, + -0.0320537 + ], + [ + 109.3320356, + -0.0319391 + ] + ] + }, + "id": "way/1482439948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482440876", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3313533, + -0.0317454 + ], + [ + 109.3315635, + -0.0316595 + ], + [ + 109.3315963, + -0.0317312 + ], + [ + 109.3316647, + -0.031691 + ], + [ + 109.331652, + -0.0316695 + ], + [ + 109.3319097, + -0.0315189 + ] + ] + }, + "id": "way/1482440876" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482441601", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3313469, + -0.0302151 + ], + [ + 109.3311524, + -0.030022 + ] + ] + }, + "id": "way/1482441601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482443239", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347477, + -0.0302663 + ], + [ + 109.3349142, + -0.0304766 + ] + ] + }, + "id": "way/1482443239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482443509", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344583, + -0.0298161 + ], + [ + 109.3345609, + -0.0297873 + ], + [ + 109.3346742, + -0.0296505 + ] + ] + }, + "id": "way/1482443509" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482443909", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343255, + -0.0299378 + ], + [ + 109.3341337, + -0.0300783 + ], + [ + 109.3338266, + -0.0296625 + ], + [ + 109.3338695, + -0.0296196 + ], + [ + 109.3336449, + -0.0293675 + ] + ] + }, + "id": "way/1482443909" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482444501", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353907, + -0.0294646 + ], + [ + 109.3357015, + -0.0292227 + ] + ] + }, + "id": "way/1482444501" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482444806", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3352148, + -0.0277542 + ], + [ + 109.3353125, + -0.0282651 + ], + [ + 109.3344814, + -0.0286709 + ] + ] + }, + "id": "way/1482444806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482444962", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328735, + -0.0282553 + ], + [ + 109.3332714, + -0.0287211 + ] + ] + }, + "id": "way/1482444962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482445625", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329065, + -0.0290473 + ], + [ + 109.3326974, + -0.0287667 + ] + ] + }, + "id": "way/1482445625" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482447507", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322477, + -0.0291703 + ], + [ + 109.3322126, + -0.0291234 + ] + ] + }, + "id": "way/1482447507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482447508", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.332545, + -0.0293814 + ], + [ + 109.3323246, + -0.0291288 + ], + [ + 109.3322477, + -0.0291703 + ], + [ + 109.3322052, + -0.0291932 + ] + ] + }, + "id": "way/1482447508" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482447528", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322971, + -0.0286978 + ], + [ + 109.3324419, + -0.0289544 + ], + [ + 109.3324104, + -0.0289799 + ], + [ + 109.3326516, + -0.0292754 + ] + ] + }, + "id": "way/1482447528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482719784", + "highway": "service", + "lanes": "1", + "motorcar": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630473, + -0.0660191 + ], + [ + 109.3626992, + -0.0658388 + ], + [ + 109.3625826, + -0.0660829 + ], + [ + 109.3627502, + -0.0662049 + ] + ] + }, + "id": "way/1482719784" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482722560", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3417807, + -0.0607587 + ], + [ + 109.3418618, + -0.0607118 + ], + [ + 109.3417753, + -0.0606099 + ], + [ + 109.3417217, + -0.0606447 + ] + ] + }, + "id": "way/1482722560" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482722562", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421301, + -0.0605113 + ], + [ + 109.3419253, + -0.0602525 + ], + [ + 109.3418813, + -0.0601968 + ], + [ + 109.3416868, + -0.0603135 + ] + ] + }, + "id": "way/1482722562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482724359", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3396483, + -0.065989 + ], + [ + 109.3398083, + -0.066151 + ] + ] + }, + "id": "way/1482724359" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482724360", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394539, + -0.065745 + ], + [ + 109.3396483, + -0.065989 + ] + ] + }, + "id": "way/1482724360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482724660", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3449752, + -0.0609508 + ], + [ + 109.3446854, + -0.0612616 + ] + ] + }, + "id": "way/1482724660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482724661", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3446854, + -0.0612616 + ], + [ + 109.3446032, + -0.0613731 + ] + ] + }, + "id": "way/1482724661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482724662", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344215, + -0.060999 + ], + [ + 109.3443221, + -0.060917 + ], + [ + 109.3446854, + -0.0612616 + ], + [ + 109.344766, + -0.0613381 + ] + ] + }, + "id": "way/1482724662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482724663", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3445057, + -0.0605092 + ], + [ + 109.3449752, + -0.0609508 + ], + [ + 109.3453905, + -0.0613414 + ] + ] + }, + "id": "way/1482724663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482725203", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459173, + -0.0601452 + ], + [ + 109.345348, + -0.0607413 + ], + [ + 109.3452367, + -0.060638 + ] + ] + }, + "id": "way/1482725203" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482725607", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3468247, + -0.0606864 + ], + [ + 109.3463929, + -0.060288 + ] + ] + }, + "id": "way/1482725607" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482725662", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463103, + -0.0611979 + ], + [ + 109.3468581, + -0.0617458 + ] + ] + }, + "id": "way/1482725662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482726190", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462967, + -0.0618445 + ], + [ + 109.3458454, + -0.0623279 + ], + [ + 109.3457937, + -0.0623833 + ] + ] + }, + "id": "way/1482726190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482729424", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3452255, + -0.0620958 + ], + [ + 109.3449846, + -0.0618839 + ], + [ + 109.3448894, + -0.0619992 + ], + [ + 109.3450693, + -0.0622424 + ] + ] + }, + "id": "way/1482729424" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482730894", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3444348, + -0.0633769 + ], + [ + 109.3445662, + -0.0634302 + ], + [ + 109.3448409, + -0.0631409 + ] + ] + }, + "id": "way/1482730894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482730895", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443103, + -0.0625863 + ], + [ + 109.3444348, + -0.0633769 + ], + [ + 109.3444549, + -0.063504 + ], + [ + 109.3448867, + -0.0638862 + ] + ] + }, + "id": "way/1482730895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482730896", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438857, + -0.0629006 + ], + [ + 109.3439385, + -0.0632237 + ], + [ + 109.3440753, + -0.0632116 + ] + ] + }, + "id": "way/1482730896" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482730897", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3430931, + -0.0623215 + ], + [ + 109.3431859, + -0.0622583 + ] + ] + }, + "id": "way/1482730897" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482730898", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344274, + -0.0625502 + ], + [ + 109.3438857, + -0.0629006 + ], + [ + 109.3437119, + -0.0630574 + ], + [ + 109.3435094, + -0.0629206 + ], + [ + 109.3432559, + -0.0626591 + ], + [ + 109.3433176, + -0.0625625 + ], + [ + 109.3430931, + -0.0623215 + ], + [ + 109.3430507, + -0.0622755 + ] + ] + }, + "id": "way/1482730898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482730901", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431879, + -0.061895 + ], + [ + 109.3432378, + -0.0619516 + ] + ] + }, + "id": "way/1482730901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482730902", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438004, + -0.0612549 + ], + [ + 109.3433914, + -0.0616962 + ], + [ + 109.3431879, + -0.061895 + ], + [ + 109.3429837, + -0.0620945 + ] + ] + }, + "id": "way/1482730902" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482731505", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375669, + -0.0652316 + ], + [ + 109.3372223, + -0.0654647 + ], + [ + 109.3371209, + -0.0655865 + ] + ] + }, + "id": "way/1482731505" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482731589", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3374208, + -0.0639358 + ], + [ + 109.3380863, + -0.0645775 + ] + ] + }, + "id": "way/1482731589" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482731698", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3372973, + -0.0640774 + ], + [ + 109.3371123, + -0.0638647 + ] + ] + }, + "id": "way/1482731698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482731947", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3383086, + -0.0629743 + ], + [ + 109.33855, + -0.0627154 + ] + ] + }, + "id": "way/1482731947" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482732218", + "highway": "residential", + "name": "Gang Arrahman" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3380465, + -0.0616853 + ], + [ + 109.3385714, + -0.0622675 + ] + ] + }, + "id": "way/1482732218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482732752", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375957, + -0.0620237 + ], + [ + 109.3376523, + -0.0620724 + ] + ] + }, + "id": "way/1482732752" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482732753", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376523, + -0.0620724 + ], + [ + 109.3376861, + -0.0621016 + ] + ] + }, + "id": "way/1482732753" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482732754", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351587, + -0.0599211 + ], + [ + 109.3375331, + -0.0619697 + ] + ] + }, + "id": "way/1482732754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482732755", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375331, + -0.0619697 + ], + [ + 109.3375957, + -0.0620237 + ] + ] + }, + "id": "way/1482732755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482733073", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340279, + -0.0224636 + ], + [ + 109.3336791, + -0.022155 + ], + [ + 109.3338923, + -0.0219136 + ] + ] + }, + "id": "way/1482733073" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482733284", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346957, + -0.0228017 + ], + [ + 109.3347494, + -0.0230807 + ], + [ + 109.3348385, + -0.0235431 + ] + ] + }, + "id": "way/1482733284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482733300", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347494, + -0.0230807 + ], + [ + 109.3347072, + -0.0230872 + ], + [ + 109.334638, + -0.0230978 + ] + ] + }, + "id": "way/1482733300" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482733544", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335018, + -0.0254772 + ], + [ + 109.3334249, + -0.0253294 + ], + [ + 109.3332881, + -0.0254126 + ], + [ + 109.3333303, + -0.0255378 + ] + ] + }, + "id": "way/1482733544" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482733685", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344982, + -0.0251249 + ], + [ + 109.3346018, + -0.0253482 + ] + ] + }, + "id": "way/1482733685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482733840", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3343773, + -0.0270893 + ], + [ + 109.3341666, + -0.0272626 + ] + ] + }, + "id": "way/1482733840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482734552", + "highway": "residential", + "name": "Gang Flora I" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274998, + -0.0270312 + ], + [ + 109.3270473, + -0.0272982 + ] + ] + }, + "id": "way/1482734552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482735253", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616532, + -0.0138103 + ], + [ + 109.3616599, + -0.0145724 + ] + ] + }, + "id": "way/1482735253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482735254", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358465, + -0.0142253 + ], + [ + 109.3577707, + -0.0141875 + ] + ] + }, + "id": "way/1482735254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482735255", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584826, + -0.0139325 + ], + [ + 109.3577841, + -0.0138885 + ] + ] + }, + "id": "way/1482735255" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482736027", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264941, + -0.0274951 + ], + [ + 109.3263245, + -0.0272848 + ] + ] + }, + "id": "way/1482736027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482736074", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605419, + -0.014146 + ], + [ + 109.3605544, + -0.0147596 + ] + ] + }, + "id": "way/1482736074" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482736075", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3605384, + -0.0139724 + ], + [ + 109.3605419, + -0.014146 + ] + ] + }, + "id": "way/1482736075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482736604", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3616427, + -0.0154516 + ], + [ + 109.3616423, + -0.0154053 + ], + [ + 109.3616357, + -0.0147119 + ] + ] + }, + "id": "way/1482736604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482736790", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3671105, + -0.013641 + ], + [ + 109.3665951, + -0.0135398 + ] + ] + }, + "id": "way/1482736790" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482736791", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282929, + -0.0239607 + ], + [ + 109.328322, + -0.0240708 + ], + [ + 109.3283414, + -0.0241478 + ], + [ + 109.3283606, + -0.0242217 + ] + ] + }, + "id": "way/1482736791" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482736860", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648857, + -0.0131214 + ], + [ + 109.3653131, + -0.0131737 + ], + [ + 109.3652922, + -0.0133497 + ] + ] + }, + "id": "way/1482736860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482737116", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3277054, + -0.022709 + ], + [ + 109.3277865, + -0.0230555 + ] + ] + }, + "id": "way/1482737116" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482737117", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279273, + -0.0230482 + ], + [ + 109.3278781, + -0.022725 + ] + ] + }, + "id": "way/1482737117" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482737161", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619914, + -0.0137912 + ], + [ + 109.3627585, + -0.0138293 + ] + ] + }, + "id": "way/1482737161" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482737342", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609732, + -0.0136672 + ], + [ + 109.3609721, + -0.0138937 + ] + ] + }, + "id": "way/1482737342" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482737343", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3609962, + -0.0128419 + ], + [ + 109.3610029, + -0.0128896 + ], + [ + 109.3610013, + -0.0130431 + ], + [ + 109.3609732, + -0.0136672 + ] + ] + }, + "id": "way/1482737343" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482738806", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3614168, + -0.0138454 + ], + [ + 109.3614547, + -0.0134553 + ] + ] + }, + "id": "way/1482738806" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482741927", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3591599, + -0.0128466 + ], + [ + 109.3592191, + -0.0124267 + ] + ] + }, + "id": "way/1482741927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482741928", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3579879, + -0.0128159 + ], + [ + 109.3580738, + -0.0122926 + ], + [ + 109.3581596, + -0.0115737 + ], + [ + 109.3578592, + -0.0114986 + ], + [ + 109.3579558, + -0.0109273 + ] + ] + }, + "id": "way/1482741928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482741964", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326457, + -0.0233656 + ], + [ + 109.3265156, + -0.0235961 + ] + ] + }, + "id": "way/1482741964" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482742163", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3279416, + -0.0252913 + ], + [ + 109.3281993, + -0.0256312 + ] + ] + }, + "id": "way/1482742163" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482742525", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3647972, + -0.0137374 + ], + [ + 109.3641007, + -0.0136793 + ] + ] + }, + "id": "way/1482742525" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482742526", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648313, + -0.0135055 + ], + [ + 109.3641302, + -0.0134271 + ] + ] + }, + "id": "way/1482742526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482742634", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642962, + -0.0128186 + ], + [ + 109.3642214, + -0.0129122 + ], + [ + 109.364149, + -0.0131924 + ], + [ + 109.3641302, + -0.0134271 + ], + [ + 109.3641007, + -0.0136793 + ], + [ + 109.3639585, + -0.0147548 + ], + [ + 109.3639156, + -0.0150794 + ], + [ + 109.3638942, + -0.0153074 + ], + [ + 109.3638848, + -0.0154079 + ], + [ + 109.3639345, + -0.0155018 + ] + ] + }, + "id": "way/1482742634" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482742635", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3280725, + -0.0249055 + ], + [ + 109.3280764, + -0.0249462 + ], + [ + 109.3280851, + -0.0249774 + ], + [ + 109.3281096, + -0.0250269 + ] + ] + }, + "id": "way/1482742635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482743221", + "bridge": "yes", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.328639, + -0.024811 + ], + [ + 109.3286626, + -0.0248636 + ] + ] + }, + "id": "way/1482743221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482743222", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286626, + -0.0248636 + ], + [ + 109.3286701, + -0.0248802 + ], + [ + 109.328436, + -0.0249737 + ] + ] + }, + "id": "way/1482743222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482743223", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286283, + -0.024787 + ], + [ + 109.328639, + -0.024811 + ] + ] + }, + "id": "way/1482743223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482744961", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3295154, + -0.0266212 + ], + [ + 109.3293654, + -0.0264707 + ] + ] + }, + "id": "way/1482744961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482745639", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3310514, + -0.027105 + ], + [ + 109.331127, + -0.0270507 + ], + [ + 109.3311903, + -0.0271231 + ] + ] + }, + "id": "way/1482745639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482750018", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3317165, + -0.0224905 + ], + [ + 109.3322588, + -0.0227827 + ], + [ + 109.3322398, + -0.0228744 + ] + ] + }, + "id": "way/1482750018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482769982", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3397005, + -0.0595618 + ], + [ + 109.3401562, + -0.059031 + ] + ] + }, + "id": "way/1482769982" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482772181", + "highway": "residential", + "name": "Gang H.Sario" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3179821, + -0.0363512 + ], + [ + 109.3187177, + -0.0371405 + ] + ] + }, + "id": "way/1482772181" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482772763", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375595, + -0.056865 + ], + [ + 109.3375027, + -0.0569492 + ], + [ + 109.3374924, + -0.0569713 + ], + [ + 109.3374576, + -0.0570197 + ], + [ + 109.3374351, + -0.0570507 + ], + [ + 109.3373111, + -0.0572259 + ], + [ + 109.3370377, + -0.0576112 + ] + ] + }, + "id": "way/1482772763" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482772764", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370377, + -0.0576112 + ], + [ + 109.3366658, + -0.0570514 + ] + ] + }, + "id": "way/1482772764" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482772765", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3370377, + -0.0576112 + ], + [ + 109.3368522, + -0.0578461 + ], + [ + 109.3368169, + -0.0579293 + ], + [ + 109.3367657, + -0.0580051 + ], + [ + 109.3366805, + -0.0580966 + ] + ] + }, + "id": "way/1482772765" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482773038", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415245, + -0.0496343 + ], + [ + 109.3412027, + -0.0497684 + ] + ] + }, + "id": "way/1482773038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482773039", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412646, + -0.0500076 + ], + [ + 109.3406716, + -0.0502217 + ] + ] + }, + "id": "way/1482773039" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482773040", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418974, + -0.0510853 + ], + [ + 109.3416131, + -0.0505811 + ], + [ + 109.341487, + -0.0504738 + ], + [ + 109.3412805, + -0.0500688 + ], + [ + 109.3412646, + -0.0500076 + ], + [ + 109.3412027, + -0.0497684 + ] + ] + }, + "id": "way/1482773040" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482773041", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3411258, + -0.0495839 + ], + [ + 109.3411513, + -0.0496452 + ], + [ + 109.3412027, + -0.0497684 + ] + ] + }, + "id": "way/1482773041" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482773042", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3414622, + -0.0494593 + ], + [ + 109.341488, + -0.0495317 + ], + [ + 109.3415245, + -0.0496343 + ] + ] + }, + "id": "way/1482773042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482773419", + "highway": "residential", + "name": "Gang Pak Cik" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426666, + -0.0563822 + ], + [ + 109.341376, + -0.0555081 + ] + ] + }, + "id": "way/1482773419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482773807", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3369467, + -0.0538942 + ], + [ + 109.336886, + -0.0539149 + ], + [ + 109.3365383, + -0.0540331 + ] + ] + }, + "id": "way/1482773807" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482773808", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368377, + -0.0535904 + ], + [ + 109.33678, + -0.05361 + ], + [ + 109.3364391, + -0.053726 + ] + ] + }, + "id": "way/1482773808" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482774284", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185583, + -0.0383198 + ], + [ + 109.3186949, + -0.0382058 + ] + ] + }, + "id": "way/1482774284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482774285", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184079, + -0.0384455 + ], + [ + 109.3185583, + -0.0383198 + ] + ] + }, + "id": "way/1482774285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482775576", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454657, + -0.0596196 + ], + [ + 109.345877, + -0.060025 + ] + ] + }, + "id": "way/1482775576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482775577", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3450007, + -0.0598173 + ], + [ + 109.3452883, + -0.0595206 + ] + ] + }, + "id": "way/1482775577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482776305", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429528, + -0.0586273 + ], + [ + 109.342679, + -0.0589089 + ] + ] + }, + "id": "way/1482776305" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482776686", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3215034, + -0.036831 + ], + [ + 109.3217392, + -0.0366685 + ] + ] + }, + "id": "way/1482776686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482777841", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223333, + -0.0362755 + ], + [ + 109.3224493, + -0.0361924 + ], + [ + 109.3224969, + -0.0362568 + ], + [ + 109.3225479, + -0.0362138 + ] + ] + }, + "id": "way/1482777841" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482778635", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479066, + -0.0501781 + ], + [ + 109.3475884, + -0.0499575 + ], + [ + 109.3475697, + -0.0499389 + ], + [ + 109.3475427, + -0.0498877 + ] + ] + }, + "id": "way/1482778635" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482778960", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219605, + -0.0339248 + ], + [ + 109.3222108, + -0.0342828 + ] + ] + }, + "id": "way/1482778960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482779038", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3742741, + -0.0613166 + ], + [ + 109.374212, + -0.0612466 + ], + [ + 109.3740396, + -0.0610524 + ] + ] + }, + "id": "way/1482779038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482780019", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481058, + -0.0498754 + ], + [ + 109.3485055, + -0.0501438 + ] + ] + }, + "id": "way/1482780019" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482782363", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3574574, + -0.0533044 + ], + [ + 109.3571621, + -0.0535613 + ] + ] + }, + "id": "way/1482782363" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482783281", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3555045, + -0.0511274 + ], + [ + 109.3558528, + -0.0506454 + ] + ] + }, + "id": "way/1482783281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482783614", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571354, + -0.0510511 + ], + [ + 109.3567197, + -0.0507695 + ] + ] + }, + "id": "way/1482783614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482784569", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3519143, + -0.0526198 + ], + [ + 109.3518146, + -0.0527637 + ], + [ + 109.3517864, + -0.0527737 + ], + [ + 109.3517582, + -0.052773 + ], + [ + 109.3517336, + -0.0527664 + ], + [ + 109.3514598, + -0.0525848 + ] + ] + }, + "id": "way/1482784569" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482785248", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.350589, + -0.0540773 + ], + [ + 109.3503903, + -0.0543588 + ] + ] + }, + "id": "way/1482785248" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482785775", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507527, + -0.0531375 + ], + [ + 109.3505828, + -0.0533744 + ], + [ + 109.3504799, + -0.0535179 + ], + [ + 109.3503639, + -0.0536796 + ] + ] + }, + "id": "way/1482785775" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482785776", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3506279, + -0.0536202 + ], + [ + 109.3504799, + -0.0535179 + ] + ] + }, + "id": "way/1482785776" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482785777", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3507296, + -0.0534747 + ], + [ + 109.3505828, + -0.0533744 + ] + ] + }, + "id": "way/1482785777" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482786287", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3356672, + -0.0409313 + ], + [ + 109.3352723, + -0.0404504 + ], + [ + 109.3354091, + -0.0403592 + ] + ] + }, + "id": "way/1482786287" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482786368", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479409, + -0.0526687 + ], + [ + 109.348317, + -0.0527303 + ], + [ + 109.3484661, + -0.0529159 + ], + [ + 109.3486441, + -0.0531357 + ], + [ + 109.3488649, + -0.0533771 + ] + ] + }, + "id": "way/1482786368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482786369", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347868, + -0.0410874 + ], + [ + 109.335102, + -0.0409292 + ], + [ + 109.3351288, + -0.0410284 + ] + ] + }, + "id": "way/1482786369" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482786839", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3342056, + -0.0401344 + ], + [ + 109.3343014, + -0.0402684 + ], + [ + 109.3344355, + -0.0404558 + ], + [ + 109.3345548, + -0.0403927 + ], + [ + 109.3346165, + -0.0404611 + ] + ] + }, + "id": "way/1482786839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482787401", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337829, + -0.038933 + ], + [ + 109.3335986, + -0.0390167 + ], + [ + 109.3334162, + -0.0386895 + ] + ] + }, + "id": "way/1482787401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482787761", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340211, + -0.0395291 + ], + [ + 109.3337461, + -0.0396846 + ], + [ + 109.3335664, + -0.0393386 + ] + ] + }, + "id": "way/1482787761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482787762", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3337857, + -0.0391987 + ], + [ + 109.3335664, + -0.0393386 + ] + ] + }, + "id": "way/1482787762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482788444", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528743, + -0.0695161 + ], + [ + 109.3528701, + -0.0695141 + ], + [ + 109.3525913, + -0.0693767 + ] + ] + }, + "id": "way/1482788444" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482788445", + "bridge": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529387, + -0.0695477 + ], + [ + 109.3528743, + -0.0695161 + ] + ] + }, + "id": "way/1482788445" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482788446", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3529946, + -0.069575 + ], + [ + 109.3529387, + -0.0695477 + ] + ] + }, + "id": "way/1482788446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482788516", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321216, + -0.0402549 + ], + [ + 109.33176, + -0.039521 + ] + ] + }, + "id": "way/1482788516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482789467", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3294526, + -0.0398417 + ], + [ + 109.3297847, + -0.0404067 + ] + ] + }, + "id": "way/1482789467" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482789468", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300179, + -0.040209 + ], + [ + 109.3297421, + -0.039686 + ] + ] + }, + "id": "way/1482789468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482789904", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293943, + -0.0397236 + ], + [ + 109.3291656, + -0.0393312 + ] + ] + }, + "id": "way/1482789904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482790992", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3263231, + -0.0433998 + ], + [ + 109.3261756, + -0.0431018 + ] + ] + }, + "id": "way/1482790992" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482791273", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3252985, + -0.0426471 + ], + [ + 109.3255434, + -0.0428386 + ] + ] + }, + "id": "way/1482791273" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482791274", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250781, + -0.0422468 + ], + [ + 109.3252985, + -0.0426471 + ] + ] + }, + "id": "way/1482791274" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482791280", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478814, + -0.0704697 + ], + [ + 109.3482343, + -0.0706796 + ] + ] + }, + "id": "way/1482791280" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482791452", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251919, + -0.0421459 + ], + [ + 109.324917, + -0.0418284 + ] + ] + }, + "id": "way/1482791452" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482791754", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250879, + -0.0408464 + ], + [ + 109.324864, + -0.0404651 + ] + ] + }, + "id": "way/1482791754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482792986", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481389, + -0.0672671 + ], + [ + 109.3479229, + -0.0674683 + ], + [ + 109.3479071, + -0.0674539 + ] + ] + }, + "id": "way/1482792986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482798663", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3703028, + -0.0426506 + ], + [ + 109.3698855, + -0.04292 + ] + ] + }, + "id": "way/1482798663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482800698", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3768762, + -0.042301 + ], + [ + 109.3757623, + -0.0430743 + ] + ] + }, + "id": "way/1482800698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482801164", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3781778, + -0.0417524 + ], + [ + 109.3773347, + -0.0423092 + ] + ] + }, + "id": "way/1482801164" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482809133", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3228704, + -0.0411187 + ], + [ + 109.3229147, + -0.0410825 + ], + [ + 109.3238618, + -0.0403076 + ] + ] + }, + "id": "way/1482809133" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482809648", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3248843, + -0.0410281 + ], + [ + 109.3246843, + -0.0407401 + ] + ] + }, + "id": "way/1482809648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482811393", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324502, + -0.0401751 + ], + [ + 109.324471, + -0.0401301 + ], + [ + 109.324296, + -0.0398764 + ] + ] + }, + "id": "way/1482811393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482813321", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3234478, + -0.0433056 + ], + [ + 109.3236463, + -0.0431487 + ], + [ + 109.3237795, + -0.0432613 + ], + [ + 109.3238905, + -0.0433553 + ] + ] + }, + "id": "way/1482813321" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482813322", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237032, + -0.0435356 + ], + [ + 109.3235954, + -0.0434385 + ], + [ + 109.3234478, + -0.0433056 + ], + [ + 109.3233754, + -0.0433525 + ], + [ + 109.3230964, + -0.043091 + ] + ] + }, + "id": "way/1482813322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482813482", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3690065, + -0.0552778 + ], + [ + 109.3692454, + -0.0550944 + ], + [ + 109.3692472, + -0.0550736 + ], + [ + 109.3693213, + -0.0550161 + ] + ] + }, + "id": "way/1482813482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482814055", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3233003, + -0.0435001 + ], + [ + 109.3227907, + -0.0429596 + ] + ] + }, + "id": "way/1482814055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1482814056", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3235401, + -0.0436956 + ], + [ + 109.3233003, + -0.0435001 + ], + [ + 109.3230334, + -0.0437777 + ], + [ + 109.3232335, + -0.0440006 + ] + ] + }, + "id": "way/1482814056" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483119223", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3218624, + -0.0435629 + ], + [ + 109.3216252, + -0.0432989 + ] + ] + }, + "id": "way/1483119223" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483119427", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195276, + -0.0391762 + ], + [ + 109.3196337, + -0.0393721 + ] + ] + }, + "id": "way/1483119427" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483120696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182979, + -0.0403453 + ], + [ + 109.3183959, + -0.0402532 + ] + ] + }, + "id": "way/1483120696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483121571", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148275, + -0.0406324 + ], + [ + 109.3150418, + -0.0404779 + ] + ] + }, + "id": "way/1483121571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483121944", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159877, + -0.042197 + ], + [ + 109.316344, + -0.0418733 + ], + [ + 109.3159953, + -0.0414535 + ] + ] + }, + "id": "way/1483121944" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483122423", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3166849, + -0.0430303 + ], + [ + 109.3170024, + -0.0427517 + ] + ] + }, + "id": "way/1483122423" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483122492", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182456, + -0.042293 + ], + [ + 109.3183932, + -0.0424647 + ] + ] + }, + "id": "way/1483122492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483122746", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3190322, + -0.0432324 + ], + [ + 109.3187204, + -0.0429086 + ] + ] + }, + "id": "way/1483122746" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483123432", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3178518, + -0.0432127 + ], + [ + 109.3176422, + -0.0434089 + ], + [ + 109.3178259, + -0.0436395 + ] + ] + }, + "id": "way/1483123432" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483123475", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3181284, + -0.044105 + ], + [ + 109.3181008, + -0.0440808 + ], + [ + 109.318074, + -0.0440506 + ], + [ + 109.3180733, + -0.0439876 + ], + [ + 109.3179486, + -0.0438682 + ] + ] + }, + "id": "way/1483123475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483128905", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243799, + -0.0488222 + ], + [ + 109.324746, + -0.0490247 + ] + ] + }, + "id": "way/1483128905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483129291", + "highway": "residential", + "motorcar": "destination", + "name": "Gang Buntu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317589, + -0.0475595 + ], + [ + 109.3174588, + -0.0474409 + ], + [ + 109.3173391, + -0.0473276 + ] + ] + }, + "id": "way/1483129291" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483129513", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3170856, + -0.0481631 + ], + [ + 109.3174242, + -0.0484583 + ] + ] + }, + "id": "way/1483129513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483130162", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3702892, + -0.0574949 + ], + [ + 109.371082, + -0.0570407 + ] + ] + }, + "id": "way/1483130162" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483130322", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3168387, + -0.0484345 + ], + [ + 109.3170118, + -0.0485882 + ], + [ + 109.3172148, + -0.0487245 + ] + ] + }, + "id": "way/1483130322" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483130829", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3166721, + -0.0478664 + ], + [ + 109.3165572, + -0.0479619 + ] + ] + }, + "id": "way/1483130829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483131222", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147693, + -0.0491557 + ], + [ + 109.3145938, + -0.0493272 + ] + ] + }, + "id": "way/1483131222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483131459", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3149546, + -0.0472792 + ], + [ + 109.3148151, + -0.0474241 + ], + [ + 109.3150873, + -0.0476937 + ] + ] + }, + "id": "way/1483131459" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483131526", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3745204, + -0.0557968 + ], + [ + 109.3752292, + -0.0553194 + ] + ] + }, + "id": "way/1483131526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483131928", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3751754, + -0.0597367 + ], + [ + 109.3757063, + -0.0594048 + ] + ] + }, + "id": "way/1483131928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483132694", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3764278, + -0.0584496 + ], + [ + 109.3758094, + -0.0588529 + ] + ] + }, + "id": "way/1483132694" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483133395", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3201597, + -0.0470112 + ], + [ + 109.3199745, + -0.0468513 + ], + [ + 109.3198536, + -0.0467469 + ], + [ + 109.3194647, + -0.0467697 + ] + ] + }, + "id": "way/1483133395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483133774", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3199745, + -0.0468513 + ], + [ + 109.3197604, + -0.0470922 + ] + ] + }, + "id": "way/1483133774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483134054", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395585, + -0.0670237 + ], + [ + 109.3402626, + -0.0676761 + ] + ] + }, + "id": "way/1483134054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483134244", + "highway": "path", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237307, + -0.0437422 + ], + [ + 109.3228213, + -0.0446136 + ] + ] + }, + "id": "way/1483134244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483134526", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395399, + -0.0664527 + ], + [ + 109.3408149, + -0.0676003 + ] + ] + }, + "id": "way/1483134526" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483135443", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321408, + -0.0445487 + ], + [ + 109.3213114, + -0.0446494 + ] + ] + }, + "id": "way/1483135443" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483136027", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3218466, + -0.04477 + ], + [ + 109.3221476, + -0.0450685 + ] + ] + }, + "id": "way/1483136027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483136028", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224577, + -0.044759 + ], + [ + 109.3221818, + -0.0444563 + ], + [ + 109.3218466, + -0.04477 + ], + [ + 109.3217567, + -0.0448345 + ] + ] + }, + "id": "way/1483136028" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483136482", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418275, + -0.0673274 + ], + [ + 109.341946, + -0.0672102 + ], + [ + 109.3422385, + -0.0669239 + ], + [ + 109.3421743, + -0.0667712 + ], + [ + 109.3421739, + -0.0667601 + ], + [ + 109.3421781, + -0.0667499 + ], + [ + 109.3422659, + -0.0666645 + ], + [ + 109.3422654, + -0.0666542 + ], + [ + 109.3422594, + -0.0666471 + ], + [ + 109.3419411, + -0.0663535 + ] + ] + }, + "id": "way/1483136482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483136483", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422385, + -0.0669239 + ], + [ + 109.3423609, + -0.0669768 + ], + [ + 109.3423729, + -0.066979 + ], + [ + 109.3423845, + -0.0669752 + ], + [ + 109.3425102, + -0.0668856 + ], + [ + 109.3425256, + -0.0668834 + ], + [ + 109.3425393, + -0.0668899 + ], + [ + 109.3427051, + -0.0670504 + ] + ] + }, + "id": "way/1483136483" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483153637", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436795, + -0.0679339 + ], + [ + 109.3428011, + -0.0671668 + ] + ] + }, + "id": "way/1483153637" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483154026", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451294, + -0.0706064 + ], + [ + 109.3434596, + -0.0684848 + ] + ] + }, + "id": "way/1483154026" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483169268", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423326, + -0.042591 + ], + [ + 109.3423362, + -0.0426346 + ], + [ + 109.3423331, + -0.0426776 + ], + [ + 109.3422861, + -0.042849 + ], + [ + 109.3421452, + -0.0433455 + ] + ] + }, + "id": "way/1483169268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483169724", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428135, + -0.0418789 + ], + [ + 109.3427984, + -0.0418691 + ], + [ + 109.3428458, + -0.0417561 + ], + [ + 109.3428786, + -0.0416132 + ], + [ + 109.3429003, + -0.0415127 + ] + ] + }, + "id": "way/1483169724" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483170073", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3432733, + -0.0406086 + ], + [ + 109.3432409, + -0.0406167 + ], + [ + 109.343188, + -0.0406167 + ], + [ + 109.3431073, + -0.0406155 + ], + [ + 109.3430524, + -0.0406119 + ], + [ + 109.3427733, + -0.0403446 + ] + ] + }, + "id": "way/1483170073" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483170872", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463914, + -0.0398348 + ], + [ + 109.3462041, + -0.0399927 + ], + [ + 109.3463518, + -0.040187 + ] + ] + }, + "id": "way/1483170872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483189244", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3454368, + -0.0389793 + ], + [ + 109.3453127, + -0.0388254 + ], + [ + 109.3453058, + -0.0388133 + ], + [ + 109.3453104, + -0.0388017 + ], + [ + 109.3455626, + -0.0386044 + ] + ] + }, + "id": "way/1483189244" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483197506", + "highway": "residential", + "name": "Gang Jelutung 6" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3690831, + -0.0341722 + ], + [ + 109.3694296, + -0.0338366 + ] + ] + }, + "id": "way/1483197506" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483197948", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3683048, + -0.0384461 + ], + [ + 109.3682588, + -0.0384819 + ], + [ + 109.3682313, + -0.0385053 + ], + [ + 109.3676301, + -0.0389635 + ] + ] + }, + "id": "way/1483197948" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483197949", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3680814, + -0.038251 + ], + [ + 109.3681373, + -0.0383238 + ], + [ + 109.3681991, + -0.0384041 + ], + [ + 109.3682588, + -0.0384819 + ] + ] + }, + "id": "way/1483197949" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483197950", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3681836, + -0.0382885 + ], + [ + 109.3681373, + -0.0383238 + ] + ] + }, + "id": "way/1483197950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483197951", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3682456, + -0.0383692 + ], + [ + 109.3681991, + -0.0384041 + ] + ] + }, + "id": "way/1483197951" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483198572", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3761422, + -0.0362958 + ], + [ + 109.3760218, + -0.0364083 + ], + [ + 109.3758878, + -0.0365324 + ], + [ + 109.3758431, + -0.0365458 + ], + [ + 109.3758045, + -0.0365603 + ], + [ + 109.3757035, + -0.036637 + ], + [ + 109.3756963, + -0.0366377 + ], + [ + 109.3756907, + -0.0366332 + ], + [ + 109.3756728, + -0.0366098 + ] + ] + }, + "id": "way/1483198572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483215070", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31035, + -0.0672281 + ], + [ + 109.310317, + -0.0672912 + ] + ] + }, + "id": "way/1483215070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483223766", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106885, + -0.0699111 + ], + [ + 109.310887, + -0.0700646 + ] + ] + }, + "id": "way/1483223766" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483241530", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.378689, + -0.0344759 + ], + [ + 109.3788888, + -0.034257 + ], + [ + 109.3790499, + -0.0340805 + ] + ] + }, + "id": "way/1483241530" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483241531", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3788888, + -0.034257 + ], + [ + 109.3791991, + -0.0345504 + ], + [ + 109.3792289, + -0.0345709 + ], + [ + 109.3792544, + -0.0345791 + ], + [ + 109.3792792, + -0.034577 + ] + ] + }, + "id": "way/1483241531" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483263013", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316122, + -0.0646071 + ], + [ + 109.3157045, + -0.0642969 + ], + [ + 109.3156458, + -0.0642624 + ], + [ + 109.3156216, + -0.0642585 + ], + [ + 109.3155952, + -0.064266 + ], + [ + 109.3155435, + -0.0643092 + ], + [ + 109.3155241, + -0.0643214 + ], + [ + 109.3155064, + -0.0643201 + ], + [ + 109.3154645, + -0.0642985 + ] + ] + }, + "id": "way/1483263013" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483263633", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.319486, + -0.0647046 + ], + [ + 109.3196122, + -0.064801 + ], + [ + 109.3196442, + -0.0648076 + ], + [ + 109.3196846, + -0.0648086 + ], + [ + 109.3197287, + -0.0648292 + ], + [ + 109.3212756, + -0.0668975 + ] + ] + }, + "id": "way/1483263633" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483278533", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225803, + -0.0660534 + ], + [ + 109.3228452, + -0.0657436 + ] + ] + }, + "id": "way/1483278533" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483278534", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3225803, + -0.0660534 + ], + [ + 109.3224071, + -0.0658108 + ], + [ + 109.3225499, + -0.0656889 + ], + [ + 109.3227245, + -0.0655757 + ] + ] + }, + "id": "way/1483278534" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483278535", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231615, + -0.0651971 + ], + [ + 109.323089, + -0.0653036 + ], + [ + 109.3230378, + -0.0653727 + ], + [ + 109.3230212, + -0.0653853 + ] + ] + }, + "id": "way/1483278535" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483280111", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3236231, + -0.0645805 + ], + [ + 109.3238712, + -0.0648529 + ] + ] + }, + "id": "way/1483280111" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483280375", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239979, + -0.0640092 + ], + [ + 109.3240961, + -0.0641097 + ], + [ + 109.3242072, + -0.0642346 + ], + [ + 109.3246771, + -0.064854 + ] + ] + }, + "id": "way/1483280375" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483280376", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3643941, + -0.0287003 + ], + [ + 109.3642227, + -0.0284904 + ] + ] + }, + "id": "way/1483280376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483280848", + "highway": "residential", + "name": "Gang Siliwangi" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3673191, + -0.0297076 + ], + [ + 109.3676297, + -0.0300486 + ] + ] + }, + "id": "way/1483280848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483280849", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3662657, + -0.0297394 + ], + [ + 109.3666791, + -0.0302456 + ] + ] + }, + "id": "way/1483280849" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483288984", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231844, + -0.0645092 + ], + [ + 109.3231992, + -0.0645171 + ], + [ + 109.3232142, + -0.0645171 + ], + [ + 109.3235501, + -0.0642327 + ], + [ + 109.3235553, + -0.0642145 + ], + [ + 109.3235471, + -0.0641945 + ], + [ + 109.3229962, + -0.0635384 + ], + [ + 109.3224012, + -0.0628547 + ], + [ + 109.3219381, + -0.0623533 + ], + [ + 109.3218902, + -0.0623298 + ], + [ + 109.3218188, + -0.0623185 + ], + [ + 109.3212723, + -0.0622846 + ] + ] + }, + "id": "way/1483288984" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483288985", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224012, + -0.0628547 + ], + [ + 109.3220257, + -0.0631688 + ] + ] + }, + "id": "way/1483288985" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483288986", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3229962, + -0.0635384 + ], + [ + 109.3226154, + -0.0638609 + ] + ] + }, + "id": "way/1483288986" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483289015", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3676001, + -0.0300714 + ], + [ + 109.3679047, + -0.0304489 + ] + ] + }, + "id": "way/1483289015" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483289769", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3638232, + -0.0312876 + ], + [ + 109.363799, + -0.0312461 + ] + ] + }, + "id": "way/1483289769" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483289770", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3642635, + -0.0319762 + ], + [ + 109.3638232, + -0.0312876 + ] + ] + }, + "id": "way/1483289770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483290577", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3629019, + -0.0320084 + ], + [ + 109.3628254, + -0.0318791 + ] + ] + }, + "id": "way/1483290577" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483290578", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3632552, + -0.0326403 + ], + [ + 109.3629019, + -0.0320084 + ] + ] + }, + "id": "way/1483290578" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483290579", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3622357, + -0.0322455 + ], + [ + 109.3627275, + -0.0329753 + ] + ] + }, + "id": "way/1483290579" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483291491", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3173327, + -0.0616219 + ], + [ + 109.3167197, + -0.0612145 + ] + ] + }, + "id": "way/1483291491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483292488", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175548, + -0.0601483 + ], + [ + 109.3181795, + -0.06057 + ] + ] + }, + "id": "way/1483292488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483292786", + "highway": "residential", + "name": "Gang Nilam 7A" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3235169, + -0.0234089 + ], + [ + 109.3234485, + -0.0232258 + ], + [ + 109.3233358, + -0.0231707 + ], + [ + 109.3233097, + -0.0230896 + ] + ] + }, + "id": "way/1483292786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483293354", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3240365, + -0.0245228 + ], + [ + 109.3239852, + -0.0244346 + ], + [ + 109.3239442, + -0.0243586 + ], + [ + 109.3239136, + -0.0243513 + ], + [ + 109.3238863, + -0.0242646 + ] + ] + }, + "id": "way/1483293354" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483293823", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3203986, + -0.0238949 + ], + [ + 109.3205418, + -0.0245057 + ] + ] + }, + "id": "way/1483293823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483293824", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239216, + -0.0244298 + ], + [ + 109.3238703, + -0.0243416 + ], + [ + 109.3238292, + -0.0242656 + ], + [ + 109.3237986, + -0.0242583 + ], + [ + 109.3237714, + -0.0241716 + ] + ] + }, + "id": "way/1483293824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483294739", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189263, + -0.0275736 + ], + [ + 109.318861, + -0.0273686 + ], + [ + 109.3189284, + -0.0273478 + ], + [ + 109.3188818, + -0.027175 + ] + ] + }, + "id": "way/1483294739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483295141", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147226, + -0.0243062 + ], + [ + 109.3144119, + -0.0233153 + ], + [ + 109.3141215, + -0.0224134 + ] + ] + }, + "id": "way/1483295141" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483298014", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584847, + -0.0086011 + ], + [ + 109.3585808, + -0.0077911 + ] + ] + }, + "id": "way/1483298014" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483298804", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3619649, + -0.0100615 + ], + [ + 109.361957, + -0.0098421 + ], + [ + 109.3619518, + -0.0098349 + ], + [ + 109.3619413, + -0.0098268 + ], + [ + 109.361916, + -0.0098007 + ], + [ + 109.3619117, + -0.0097797 + ], + [ + 109.3619048, + -0.0097488 + ], + [ + 109.3619109, + -0.009694 + ], + [ + 109.3619095, + -0.0096636 + ], + [ + 109.3618993, + -0.0096476 + ], + [ + 109.3618845, + -0.0096402 + ] + ] + }, + "id": "way/1483298804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483302029", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646338, + -0.0060282 + ], + [ + 109.3645071, + -0.0060277 + ], + [ + 109.3644963, + -0.0060324 + ], + [ + 109.364222, + -0.0060308 + ] + ] + }, + "id": "way/1483302029" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483313213", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313826, + -0.0036848 + ], + [ + 109.313993, + -0.0037605 + ] + ] + }, + "id": "way/1483313213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483314573", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033876, + -0.0047569 + ], + [ + 109.3033916, + -0.0046818 + ] + ] + }, + "id": "way/1483314573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483314574", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3031475, + -0.0049422 + ], + [ + 109.3031528, + -0.0048427 + ], + [ + 109.3031582, + -0.0047408 + ], + [ + 109.3033876, + -0.0047569 + ], + [ + 109.3033876, + -0.0048441 + ], + [ + 109.3033876, + -0.0049372 + ] + ] + }, + "id": "way/1483314574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483315408", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3046654, + -0.0043949 + ], + [ + 109.305127, + -0.0045142 + ], + [ + 109.3051189, + -0.004667 + ] + ] + }, + "id": "way/1483315408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483316149", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057592, + -0.0035267 + ], + [ + 109.3061543, + -0.0036165 + ], + [ + 109.3059415, + -0.004553 + ], + [ + 109.3057094, + -0.0045003 + ] + ] + }, + "id": "way/1483316149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483316725", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060003, + -0.0018202 + ], + [ + 109.3061087, + -0.0014122 + ] + ] + }, + "id": "way/1483316725" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483317415", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306532, + -0.0019462 + ], + [ + 109.3065794, + -0.0017676 + ], + [ + 109.3066448, + -0.0015088 + ] + ] + }, + "id": "way/1483317415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483317630", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3718938, + -0.0123231 + ], + [ + 109.3716719, + -0.0123021 + ], + [ + 109.3716476, + -0.0123014 + ], + [ + 109.3716255, + -0.0123041 + ], + [ + 109.371587, + -0.012336 + ] + ] + }, + "id": "way/1483317630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483318102", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3069194, + -0.0016413 + ], + [ + 109.306921, + -0.0016125 + ], + [ + 109.3069227, + -0.0015973 + ], + [ + 109.3069282, + -0.0015796 + ], + [ + 109.3070049, + -0.0013749 + ] + ] + }, + "id": "way/1483318102" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483319542", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3092701, + -0.0043497 + ], + [ + 109.3089535, + -0.0042736 + ] + ] + }, + "id": "way/1483319542" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483320179", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093737, + -0.0038718 + ], + [ + 109.3091516, + -0.0038369 + ] + ] + }, + "id": "way/1483320179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483320180", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3086778, + -0.0037957 + ], + [ + 109.308929, + -0.0038409 + ] + ] + }, + "id": "way/1483320180" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483669974", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102647, + -0.0019547 + ], + [ + 109.3099509, + -0.0031154 + ] + ] + }, + "id": "way/1483669974" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483670195", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3107598, + -0.0032186 + ], + [ + 109.3108622, + -0.0032482 + ] + ] + }, + "id": "way/1483670195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483670196", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3106101, + -0.0031657 + ], + [ + 109.3104686, + -0.0031268 + ] + ] + }, + "id": "way/1483670196" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483670702", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3111377, + -0.0030527 + ], + [ + 109.3112978, + -0.0026099 + ], + [ + 109.3115476, + -0.0019942 + ] + ] + }, + "id": "way/1483670702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483670773", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118203, + -0.0027674 + ], + [ + 109.31191, + -0.0021453 + ] + ] + }, + "id": "way/1483670773" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483671356", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311481, + -0.002676 + ], + [ + 109.3112978, + -0.0026099 + ] + ] + }, + "id": "way/1483671356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483671357", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115441, + -0.0026942 + ], + [ + 109.311481, + -0.002676 + ] + ] + }, + "id": "way/1483671357" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483671863", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3114524, + -0.0033228 + ], + [ + 109.3110875, + -0.0032288 + ] + ] + }, + "id": "way/1483671863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483671864", + "bridge": "yes", + "highway": "living_street", + "import": "yes", + "layer": "1", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115054, + -0.0033362 + ], + [ + 109.3114524, + -0.0033228 + ] + ] + }, + "id": "way/1483671864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483672170", + "highway": "residential", + "name": "Gang Kayu Manis I Jalur III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118609, + -0.0039543 + ], + [ + 109.3114382, + -0.0037363 + ] + ] + }, + "id": "way/1483672170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483672338", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3116417, + -0.0044039 + ], + [ + 109.3111995, + -0.0042164 + ] + ] + }, + "id": "way/1483672338" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483674209", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.358697, + -0.0389315 + ], + [ + 109.3586258, + -0.0388585 + ], + [ + 109.3589489, + -0.0385432 + ], + [ + 109.3590609, + -0.038658 + ], + [ + 109.3591514, + -0.0387507 + ], + [ + 109.3590694, + -0.0388308 + ] + ] + }, + "id": "way/1483674209" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483674559", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573502, + -0.0401709 + ], + [ + 109.3583554, + -0.0391267 + ] + ] + }, + "id": "way/1483674559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483674565", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3586258, + -0.0388585 + ], + [ + 109.3583903, + -0.0390328 + ] + ] + }, + "id": "way/1483674565" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483674628", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3582207, + -0.0427036 + ], + [ + 109.358342, + -0.0428168 + ], + [ + 109.3585308, + -0.0429555 + ] + ] + }, + "id": "way/1483674628" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483674689", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3606567, + -0.0420678 + ], + [ + 109.3607372, + -0.042163 + ], + [ + 109.3607238, + -0.0421737 + ] + ] + }, + "id": "way/1483674689" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483674917", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3598776, + -0.0425854 + ], + [ + 109.3601793, + -0.0422461 + ], + [ + 109.360241, + -0.0421945 + ] + ] + }, + "id": "way/1483674917" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483675144", + "highway": "residential", + "motorcar": "destination", + "name": "Gang Limbung Sari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3611751, + -0.0439878 + ], + [ + 109.3616203, + -0.0436127 + ] + ] + }, + "id": "way/1483675144" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483675236", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.370399, + -0.004787 + ], + [ + 109.3703293, + -0.0053921 + ] + ] + }, + "id": "way/1483675236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483675458", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701296, + -0.0047481 + ], + [ + 109.3700888, + -0.0051303 + ] + ] + }, + "id": "way/1483675458" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483675811", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3698956, + -0.0040136 + ], + [ + 109.3699778, + -0.0035621 + ], + [ + 109.3704766, + -0.0036387 + ] + ] + }, + "id": "way/1483675811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483675812", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3699117, + -0.0033259 + ], + [ + 109.3699015, + -0.0033268 + ], + [ + 109.3698936, + -0.0033336 + ], + [ + 109.3698593, + -0.003536 + ], + [ + 109.3698615, + -0.0035421 + ], + [ + 109.3698674, + -0.0035462 + ], + [ + 109.3699778, + -0.0035621 + ] + ] + }, + "id": "way/1483675812" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483675923", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3729587, + -0.0050089 + ], + [ + 109.3729838, + -0.0053607 + ] + ] + }, + "id": "way/1483675923" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676068", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3787204, + -0.0287011 + ], + [ + 109.3788461, + -0.0287358 + ] + ] + }, + "id": "way/1483676068" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676069", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341027, + -0.0756852 + ], + [ + 109.3407454, + -0.0752754 + ] + ] + }, + "id": "way/1483676069" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676070", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3416451, + -0.0751279 + ], + [ + 109.3414682, + -0.0753258 + ], + [ + 109.3418552, + -0.0757085 + ] + ] + }, + "id": "way/1483676070" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676071", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.341377, + -0.0738868 + ], + [ + 109.3410739, + -0.0734764 + ] + ] + }, + "id": "way/1483676071" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676261", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.344623, + -0.0719326 + ], + [ + 109.3449996, + -0.0715916 + ] + ] + }, + "id": "way/1483676261" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676262", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442121, + -0.0721058 + ], + [ + 109.3443677, + -0.0723217 + ] + ] + }, + "id": "way/1483676262" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676263", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3472237, + -0.0728145 + ], + [ + 109.3455103, + -0.0714728 + ] + ] + }, + "id": "way/1483676263" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676285", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3754639, + -0.0318378 + ], + [ + 109.3758434, + -0.0322281 + ] + ] + }, + "id": "way/1483676285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676309", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3435121, + -0.0759127 + ], + [ + 109.3433276, + -0.0762789 + ] + ] + }, + "id": "way/1483676309" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676310", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3422266, + -0.0756434 + ], + [ + 109.3425089, + -0.075303 + ], + [ + 109.3435121, + -0.0759127 + ], + [ + 109.3445125, + -0.0765207 + ], + [ + 109.3443087, + -0.0768453 + ] + ] + }, + "id": "way/1483676310" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676311", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3443087, + -0.0768453 + ], + [ + 109.3433276, + -0.0762789 + ], + [ + 109.3422266, + -0.0756434 + ], + [ + 109.3421621, + -0.0756062 + ], + [ + 109.3420234, + -0.0755261 + ] + ] + }, + "id": "way/1483676311" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676401", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3737593, + -0.0316004 + ], + [ + 109.3740127, + -0.0319313 + ], + [ + 109.3746769, + -0.032656 + ] + ] + }, + "id": "way/1483676401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676403", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451267, + -0.0724706 + ], + [ + 109.34558, + -0.0727697 + ], + [ + 109.345918, + -0.0730043 + ], + [ + 109.3461574, + -0.0731633 + ], + [ + 109.346549, + -0.0734187 + ], + [ + 109.3467193, + -0.0735254 + ], + [ + 109.3467502, + -0.0735421 + ] + ] + }, + "id": "way/1483676403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676407", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3035351, + -0.0101244 + ], + [ + 109.3035204, + -0.0106004 + ] + ] + }, + "id": "way/1483676407" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676482", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040258, + -0.0071664 + ], + [ + 109.3040299, + -0.006798 + ] + ] + }, + "id": "way/1483676482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676496", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3701134, + -0.0283007 + ], + [ + 109.3701558, + -0.0282276 + ], + [ + 109.3705286, + -0.0282356 + ], + [ + 109.3707192, + -0.0281564 + ] + ] + }, + "id": "way/1483676496" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676528", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3694108, + -0.0301545 + ], + [ + 109.3695429, + -0.0302942 + ], + [ + 109.3695952, + -0.0302768 + ], + [ + 109.3697551, + -0.0304505 + ] + ] + }, + "id": "way/1483676528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676645", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3693682, + -0.0305114 + ], + [ + 109.369273, + -0.0304504 + ], + [ + 109.3691676, + -0.0303845 + ], + [ + 109.369148, + -0.0303742 + ] + ] + }, + "id": "way/1483676645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676646", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3695254, + -0.030671 + ], + [ + 109.3694792, + -0.0306161 + ], + [ + 109.3693682, + -0.0305114 + ] + ] + }, + "id": "way/1483676646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676791", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053669, + -0.0068212 + ], + [ + 109.3049523, + -0.0067419 + ] + ] + }, + "id": "way/1483676791" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483676983", + "highway": "residential", + "motorcar": "no", + "name": "Gang Akasia" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073487, + -0.0058019 + ], + [ + 109.307216, + -0.0062652 + ] + ] + }, + "id": "way/1483676983" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677030", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3595239, + 0.003395 + ], + [ + 109.3593881, + 0.0034057 + ], + [ + 109.3592774, + 0.0034647 + ] + ] + }, + "id": "way/1483677030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677031", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592803, + 0.0018616 + ], + [ + 109.3594725, + 0.0031891 + ], + [ + 109.3594933, + 0.003226 + ], + [ + 109.3595349, + 0.0032508 + ], + [ + 109.3595239, + 0.003395 + ], + [ + 109.3595128, + 0.0035419 + ] + ] + }, + "id": "way/1483677031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677044", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3068399, + -0.0071805 + ], + [ + 109.3071593, + -0.0072738 + ] + ] + }, + "id": "way/1483677044" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677065", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3604364, + 0.0025983 + ], + [ + 109.3611798, + 0.0024945 + ] + ] + }, + "id": "way/1483677065" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677066", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.360336, + 0.0020164 + ], + [ + 109.3610993, + 0.0018869 + ], + [ + 109.3610845, + 0.0017649 + ] + ] + }, + "id": "way/1483677066" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677127", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3073444, + -0.0073745 + ], + [ + 109.3074512, + -0.0069696 + ] + ] + }, + "id": "way/1483677127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677317", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3641573, + 0.0018625 + ], + [ + 109.3646132, + 0.0018253 + ], + [ + 109.3647619, + 0.0018132 + ] + ] + }, + "id": "way/1483677317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677318", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3641796, + 0.0021028 + ], + [ + 109.3643886, + 0.0020905 + ], + [ + 109.3655987, + 0.0020197 + ] + ] + }, + "id": "way/1483677318" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677440", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309962, + -0.0072196 + ], + [ + 109.3099153, + -0.0072071 + ], + [ + 109.3098928, + -0.0072052 + ], + [ + 109.3098752, + -0.0072208 + ], + [ + 109.3098356, + -0.007378 + ] + ] + }, + "id": "way/1483677440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677520", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3098356, + -0.007378 + ], + [ + 109.3094541, + -0.007288 + ] + ] + }, + "id": "way/1483677520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677536", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628658, + 0.0028045 + ], + [ + 109.3628038, + 0.0027667 + ], + [ + 109.3626899, + 0.0027721 + ], + [ + 109.3626375, + 0.0027171 + ] + ] + }, + "id": "way/1483677536" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677537", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3636501, + 0.0025696 + ], + [ + 109.363638, + 0.0026701 + ] + ] + }, + "id": "way/1483677537" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677538", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3633155, + 0.0026929 + ], + [ + 109.3633175, + 0.0028472 + ] + ] + }, + "id": "way/1483677538" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677539", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3628658, + 0.0028045 + ], + [ + 109.3628789, + 0.0029625 + ] + ] + }, + "id": "way/1483677539" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677703", + "highway": "residential", + "name": "Gang Mawar" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3108748, + -0.007811 + ], + [ + 109.3108762, + -0.0078228 + ], + [ + 109.3108835, + -0.0078327 + ], + [ + 109.3112817, + -0.0080216 + ] + ] + }, + "id": "way/1483677703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677738", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3645111, + -0.0358021 + ], + [ + 109.3641501, + -0.036018 + ] + ] + }, + "id": "way/1483677738" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.31282, + -0.0077035 + ], + [ + 109.3124338, + -0.0075167 + ] + ] + }, + "id": "way/1483677803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677868", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3644165, + -0.0348103 + ], + [ + 109.3639974, + -0.0350659 + ] + ] + }, + "id": "way/1483677868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677869", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635201, + -0.0353434 + ], + [ + 109.3639974, + -0.0350659 + ] + ] + }, + "id": "way/1483677869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483677904", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113584, + -0.0060163 + ], + [ + 109.311023, + -0.0059111 + ] + ] + }, + "id": "way/1483677904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483678115", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247195, + -0.0278159 + ], + [ + 109.3246771, + -0.0277589 + ], + [ + 109.3245569, + -0.0275972 + ] + ] + }, + "id": "way/1483678115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483678257", + "highway": "residential", + "name": "Gang Kenanga 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3110025, + -0.010285 + ], + [ + 109.3115353, + -0.0105303 + ] + ] + }, + "id": "way/1483678257" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483678433", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3247807, + -0.030073 + ], + [ + 109.3244442, + -0.0302875 + ] + ] + }, + "id": "way/1483678433" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483678621", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237804, + -0.0295106 + ], + [ + 109.3242336, + -0.0291903 + ] + ] + }, + "id": "way/1483678621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483678785", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212417, + -0.031513 + ], + [ + 109.3214823, + -0.0318552 + ] + ] + }, + "id": "way/1483678785" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483679285", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3200952, + -0.0325416 + ], + [ + 109.3202204, + -0.0324339 + ] + ] + }, + "id": "way/1483679285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483679515", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196082, + -0.0328741 + ], + [ + 109.3195748, + -0.0328267 + ] + ] + }, + "id": "way/1483679515" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483679516", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193318, + -0.0327899 + ], + [ + 109.3194711, + -0.0326919 + ] + ] + }, + "id": "way/1483679516" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483679517", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195691, + -0.0331273 + ], + [ + 109.3194629, + -0.0329763 + ], + [ + 109.3193318, + -0.0327899 + ], + [ + 109.3192771, + -0.0327122 + ] + ] + }, + "id": "way/1483679517" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483679518", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198129, + -0.032964 + ], + [ + 109.3195691, + -0.0331273 + ] + ] + }, + "id": "way/1483679518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483679519", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3193776, + -0.0330363 + ], + [ + 109.3194215, + -0.0330054 + ], + [ + 109.3194629, + -0.0329763 + ], + [ + 109.3196082, + -0.0328741 + ], + [ + 109.3197028, + -0.0328075 + ], + [ + 109.3198129, + -0.032964 + ], + [ + 109.3198843, + -0.0330655 + ] + ] + }, + "id": "way/1483679519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483679781", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185409, + -0.0318297 + ], + [ + 109.3182912, + -0.0320229 + ] + ] + }, + "id": "way/1483679781" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483679836", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187247, + -0.0320589 + ], + [ + 109.3182966, + -0.0323635 + ] + ] + }, + "id": "way/1483679836" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680009", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187566, + -0.0308454 + ], + [ + 109.3189658, + -0.0306764 + ] + ] + }, + "id": "way/1483680009" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680075", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187566, + -0.0308454 + ], + [ + 109.3184146, + -0.0311244 + ] + ] + }, + "id": "way/1483680075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680391", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2938992, + -0.0300635 + ], + [ + 109.2938623, + -0.030013 + ], + [ + 109.2932005, + -0.029106 + ] + ] + }, + "id": "way/1483680391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.293814, + -0.0310634 + ], + [ + 109.2923838, + -0.0292119 + ] + ] + }, + "id": "way/1483680392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680393", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946282, + -0.0277528 + ], + [ + 109.2955945, + -0.0291488 + ] + ] + }, + "id": "way/1483680393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680394", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189764, + -0.0292133 + ], + [ + 109.3186809, + -0.0294636 + ], + [ + 109.3183905, + -0.0297028 + ] + ] + }, + "id": "way/1483680394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680401", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2943472, + -0.0286111 + ], + [ + 109.2938831, + -0.0279781 + ] + ] + }, + "id": "way/1483680401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680586", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2973284, + -0.0295418 + ], + [ + 109.2970954, + -0.0292586 + ] + ] + }, + "id": "way/1483680586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966324, + -0.0298329 + ], + [ + 109.2963848, + -0.0294851 + ] + ] + }, + "id": "way/1483680587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680588", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2960115, + -0.0303639 + ], + [ + 109.2955823, + -0.0297417 + ], + [ + 109.2956064, + -0.0297041 + ], + [ + 109.2956065, + -0.029679 + ] + ] + }, + "id": "way/1483680588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680688", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3156572, + -0.0283108 + ], + [ + 109.3158263, + -0.0283201 + ] + ] + }, + "id": "way/1483680688" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483680827", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2967722, + -0.0284038 + ], + [ + 109.2967983, + -0.0284409 + ], + [ + 109.297193, + -0.0290014 + ] + ] + }, + "id": "way/1483680827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681018", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2991147, + -0.0283686 + ], + [ + 109.2988694, + -0.0279989 + ] + ] + }, + "id": "way/1483681018" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681021", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3067419, + -0.0557452 + ], + [ + 109.3069567, + -0.0560391 + ] + ] + }, + "id": "way/1483681021" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681084", + "highway": "path" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983943, + -0.0292146 + ], + [ + 109.2986628, + -0.028992 + ] + ] + }, + "id": "way/1483681084" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681085", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994181, + -0.0284692 + ], + [ + 109.2992888, + -0.0285452 + ], + [ + 109.2991319, + -0.0286504 + ], + [ + 109.2988554, + -0.0288609 + ], + [ + 109.2986888, + -0.0289743 + ], + [ + 109.2986628, + -0.028992 + ] + ] + }, + "id": "way/1483681085" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681217", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986888, + -0.0289743 + ], + [ + 109.2989914, + -0.0294359 + ] + ] + }, + "id": "way/1483681217" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681222", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009923, + -0.030494 + ], + [ + 109.3011002, + -0.0307107 + ] + ] + }, + "id": "way/1483681222" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681370", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966337, + -0.0314181 + ], + [ + 109.297936, + -0.0333667 + ] + ] + }, + "id": "way/1483681370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681371", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080516, + -0.0570343 + ], + [ + 109.3083582, + -0.0567132 + ] + ] + }, + "id": "way/1483681371" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681376", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2956078, + -0.0330569 + ], + [ + 109.2953847, + -0.0326989 + ] + ] + }, + "id": "way/1483681376" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681406", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2927478, + -0.0321159 + ], + [ + 109.2926993, + -0.0320518 + ], + [ + 109.2923167, + -0.0315455 + ] + ] + }, + "id": "way/1483681406" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681456", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084597, + -0.0572386 + ], + [ + 109.308605, + -0.0570376 + ], + [ + 109.3086069, + -0.057022 + ], + [ + 109.3085977, + -0.0570104 + ], + [ + 109.3084082, + -0.0568905 + ] + ] + }, + "id": "way/1483681456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681475", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.293662, + -0.0301581 + ], + [ + 109.2938623, + -0.030013 + ] + ] + }, + "id": "way/1483681475" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681636", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140832, + -0.030268 + ], + [ + 109.3141177, + -0.0306161 + ] + ] + }, + "id": "way/1483681636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483681756", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088149, + -0.058345 + ], + [ + 109.309272, + -0.0586182 + ], + [ + 109.3092848, + -0.0586315 + ], + [ + 109.3092898, + -0.0586539 + ] + ] + }, + "id": "way/1483681756" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483682390", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3094937, + -0.0594478 + ], + [ + 109.3092551, + -0.0592981 + ], + [ + 109.309235, + -0.0592855 + ], + [ + 109.3091262, + -0.0594727 + ] + ] + }, + "id": "way/1483682390" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483682391", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309235, + -0.0592855 + ], + [ + 109.3092529, + -0.059255 + ], + [ + 109.3094201, + -0.0589712 + ] + ] + }, + "id": "way/1483682391" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483690213", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3040778, + -0.0569562 + ], + [ + 109.3043671, + -0.0572113 + ] + ] + }, + "id": "way/1483690213" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483706839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3266242, + -0.0624881 + ], + [ + 109.3263135, + -0.0626914 + ] + ] + }, + "id": "way/1483706839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483708408", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346209, + -0.0207174 + ], + [ + 109.3462117, + -0.0206852 + ], + [ + 109.3462278, + -0.0203553 + ] + ] + }, + "id": "way/1483708408" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483708774", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330014, + -0.0629921 + ], + [ + 109.3309841, + -0.0644178 + ] + ] + }, + "id": "way/1483708774" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483709027", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3459599, + -0.0196766 + ], + [ + 109.3464561, + -0.0197263 + ], + [ + 109.346467, + -0.019724 + ], + [ + 109.346473, + -0.0197206 + ], + [ + 109.3464893, + -0.0195627 + ], + [ + 109.3467481, + -0.0195882 + ] + ] + }, + "id": "way/1483709027" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483709900", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408379, + -0.0171956 + ], + [ + 109.340575, + -0.0174773 + ] + ] + }, + "id": "way/1483709900" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710052", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335494, + -0.0611146 + ], + [ + 109.3330994, + -0.0603318 + ] + ] + }, + "id": "way/1483710052" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710179", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3344232, + -0.0612236 + ], + [ + 109.3346373, + -0.0609739 + ], + [ + 109.3346604, + -0.0609469 + ] + ] + }, + "id": "way/1483710179" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710401", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133282, + -0.0646707 + ], + [ + 109.3137477, + -0.0649152 + ] + ] + }, + "id": "way/1483710401" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710446", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115791, + -0.0645271 + ], + [ + 109.3121121, + -0.0648645 + ], + [ + 109.3125466, + -0.0650814 + ] + ] + }, + "id": "way/1483710446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710462", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451509, + -0.017838 + ], + [ + 109.3451381, + -0.0182913 + ], + [ + 109.3451361, + -0.0183615 + ] + ] + }, + "id": "way/1483710462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710463", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453693, + -0.0183759 + ], + [ + 109.3453712, + -0.0182928 + ], + [ + 109.3453816, + -0.017838 + ], + [ + 109.3451509, + -0.017838 + ] + ] + }, + "id": "way/1483710463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710464", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3456967, + -0.0183863 + ], + [ + 109.3456967, + -0.0182725 + ], + [ + 109.3457088, + -0.0181653 + ], + [ + 109.3457624, + -0.0172681 + ] + ] + }, + "id": "way/1483710464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710487", + "highway": "living_street", + "name": "Gang Islah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355397, + -0.0645423 + ], + [ + 109.3350011, + -0.0641182 + ] + ] + }, + "id": "way/1483710487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710587", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3100441, + -0.0655082 + ], + [ + 109.3096618, + -0.0652879 + ] + ] + }, + "id": "way/1483710587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710604", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355082, + -0.0645789 + ], + [ + 109.33584, + -0.0648456 + ], + [ + 109.3361318, + -0.0651464 + ] + ] + }, + "id": "way/1483710604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483710874", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3100751, + -0.0637835 + ], + [ + 109.3096344, + -0.0635284 + ], + [ + 109.3094762, + -0.0634369 + ] + ] + }, + "id": "way/1483710874" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483715952", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3295763, + -0.0660602 + ], + [ + 109.3295979, + -0.0660866 + ] + ] + }, + "id": "way/1483715952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483716325", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3096344, + -0.0635284 + ], + [ + 109.3097135, + -0.0633846 + ] + ] + }, + "id": "way/1483716325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483716488", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3082295, + -0.0646705 + ], + [ + 109.3078784, + -0.0644631 + ] + ] + }, + "id": "way/1483716488" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483716802", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3080063, + -0.0642416 + ], + [ + 109.3081143, + -0.0643167 + ] + ] + }, + "id": "way/1483716802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483716803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3084322, + -0.0644357 + ], + [ + 109.3082075, + -0.0643066 + ] + ] + }, + "id": "way/1483716803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483716940", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3140145, + -0.055735 + ], + [ + 109.3141703, + -0.0554844 + ] + ] + }, + "id": "way/1483716940" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483716941", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3145717, + -0.0560349 + ], + [ + 109.3140145, + -0.055735 + ] + ] + }, + "id": "way/1483716941" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717075", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3072176, + -0.0645198 + ], + [ + 109.3073818, + -0.0642623 + ] + ] + }, + "id": "way/1483717075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717076", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074959, + -0.0640835 + ], + [ + 109.3073818, + -0.0642623 + ] + ] + }, + "id": "way/1483717076" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717153", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3157438, + -0.0595611 + ], + [ + 109.3154964, + -0.059409 + ] + ] + }, + "id": "way/1483717153" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717154", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315352, + -0.059323 + ], + [ + 109.3153148, + -0.0592995 + ] + ] + }, + "id": "way/1483717154" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717155", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154964, + -0.059409 + ], + [ + 109.315352, + -0.059323 + ] + ] + }, + "id": "way/1483717155" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717474", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3070129, + -0.0638048 + ], + [ + 109.3072003, + -0.0634906 + ] + ] + }, + "id": "way/1483717474" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717528", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317726, + -0.059931 + ], + [ + 109.3179171, + -0.0600694 + ] + ] + }, + "id": "way/1483717528" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717623", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196736, + -0.0562024 + ], + [ + 109.3199703, + -0.0564484 + ], + [ + 109.3201205, + -0.0565825 + ] + ] + }, + "id": "way/1483717623" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717671", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3069231, + -0.0625672 + ], + [ + 109.307211, + -0.0621508 + ] + ] + }, + "id": "way/1483717671" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717797", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182368, + -0.0567007 + ], + [ + 109.3185112, + -0.0568561 + ] + ] + }, + "id": "way/1483717797" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717798", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182175, + -0.056728 + ], + [ + 109.3177427, + -0.0565316 + ] + ] + }, + "id": "way/1483717798" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717877", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3188947, + -0.0565289 + ], + [ + 109.3185093, + -0.0563404 + ] + ] + }, + "id": "way/1483717877" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483717997", + "highway": "living_street", + "name": "Gang Sehat" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316428, + -0.0560738 + ], + [ + 109.3169032, + -0.0563773 + ] + ] + }, + "id": "way/1483717997" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483718122", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317806, + -0.0585534 + ], + [ + 109.3183422, + -0.0589093 + ] + ] + }, + "id": "way/1483718122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483718200", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109259, + -0.0617833 + ], + [ + 109.3107627, + -0.0620406 + ] + ] + }, + "id": "way/1483718200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483718680", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321115, + -0.0566074 + ], + [ + 109.3214281, + -0.0562808 + ] + ] + }, + "id": "way/1483718680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483718711", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081179, + -0.0621438 + ], + [ + 109.3082993, + -0.0618477 + ] + ] + }, + "id": "way/1483718711" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483718930", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.308833, + -0.0616146 + ], + [ + 109.3086939, + -0.0619489 + ] + ] + }, + "id": "way/1483718930" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483719175", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3088005, + -0.0608638 + ], + [ + 109.3085065, + -0.0613354 + ] + ] + }, + "id": "way/1483719175" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483719403", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3074893, + -0.0615989 + ], + [ + 109.3078695, + -0.0609344 + ], + [ + 109.3078186, + -0.0608995 + ], + [ + 109.308079, + -0.0604383 + ] + ] + }, + "id": "way/1483719403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483720664", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288189, + -0.059543 + ], + [ + 109.3288513, + -0.0595474 + ], + [ + 109.3288846, + -0.0595625 + ], + [ + 109.3292034, + -0.0599929 + ] + ] + }, + "id": "way/1483720664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483721002", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3297823, + -0.0590102 + ], + [ + 109.3292973, + -0.0592588 + ] + ] + }, + "id": "way/1483721002" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483721839", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333016, + -0.0584902 + ], + [ + 109.3334585, + -0.059393 + ] + ] + }, + "id": "way/1483721839" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483722792", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3345168, + -0.0585181 + ], + [ + 109.3341559, + -0.0575421 + ], + [ + 109.3339279, + -0.0570298 + ] + ] + }, + "id": "way/1483722792" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483722956", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3353356, + -0.05633 + ], + [ + 109.3356915, + -0.0561689 + ] + ] + }, + "id": "way/1483722956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483724097", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288982, + -0.0574279 + ], + [ + 109.3285623, + -0.0575975 + ] + ] + }, + "id": "way/1483724097" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483726645", + "highway": "residential", + "name": "Gamg III" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3237307, + -0.0532349 + ], + [ + 109.3244157, + -0.0521958 + ] + ] + }, + "id": "way/1483726645" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1483726646", + "highway": "residential", + "motorcar": "destination", + "name": "Jalan Purwosari" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244157, + -0.0521958 + ], + [ + 109.3246125, + -0.0523171 + ], + [ + 109.3246548, + -0.0523451 + ], + [ + 109.3246669, + -0.0523539 + ], + [ + 109.3246716, + -0.0523589 + ], + [ + 109.3246766, + -0.0523684 + ], + [ + 109.3246791, + -0.0523809 + ], + [ + 109.3246791, + -0.0523929 + ], + [ + 109.3246779, + -0.0524053 + ], + [ + 109.3246776, + -0.0524134 + ], + [ + 109.3246776, + -0.0524218 + ], + [ + 109.3246793, + -0.0524345 + ], + [ + 109.3246817, + -0.0524401 + ], + [ + 109.324685, + -0.0524449 + ], + [ + 109.3247185, + -0.0524714 + ], + [ + 109.324879, + -0.0525878 + ] + ] + }, + "id": "way/1483726646" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484267271", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3575229, + -0.0559943 + ], + [ + 109.3574408, + -0.0559106 + ] + ] + }, + "id": "way/1484267271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484268788", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531723, + -0.0594845 + ], + [ + 109.3531409, + -0.0594478 + ] + ] + }, + "id": "way/1484268788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484268789", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3532782, + -0.0596083 + ], + [ + 109.3532566, + -0.0596268 + ], + [ + 109.3531588, + -0.0597104 + ] + ] + }, + "id": "way/1484268789" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484268790", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.353053, + -0.0595864 + ], + [ + 109.3531548, + -0.0594994 + ], + [ + 109.3531723, + -0.0594845 + ] + ] + }, + "id": "way/1484268790" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484268791", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3531723, + -0.0594845 + ], + [ + 109.3531972, + -0.0594632 + ], + [ + 109.3532502, + -0.0595252 + ], + [ + 109.3533193, + -0.0594662 + ], + [ + 109.3534106, + -0.0595731 + ], + [ + 109.3533167, + -0.0596534 + ], + [ + 109.3532782, + -0.0596083 + ], + [ + 109.3531723, + -0.0594845 + ] + ] + }, + "id": "way/1484268791" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484281283", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3527943, + -0.0596306 + ], + [ + 109.3526648, + -0.0597425 + ], + [ + 109.3525683, + -0.0596309 + ], + [ + 109.3526977, + -0.0595189 + ], + [ + 109.3527943, + -0.0596306 + ] + ] + }, + "id": "way/1484281283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484281799", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509385, + -0.0595608 + ], + [ + 109.3518339, + -0.0605179 + ] + ] + }, + "id": "way/1484281799" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484281800", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508568, + -0.0595013 + ], + [ + 109.3509088, + -0.0595392 + ] + ] + }, + "id": "way/1484281800" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484281801", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509088, + -0.0595392 + ], + [ + 109.3509385, + -0.0595608 + ] + ] + }, + "id": "way/1484281801" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484281802", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3508838, + -0.0594641 + ], + [ + 109.350872, + -0.0594565 + ] + ] + }, + "id": "way/1484281802" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484281803", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509683, + -0.0595183 + ], + [ + 109.3509301, + -0.0594938 + ] + ] + }, + "id": "way/1484281803" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484281804", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3509301, + -0.0594938 + ], + [ + 109.3508838, + -0.0594641 + ] + ] + }, + "id": "way/1484281804" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484283840", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484432, + -0.0594733 + ], + [ + 109.3486431, + -0.0592044 + ] + ] + }, + "id": "way/1484283840" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484284093", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486874, + -0.0568548 + ], + [ + 109.3487719, + -0.0567193 + ] + ] + }, + "id": "way/1484284093" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484284094", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347758, + -0.0580712 + ], + [ + 109.3478841, + -0.0581905 + ] + ] + }, + "id": "way/1484284094" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484285571", + "highway": "footway" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3484227, + -0.0549562 + ], + [ + 109.3485345, + -0.0548726 + ] + ] + }, + "id": "way/1484285571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484286553", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038072, + -0.0345991 + ], + [ + 109.303645, + -0.0342806 + ] + ] + }, + "id": "way/1484286553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484286554", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3036522, + -0.0346738 + ], + [ + 109.3035364, + -0.0344557 + ] + ] + }, + "id": "way/1484286554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484286555", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033376, + -0.0348253 + ], + [ + 109.3032266, + -0.0346112 + ] + ] + }, + "id": "way/1484286555" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484287818", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.306905, + -0.037406 + ], + [ + 109.3072285, + -0.0377414 + ] + ] + }, + "id": "way/1484287818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484287819", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3071488, + -0.0371403 + ], + [ + 109.3073384, + -0.0373296 + ] + ] + }, + "id": "way/1484287819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484288121", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3082071, + -0.0365576 + ], + [ + 109.3079567, + -0.0368375 + ] + ] + }, + "id": "way/1484288121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484288301", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309543, + -0.0376358 + ], + [ + 109.3093484, + -0.0378415 + ], + [ + 109.3093732, + -0.037865 + ], + [ + 109.3093451, + -0.0378947 + ] + ] + }, + "id": "way/1484288301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484288901", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3089651, + -0.0379667 + ], + [ + 109.3091838, + -0.0381638 + ] + ] + }, + "id": "way/1484288901" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484289208", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3126836, + -0.0364364 + ], + [ + 109.3122174, + -0.0360422 + ] + ] + }, + "id": "way/1484289208" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484289834", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093289, + -0.0331837 + ], + [ + 109.3095432, + -0.0331414 + ] + ] + }, + "id": "way/1484289834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484290307", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079055, + -0.0346384 + ], + [ + 109.3078824, + -0.0345948 + ], + [ + 109.3077515, + -0.034347 + ] + ] + }, + "id": "way/1484290307" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484290482", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3083023, + -0.0349765 + ], + [ + 109.3083464, + -0.0349877 + ], + [ + 109.3084449, + -0.0351141 + ] + ] + }, + "id": "way/1484290482" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484290772", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3103452, + -0.034866 + ], + [ + 109.3106993, + -0.0348808 + ], + [ + 109.3107355, + -0.0344476 + ] + ] + }, + "id": "way/1484290772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484291111", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312906, + -0.0347796 + ], + [ + 109.3128544, + -0.0347373 + ] + ] + }, + "id": "way/1484291111" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484291437", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3133433, + -0.0347714 + ], + [ + 109.3130489, + -0.0351141 + ] + ] + }, + "id": "way/1484291437" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484426356", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249437, + -0.0111822 + ], + [ + 109.3251537, + -0.0109635 + ] + ] + }, + "id": "way/1484426356" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484427103", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271781, + -0.0151697 + ], + [ + 109.3273973, + -0.0153183 + ], + [ + 109.3273348, + -0.0154106 + ], + [ + 109.3274124, + -0.0154632 + ] + ] + }, + "id": "way/1484427103" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484427349", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3300931, + -0.0157113 + ], + [ + 109.3298931, + -0.0159679 + ] + ] + }, + "id": "way/1484427349" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484427350", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301438, + -0.0156463 + ], + [ + 109.3301296, + -0.0156646 + ] + ] + }, + "id": "way/1484427350" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484427351", + "bridge": "yes", + "highway": "residential", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301296, + -0.0156646 + ], + [ + 109.3300931, + -0.0157113 + ] + ] + }, + "id": "way/1484427351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484427717", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281955, + -0.0161131 + ], + [ + 109.3282429, + -0.0161432 + ] + ] + }, + "id": "way/1484427717" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484427718", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3282429, + -0.0161432 + ], + [ + 109.3283817, + -0.0162314 + ] + ] + }, + "id": "way/1484427718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484427719", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281809, + -0.0161038 + ], + [ + 109.3281955, + -0.0161131 + ] + ] + }, + "id": "way/1484427719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484428242", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.328271, + -0.0142699 + ], + [ + 109.328224, + -0.0143448 + ], + [ + 109.3282162, + -0.0143838 + ], + [ + 109.3282226, + -0.0144157 + ], + [ + 109.3282109, + -0.0144476 + ], + [ + 109.3280474, + -0.0146974 + ] + ] + }, + "id": "way/1484428242" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484428389", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Nipah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285024, + -0.0144349 + ], + [ + 109.3280599, + -0.0151022 + ] + ] + }, + "id": "way/1484428389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484429120", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3288886, + -0.0132279 + ], + [ + 109.3283363, + -0.0139856 + ], + [ + 109.328301, + -0.0140339 + ] + ] + }, + "id": "way/1484429120" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484429121", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3286492, + -0.0130528 + ], + [ + 109.3288886, + -0.0132279 + ], + [ + 109.3291508, + -0.0134197 + ] + ] + }, + "id": "way/1484429121" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484429122", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3281234, + -0.0138452 + ], + [ + 109.3283363, + -0.0139856 + ], + [ + 109.3285599, + -0.0141462 + ] + ] + }, + "id": "way/1484429122" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484429123", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3293798, + -0.0131382 + ], + [ + 109.3288333, + -0.0127754 + ], + [ + 109.3286492, + -0.0130528 + ], + [ + 109.3281234, + -0.0138452 + ], + [ + 109.328063, + -0.0138051 + ], + [ + 109.3279895, + -0.0139158 + ] + ] + }, + "id": "way/1484429123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484429124", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.328388, + -0.0143576 + ], + [ + 109.3285599, + -0.0141462 + ], + [ + 109.3291508, + -0.0134197 + ], + [ + 109.3293798, + -0.0131382 + ], + [ + 109.3294166, + -0.0130929 + ] + ] + }, + "id": "way/1484429124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484429702", + "highway": "living_street", + "name": "Gang Blitar Dalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274177, + -0.0147545 + ], + [ + 109.327272, + -0.0146731 + ], + [ + 109.3270493, + -0.0145486 + ] + ] + }, + "id": "way/1484429702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484429914", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3564874, + -0.0010579 + ], + [ + 109.3565842, + -0.0010735 + ], + [ + 109.356614, + -0.0010782 + ] + ] + }, + "id": "way/1484429914" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431149", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481496, + -0.0032347 + ], + [ + 109.3482781, + -0.0033049 + ], + [ + 109.3486209, + -0.0034923 + ], + [ + 109.3488978, + -0.0036436 + ], + [ + 109.3492761, + -0.0038503 + ] + ] + }, + "id": "way/1484431149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431729", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477614, + -0.0039307 + ], + [ + 109.347727, + -0.0039132 + ] + ] + }, + "id": "way/1484431729" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431730", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478705, + -0.0039862 + ], + [ + 109.3478245, + -0.0039628 + ] + ] + }, + "id": "way/1484431730" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431731", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3476676, + -0.0041483 + ], + [ + 109.3476282, + -0.00413 + ] + ] + }, + "id": "way/1484431731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431732", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.347774, + -0.0041976 + ], + [ + 109.3477262, + -0.0041754 + ] + ] + }, + "id": "way/1484431732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431733", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3478245, + -0.0039628 + ], + [ + 109.3477614, + -0.0039307 + ] + ] + }, + "id": "way/1484431733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431734", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477262, + -0.0041754 + ], + [ + 109.3476676, + -0.0041483 + ] + ] + }, + "id": "way/1484431734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431735", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3486209, + -0.0034923 + ], + [ + 109.348084, + -0.0047493 + ] + ] + }, + "id": "way/1484431735" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431736", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3482781, + -0.0033049 + ], + [ + 109.3481228, + -0.0034332 + ], + [ + 109.3478705, + -0.0039862 + ], + [ + 109.347774, + -0.0041976 + ], + [ + 109.3476328, + -0.0045072 + ] + ] + }, + "id": "way/1484431736" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484431737", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3488978, + -0.0036436 + ], + [ + 109.3483886, + -0.0049171 + ] + ] + }, + "id": "way/1484431737" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484439038", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154237, + -0.0220167 + ], + [ + 109.3152914, + -0.0216256 + ] + ] + }, + "id": "way/1484439038" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484440462", + "bridge": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182499, + -0.0207173 + ], + [ + 109.3182757, + -0.0208281 + ] + ] + }, + "id": "way/1484440462" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484440463", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182357, + -0.0206561 + ], + [ + 109.3182499, + -0.0207173 + ] + ] + }, + "id": "way/1484440463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484440464", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182757, + -0.0208281 + ], + [ + 109.3182798, + -0.0208461 + ] + ] + }, + "id": "way/1484440464" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484442572", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182223, + -0.0208449 + ], + [ + 109.3185025, + -0.0219914 + ] + ] + }, + "id": "way/1484442572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484442573", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3181791, + -0.0206682 + ], + [ + 109.318195, + -0.0207332 + ] + ] + }, + "id": "way/1484442573" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484442574", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.318195, + -0.0207332 + ], + [ + 109.3182223, + -0.0208449 + ] + ] + }, + "id": "way/1484442574" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484444359", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3175943, + -0.0173837 + ], + [ + 109.3176577, + -0.0173655 + ], + [ + 109.3177124, + -0.0173506 + ] + ] + }, + "id": "way/1484444359" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484444360", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171953, + -0.0174956 + ], + [ + 109.3175943, + -0.0173837 + ] + ] + }, + "id": "way/1484444360" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484444755", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3160408, + -0.0182175 + ], + [ + 109.3157733, + -0.0182873 + ] + ] + }, + "id": "way/1484444755" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484445042", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3158164, + -0.019076 + ], + [ + 109.3159182, + -0.0190403 + ] + ] + }, + "id": "way/1484445042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484445611", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.315776, + -0.0199342 + ], + [ + 109.3160822, + -0.0198588 + ] + ] + }, + "id": "way/1484445611" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484445612", + "highway": "living_street", + "motor_vehicle": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154971, + -0.0190946 + ], + [ + 109.315776, + -0.0199342 + ] + ] + }, + "id": "way/1484445612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484445999", + "highway": "residential", + "name": "Gang Bukit Raya 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189525, + -0.0205042 + ], + [ + 109.3188217, + -0.0196633 + ], + [ + 109.318658, + -0.0187339 + ] + ] + }, + "id": "way/1484445999" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484446550", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3197845, + -0.0175012 + ], + [ + 109.3199857, + -0.0174726 + ] + ] + }, + "id": "way/1484446550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484446754", + "highway": "service", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214104, + -0.0184006 + ], + [ + 109.3212216, + -0.0184258 + ], + [ + 109.3210794, + -0.0184449 + ], + [ + 109.3208152, + -0.0185011 + ] + ] + }, + "id": "way/1484446754" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484447301", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3209917, + -0.0186626 + ], + [ + 109.3211113, + -0.0186494 + ], + [ + 109.3213543, + -0.0186232 + ] + ] + }, + "id": "way/1484447301" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484447829", + "bridge": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224056, + -0.0199125 + ], + [ + 109.3224348, + -0.0200332 + ] + ] + }, + "id": "way/1484447829" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484447830", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3224348, + -0.0200332 + ], + [ + 109.3224708, + -0.0201823 + ] + ] + }, + "id": "way/1484447830" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484447831", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223919, + -0.0198557 + ], + [ + 109.3224056, + -0.0199125 + ] + ] + }, + "id": "way/1484447831" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484448387", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Bukit Sebedang" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3231626, + -0.0199532 + ], + [ + 109.3232479, + -0.020298 + ], + [ + 109.3233311, + -0.0206366 + ] + ] + }, + "id": "way/1484448387" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484448484", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243388, + -0.0192238 + ], + [ + 109.324117, + -0.0192629 + ], + [ + 109.324161, + -0.0195126 + ] + ] + }, + "id": "way/1484448484" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484448561", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3246619, + -0.0192595 + ], + [ + 109.3246806, + -0.0194179 + ] + ] + }, + "id": "way/1484448561" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484452946", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3334289, + -0.0475158 + ], + [ + 109.3332305, + -0.0475945 + ] + ] + }, + "id": "way/1484452946" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484453280", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3329154, + -0.0461368 + ], + [ + 109.3328805, + -0.0460763 + ] + ] + }, + "id": "way/1484453280" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484453281", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3327471, + -0.0462352 + ], + [ + 109.3328207, + -0.0461921 + ], + [ + 109.3329154, + -0.0461368 + ], + [ + 109.3329468, + -0.0461997 + ], + [ + 109.332788, + -0.0463051 + ] + ] + }, + "id": "way/1484453281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484455860", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3306891, + -0.0476984 + ], + [ + 109.3307139, + -0.0477795 + ], + [ + 109.3307317, + -0.0478369 + ] + ] + }, + "id": "way/1484455860" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484455884", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.330207, + -0.0486672 + ], + [ + 109.3300185, + -0.048157 + ] + ] + }, + "id": "way/1484455884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484456197", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292102, + -0.0489437 + ], + [ + 109.3289436, + -0.0485922 + ] + ] + }, + "id": "way/1484456197" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484456868", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272435, + -0.0473204 + ], + [ + 109.3272907, + -0.0473832 + ] + ] + }, + "id": "way/1484456868" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484456869", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3272907, + -0.0473832 + ], + [ + 109.3272686, + -0.0474114 + ], + [ + 109.3273477, + -0.0474898 + ] + ] + }, + "id": "way/1484456869" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484457000", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3254417, + -0.0475682 + ], + [ + 109.3256553, + -0.0477467 + ] + ] + }, + "id": "way/1484457000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484457134", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3264231, + -0.0461374 + ], + [ + 109.3261783, + -0.0462869 + ] + ] + }, + "id": "way/1484457134" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484458000", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3251274, + -0.044545 + ], + [ + 109.3251939, + -0.0447305 + ] + ] + }, + "id": "way/1484458000" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484458001", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3250759, + -0.0445572 + ], + [ + 109.3251274, + -0.044545 + ], + [ + 109.3251908, + -0.0445164 + ] + ] + }, + "id": "way/1484458001" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484458125", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3299065, + -0.0445755 + ], + [ + 109.3298752, + -0.0445228 + ], + [ + 109.3298064, + -0.0444518 + ], + [ + 109.3297612, + -0.0443961 + ], + [ + 109.3296543, + -0.0441904 + ] + ] + }, + "id": "way/1484458125" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484458170", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3316115, + -0.0444068 + ], + [ + 109.3314756, + -0.044473 + ] + ] + }, + "id": "way/1484458170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484458370", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3324716, + -0.0442471 + ], + [ + 109.332454, + -0.0442166 + ], + [ + 109.3322763, + -0.0439078 + ] + ] + }, + "id": "way/1484458370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484462497", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.325162, + -0.0502682 + ], + [ + 109.3255882, + -0.0496893 + ] + ] + }, + "id": "way/1484462497" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484463152", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3261226, + -0.0515084 + ], + [ + 109.3263148, + -0.0512263 + ], + [ + 109.3264164, + -0.0512955 + ], + [ + 109.3262183, + -0.0515861 + ] + ] + }, + "id": "way/1484463152" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484464201", + "bridge": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275055, + -0.0547097 + ], + [ + 109.3275629, + -0.0547937 + ] + ] + }, + "id": "way/1484464201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484464202", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3275629, + -0.0547937 + ], + [ + 109.327626, + -0.054886 + ] + ] + }, + "id": "way/1484464202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484464203", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3274802, + -0.0546726 + ], + [ + 109.3275055, + -0.0547097 + ] + ] + }, + "id": "way/1484464203" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484464468", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3239426, + -0.054088 + ], + [ + 109.3261072, + -0.0560149 + ] + ] + }, + "id": "way/1484464468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484464492", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3249391, + -0.0549766 + ], + [ + 109.3250544, + -0.0548478 + ] + ] + }, + "id": "way/1484464492" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484464772", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292244, + -0.0543075 + ], + [ + 109.3293104, + -0.0542457 + ] + ] + }, + "id": "way/1484464772" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484465392", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333013, + -0.0541348 + ], + [ + 109.3331812, + -0.0537978 + ], + [ + 109.3330842, + -0.0535258 + ] + ] + }, + "id": "way/1484465392" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484466130", + "highway": "living_street", + "import": "yes", + "name": "Gang surya Ungu", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.33167, + -0.0506066 + ], + [ + 109.33176, + -0.0505048 + ] + ] + }, + "id": "way/1484466130" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484466442", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318127, + -0.0510285 + ], + [ + 109.3316956, + -0.0507957 + ], + [ + 109.3316339, + -0.0507481 + ], + [ + 109.3316131, + -0.0507635 + ] + ] + }, + "id": "way/1484466442" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484466910", + "highway": "living_street", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3333767, + -0.0494754 + ], + [ + 109.3331864, + -0.0496537 + ] + ] + }, + "id": "way/1484466910" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484475096", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455782, + -0.0091349 + ], + [ + 109.344487, + -0.0086609 + ] + ] + }, + "id": "way/1484475096" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484475097", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.345936, + -0.0081585 + ], + [ + 109.3460333, + -0.0082009 + ], + [ + 109.3460146, + -0.0082706 + ], + [ + 109.346945, + -0.0086945 + ] + ] + }, + "id": "way/1484475097" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484475864", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3447034, + -0.0058416 + ], + [ + 109.3455816, + -0.0062989 + ] + ] + }, + "id": "way/1484475864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484476315", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377844, + -0.0099394 + ], + [ + 109.3378449, + -0.0100101 + ] + ] + }, + "id": "way/1484476315" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484476316", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3371745, + -0.0091354 + ], + [ + 109.3373014, + -0.0093274 + ], + [ + 109.3374127, + -0.009499 + ], + [ + 109.3376474, + -0.0097793 + ], + [ + 109.3377844, + -0.0099394 + ] + ] + }, + "id": "way/1484476316" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484476532", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368687, + -0.0092456 + ], + [ + 109.337166, + -0.0096439 + ], + [ + 109.337115, + -0.0096747 + ], + [ + 109.3375762, + -0.0101981 + ] + ] + }, + "id": "way/1484476532" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484477446", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3442873, + -0.0068295 + ], + [ + 109.3459985, + -0.0076255 + ], + [ + 109.3461216, + -0.0076737 + ] + ] + }, + "id": "way/1484477446" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484477447", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3462211, + -0.0074136 + ], + [ + 109.3453172, + -0.0070006 + ] + ] + }, + "id": "way/1484477447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484479956", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3630832, + -0.0257958 + ], + [ + 109.3627958, + -0.0257304 + ] + ] + }, + "id": "way/1484479956" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484479957", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3631472, + -0.025603 + ], + [ + 109.3630832, + -0.0257958 + ], + [ + 109.3630452, + -0.0259101 + ], + [ + 109.3629366, + -0.0262561 + ] + ] + }, + "id": "way/1484479957" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484480171", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3622755, + -0.0224999 + ], + [ + 109.3622473, + -0.0218855 + ] + ] + }, + "id": "way/1484480171" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484481123", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3599278, + -0.0256846 + ], + [ + 109.3600667, + -0.0266866 + ] + ] + }, + "id": "way/1484481123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484481481", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3592314, + -0.025709 + ], + [ + 109.3592236, + -0.0255003 + ] + ] + }, + "id": "way/1484481481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484481638", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3602584, + -0.0256737 + ], + [ + 109.360188, + -0.0251544 + ] + ] + }, + "id": "way/1484481638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484481991", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3598814, + -0.0251925 + ], + [ + 109.3598189, + -0.0247792 + ], + [ + 109.3598139, + -0.0247685 + ], + [ + 109.3598041, + -0.0247638 + ], + [ + 109.3597669, + -0.0247709 + ] + ] + }, + "id": "way/1484481991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484482281", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3588435, + -0.0245998 + ], + [ + 109.3588556, + -0.0247326 + ] + ] + }, + "id": "way/1484482281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484661246", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3428978, + -0.0419367 + ], + [ + 109.3428135, + -0.0418789 + ] + ] + }, + "id": "way/1484661246" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484661247", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3429489, + -0.0419754 + ], + [ + 109.3428978, + -0.0419367 + ] + ] + }, + "id": "way/1484661247" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484689226", + "highway": "living_street", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3376241, + -0.010245 + ], + [ + 109.3376415, + -0.0102638 + ] + ] + }, + "id": "way/1484689226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484689227", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "destination" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3375762, + -0.0101981 + ], + [ + 109.3376241, + -0.010245 + ] + ] + }, + "id": "way/1484689227" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484774441", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348752, + -0.0372774 + ], + [ + 109.3347825, + -0.0371649 + ], + [ + 109.3346449, + -0.0372784 + ], + [ + 109.3344267, + -0.0370136 + ], + [ + 109.3343039, + -0.0371148 + ] + ] + }, + "id": "way/1484774441" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484776718", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3347694, + -0.0366452 + ], + [ + 109.3346708, + -0.0367201 + ] + ] + }, + "id": "way/1484776718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484776719", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3346023, + -0.0364286 + ], + [ + 109.3347694, + -0.0366452 + ], + [ + 109.3349181, + -0.0365305 + ], + [ + 109.3348398, + -0.036421 + ] + ] + }, + "id": "way/1484776719" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484776720", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3345071, + -0.036502 + ], + [ + 109.3346023, + -0.0364286 + ], + [ + 109.3346775, + -0.0363706 + ] + ] + }, + "id": "way/1484776720" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484776721", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3351447, + -0.0370577 + ], + [ + 109.3349719, + -0.0368502 + ] + ] + }, + "id": "way/1484776721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484777075", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3348274, + -0.0346102 + ], + [ + 109.334876, + -0.0346662 + ] + ] + }, + "id": "way/1484777075" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484777494", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334876, + -0.0346662 + ], + [ + 109.3352549, + -0.0344429 + ] + ] + }, + "id": "way/1484777494" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484777722", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3355794, + -0.0344846 + ], + [ + 109.3353541, + -0.0345904 + ], + [ + 109.3352743, + -0.0344322 + ], + [ + 109.3352549, + -0.0344429 + ] + ] + }, + "id": "way/1484777722" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484782518", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3330433, + -0.0332258 + ], + [ + 109.3332266, + -0.0330643 + ] + ] + }, + "id": "way/1484782518" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484782519", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333096, + -0.0332856 + ], + [ + 109.3330433, + -0.0332258 + ], + [ + 109.3330034, + -0.0331806 + ] + ] + }, + "id": "way/1484782519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484782520", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3332734, + -0.0331173 + ], + [ + 109.3332266, + -0.0330643 + ], + [ + 109.3331886, + -0.0330211 + ] + ] + }, + "id": "way/1484782520" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484782846", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321909, + -0.0346011 + ], + [ + 109.3321053, + -0.0346629 + ], + [ + 109.3319605, + -0.0346803 + ], + [ + 109.3318304, + -0.0346025 + ] + ] + }, + "id": "way/1484782846" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484782847", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320228, + -0.034455 + ], + [ + 109.3318304, + -0.0346025 + ] + ] + }, + "id": "way/1484782847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484782848", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319737, + -0.0343016 + ], + [ + 109.331937, + -0.0343678 + ] + ] + }, + "id": "way/1484782848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484784987", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3304006, + -0.0348646 + ], + [ + 109.3305704, + -0.0349777 + ], + [ + 109.3307116, + -0.0350926 + ] + ] + }, + "id": "way/1484784987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484785214", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329519, + -0.036415 + ], + [ + 109.3295998, + -0.0363587 + ] + ] + }, + "id": "way/1484785214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484785404", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329803, + -0.0380426 + ], + [ + 109.3298997, + -0.0381863 + ], + [ + 109.3297738, + -0.0382711 + ], + [ + 109.3296894, + -0.0381456 + ] + ] + }, + "id": "way/1484785404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484786031", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3306474, + -0.0370607 + ], + [ + 109.3303666, + -0.0366993 + ] + ] + }, + "id": "way/1484786031" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484786032", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3307899, + -0.0372184 + ], + [ + 109.3306474, + -0.0370607 + ], + [ + 109.3305109, + -0.0371839 + ], + [ + 109.3306486, + -0.0373364 + ] + ] + }, + "id": "way/1484786032" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484786695", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3316243, + -0.0358058 + ], + [ + 109.3319061, + -0.0355802 + ] + ] + }, + "id": "way/1484786695" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484786696", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3318618, + -0.0355249 + ], + [ + 109.3319061, + -0.0355802 + ], + [ + 109.3319814, + -0.0356744 + ] + ] + }, + "id": "way/1484786696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484786698", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.331663, + -0.0359355 + ], + [ + 109.3317026, + -0.0359031 + ], + [ + 109.3319814, + -0.0356744 + ], + [ + 109.3320362, + -0.0356295 + ] + ] + }, + "id": "way/1484786698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484786699", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319146, + -0.0354824 + ], + [ + 109.3320362, + -0.0356295 + ], + [ + 109.3321965, + -0.0358237 + ], + [ + 109.3322892, + -0.0359359 + ] + ] + }, + "id": "way/1484786699" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484786700", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3319126, + -0.0362455 + ], + [ + 109.331663, + -0.0359355 + ], + [ + 109.3315407, + -0.0357835 + ], + [ + 109.3315805, + -0.0357514 + ], + [ + 109.3318618, + -0.0355249 + ], + [ + 109.3319146, + -0.0354824 + ], + [ + 109.3316957, + -0.0352106 + ] + ] + }, + "id": "way/1484786700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484786872", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320508, + -0.0364955 + ], + [ + 109.3319126, + -0.0362455 + ] + ] + }, + "id": "way/1484786872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484787612", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479967, + -0.0248393 + ], + [ + 109.3479052, + -0.0252249 + ] + ] + }, + "id": "way/1484787612" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484787613", + "bridge": "yes", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479526, + -0.0252468 + ], + [ + 109.3479052, + -0.0252249 + ] + ] + }, + "id": "way/1484787613" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484787614", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480279, + -0.0249868 + ], + [ + 109.3479551, + -0.025248 + ], + [ + 109.3479526, + -0.0252468 + ] + ] + }, + "id": "way/1484787614" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484787615", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3479967, + -0.0248393 + ], + [ + 109.3480497, + -0.0244249 + ] + ] + }, + "id": "way/1484787615" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484787616", + "bridge": "yes", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480497, + -0.0244249 + ], + [ + 109.3481086, + -0.0244419 + ] + ] + }, + "id": "way/1484787616" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484787617", + "bridge": "yes", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480511, + -0.024851 + ], + [ + 109.3479967, + -0.0248393 + ] + ] + }, + "id": "way/1484787617" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484791224", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464612, + -0.0252859 + ], + [ + 109.3464259, + -0.0252822 + ], + [ + 109.3464129, + -0.0252872 + ], + [ + 109.3463478, + -0.0251464 + ] + ] + }, + "id": "way/1484791224" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484792404", + "highway": "living_street", + "motor_vehicle": "no", + "name": "Jalan Kapten Marsan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3421086, + -0.0228685 + ], + [ + 109.342228, + -0.0227424 + ] + ] + }, + "id": "way/1484792404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484792405", + "highway": "service", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3413826, + -0.0222534 + ], + [ + 109.3415172, + -0.0223978 + ], + [ + 109.3415487, + -0.0224132 + ], + [ + 109.3418109, + -0.022487 + ], + [ + 109.3418524, + -0.0225004 + ], + [ + 109.3420489, + -0.0226084 + ], + [ + 109.3421441, + -0.0226633 + ], + [ + 109.342228, + -0.0227424 + ], + [ + 109.3423587, + -0.0228819 + ], + [ + 109.3425196, + -0.0230549 + ], + [ + 109.3425666, + -0.0230978 + ], + [ + 109.3426799, + -0.0231843 + ], + [ + 109.3428428, + -0.0233084 + ], + [ + 109.3428737, + -0.0233406 + ], + [ + 109.3428871, + -0.0233667 + ], + [ + 109.3429005, + -0.0234257 + ], + [ + 109.3429415, + -0.0234962 + ], + [ + 109.3433961, + -0.0239561 + ], + [ + 109.3435704, + -0.0241533 + ], + [ + 109.3438165, + -0.0244383 + ], + [ + 109.3438909, + -0.0245261 + ], + [ + 109.343964, + -0.0246274 + ], + [ + 109.3441223, + -0.0248634 + ], + [ + 109.3443831, + -0.0252449 + ], + [ + 109.344418, + -0.025308 + ], + [ + 109.3444374, + -0.025369 + ], + [ + 109.344475, + -0.0255219 + ], + [ + 109.3445038, + -0.0255842 + ], + [ + 109.3445313, + -0.0256385 + ], + [ + 109.3445796, + -0.0257378 + ], + [ + 109.3448015, + -0.0261288 + ], + [ + 109.3450376, + -0.0266477 + ], + [ + 109.3451885, + -0.0270159 + ], + [ + 109.3452841, + -0.0272484 + ], + [ + 109.3453125, + -0.0273438 + ], + [ + 109.345458, + -0.0276878 + ] + ] + }, + "id": "way/1484792405" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484792570", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3423627, + -0.0234337 + ], + [ + 109.3426245, + -0.0232279 + ], + [ + 109.3426799, + -0.0231843 + ] + ] + }, + "id": "way/1484792570" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484792731", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3426245, + -0.0232279 + ], + [ + 109.3427805, + -0.0234137 + ] + ] + }, + "id": "way/1484792731" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484792916", + "highway": "service", + "motor_vehicle": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377145, + -0.0226901 + ], + [ + 109.3379874, + -0.0224474 + ] + ] + }, + "id": "way/1484792916" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484793109", + "highway": "residential", + "name": "Gang Buntu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366359, + -0.0244034 + ], + [ + 109.3364954, + -0.023995 + ] + ] + }, + "id": "way/1484793109" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484796429", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3377514, + -0.0242279 + ], + [ + 109.337728, + -0.0241718 + ], + [ + 109.3377024, + -0.0241104 + ], + [ + 109.3374717, + -0.0241969 + ], + [ + 109.3373148, + -0.0241479 + ] + ] + }, + "id": "way/1484796429" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484796882", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394579, + -0.024503 + ], + [ + 109.3399242, + -0.0250304 + ] + ] + }, + "id": "way/1484796882" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484797281", + "highway": "service", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438234, + -0.0264986 + ], + [ + 109.3436902, + -0.026294 + ], + [ + 109.343624, + -0.026192 + ], + [ + 109.3435906, + -0.0261403 + ], + [ + 109.343573, + -0.0261137 + ], + [ + 109.3435546, + -0.0260849 + ] + ] + }, + "id": "way/1484797281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484797911", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3434343, + -0.0448828 + ], + [ + 109.3432281, + -0.0446818 + ] + ] + }, + "id": "way/1484797911" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484797912", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439375, + -0.0447291 + ], + [ + 109.3437316, + -0.0445468 + ], + [ + 109.3434343, + -0.0448828 + ], + [ + 109.3434008, + -0.0449206 + ], + [ + 109.3434628, + -0.0449756 + ] + ] + }, + "id": "way/1484797912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484797913", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441367, + -0.0447157 + ], + [ + 109.3441082, + -0.0447479 + ], + [ + 109.3440426, + -0.0448221 + ], + [ + 109.3438227, + -0.0450706 + ], + [ + 109.3437176, + -0.0449776 + ], + [ + 109.3439375, + -0.0447291 + ], + [ + 109.3440426, + -0.0448221 + ] + ] + }, + "id": "way/1484797913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484798550", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3401606, + -0.0448676 + ], + [ + 109.3400479, + -0.0447438 + ], + [ + 109.3392338, + -0.0454853 + ], + [ + 109.3378452, + -0.0439607 + ] + ] + }, + "id": "way/1484798550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484798629", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394082, + -0.0455186 + ], + [ + 109.3398991, + -0.0461219 + ] + ] + }, + "id": "way/1484798629" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484800011", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3368737, + -0.0496044 + ], + [ + 109.3367971, + -0.0493821 + ] + ] + }, + "id": "way/1484800011" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484800012", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3367547, + -0.0496462 + ], + [ + 109.3366833, + -0.0494557 + ], + [ + 109.336483, + -0.0495308 + ] + ] + }, + "id": "way/1484800012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484800132", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395431, + -0.0486771 + ], + [ + 109.3396047, + -0.0488497 + ], + [ + 109.3396443, + -0.0488336 + ], + [ + 109.3398006, + -0.0493137 + ] + ] + }, + "id": "way/1484800132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484800553", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394835, + -0.0483936 + ], + [ + 109.3395618, + -0.0483609 + ] + ] + }, + "id": "way/1484800553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484800554", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3395531, + -0.048583 + ], + [ + 109.3394835, + -0.0483936 + ], + [ + 109.3393607, + -0.0480591 + ] + ] + }, + "id": "way/1484800554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484800894", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3415605, + -0.0477844 + ], + [ + 109.3414274, + -0.0474489 + ], + [ + 109.3411344, + -0.0475651 + ], + [ + 109.3412396, + -0.0478303 + ], + [ + 109.3412673, + -0.0479001 + ] + ] + }, + "id": "way/1484800894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484805927", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051811, + -0.0317869 + ], + [ + 109.305207, + -0.0319205 + ] + ] + }, + "id": "way/1484805927" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484805928", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053096, + -0.031762 + ], + [ + 109.3051811, + -0.0317869 + ], + [ + 109.3051602, + -0.0316794 + ] + ] + }, + "id": "way/1484805928" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484806275", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062535, + -0.032436 + ], + [ + 109.3063568, + -0.0326988 + ] + ] + }, + "id": "way/1484806275" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484806276", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3057794, + -0.0329441 + ], + [ + 109.305702, + -0.0327511 + ], + [ + 109.3055639, + -0.0324069 + ], + [ + 109.3055377, + -0.0323416 + ] + ] + }, + "id": "way/1484806276" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484806368", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3093516, + -0.0320515 + ], + [ + 109.3095378, + -0.0319633 + ], + [ + 109.3095675, + -0.0320259 + ], + [ + 109.3097667, + -0.0319316 + ] + ] + }, + "id": "way/1484806368" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484806989", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115353, + -0.0326869 + ], + [ + 109.3114612, + -0.0326627 + ], + [ + 109.3115374, + -0.0324715 + ] + ] + }, + "id": "way/1484806989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484806990", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115161, + -0.0328639 + ], + [ + 109.3115353, + -0.0326869 + ], + [ + 109.3116477, + -0.0326991 + ], + [ + 109.3116518, + -0.0326607 + ] + ] + }, + "id": "way/1484806990" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484806991", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115281, + -0.0320117 + ], + [ + 109.3115272, + -0.032035 + ], + [ + 109.3115374, + -0.0324715 + ] + ] + }, + "id": "way/1484806991" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484807192", + "highway": "residential", + "name": "Gang Sudiharjo 2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3134309, + -0.0324854 + ], + [ + 109.3135307, + -0.0327739 + ] + ] + }, + "id": "way/1484807192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484807317", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3124644, + -0.0312593 + ], + [ + 109.3120705, + -0.0312437 + ] + ] + }, + "id": "way/1484807317" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484807884", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113285, + -0.028625 + ], + [ + 109.3119105, + -0.028618 + ] + ] + }, + "id": "way/1484807884" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484807885", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113271, + -0.0285052 + ], + [ + 109.3113285, + -0.028625 + ], + [ + 109.3113348, + -0.0291545 + ] + ] + }, + "id": "way/1484807885" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484808003", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3126131, + -0.029959 + ], + [ + 109.3125245, + -0.0299516 + ] + ] + }, + "id": "way/1484808003" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484808004", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3118255, + -0.0299342 + ], + [ + 109.3121966, + -0.0299368 + ] + ] + }, + "id": "way/1484808004" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484808066", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.309743, + -0.028735 + ], + [ + 109.3101361, + -0.0286626 + ], + [ + 109.3104678, + -0.0286015 + ], + [ + 109.3106651, + -0.0285689 + ] + ] + }, + "id": "way/1484808066" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484808239", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102651, + -0.0276987 + ], + [ + 109.3100079, + -0.027787 + ], + [ + 109.309965, + -0.027842 + ], + [ + 109.3101276, + -0.0285985 + ], + [ + 109.3101361, + -0.0286626 + ] + ] + }, + "id": "way/1484808239" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484812400", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091861, + -0.0282746 + ], + [ + 109.3087091, + -0.0284549 + ] + ] + }, + "id": "way/1484812400" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484812491", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097285, + -0.0286631 + ], + [ + 109.3095593, + -0.0287332 + ], + [ + 109.3095305, + -0.0287164 + ] + ] + }, + "id": "way/1484812491" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484822988", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3292866, + -0.001422 + ], + [ + 109.3289221, + -0.0012305 + ], + [ + 109.3289095, + -0.0012214 + ], + [ + 109.3289063, + -0.0012024 + ], + [ + 109.3289605, + -0.0010382 + ] + ] + }, + "id": "way/1484822988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484824415", + "highway": "living_street", + "motorcar": "no", + "motorcycle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571357, + 0.0055891 + ], + [ + 109.3571692, + 0.0055857 + ] + ] + }, + "id": "way/1484824415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484824416", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570901, + 0.0052243 + ], + [ + 109.3571357, + 0.0055891 + ], + [ + 109.3568983, + 0.0057131 + ], + [ + 109.3566737, + 0.0058546 + ], + [ + 109.3566898, + 0.0058928 + ], + [ + 109.3566248, + 0.00593 + ] + ] + }, + "id": "way/1484824416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484824418", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.329555, + -0.0014734 + ], + [ + 109.3294967, + -0.0016178 + ] + ] + }, + "id": "way/1484824418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484824583", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3301969, + -0.0021692 + ], + [ + 109.3299792, + -0.0025645 + ], + [ + 109.3299724, + -0.002572 + ], + [ + 109.3299605, + -0.0025743 + ], + [ + 109.3296245, + -0.0023781 + ] + ] + }, + "id": "way/1484824583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484824732", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543618, + 0.0085342 + ], + [ + 109.3543963, + 0.00852 + ] + ] + }, + "id": "way/1484824732" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484824733", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543377, + 0.008544 + ], + [ + 109.3543618, + 0.0085342 + ] + ] + }, + "id": "way/1484824733" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484824734", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3540377, + 0.0064165 + ], + [ + 109.3543377, + 0.008544 + ], + [ + 109.3543522, + 0.0086468 + ] + ] + }, + "id": "way/1484824734" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484825176", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3321903, + -0.0012514 + ], + [ + 109.331711, + -0.0018467 + ], + [ + 109.331696, + -0.0018498 + ], + [ + 109.331678, + -0.0018435 + ], + [ + 109.3315462, + -0.001745 + ] + ] + }, + "id": "way/1484825176" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484825225", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3477365, + 0.0087507 + ], + [ + 109.3473905, + 0.0087695 + ] + ] + }, + "id": "way/1484825225" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484825226", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3480298, + 0.0079193 + ], + [ + 109.3476976, + 0.007942 + ], + [ + 109.3477365, + 0.0087507 + ], + [ + 109.348053, + 0.008575 + ] + ] + }, + "id": "way/1484825226" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484825333", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3328302, + -0.0017546 + ], + [ + 109.3331256, + -0.0013516 + ], + [ + 109.3332372, + -0.0014083 + ], + [ + 109.3332625, + -0.0014171 + ], + [ + 109.3333839, + -0.0014497 + ], + [ + 109.3334019, + -0.0014468 + ], + [ + 109.3334327, + -0.0014213 + ], + [ + 109.3334454, + -0.0014193 + ], + [ + 109.3334848, + -0.0014268 + ] + ] + }, + "id": "way/1484825333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484825334", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3331256, + -0.0013516 + ], + [ + 109.3330375, + -0.0012842 + ] + ] + }, + "id": "way/1484825334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484826461", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3227315, + -0.0097769 + ], + [ + 109.3225063, + -0.0095916 + ] + ] + }, + "id": "way/1484826461" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484826903", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335943, + -0.002391 + ], + [ + 109.3334528, + -0.0025929 + ], + [ + 109.3333525, + -0.0027545 + ] + ] + }, + "id": "way/1484826903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484826904", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3335307, + -0.0023366 + ], + [ + 109.3333902, + -0.0025389 + ] + ] + }, + "id": "way/1484826904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484827079", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.333343, + -0.0050123 + ], + [ + 109.333164, + -0.0049388 + ], + [ + 109.3330952, + -0.004907 + ], + [ + 109.333033, + -0.0048604 + ], + [ + 109.3329412, + -0.0048006 + ], + [ + 109.332754, + -0.004699 + ], + [ + 109.3327188, + -0.0046817 + ], + [ + 109.3326662, + -0.0046537 + ] + ] + }, + "id": "way/1484827079" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484827979", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3325205, + -0.0052342 + ], + [ + 109.3326333, + -0.0048988 + ], + [ + 109.3326331, + -0.0048855 + ], + [ + 109.3326272, + -0.0048776 + ], + [ + 109.3326193, + -0.0048727 + ] + ] + }, + "id": "way/1484827979" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484828101", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3185451, + -0.010492 + ], + [ + 109.3184153, + -0.0106611 + ] + ] + }, + "id": "way/1484828101" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484828102", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3183642, + -0.0103308 + ], + [ + 109.3185451, + -0.010492 + ], + [ + 109.3185709, + -0.0105149 + ] + ] + }, + "id": "way/1484828102" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484828636", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3322605, + -0.0033174 + ], + [ + 109.3322837, + -0.0031488 + ], + [ + 109.3322963, + -0.0031386 + ], + [ + 109.3323129, + -0.0031386 + ], + [ + 109.3324883, + -0.0031765 + ] + ] + }, + "id": "way/1484828636" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829006", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3285947, + -0.0045334 + ], + [ + 109.3281159, + -0.0042584 + ] + ] + }, + "id": "way/1484829006" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829166", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3195379, + -0.0079465 + ], + [ + 109.3195132, + -0.0079816 + ], + [ + 109.3194507, + -0.0080702 + ] + ] + }, + "id": "way/1484829166" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829167", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3192951, + -0.0075299 + ], + [ + 109.3196679, + -0.0078441 + ], + [ + 109.3195686, + -0.0079695 + ], + [ + 109.3195379, + -0.0079465 + ], + [ + 109.3191913, + -0.0076869 + ] + ] + }, + "id": "way/1484829167" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829168", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3197508, + -0.0072612 + ], + [ + 109.3198811, + -0.0073774 + ] + ] + }, + "id": "way/1484829168" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829169", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3198644, + -0.007123 + ], + [ + 109.3200313, + -0.0072634 + ] + ] + }, + "id": "way/1484829169" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829170", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.320264, + -0.0068249 + ], + [ + 109.3201736, + -0.0067481 + ], + [ + 109.320091, + -0.00668 + ] + ] + }, + "id": "way/1484829170" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829171", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3205535, + -0.0065107 + ], + [ + 109.320264, + -0.0068249 + ], + [ + 109.3204075, + -0.0069349 + ] + ] + }, + "id": "way/1484829171" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829172", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204692, + -0.00644 + ], + [ + 109.3205535, + -0.0065107 + ], + [ + 109.3207026, + -0.0066358 + ] + ] + }, + "id": "way/1484829172" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829252", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052592, + -0.0270837 + ], + [ + 109.3048329, + -0.0272831 + ] + ] + }, + "id": "way/1484829252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829958", + "bridge": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317133, + -0.0064331 + ], + [ + 109.3170895, + -0.006492 + ] + ] + }, + "id": "way/1484829958" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829959", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3171436, + -0.0064188 + ], + [ + 109.317133, + -0.0064331 + ] + ] + }, + "id": "way/1484829959" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829960", + "bridge": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3181303, + -0.0071855 + ], + [ + 109.3180772, + -0.0072485 + ] + ] + }, + "id": "way/1484829960" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829961", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3181596, + -0.0071509 + ], + [ + 109.3181303, + -0.0071855 + ] + ] + }, + "id": "way/1484829961" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829962", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3180505, + -0.0072802 + ], + [ + 109.3177032, + -0.0070012 + ] + ] + }, + "id": "way/1484829962" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484829972", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3077954, + -0.0241995 + ], + [ + 109.3079066, + -0.0244653 + ], + [ + 109.3079072, + -0.0244697 + ], + [ + 109.307904, + -0.0244732 + ], + [ + 109.3078905, + -0.0244776 + ], + [ + 109.3078857, + -0.0244815 + ], + [ + 109.3078865, + -0.0244864 + ], + [ + 109.3079416, + -0.0246383 + ], + [ + 109.3079417, + -0.0246479 + ], + [ + 109.3079313, + -0.0246561 + ], + [ + 109.3078674, + -0.0246757 + ] + ] + }, + "id": "way/1484829972" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484830393", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.292939, + -0.018113 + ], + [ + 109.292998, + -0.0185689 + ], + [ + 109.2928478, + -0.0194782 + ], + [ + 109.2928766, + -0.019528 + ] + ] + }, + "id": "way/1484830393" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484830394", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2913069, + -0.0191993 + ], + [ + 109.292998, + -0.0185689 + ] + ] + }, + "id": "way/1484830394" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484830395", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2934315, + -0.0207754 + ], + [ + 109.2937718, + -0.0193736 + ] + ] + }, + "id": "way/1484830395" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484830567", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3154914, + -0.0076561 + ], + [ + 109.3151692, + -0.0074518 + ] + ] + }, + "id": "way/1484830567" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484830584", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3079576, + -0.024969 + ], + [ + 109.3083398, + -0.024843 + ] + ] + }, + "id": "way/1484830584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484831696", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2945376, + -0.0166538 + ], + [ + 109.2947836, + -0.0167241 + ] + ] + }, + "id": "way/1484831696" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484831697", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946149, + -0.0171193 + ], + [ + 109.2945014, + -0.017372 + ] + ] + }, + "id": "way/1484831697" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484831698", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2946274, + -0.0170914 + ], + [ + 109.2943566, + -0.0170354 + ], + [ + 109.2942258, + -0.0173304 + ] + ] + }, + "id": "way/1484831698" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484831848", + "highway": "service", + "name": "Gang Timun 1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148997, + -0.0086917 + ], + [ + 109.3151544, + -0.0088278 + ] + ] + }, + "id": "way/1484831848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484832600", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982686, + -0.0208381 + ], + [ + 109.2968971, + -0.0203078 + ] + ] + }, + "id": "way/1484832600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484833206", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3011763, + -0.0198754 + ], + [ + 109.3015677, + -0.0197169 + ], + [ + 109.3019365, + -0.0205803 + ], + [ + 109.3016815, + -0.0206773 + ] + ] + }, + "id": "way/1484833206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484833207", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010607, + -0.0196284 + ], + [ + 109.3011763, + -0.0198754 + ], + [ + 109.3016815, + -0.0206773 + ], + [ + 109.3016716, + -0.0207108 + ], + [ + 109.3016707, + -0.0207452 + ], + [ + 109.3016754, + -0.0207846 + ], + [ + 109.3016925, + -0.0208259 + ], + [ + 109.3017332, + -0.0209217 + ], + [ + 109.3017121, + -0.0209335 + ], + [ + 109.3017261, + -0.020962 + ], + [ + 109.3017489, + -0.0210116 + ], + [ + 109.3017348, + -0.0210176 + ], + [ + 109.3017881, + -0.0211359 + ] + ] + }, + "id": "way/1484833207" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484834687", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2983477, + -0.0109595 + ], + [ + 109.2987755, + -0.0108884 + ], + [ + 109.298913, + -0.0108314 + ] + ] + }, + "id": "way/1484834687" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484835306", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2996889, + -0.0083273 + ], + [ + 109.2994096, + -0.008372 + ], + [ + 109.299299, + -0.0083934 + ], + [ + 109.2990977, + -0.0084349 + ], + [ + 109.2988928, + -0.0084757 + ] + ] + }, + "id": "way/1484835306" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484836370", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2960795, + -0.0059482 + ], + [ + 109.2960356, + -0.0054798 + ] + ] + }, + "id": "way/1484836370" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484837847", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2961697, + -0.0080239 + ], + [ + 109.2959144, + -0.0079605 + ] + ] + }, + "id": "way/1484837847" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484837848", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2961709, + -0.0078664 + ], + [ + 109.2961702, + -0.0079594 + ], + [ + 109.2961697, + -0.0080239 + ], + [ + 109.2961684, + -0.0081995 + ], + [ + 109.2961541, + -0.0082907 + ], + [ + 109.2961528, + -0.0082951 + ], + [ + 109.2961317, + -0.0083223 + ], + [ + 109.2960768, + -0.0083673 + ], + [ + 109.2960204, + -0.008399 + ], + [ + 109.2959578, + -0.0083913 + ], + [ + 109.2958036, + -0.0083233 + ], + [ + 109.2957937, + -0.0082887 + ], + [ + 109.2957922, + -0.008255 + ], + [ + 109.2959136, + -0.0079796 + ], + [ + 109.2959144, + -0.0079605 + ], + [ + 109.2959165, + -0.0079125 + ], + [ + 109.2959197, + -0.0078396 + ] + ] + }, + "id": "way/1484837848" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484838295", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2995496, + -0.0099189 + ], + [ + 109.2997176, + -0.0098798 + ], + [ + 109.2997304, + -0.0098515 + ], + [ + 109.2997473, + -0.0098363 + ] + ] + }, + "id": "way/1484838295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484843813", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3115261, + -0.0178428 + ], + [ + 109.3111245, + -0.0179716 + ], + [ + 109.3111521, + -0.0180576 + ] + ] + }, + "id": "way/1484843813" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484843814", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113314, + -0.017164 + ], + [ + 109.3113441, + -0.0172083 + ], + [ + 109.3115261, + -0.0178428 + ], + [ + 109.3115991, + -0.0180969 + ] + ] + }, + "id": "way/1484843814" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484844298", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3109407, + -0.0202238 + ], + [ + 109.3112364, + -0.0201213 + ] + ] + }, + "id": "way/1484844298" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484845042", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.311937, + -0.0271371 + ], + [ + 109.3115232, + -0.0271433 + ] + ] + }, + "id": "way/1484845042" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484845522", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3062213, + -0.017091 + ], + [ + 109.305937, + -0.0170153 + ], + [ + 109.3059914, + -0.0171439 + ] + ] + }, + "id": "way/1484845522" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484845760", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312306, + -0.026743 + ], + [ + 109.3120911, + -0.0267777 + ] + ] + }, + "id": "way/1484845760" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484845761", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3120911, + -0.0267777 + ], + [ + 109.31194, + -0.0267992 + ] + ] + }, + "id": "way/1484845761" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484845872", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3119504, + -0.0264706 + ], + [ + 109.3117276, + -0.026476 + ] + ] + }, + "id": "way/1484845872" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484846191", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123802, + -0.0243816 + ], + [ + 109.3124573, + -0.0243596 + ], + [ + 109.3124778, + -0.0243675 + ], + [ + 109.3125087, + -0.0243659 + ], + [ + 109.3127632, + -0.0242696 + ] + ] + }, + "id": "way/1484846191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484846988", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3121121, + -0.0235619 + ], + [ + 109.3122943, + -0.0234907 + ], + [ + 109.312483, + -0.0240186 + ] + ] + }, + "id": "way/1484846988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484846989", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122943, + -0.0234907 + ], + [ + 109.3122516, + -0.0233721 + ] + ] + }, + "id": "way/1484846989" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484849372", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3052643, + -0.0232782 + ], + [ + 109.3053402, + -0.0234553 + ], + [ + 109.3053421, + -0.0234629 + ], + [ + 109.3053396, + -0.0234693 + ], + [ + 109.3052945, + -0.0234879 + ], + [ + 109.3052917, + -0.0234946 + ], + [ + 109.3052928, + -0.0235028 + ], + [ + 109.3054261, + -0.0237965 + ] + ] + }, + "id": "way/1484849372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484849447", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3431168, + 0.0053336 + ], + [ + 109.3434986, + 0.0053081 + ] + ] + }, + "id": "way/1484849447" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484850419", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3433774, + 0.0042212 + ], + [ + 109.3432465, + 0.0042164 + ] + ] + }, + "id": "way/1484850419" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484851205", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437109, + 0.0030945 + ], + [ + 109.3438366, + 0.0031154 + ] + ] + }, + "id": "way/1484851205" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484851206", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3436671, + 0.0030873 + ], + [ + 109.3437109, + 0.0030945 + ] + ] + }, + "id": "way/1484851206" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484851380", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3418558, + 0.0028327 + ], + [ + 109.3418531, + 0.0025475 + ] + ] + }, + "id": "way/1484851380" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484851381", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3437843, + 0.0025075 + ], + [ + 109.3418531, + 0.0025475 + ], + [ + 109.3400748, + 0.0025843 + ] + ] + }, + "id": "way/1484851381" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484852123", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3471827, + 0.0042311 + ], + [ + 109.3472312, + 0.0048952 + ] + ] + }, + "id": "way/1484852123" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484852485", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3475386, + 0.0041445 + ], + [ + 109.3475635, + 0.0045385 + ], + [ + 109.3475774, + 0.0045619 + ], + [ + 109.34758, + 0.0046015 + ], + [ + 109.3476031, + 0.004829 + ] + ] + }, + "id": "way/1484852485" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484853149", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570147, + 0.0030994 + ], + [ + 109.3576802, + 0.0030788 + ] + ] + }, + "id": "way/1484853149" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484853365", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570393, + 0.0032951 + ], + [ + 109.3578647, + 0.0032645 + ] + ] + }, + "id": "way/1484853365" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484855871", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.364672, + -0.0025561 + ], + [ + 109.3647079, + -0.0025485 + ], + [ + 109.3647315, + -0.0025346 + ], + [ + 109.3647439, + -0.0025107 + ], + [ + 109.3647811, + -0.0022626 + ], + [ + 109.3648096, + -0.0020728 + ] + ] + }, + "id": "way/1484855871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484858810", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3664642, + -0.0035237 + ], + [ + 109.3663716, + -0.0035131 + ], + [ + 109.3663462, + -0.0037198 + ], + [ + 109.3664368, + -0.003733 + ] + ] + }, + "id": "way/1484858810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484861415", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3685917, + -0.0045223 + ], + [ + 109.3686715, + -0.0040794 + ], + [ + 109.3686822, + -0.0040652 + ], + [ + 109.3687035, + -0.0040648 + ], + [ + 109.3688672, + -0.0040886 + ] + ] + }, + "id": "way/1484861415" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484861416", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3689552, + -0.0041004 + ], + [ + 109.3691661, + -0.0041291 + ] + ] + }, + "id": "way/1484861416" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484861417", + "highway": "service", + "tunnel": "building_passage" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3688672, + -0.0040886 + ], + [ + 109.3689552, + -0.0041004 + ] + ] + }, + "id": "way/1484861417" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484862648", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.362619, + -0.0034745 + ], + [ + 109.363563, + -0.003489 + ], + [ + 109.3637242, + -0.0034915 + ] + ] + }, + "id": "way/1484862648" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1484862649", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.363563, + -0.003489 + ], + [ + 109.3635681, + -0.0032649 + ], + [ + 109.3635711, + -0.0032543 + ], + [ + 109.3635844, + -0.0032476 + ], + [ + 109.3637455, + -0.0032592 + ] + ] + }, + "id": "way/1484862649" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485162893", + "highway": "living_street", + "import": "yes", + "motorcar": "destination", + "source": "digitalglobe", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453051, + -0.0732894 + ], + [ + 109.3449543, + -0.0730537 + ] + ] + }, + "id": "way/1485162893" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485162894", + "highway": "living_street", + "import": "yes", + "motorcar": "destination", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464177, + -0.0740371 + ], + [ + 109.3453051, + -0.0732894 + ] + ] + }, + "id": "way/1485162894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485166359", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3485519, + -0.0840872 + ], + [ + 109.3485133, + -0.0840485 + ], + [ + 109.3484635, + -0.0839853 + ], + [ + 109.3484311, + -0.0839505 + ], + [ + 109.3483695, + -0.0839134 + ] + ] + }, + "id": "way/1485166359" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485170953", + "colour": "#606060", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3451709, + -0.0888622 + ], + [ + 109.3453846, + -0.088503 + ] + ] + }, + "id": "way/1485170953" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485171183", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3453528, + -0.0889619 + ], + [ + 109.3454567, + -0.0888066 + ] + ] + }, + "id": "way/1485171183" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485171598", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2921319, + -0.0436757 + ], + [ + 109.2921674, + -0.0437198 + ] + ] + }, + "id": "way/1485171598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485171599", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2920353, + -0.0440344 + ], + [ + 109.2919667, + -0.0441053 + ] + ] + }, + "id": "way/1485171599" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485171600", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2921853, + -0.0441797 + ], + [ + 109.2921185, + -0.0442486 + ] + ] + }, + "id": "way/1485171600" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485171601", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2919435, + -0.0439455 + ], + [ + 109.2920353, + -0.0440344 + ], + [ + 109.2921853, + -0.0441797 + ], + [ + 109.2923815, + -0.0439773 + ] + ] + }, + "id": "way/1485171601" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485171602", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2914959, + -0.0443967 + ], + [ + 109.2915453, + -0.0444458 + ] + ] + }, + "id": "way/1485171602" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485171603", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2909953, + -0.0449013 + ], + [ + 109.2912106, + -0.0451149 + ], + [ + 109.2911511, + -0.0451749 + ] + ] + }, + "id": "way/1485171603" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485171604", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2921674, + -0.0437198 + ], + [ + 109.2921542, + -0.0437332 + ], + [ + 109.2919435, + -0.0439455 + ], + [ + 109.2914959, + -0.0443967 + ], + [ + 109.2909953, + -0.0449013 + ], + [ + 109.2909411, + -0.0449559 + ], + [ + 109.2910237, + -0.0450378 + ] + ] + }, + "id": "way/1485171604" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485171952", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2922571, + -0.0444308 + ], + [ + 109.2920519, + -0.0446132 + ], + [ + 109.2919838, + -0.044547 + ] + ] + }, + "id": "way/1485171952" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485172342", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2980712, + -0.0449084 + ], + [ + 109.29748, + -0.0454487 + ] + ] + }, + "id": "way/1485172342" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485172685", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2992575, + -0.0467565 + ], + [ + 109.2993283, + -0.0468692 + ], + [ + 109.2994002, + -0.046824 + ] + ] + }, + "id": "way/1485172685" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485172686", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2993918, + -0.0466622 + ], + [ + 109.2993582, + -0.0466188 + ] + ] + }, + "id": "way/1485172686" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485202373", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3159428, + -0.0150254 + ], + [ + 109.3154979, + -0.0152626 + ] + ] + }, + "id": "way/1485202373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485207563", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3181158, + -0.0138973 + ], + [ + 109.3184768, + -0.0141236 + ] + ] + }, + "id": "way/1485207563" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485213596", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3243814, + -0.0140717 + ], + [ + 109.3244851, + -0.0144277 + ], + [ + 109.3245101, + -0.014452 + ], + [ + 109.3245421, + -0.014459 + ] + ] + }, + "id": "way/1485213596" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485224333", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3220137, + -0.0156538 + ], + [ + 109.3217234, + -0.0154468 + ] + ] + }, + "id": "way/1485224333" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485224334", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3221784, + -0.0154463 + ], + [ + 109.3218965, + -0.0152413 + ] + ] + }, + "id": "way/1485224334" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485224335", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3219281, + -0.0157617 + ], + [ + 109.3216375, + -0.0155583 + ] + ] + }, + "id": "way/1485224335" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485229236", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2923753, + -0.0384013 + ], + [ + 109.2932597, + -0.0395237 + ] + ] + }, + "id": "way/1485229236" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485236606", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2920475, + -0.0421845 + ], + [ + 109.2929416, + -0.0430822 + ] + ] + }, + "id": "way/1485236606" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485241190", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3001484, + -0.0424156 + ], + [ + 109.3006993, + -0.0420506 + ], + [ + 109.3011942, + -0.0417509 + ] + ] + }, + "id": "way/1485241190" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485245218", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2902863, + -0.0397476 + ], + [ + 109.2905545, + -0.0395223 + ], + [ + 109.2905807, + -0.0394926 + ] + ] + }, + "id": "way/1485245218" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485245219", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2896361, + -0.0390269 + ], + [ + 109.2899391, + -0.0387937 + ] + ] + }, + "id": "way/1485245219" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485245220", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2893475, + -0.038707 + ], + [ + 109.2896361, + -0.0390269 + ], + [ + 109.2902863, + -0.0397476 + ] + ] + }, + "id": "way/1485245220" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485245221", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.290935, + -0.0398786 + ], + [ + 109.2905807, + -0.0394926 + ], + [ + 109.2899391, + -0.0387937 + ], + [ + 109.2896453, + -0.0384736 + ] + ] + }, + "id": "way/1485245221" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485246718", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3029357, + -0.0422958 + ], + [ + 109.3028162, + -0.0420842 + ] + ] + }, + "id": "way/1485246718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485247747", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2906577, + -0.0418278 + ], + [ + 109.290411, + -0.0420691 + ] + ] + }, + "id": "way/1485247747" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485250054", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3020357, + -0.0402562 + ], + [ + 109.3021946, + -0.0405369 + ], + [ + 109.3022565, + -0.0405631 + ] + ] + }, + "id": "way/1485250054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485250055", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3018322, + -0.0403848 + ], + [ + 109.3019177, + -0.0405323 + ], + [ + 109.3021412, + -0.0409178 + ] + ] + }, + "id": "way/1485250055" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485251744", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023698, + -0.0396104 + ], + [ + 109.3019316, + -0.0399106 + ] + ] + }, + "id": "way/1485251744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485254739", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.30012, + -0.0400317 + ], + [ + 109.3003139, + -0.0403498 + ] + ] + }, + "id": "way/1485254739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485256859", + "access": "permissive", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2945671, + -0.0016335 + ], + [ + 109.2947066, + -0.0015329 + ], + [ + 109.2951733, + -0.0015128 + ] + ] + }, + "id": "way/1485256859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485258545", + "highway": "residential", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2863464, + -0.039426 + ], + [ + 109.2866213, + -0.0391734 + ], + [ + 109.2872111, + -0.0385923 + ], + [ + 109.28746, + -0.0383508 + ] + ] + }, + "id": "way/1485258545" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485258546", + "highway": "residential", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2860306, + -0.0397341 + ], + [ + 109.2863464, + -0.039426 + ] + ] + }, + "id": "way/1485258546" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485258547", + "highway": "living_street", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2842366, + -0.0414137 + ], + [ + 109.2843775, + -0.0412847 + ], + [ + 109.2844304, + -0.0412363 + ], + [ + 109.28447, + -0.0412 + ], + [ + 109.2845199, + -0.0411543 + ], + [ + 109.2850494, + -0.0406748 + ], + [ + 109.2852029, + -0.0405291 + ] + ] + }, + "id": "way/1485258547" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485258548", + "highway": "residential", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2840621, + -0.0415622 + ], + [ + 109.2842227, + -0.0414265 + ], + [ + 109.2842366, + -0.0414137 + ] + ] + }, + "id": "way/1485258548" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485258549", + "highway": "residential", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2835909, + -0.0420021 + ], + [ + 109.2836516, + -0.041957 + ], + [ + 109.2839173, + -0.0417092 + ], + [ + 109.2840621, + -0.0415622 + ] + ] + }, + "id": "way/1485258549" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485258550", + "highway": "path", + "motorcar": "no", + "motorcycle": "no", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2827292, + -0.0427886 + ], + [ + 109.283269, + -0.0423091 + ], + [ + 109.2835909, + -0.0420021 + ] + ] + }, + "id": "way/1485258550" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485259128", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3009483, + -0.0380962 + ], + [ + 109.2998403, + -0.0386479 + ] + ] + }, + "id": "way/1485259128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485260762", + "highway": "living_street", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2852029, + -0.0405291 + ], + [ + 109.2854596, + -0.0402888 + ] + ] + }, + "id": "way/1485260762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485264653", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2970825, + -0.0019487 + ], + [ + 109.2969445, + -0.0019389 + ], + [ + 109.2969455, + -0.0018112 + ] + ] + }, + "id": "way/1485264653" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485264898", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3716663, + -0.0518479 + ], + [ + 109.3723991, + -0.0513635 + ] + ] + }, + "id": "way/1485264898" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485264931", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3010906, + -0.0019511 + ], + [ + 109.301481, + -0.0019712 + ], + [ + 109.301842, + -0.0019897 + ], + [ + 109.3020711, + -0.0020015 + ] + ] + }, + "id": "way/1485264931" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485264936", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2841341, + -0.0402856 + ], + [ + 109.2844478, + -0.0406462 + ] + ] + }, + "id": "way/1485264936" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485265718", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2885663, + -0.0375859 + ], + [ + 109.2893811, + -0.0385326 + ] + ] + }, + "id": "way/1485265718" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485265758", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3028878, + -0.0035154 + ], + [ + 109.302872, + -0.0036759 + ] + ] + }, + "id": "way/1485265758" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485265759", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.302632, + -0.0034902 + ], + [ + 109.3028878, + -0.0035154 + ], + [ + 109.3029046, + -0.0033455 + ] + ] + }, + "id": "way/1485265759" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485265786", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3536884, + -0.07881 + ], + [ + 109.3537959, + -0.0786487 + ] + ] + }, + "id": "way/1485265786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485265905", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023185, + -0.0032865 + ], + [ + 109.3022385, + -0.0038606 + ] + ] + }, + "id": "way/1485265905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485265906", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023859, + -0.002664 + ], + [ + 109.3023185, + -0.0032865 + ] + ] + }, + "id": "way/1485265906" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485266214", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3085082, + 0.0061936 + ], + [ + 109.3085884, + 0.00644 + ], + [ + 109.3091717, + 0.0062884 + ], + [ + 109.3090953, + 0.0059321 + ] + ] + }, + "id": "way/1485266214" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485266215", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3090953, + 0.0059321 + ], + [ + 109.3090242, + 0.0057171 + ] + ] + }, + "id": "way/1485266215" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485266216", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081688, + 0.00575 + ], + [ + 109.308296, + 0.0058807 + ], + [ + 109.3083644, + 0.0060055 + ], + [ + 109.308351, + 0.0061449 + ], + [ + 109.308351, + 0.0061744 + ], + [ + 109.3082665, + 0.0062133 + ], + [ + 109.3081954, + 0.0062911 + ], + [ + 109.3082142, + 0.0063729 + ], + [ + 109.3082544, + 0.0064078 + ], + [ + 109.3083309, + 0.0063984 + ], + [ + 109.3083912, + 0.0062978 + ], + [ + 109.3084532, + 0.0062185 + ], + [ + 109.3085082, + 0.0061936 + ], + [ + 109.3085088, + 0.0061166 + ], + [ + 109.3085114, + 0.0060812 + ], + [ + 109.3085327, + 0.0060382 + ], + [ + 109.3087673, + 0.0059979 + ], + [ + 109.3088638, + 0.0059838 + ], + [ + 109.3090165, + 0.0059487 + ], + [ + 109.3090953, + 0.0059321 + ] + ] + }, + "id": "way/1485266216" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485266903", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097681, + 0.0055418 + ], + [ + 109.3098282, + 0.0057326 + ] + ] + }, + "id": "way/1485266903" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485266904", + "bridge": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097472, + 0.0054756 + ], + [ + 109.3097681, + 0.0055418 + ] + ] + }, + "id": "way/1485266904" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485266905", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3097322, + 0.005428 + ], + [ + 109.3097472, + 0.0054756 + ] + ] + }, + "id": "way/1485266905" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485267198", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3123358, + 0.0060746 + ], + [ + 109.3119183, + 0.006208 + ], + [ + 109.3116709, + 0.0062607 + ] + ] + }, + "id": "way/1485267198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485267199", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3113973, + 0.0065312 + ], + [ + 109.3115965, + 0.0065305 + ], + [ + 109.3117207, + 0.0065032 + ] + ] + }, + "id": "way/1485267199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485267200", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3117207, + 0.0065032 + ], + [ + 109.3117677, + 0.0064876 + ], + [ + 109.3120183, + 0.0064611 + ] + ] + }, + "id": "way/1485267200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485267314", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2845815, + -0.0343077 + ], + [ + 109.2855308, + -0.0356732 + ] + ] + }, + "id": "way/1485267314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485267466", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3125644, + 0.009213 + ], + [ + 109.3131709, + 0.0089391 + ], + [ + 109.3130314, + 0.0086602 + ] + ] + }, + "id": "way/1485267466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485267955", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130919, + 0.0107687 + ], + [ + 109.3125339, + 0.0110038 + ] + ] + }, + "id": "way/1485267955" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485269463", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3047676, + 0.0072879 + ], + [ + 109.3048319, + 0.0075799 + ] + ] + }, + "id": "way/1485269463" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485269559", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2897949, + -0.0360337 + ], + [ + 109.2893101, + -0.0353733 + ] + ] + }, + "id": "way/1485269559" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485270314", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3061236, + -0.0443714 + ], + [ + 109.3059754, + -0.0442226 + ], + [ + 109.3060047, + -0.0441935 + ], + [ + 109.3059756, + -0.0441642 + ] + ] + }, + "id": "way/1485270314" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485270410", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2899323, + -0.036188 + ], + [ + 109.2901023, + -0.0363819 + ] + ] + }, + "id": "way/1485270410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485270519", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3047809, + -0.0447694 + ], + [ + 109.3049788, + -0.044982 + ] + ] + }, + "id": "way/1485270519" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485270788", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038633, + -0.0477711 + ], + [ + 109.3037067, + -0.0475314 + ] + ] + }, + "id": "way/1485270788" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485270950", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3038633, + -0.0477711 + ], + [ + 109.3040038, + -0.04752 + ], + [ + 109.3041656, + -0.0472368 + ] + ] + }, + "id": "way/1485270950" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485270967", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.288735, + -0.0374041 + ], + [ + 109.2891426, + -0.0378448 + ] + ] + }, + "id": "way/1485270967" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485271270", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2892836, + -0.0368676 + ], + [ + 109.2893728, + -0.0369214 + ], + [ + 109.2895594, + -0.0371133 + ] + ] + }, + "id": "way/1485271270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485271680", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3043377, + -0.0491441 + ], + [ + 109.3041594, + -0.0490355 + ] + ] + }, + "id": "way/1485271680" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485271681", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3044283, + -0.0492057 + ], + [ + 109.3043377, + -0.0491441 + ] + ] + }, + "id": "way/1485271681" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485271710", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2910454, + -0.0336616 + ], + [ + 109.291237, + -0.0338785 + ], + [ + 109.2912753, + -0.0338734 + ], + [ + 109.2915667, + -0.0342495 + ] + ] + }, + "id": "way/1485271710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485271926", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3136132, + -0.0475305 + ], + [ + 109.3137664, + -0.0476997 + ] + ] + }, + "id": "way/1485271926" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485272818", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3131973, + -0.0488425 + ], + [ + 109.3130533, + -0.0490057 + ], + [ + 109.3128307, + -0.0488094 + ], + [ + 109.3128378, + -0.0488012 + ], + [ + 109.312815, + -0.0487811 + ] + ] + }, + "id": "way/1485272818" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485272819", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.312557, + -0.0485694 + ], + [ + 109.312815, + -0.0487811 + ] + ] + }, + "id": "way/1485272819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485273086", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3122502, + -0.0489919 + ], + [ + 109.3125151, + -0.0491793 + ], + [ + 109.3124695, + -0.0492427 + ] + ] + }, + "id": "way/1485273086" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485275252", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571122, + -0.0762965 + ], + [ + 109.3570212, + -0.0764373 + ] + ] + }, + "id": "way/1485275252" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485275253", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570661, + -0.0762667 + ], + [ + 109.3569776, + -0.0764037 + ] + ] + }, + "id": "way/1485275253" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485275254", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571265, + -0.0763057 + ], + [ + 109.3571122, + -0.0762965 + ], + [ + 109.3570661, + -0.0762667 + ], + [ + 109.357011, + -0.0762311 + ], + [ + 109.3568056, + -0.0760984 + ] + ] + }, + "id": "way/1485275254" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485275620", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3481114, + -0.0736738 + ], + [ + 109.3479219, + -0.0739934 + ] + ] + }, + "id": "way/1485275620" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485275621", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3470629, + -0.073052 + ], + [ + 109.3481114, + -0.0736738 + ], + [ + 109.3484016, + -0.0738459 + ], + [ + 109.348208, + -0.0741724 + ] + ] + }, + "id": "way/1485275621" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485275934", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3161382, + -0.0510767 + ], + [ + 109.3157317, + -0.050687 + ] + ] + }, + "id": "way/1485275934" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485277151", + "highway": "residential", + "import": "yes", + "motorcar": "no", + "source": "digitalglobe" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3177319, + -0.0517372 + ], + [ + 109.3178051, + -0.0517958 + ], + [ + 109.3178856, + -0.0518618 + ] + ] + }, + "id": "way/1485277151" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485277576", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3214662, + -0.0529149 + ], + [ + 109.3217513, + -0.0531037 + ] + ] + }, + "id": "way/1485277576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485277978", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3226036, + -0.0529946 + ], + [ + 109.3224957, + -0.052928 + ], + [ + 109.3222234, + -0.0527597 + ] + ] + }, + "id": "way/1485277978" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485278268", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.324738, + -0.0517217 + ], + [ + 109.3245432, + -0.051601 + ], + [ + 109.3245086, + -0.0515795 + ] + ] + }, + "id": "way/1485278268" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485279389", + "highway": "residential", + "name": "Gang Keluarga Arteri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3238973, + -0.0507624 + ], + [ + 109.3242469, + -0.051011 + ], + [ + 109.324275, + -0.0509715 + ] + ] + }, + "id": "way/1485279389" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485280660", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3060727, + -0.0502984 + ], + [ + 109.3063304, + -0.0504727 + ] + ] + }, + "id": "way/1485280660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485280749", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3056979, + -0.0536486 + ], + [ + 109.3057377, + -0.0536826 + ], + [ + 109.3060523, + -0.0539513 + ], + [ + 109.3060061, + -0.0540331 + ], + [ + 109.3062863, + -0.0542356 + ], + [ + 109.3063983, + -0.0541001 + ] + ] + }, + "id": "way/1485280749" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485281478", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3105892, + -0.0518635 + ], + [ + 109.3103338, + -0.0516446 + ] + ] + }, + "id": "way/1485281478" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485282115", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129495, + -0.0519274 + ], + [ + 109.3130408, + -0.0518223 + ], + [ + 109.3130925, + -0.0518605 + ] + ] + }, + "id": "way/1485282115" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485284894", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321815, + 0.0013726 + ], + [ + 109.3217166, + 0.0013398 + ] + ] + }, + "id": "way/1485284894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485284895", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.321815, + 0.0013726 + ], + [ + 109.3218841, + 0.0012786 + ] + ] + }, + "id": "way/1485284895" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485286192", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3223428, + 0.0036625 + ], + [ + 109.322559, + 0.0034362 + ] + ] + }, + "id": "way/1485286192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485287312", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3204101, + 0.0026926 + ], + [ + 109.3202835, + 0.002819 + ] + ] + }, + "id": "way/1485287312" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485288372", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3189678, + 0.004699 + ], + [ + 109.3189149, + 0.0046577 + ] + ] + }, + "id": "way/1485288372" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485288373", + "highway": "residential", + "name": "Gang Karya Baru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3194717, + 0.0041191 + ], + [ + 109.3189678, + 0.004699 + ], + [ + 109.3188149, + 0.0048749 + ] + ] + }, + "id": "way/1485288373" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485288721", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3162504, + 0.0046026 + ], + [ + 109.3167785, + 0.0043811 + ] + ] + }, + "id": "way/1485288721" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485290576", + "highway": "track" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.301931, + -0.0148755 + ], + [ + 109.302396, + -0.0148649 + ] + ] + }, + "id": "way/1485290576" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485291251", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3019058, + -0.0141615 + ], + [ + 109.3019137, + -0.013916 + ], + [ + 109.3019301, + -0.0137395 + ] + ] + }, + "id": "way/1485291251" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485291472", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.300182, + -0.0126563 + ], + [ + 109.3003754, + -0.0131494 + ] + ] + }, + "id": "way/1485291472" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485292710", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2940908, + -0.0148718 + ], + [ + 109.2941014, + -0.0148858 + ] + ] + }, + "id": "way/1485292710" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485314770", + "highway": "living_street", + "motorcar": "no", + "motorcycle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3573013, + 0.0055709 + ], + [ + 109.3573323, + 0.0055681 + ] + ] + }, + "id": "way/1485314770" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485314771", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no", + "motorcycle": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3571692, + 0.0055857 + ], + [ + 109.3573013, + 0.0055709 + ] + ] + }, + "id": "way/1485314771" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485556283", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2817569, + -0.0297877 + ], + [ + 109.282587, + -0.0309218 + ], + [ + 109.2830966, + -0.0316004 + ] + ] + }, + "id": "way/1485556283" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485556284", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2873907, + -0.031344 + ], + [ + 109.2881285, + -0.0323769 + ] + ] + }, + "id": "way/1485556284" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485556285", + "highway": "living_street", + "motorcar": "no", + "name": "Gang H. M. Nur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2900121, + -0.029042 + ], + [ + 109.2895584, + -0.0284519 + ], + [ + 109.2890941, + -0.0278494 + ] + ] + }, + "id": "way/1485556285" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485556968", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2849587, + -0.0294984 + ], + [ + 109.2848763, + -0.0293863 + ], + [ + 109.2847851, + -0.0293447 + ], + [ + 109.2845611, + -0.029043 + ] + ] + }, + "id": "way/1485556968" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485556969", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2845494, + -0.0299175 + ], + [ + 109.2842916, + -0.0295848 + ] + ] + }, + "id": "way/1485556969" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485556970", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2846987, + -0.0297624 + ], + [ + 109.2844525, + -0.0294453 + ], + [ + 109.2840596, + -0.0289048 + ] + ] + }, + "id": "way/1485556970" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485556971", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2814517, + -0.0302359 + ], + [ + 109.2806759, + -0.0289679 + ] + ] + }, + "id": "way/1485556971" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485557352", + "highway": "residential", + "name": "Gang Virza" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2819478, + -0.0295009 + ], + [ + 109.2826045, + -0.0303371 + ] + ] + }, + "id": "way/1485557352" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485557507", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2868863, + -0.0276185 + ], + [ + 109.2866063, + -0.0272472 + ] + ] + }, + "id": "way/1485557507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485557921", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2901441, + -0.0299227 + ], + [ + 109.289685, + -0.0293276 + ] + ] + }, + "id": "way/1485557921" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485559185", + "highway": "living_street", + "name": "Gang Putri" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3063904, + -0.0125825 + ], + [ + 109.306456, + -0.0121839 + ], + [ + 109.3064667, + -0.0120793 + ] + ] + }, + "id": "way/1485559185" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485559562", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3100863, + -0.0160155 + ], + [ + 109.3102128, + -0.0155854 + ] + ] + }, + "id": "way/1485559562" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485559793", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3130774, + -0.015475 + ], + [ + 109.3130194, + -0.0155595 + ] + ] + }, + "id": "way/1485559793" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485559794", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3127344, + -0.0153127 + ], + [ + 109.3129992, + -0.0154254 + ], + [ + 109.3130774, + -0.015475 + ], + [ + 109.3132782, + -0.0156024 + ], + [ + 109.3137261, + -0.0158814 + ], + [ + 109.313757, + -0.015947 + ] + ] + }, + "id": "way/1485559794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485559894", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3102966, + -0.0148147 + ], + [ + 109.310307, + -0.0147859 + ], + [ + 109.3104404, + -0.0144182 + ] + ] + }, + "id": "way/1485559894" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485560030", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3128145, + -0.011889 + ], + [ + 109.312326, + -0.0116757 + ] + ] + }, + "id": "way/1485560030" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485560295", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3147403, + -0.0034412 + ], + [ + 109.3149479, + -0.0030584 + ] + ] + }, + "id": "way/1485560295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485560639", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3144798, + -0.0060779 + ], + [ + 109.3142934, + -0.0060806 + ] + ] + }, + "id": "way/1485560639" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485560640", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3148629, + -0.0046349 + ], + [ + 109.3151043, + -0.0047733 + ], + [ + 109.315192, + -0.0048307 + ] + ] + }, + "id": "way/1485560640" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485561048", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.313993, + -0.0037605 + ], + [ + 109.3140936, + -0.0038099 + ], + [ + 109.3142112, + -0.0038683 + ] + ] + }, + "id": "way/1485561048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485561188", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.316904, + -0.0047074 + ], + [ + 109.3166048, + -0.0045121 + ], + [ + 109.3166994, + -0.0043378 + ] + ] + }, + "id": "way/1485561188" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485562410", + "highway": "residential", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3167978, + -0.0048904 + ], + [ + 109.3166517, + -0.0048219 + ] + ] + }, + "id": "way/1485562410" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485564281", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3271358, + -0.0697468 + ], + [ + 109.3270554, + -0.0696878 + ], + [ + 109.3269092, + -0.0698447 + ], + [ + 109.3264135, + -0.0691908 + ], + [ + 109.3258229, + -0.0683749 + ] + ] + }, + "id": "way/1485564281" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485564481", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326211, + -0.0693652 + ], + [ + 109.3266094, + -0.0699312 + ] + ] + }, + "id": "way/1485564481" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485564598", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3287878, + -0.0669408 + ], + [ + 109.3284313, + -0.066445 + ] + ] + }, + "id": "way/1485564598" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485564913", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2879695, + -0.0169844 + ], + [ + 109.287537, + -0.0171353 + ] + ] + }, + "id": "way/1485564913" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565100", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3041734, + -0.0397088 + ], + [ + 109.3039575, + -0.0394781 + ] + ] + }, + "id": "way/1485565100" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565127", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2857652, + -0.0184396 + ], + [ + 109.2858759, + -0.0192637 + ] + ] + }, + "id": "way/1485565127" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565270", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2887186, + -0.0208388 + ], + [ + 109.2887353, + -0.0209038 + ] + ] + }, + "id": "way/1485565270" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565271", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.288105, + -0.0174726 + ], + [ + 109.2886904, + -0.0207254 + ], + [ + 109.2887186, + -0.0208388 + ] + ] + }, + "id": "way/1485565271" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565414", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.304153, + -0.0426027 + ], + [ + 109.3042257, + -0.0425814 + ] + ] + }, + "id": "way/1485565414" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565465", + "highway": "service", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2897271, + -0.0207804 + ], + [ + 109.2896171, + -0.0208367 + ], + [ + 109.2894602, + -0.0209387 + ] + ] + }, + "id": "way/1485565465" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565466", + "highway": "service", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2895782, + -0.0180311 + ], + [ + 109.289884, + -0.0195426 + ], + [ + 109.2898625, + -0.0197773 + ], + [ + 109.2897351, + -0.0201099 + ], + [ + 109.2895259, + -0.0204559 + ], + [ + 109.2896171, + -0.0208367 + ], + [ + 109.289715, + -0.0209574 + ] + ] + }, + "id": "way/1485565466" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565552", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3043701, + -0.0413934 + ], + [ + 109.3037655, + -0.0419496 + ] + ] + }, + "id": "way/1485565552" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565553", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2908068, + -0.0199199 + ], + [ + 109.290698, + -0.0195198 + ] + ] + }, + "id": "way/1485565553" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565715", + "highway": "living_street", + "name": "Gang Biru" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3051497, + -0.0420703 + ], + [ + 109.3047501, + -0.042513 + ] + ] + }, + "id": "way/1485565715" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485565811", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3091903, + -0.0392805 + ], + [ + 109.3089062, + -0.0390355 + ] + ] + }, + "id": "way/1485565811" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485566794", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3030111, + -0.0613003 + ], + [ + 109.3028596, + -0.0611013 + ] + ] + }, + "id": "way/1485566794" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485567293", + "bridge": "yes", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.346498, + -0.0811395 + ], + [ + 109.3464497, + -0.0811113 + ] + ] + }, + "id": "way/1485567293" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485567294", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3464497, + -0.0811113 + ], + [ + 109.3463753, + -0.08107 + ], + [ + 109.346441, + -0.0809622 + ] + ] + }, + "id": "way/1485567294" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485567295", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3463753, + -0.08107 + ], + [ + 109.3462964, + -0.0811997 + ] + ] + }, + "id": "way/1485567295" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485567296", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3465688, + -0.0811879 + ], + [ + 109.346498, + -0.0811395 + ] + ] + }, + "id": "way/1485567296" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485567886", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3467946, + -0.0864056 + ], + [ + 109.3467032, + -0.0865663 + ] + ] + }, + "id": "way/1485567886" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485568114", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3458307, + -0.0853055 + ], + [ + 109.3456262, + -0.0856316 + ] + ] + }, + "id": "way/1485568114" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485568513", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3012002, + -0.0375429 + ], + [ + 109.301455, + -0.037884 + ] + ] + }, + "id": "way/1485568513" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485568514", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3014123, + -0.0373549 + ], + [ + 109.3012002, + -0.0375429 + ] + ] + }, + "id": "way/1485568514" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485568630", + "highway": "living_street", + "name": "Gang Gaharu" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2986723, + -0.033246 + ], + [ + 109.2990652, + -0.0337851 + ] + ] + }, + "id": "way/1485568630" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485568631", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2989141, + -0.0330431 + ], + [ + 109.2991297, + -0.0333188 + ] + ] + }, + "id": "way/1485568631" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485568879", + "highway": "living_street", + "name": "Gang Munawar Rahim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2950126, + -0.0359747 + ], + [ + 109.2946261, + -0.0354695 + ] + ] + }, + "id": "way/1485568879" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485568973", + "highway": "residential", + "name": "Gang Martalam" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2928086, + -0.0379569 + ], + [ + 109.293336, + -0.0386184 + ] + ] + }, + "id": "way/1485568973" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485569418", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3648459, + 0.0104137 + ], + [ + 109.3670256, + 0.0101213 + ] + ] + }, + "id": "way/1485569418" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485569787", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3646319, + 0.0073854 + ], + [ + 109.3648853, + 0.0073486 + ], + [ + 109.3656296, + 0.0072406 + ] + ] + }, + "id": "way/1485569787" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485570054", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2982177, + -0.0386492 + ], + [ + 109.2999208, + -0.0378835 + ] + ] + }, + "id": "way/1485570054" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485570132", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2923838, + -0.0354548 + ], + [ + 109.2926534, + -0.0357673 + ], + [ + 109.2925985, + -0.0358205 + ] + ] + }, + "id": "way/1485570132" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485573150", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3129701, + -0.0749814 + ], + [ + 109.3138146, + -0.0754747 + ] + ] + }, + "id": "way/1485573150" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485573987", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3076597, + -0.0735851 + ], + [ + 109.306918, + -0.0728206 + ] + ] + }, + "id": "way/1485573987" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485573988", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3075376, + -0.0720025 + ], + [ + 109.307901, + -0.0723807 + ] + ] + }, + "id": "way/1485573988" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485577457", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3184426, + 0.0063611 + ], + [ + 109.3185762, + 0.0062455 + ], + [ + 109.3189383, + 0.0066257 + ], + [ + 109.3189987, + 0.0066566 + ], + [ + 109.3193205, + 0.0071266 + ] + ] + }, + "id": "way/1485577457" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485577661", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3196744, + 0.0055779 + ], + [ + 109.3195452, + 0.0056715 + ], + [ + 109.3194258, + 0.0057909 + ] + ] + }, + "id": "way/1485577661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485584048", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2875652, + -0.0249821 + ], + [ + 109.28839, + -0.0261663 + ] + ] + }, + "id": "way/1485584048" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485584128", + "highway": "residential", + "name": "Gang H. Saleh" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.285713, + -0.0257575 + ], + [ + 109.2852035, + -0.0249633 + ] + ] + }, + "id": "way/1485584128" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485584524", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2828542, + -0.0235854 + ], + [ + 109.2833906, + -0.0244515 + ] + ] + }, + "id": "way/1485584524" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485584880", + "highway": "living_street", + "name": "Gang H. M. Nur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2884369, + -0.0269374 + ], + [ + 109.2880825, + -0.0264332 + ] + ] + }, + "id": "way/1485584880" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485590834", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3336104, + 0.018518 + ], + [ + 109.3349719, + 0.018636 + ], + [ + 109.3379974, + 0.01899 + ] + ] + }, + "id": "way/1485590834" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485592279", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2924492, + -0.0256667 + ], + [ + 109.2925031, + -0.0256285 + ], + [ + 109.2924428, + -0.0255507 + ], + [ + 109.2926627, + -0.0253911 + ] + ] + }, + "id": "way/1485592279" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485592583", + "highway": "residential", + "name": "Gang Daslan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.294988, + -0.0227294 + ], + [ + 109.2952927, + -0.0231711 + ], + [ + 109.295623, + -0.0236114 + ], + [ + 109.2958948, + -0.0239612 + ] + ] + }, + "id": "way/1485592583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485592638", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3026359, + -0.0254173 + ], + [ + 109.3025514, + -0.0254515 + ] + ] + }, + "id": "way/1485592638" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485592912", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2994848, + -0.0267922 + ], + [ + 109.299733, + -0.0271963 + ] + ] + }, + "id": "way/1485592912" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485600810", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3022637, + -0.0603571 + ], + [ + 109.3023214, + -0.0603108 + ], + [ + 109.3024049, + -0.060234 + ] + ] + }, + "id": "way/1485600810" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485601124", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2886135, + -0.0105337 + ], + [ + 109.2886396, + -0.0103367 + ] + ] + }, + "id": "way/1485601124" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485601762", + "highway": "residential", + "motorcar": "no", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.289617, + -0.0081268 + ], + [ + 109.2892479, + -0.0081344 + ] + ] + }, + "id": "way/1485601762" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485875819", + "highway": "living_street", + "motorcar": "no", + "name": "Gang Dharma Putra 17 B" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3394458, + -0.0042298 + ], + [ + 109.3393506, + -0.0042808 + ], + [ + 109.3392286, + -0.0043425 + ], + [ + 109.3391722, + -0.0043908 + ], + [ + 109.3389845, + -0.0045075 + ], + [ + 109.3388477, + -0.0045624 + ], + [ + 109.3387806, + -0.0045222 + ] + ] + }, + "id": "way/1485875819" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485875980", + "highway": "residential", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3438608, + -0.0013263 + ], + [ + 109.3445903, + -0.0015852 + ], + [ + 109.345108, + -0.0017515 + ] + ] + }, + "id": "way/1485875980" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485909378", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3182545, + -0.0665138 + ], + [ + 109.3169622, + -0.0656953 + ] + ] + }, + "id": "way/1485909378" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485909379", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.317995, + -0.0668802 + ], + [ + 109.3169649, + -0.0661996 + ] + ] + }, + "id": "way/1485909379" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485914859", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2966284, + -0.0509553 + ], + [ + 109.2977187, + -0.049877 + ], + [ + 109.297755, + -0.0499193 + ] + ] + }, + "id": "way/1485914859" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485920507", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3717559, + -0.0186289 + ], + [ + 109.3715947, + -0.0193087 + ] + ] + }, + "id": "way/1485920507" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485920871", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3696508, + 0.014096 + ], + [ + 109.3702509, + 0.0137906 + ] + ] + }, + "id": "way/1485920871" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1485948145", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2882263, + -0.0044893 + ], + [ + 109.2883732, + -0.004488 + ] + ] + }, + "id": "way/1485948145" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487061266", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3362433, + -0.0751689 + ], + [ + 109.3357243, + -0.0746687 + ] + ] + }, + "id": "way/1487061266" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487065702", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033048, + 0.0167788 + ], + [ + 109.3022235, + 0.0172855 + ] + ] + }, + "id": "way/1487065702" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487065703", + "highway": "residential", + "surface": "unpaved" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3034404, + 0.0167153 + ], + [ + 109.3033617, + 0.0167522 + ] + ] + }, + "id": "way/1487065703" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487065704", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3033617, + 0.0167522 + ], + [ + 109.3033048, + 0.0167788 + ] + ] + }, + "id": "way/1487065704" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487105272", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2970574, + 0.0112487 + ], + [ + 109.2969409, + 0.0108884 + ] + ] + }, + "id": "way/1487105272" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487935659", + "highway": "residential", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2891635, + -0.0366926 + ], + [ + 109.2891737, + -0.0366557 + ], + [ + 109.289177, + -0.0366146 + ] + ] + }, + "id": "way/1487935659" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487935660", + "highway": "footway", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.289177, + -0.0366146 + ], + [ + 109.2894768, + -0.0363797 + ], + [ + 109.2897949, + -0.0360337 + ], + [ + 109.2900546, + -0.0357644 + ], + [ + 109.2902651, + -0.0355415 + ] + ] + }, + "id": "way/1487935660" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487935661", + "highway": "footway", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2902651, + -0.0355415 + ], + [ + 109.290525, + -0.035287 + ], + [ + 109.2909258, + -0.0348759 + ] + ] + }, + "id": "way/1487935661" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487935662", + "highway": "residential", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2909258, + -0.0348759 + ], + [ + 109.2909645, + -0.0348374 + ], + [ + 109.2913369, + -0.0344769 + ], + [ + 109.2914761, + -0.0343323 + ], + [ + 109.2915667, + -0.0342495 + ], + [ + 109.2917185, + -0.0341109 + ] + ] + }, + "id": "way/1487935662" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487935663", + "highway": "residential", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2917185, + -0.0341109 + ], + [ + 109.2918383, + -0.0339914 + ], + [ + 109.2918691, + -0.0339558 + ], + [ + 109.2920155, + -0.033832 + ], + [ + 109.2922004, + -0.0336754 + ], + [ + 109.2925997, + -0.0333049 + ], + [ + 109.2926429, + -0.0332649 + ], + [ + 109.2928798, + -0.0330607 + ] + ] + }, + "id": "way/1487935663" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1487935664", + "highway": "footway", + "name": "Jalan Puskesmas Pal 3" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2928798, + -0.0330607 + ], + [ + 109.294328, + -0.0318216 + ], + [ + 109.2945027, + -0.0316704 + ] + ] + }, + "id": "way/1487935664" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1489637351", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3584847, + 0.0144128 + ], + [ + 109.3602812, + 0.0139448 + ] + ] + }, + "id": "way/1489637351" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1489637554", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3610041, + -0.021738 + ], + [ + 109.3610041, + -0.0217125 + ], + [ + 109.3609893, + -0.021679 + ], + [ + 109.3609625, + -0.0216427 + ], + [ + 109.3609343, + -0.0216039 + ], + [ + 109.3609209, + -0.0215703 + ], + [ + 109.3609089, + -0.0215153 + ], + [ + 109.3608968, + -0.0214697 + ], + [ + 109.3608874, + -0.0214107 + ], + [ + 109.3608753, + -0.0213651 + ], + [ + 109.3608619, + -0.0213356 + ], + [ + 109.3608472, + -0.0213101 + ], + [ + 109.360815, + -0.0212793 + ], + [ + 109.3606541, + -0.0212404 + ], + [ + 109.3603979, + -0.0212833 + ], + [ + 109.3604904, + -0.0218171 + ], + [ + 109.3605014, + -0.0220019 + ] + ] + }, + "id": "way/1489637554" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1491241211", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081787, + 0.0117204 + ], + [ + 109.3085578, + 0.0115992 + ] + ] + }, + "id": "way/1491241211" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1491241212", + "highway": "service", + "noname": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3081102, + 0.0118329 + ], + [ + 109.3080062, + 0.0117762 + ], + [ + 109.3080618, + 0.0116877 + ], + [ + 109.3081787, + 0.0117204 + ], + [ + 109.3081102, + 0.0118329 + ] + ] + }, + "id": "way/1491241212" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1491910204", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3412422, + 0.0075217 + ], + [ + 109.3412489, + 0.0076094 + ] + ] + }, + "id": "way/1491910204" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1491910700", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3363051, + 0.0061608 + ], + [ + 109.336302, + 0.0060689 + ] + ] + }, + "id": "way/1491910700" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1491910701", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364339, + 0.006156 + ], + [ + 109.3364324, + 0.0058861 + ], + [ + 109.3367757, + 0.0058888 + ] + ] + }, + "id": "way/1491910701" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492242796", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3053828, + 0.0209474 + ], + [ + 109.3060577, + 0.0206101 + ] + ] + }, + "id": "way/1492242796" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492245325", + "highway": "track", + "tracktype": "grade4" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3364257, + 0.0213028 + ], + [ + 109.3373041, + 0.0214067 + ], + [ + 109.3382187, + 0.0215208 + ], + [ + 109.3383247, + 0.0208837 + ] + ] + }, + "id": "way/1492245325" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492264863", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3349236, + -0.0059793 + ], + [ + 109.3349487, + -0.0058692 + ] + ] + }, + "id": "way/1492264863" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492264864", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.334994, + -0.0063139 + ], + [ + 109.3350504, + -0.0060075 + ], + [ + 109.3349236, + -0.0059793 + ] + ] + }, + "id": "way/1492264864" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492272510", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320966, + 0.0126587 + ], + [ + 109.3320885, + 0.0128317 + ] + ] + }, + "id": "way/1492272510" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492273822", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3340573, + 0.0093499 + ], + [ + 109.3342021, + 0.0093529 + ] + ] + }, + "id": "way/1492273822" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492273823", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339112, + 0.0093469 + ], + [ + 109.3339686, + 0.0093481 + ] + ] + }, + "id": "way/1492273823" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492273824", + "bridge": "yes", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3339686, + 0.0093481 + ], + [ + 109.3340573, + 0.0093499 + ] + ] + }, + "id": "way/1492273824" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492275012", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3258534, + 0.0058015 + ], + [ + 109.3259262, + 0.005701 + ], + [ + 109.3261997, + 0.0056876 + ] + ] + }, + "id": "way/1492275012" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492520965", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.2873375, + -0.0435487 + ], + [ + 109.2880587, + -0.0442994 + ] + ] + }, + "id": "way/1492520965" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492545440", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3023416, + 0.0079101 + ], + [ + 109.3024474, + 0.0083202 + ] + ] + }, + "id": "way/1492545440" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492545786", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.297112, + 0.0091182 + ], + [ + 109.2964205, + 0.0076926 + ] + ] + }, + "id": "way/1492545786" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492887109", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3725409, + -0.0452809 + ], + [ + 109.3725739, + -0.045318 + ], + [ + 109.3726687, + -0.0454245 + ], + [ + 109.3728353, + -0.0456149 + ], + [ + 109.3728923, + -0.045672 + ], + [ + 109.3729654, + -0.0457451 + ], + [ + 109.373129, + -0.0459181 + ] + ] + }, + "id": "way/1492887109" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1492887110", + "highway": "tertiary" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.373357, + -0.0461842 + ], + [ + 109.373306, + -0.0461179 + ], + [ + 109.373129, + -0.0459181 + ] + ] + }, + "id": "way/1492887110" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1493378346", + "highway": "trunk", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455652, + -0.0413101 + ], + [ + 109.3454816, + -0.0413679 + ] + ] + }, + "id": "way/1493378346" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1497901583", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544847, + -0.0569811 + ], + [ + 109.354426, + -0.0570613 + ], + [ + 109.3544126, + -0.0570989 + ], + [ + 109.3544166, + -0.0571337 + ], + [ + 109.3544447, + -0.0571793 + ], + [ + 109.3545279, + -0.0572424 + ], + [ + 109.3545574, + -0.0572491 + ], + [ + 109.3546057, + -0.0572464 + ], + [ + 109.3546486, + -0.0572316 + ], + [ + 109.3547033, + -0.057197 + ] + ] + }, + "id": "way/1497901583" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1497901584", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3557956, + -0.0581785 + ], + [ + 109.3557215, + -0.0580805 + ], + [ + 109.3557174, + -0.0580524 + ], + [ + 109.3557295, + -0.0580095 + ], + [ + 109.3557537, + -0.0579719 + ], + [ + 109.355806, + -0.0579277 + ], + [ + 109.3558274, + -0.0579277 + ], + [ + 109.3558636, + -0.0579411 + ], + [ + 109.3559491, + -0.0579893 + ] + ] + }, + "id": "way/1497901584" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1497901585", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3545484, + -0.061088 + ], + [ + 109.3542074, + -0.0606796 + ] + ] + }, + "id": "way/1497901585" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1497901586", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3544166, + -0.061208 + ], + [ + 109.3544886, + -0.0611435 + ], + [ + 109.3545484, + -0.061088 + ], + [ + 109.3546808, + -0.0609653 + ], + [ + 109.3547063, + -0.0609277 + ], + [ + 109.3547063, + -0.0608995 + ], + [ + 109.3546955, + -0.0608687 + ], + [ + 109.3545936, + -0.060744 + ] + ] + }, + "id": "way/1497901586" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1497901587", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3528748, + -0.0595609 + ], + [ + 109.3528379, + -0.0595913 + ], + [ + 109.3527943, + -0.0596306 + ] + ] + }, + "id": "way/1497901587" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1497901588", + "access": "private", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3524863, + -0.0604937 + ], + [ + 109.3525189, + -0.0605388 + ], + [ + 109.3525551, + -0.0605884 + ], + [ + 109.3526436, + -0.0607011 + ] + ] + }, + "id": "way/1497901588" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1501272487", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3403108, + -0.0511967 + ], + [ + 109.3400601, + -0.0505114 + ] + ] + }, + "id": "way/1501272487" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1502386743", + "bridge": "yes", + "highway": "residential", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439881, + 0.0002991 + ], + [ + 109.3441276, + 0.0003085 + ] + ] + }, + "id": "way/1502386743" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1502386744", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3439162, + 0.0002989 + ], + [ + 109.3439881, + 0.0002991 + ] + ] + }, + "id": "way/1502386744" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1502386745", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3441276, + 0.0003085 + ], + [ + 109.3442041, + 0.0003192 + ], + [ + 109.3443288, + 0.0002857 + ], + [ + 109.3465403, + -0.0003862 + ] + ] + }, + "id": "way/1502386745" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1503249486", + "highway": "tertiary", + "name": "Jalan Budi Karya" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3455652, + -0.0413101 + ], + [ + 109.3456562, + -0.0413758 + ], + [ + 109.3456759, + -0.0413903 + ], + [ + 109.3461536, + -0.0417421 + ], + [ + 109.3463726, + -0.0419256 + ], + [ + 109.3466147, + -0.0421207 + ], + [ + 109.3471009, + -0.042517 + ], + [ + 109.3472957, + -0.0426677 + ], + [ + 109.3475429, + -0.0428611 + ], + [ + 109.3476053, + -0.0429099 + ], + [ + 109.3479435, + -0.0431747 + ], + [ + 109.3485409, + -0.0436419 + ], + [ + 109.348678, + -0.0437468 + ], + [ + 109.3490785, + -0.0440559 + ], + [ + 109.3493841, + -0.0443054 + ], + [ + 109.3494085, + -0.0443208 + ], + [ + 109.3494397, + -0.0443342 + ], + [ + 109.3494578, + -0.0443408 + ], + [ + 109.3494713, + -0.0443433 + ], + [ + 109.34949, + -0.0443443 + ], + [ + 109.3495063, + -0.0443403 + ], + [ + 109.3495234, + -0.0443331 + ], + [ + 109.3495414, + -0.0443233 + ], + [ + 109.3498104, + -0.044028 + ], + [ + 109.34997, + -0.0438512 + ], + [ + 109.3500313, + -0.0437829 + ], + [ + 109.3500802, + -0.0437285 + ], + [ + 109.3508518, + -0.0428934 + ] + ] + }, + "id": "way/1503249486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1504711468", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3654206, + -0.0565664 + ], + [ + 109.3654407, + -0.0565795 + ], + [ + 109.3654754, + -0.0566267 + ], + [ + 109.3657051, + -0.0564749 + ] + ] + }, + "id": "way/1504711468" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1504711469", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3657051, + -0.0564749 + ], + [ + 109.3658943, + -0.056376 + ], + [ + 109.3660929, + -0.0562628 + ], + [ + 109.3662385, + -0.056191 + ] + ] + }, + "id": "way/1504711469" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1504867455", + "bridge": "yes", + "highway": "living_street", + "layer": "1" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473412, + -0.0264127 + ], + [ + 109.347309, + -0.0264 + ] + ] + }, + "id": "way/1504867455" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1504867456", + "highway": "living_street" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3473565, + -0.0263886 + ], + [ + 109.3473412, + -0.0264127 + ] + ] + }, + "id": "way/1504867456" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1504871571", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490844, + -0.0252024 + ], + [ + 109.3490519, + -0.0251913 + ] + ] + }, + "id": "way/1504871571" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1504871572", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3490891, + -0.025204 + ], + [ + 109.3490844, + -0.0252024 + ] + ] + }, + "id": "way/1504871572" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1504977174", + "highway": "residential", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.377568, + -0.0492416 + ], + [ + 109.3775593, + -0.0492058 + ], + [ + 109.377563, + -0.0491691 + ], + [ + 109.3775786, + -0.0491357 + ], + [ + 109.3776044, + -0.0491094 + ], + [ + 109.3776375, + -0.0490932 + ], + [ + 109.3776741, + -0.0490889 + ], + [ + 109.37771, + -0.0490969 + ], + [ + 109.3777413, + -0.0491165 + ], + [ + 109.3777635, + -0.0491439 + ] + ] + }, + "id": "way/1504977174" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1505029827", + "highway": "living_street", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3538783, + -0.023911 + ], + [ + 109.3538702, + -0.0240757 + ], + [ + 109.3538706, + -0.024095 + ], + [ + 109.3538721, + -0.0241774 + ] + ] + }, + "id": "way/1505029827" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1505029828", + "bridge": "yes", + "highway": "living_street", + "layer": "1", + "motorcar": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3538868, + -0.0237363 + ], + [ + 109.3538783, + -0.023911 + ] + ] + }, + "id": "way/1505029828" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769191", + "highway": "residential" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3597864, + -0.0442524 + ], + [ + 109.3595942, + -0.0440454 + ], + [ + 109.359588, + -0.0440352 + ], + [ + 109.3595855, + -0.0440231 + ], + [ + 109.3595885, + -0.0440125 + ] + ] + }, + "id": "way/1516769191" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769192", + "highway": "service" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3595885, + -0.0440125 + ], + [ + 109.3595134, + -0.044061 + ], + [ + 109.3593876, + -0.0441653 + ], + [ + 109.3592294, + -0.0443386 + ] + ] + }, + "id": "way/1516769192" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769193", + "alt_name": "Jalan Swadaya", + "highway": "residential", + "name": "Jalan Tanjung Harapan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3570949, + -0.0399302 + ], + [ + 109.3567815, + -0.0396277 + ], + [ + 109.3566872, + -0.0395343 + ], + [ + 109.3565597, + -0.039403 + ], + [ + 109.3563974, + -0.0392513 + ], + [ + 109.356266, + -0.039112 + ], + [ + 109.3561855, + -0.0390278 + ], + [ + 109.3559984, + -0.0388236 + ] + ] + }, + "id": "way/1516769193" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769194", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3634887, + -0.035311 + ], + [ + 109.3632911, + -0.0351072 + ] + ] + }, + "id": "way/1516769194" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769195", + "highway": "tertiary", + "layer": "1", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3635201, + -0.0353434 + ], + [ + 109.3634887, + -0.035311 + ] + ] + }, + "id": "way/1516769195" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769198", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3627592, + -0.0345027 + ], + [ + 109.3624605, + -0.0341955 + ], + [ + 109.3623626, + -0.0340889 + ] + ] + }, + "id": "way/1516769198" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769199", + "highway": "tertiary", + "name": "Jalan Panglima Aim" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3618376, + -0.0335598 + ], + [ + 109.3618533, + -0.0335484 + ], + [ + 109.3618774, + -0.0335309 + ] + ] + }, + "id": "way/1516769199" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769200", + "highway": "tertiary", + "name": "Jalan Pemda" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3623626, + -0.0340889 + ], + [ + 109.3622466, + -0.034025 + ], + [ + 109.3621292, + -0.0338981 + ], + [ + 109.3619861, + -0.0337317 + ], + [ + 109.3618533, + -0.0335484 + ] + ] + }, + "id": "way/1516769200" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769201", + "highway": "tertiary", + "name": "Jalan Sultan Syahrir Abdurahman", + "oneway": "no" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3244539, + -0.0428131 + ], + [ + 109.3246178, + -0.0426636 + ], + [ + 109.3249533, + -0.0423575 + ], + [ + 109.3250781, + -0.0422468 + ], + [ + 109.3251919, + -0.0421459 + ], + [ + 109.3257629, + -0.0416394 + ], + [ + 109.3259873, + -0.0414441 + ], + [ + 109.3260695, + -0.0413721 + ], + [ + 109.3262239, + -0.041237 + ], + [ + 109.3262669, + -0.0411994 + ], + [ + 109.326335, + -0.0411373 + ], + [ + 109.326488, + -0.0410176 + ], + [ + 109.3266961, + -0.0408252 + ], + [ + 109.3274814, + -0.0401292 + ], + [ + 109.3275653, + -0.0400545 + ] + ] + }, + "id": "way/1516769201" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1516769202", + "highway": "unclassified", + "name": "Jalan Tani Makmur" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3187567, + -0.0532558 + ], + [ + 109.3188002, + -0.0532935 + ], + [ + 109.3190188, + -0.0535201 + ], + [ + 109.3192609, + -0.0537539 + ], + [ + 109.3192664, + -0.0537603 + ], + [ + 109.3192703, + -0.0537673 + ], + [ + 109.3192787, + -0.0537888 + ], + [ + 109.3192818, + -0.0538041 + ], + [ + 109.3192857, + -0.0538325 + ] + ] + }, + "id": "way/1516769202" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1517121403", + "highway": "residential", + "name": "Jalan Sutoyo Indah" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3408166, + -0.0510141 + ], + [ + 109.3408277, + -0.0509858 + ], + [ + 109.3408305, + -0.05096 + ], + [ + 109.3408273, + -0.0509353 + ], + [ + 109.3404553, + -0.0498321 + ], + [ + 109.3411258, + -0.0495839 + ], + [ + 109.3414622, + -0.0494593 + ], + [ + 109.341484, + -0.0494432 + ], + [ + 109.3414937, + -0.049423 + ], + [ + 109.3414911, + -0.0493888 + ], + [ + 109.3414856, + -0.049362 + ], + [ + 109.3412664, + -0.0487156 + ], + [ + 109.3410298, + -0.0480855 + ] + ] + }, + "id": "way/1517121403" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1517121404", + "highway": "tertiary", + "name": "Jalan Bukit Barisan" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3212364, + -0.020271 + ], + [ + 109.3212504, + -0.0203276 + ], + [ + 109.3213235, + -0.0206678 + ], + [ + 109.3215032, + -0.0214134 + ], + [ + 109.3217145, + -0.0222407 + ], + [ + 109.3219994, + -0.0234921 + ] + ] + }, + "id": "way/1517121404" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1517141767", + "highway": "tertiary", + "name": "Jalan Husin", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3366114, + -0.0216065 + ], + [ + 109.336596, + -0.0215308 + ], + [ + 109.336592, + -0.0214583 + ], + [ + 109.3365976, + -0.0213662 + ] + ] + }, + "id": "way/1517141767" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1517301739", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3533311, + -0.0601089 + ], + [ + 109.3532491, + -0.0601796 + ], + [ + 109.3532281, + -0.0601978 + ] + ] + }, + "id": "way/1517301739" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1517301740", + "highway": "service", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3543603, + -0.0615614 + ], + [ + 109.3543813, + -0.0615421 + ], + [ + 109.3544583, + -0.0614814 + ] + ] + }, + "id": "way/1517301740" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1517925486", + "highway": "primary", + "oneway": "yes" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.3320199, + -0.0343295 + ], + [ + 109.3319737, + -0.0343016 + ], + [ + 109.3319365, + -0.0342657 + ], + [ + 109.3318659, + -0.0341955 + ], + [ + 109.3318082, + -0.0341123 + ], + [ + 109.3317457, + -0.0340127 + ], + [ + 109.3317134, + -0.0338893 + ] + ] + }, + "id": "way/1517925486" + }, + { + "type": "Feature", + "properties": { + "@id": "way/1517998836", + "highway": "primary", + "name": "Jalan Haji Rais A. Rachman", + "ref": "002.2" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 109.326534, + -0.0190914 + ], + [ + 109.3266546, + -0.0190676 + ], + [ + 109.3269023, + -0.0190217 + ], + [ + 109.3273357, + -0.0189337 + ], + [ + 109.3275681, + -0.0188974 + ], + [ + 109.3277957, + -0.0188619 + ], + [ + 109.3281444, + -0.0188043 + ], + [ + 109.3286169, + -0.0187235 + ], + [ + 109.3290382, + -0.0186554 + ] + ] + }, + "id": "way/1517998836" + } + ] +} \ No newline at end of file diff --git a/json/Kecamatan_Pontianak.json b/json/Kecamatan_Pontianak.json new file mode 100644 index 0000000..f561c72 --- /dev/null +++ b/json/Kecamatan_Pontianak.json @@ -0,0 +1,14494 @@ +{ + "type": "FeatureCollection", + "generator": "overpass-turbo", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.", + "timestamp": "2026-05-26T04:01:14Z", + "features": [ + { + "type": "Feature", + "properties": { + "@id": "relation/10625014", + "admin_level": "7", + "boundary": "administrative", + "name": "Bansir Darat", + "place": "village", + "type": "boundary", + "wikidata": "Q21292912", + "wikipedia": "id:Bansir Darat, Pontianak Tenggara, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3224725, + -0.0880212 + ], + [ + 109.3225, + -0.0880556 + ], + [ + 109.322213, + -0.090812 + ], + [ + 109.3220872, + -0.0922036 + ], + [ + 109.3219826, + -0.0941803 + ], + [ + 109.3295691, + -0.0948928 + ], + [ + 109.3336111, + -0.0952778 + ], + [ + 109.3358541, + -0.0950771 + ], + [ + 109.3372231, + -0.0950771 + ], + [ + 109.3380013, + -0.095006 + ], + [ + 109.356239, + -0.0637304 + ], + [ + 109.3563156, + -0.0635959 + ], + [ + 109.3551788, + -0.0621944 + ], + [ + 109.3542151, + -0.0610314 + ], + [ + 109.3533804, + -0.0600335 + ], + [ + 109.3518581, + -0.0582178 + ], + [ + 109.3517783, + -0.0583269 + ], + [ + 109.3513547, + -0.0589061 + ], + [ + 109.3504871, + -0.0601734 + ], + [ + 109.3500762, + -0.0607906 + ], + [ + 109.3493326, + -0.0619199 + ], + [ + 109.349057, + -0.062351 + ], + [ + 109.3487065, + -0.062826 + ], + [ + 109.3470694, + -0.064682 + ], + [ + 109.3432721, + -0.0686468 + ], + [ + 109.342657, + -0.0681154 + ], + [ + 109.3400024, + -0.0656481 + ], + [ + 109.3374373, + -0.0632258 + ], + [ + 109.3369769, + -0.0627779 + ], + [ + 109.3365677, + -0.0632845 + ], + [ + 109.3360536, + -0.0638581 + ], + [ + 109.335146, + -0.0649085 + ], + [ + 109.3343637, + -0.0658721 + ], + [ + 109.3338397, + -0.0664927 + ], + [ + 109.3331777, + -0.0672767 + ], + [ + 109.3318211, + -0.0688343 + ], + [ + 109.3310448, + -0.0698008 + ], + [ + 109.3305545, + -0.0705345 + ], + [ + 109.3288739, + -0.0731236 + ], + [ + 109.327624, + -0.0749794 + ], + [ + 109.3265094, + -0.0766657 + ], + [ + 109.3256936, + -0.0779265 + ], + [ + 109.3249679, + -0.0790044 + ], + [ + 109.3233608, + -0.0812877 + ], + [ + 109.3219873, + -0.0832884 + ], + [ + 109.323928, + -0.0854277 + ], + [ + 109.3224725, + -0.0880212 + ] + ] + ] + }, + "id": "relation/10625014" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625015", + "admin_level": "7", + "boundary": "administrative", + "name": "Tambelan Sampit", + "place": "village", + "type": "boundary", + "wikidata": "Q12519014", + "wikipedia": "id:Tambelansampit, Pontianak Timur, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3576713, + -0.0362766 + ], + [ + 109.3572219, + -0.0358528 + ], + [ + 109.3569685, + -0.0356151 + ], + [ + 109.3558629, + -0.0345216 + ], + [ + 109.3552827, + -0.0337631 + ], + [ + 109.3539404, + -0.0317927 + ], + [ + 109.3535507, + -0.0313132 + ], + [ + 109.3529619, + -0.0306942 + ], + [ + 109.3527591, + -0.0304748 + ], + [ + 109.3522078, + -0.0307838 + ], + [ + 109.3519058, + -0.0309325 + ], + [ + 109.3511525, + -0.031335 + ], + [ + 109.3507918, + -0.0308559 + ], + [ + 109.3505656, + -0.030586 + ], + [ + 109.3502697, + -0.0302106 + ], + [ + 109.3501662, + -0.0301116 + ], + [ + 109.3498279, + -0.0296882 + ], + [ + 109.3492442, + -0.0290109 + ], + [ + 109.3491186, + -0.0290721 + ], + [ + 109.3486282, + -0.0285171 + ], + [ + 109.3481661, + -0.0279581 + ], + [ + 109.3479756, + -0.0276847 + ], + [ + 109.3475295, + -0.0278605 + ], + [ + 109.3467671, + -0.0281247 + ], + [ + 109.3472764, + -0.0292533 + ], + [ + 109.3499437, + -0.0343806 + ], + [ + 109.3499861, + -0.0344603 + ], + [ + 109.3512119, + -0.0365673 + ], + [ + 109.3524501, + -0.038344 + ], + [ + 109.3532873, + -0.037828 + ], + [ + 109.3535246, + -0.0376688 + ], + [ + 109.3537152, + -0.0375642 + ], + [ + 109.3550791, + -0.0367103 + ], + [ + 109.3553411, + -0.0371276 + ], + [ + 109.355933, + -0.0380378 + ], + [ + 109.3568352, + -0.0373973 + ], + [ + 109.3572276, + -0.0371367 + ], + [ + 109.3575536, + -0.0369273 + ], + [ + 109.3579795, + -0.0366631 + ], + [ + 109.3576713, + -0.0362766 + ] + ] + ] + }, + "id": "relation/10625015" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625016", + "admin_level": "7", + "boundary": "administrative", + "name": "Mariana", + "place": "village", + "type": "boundary", + "wikidata": "Q12497041", + "wikipedia": "id:Mariana, Pontianak Kota, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3258176, + -0.0234853 + ], + [ + 109.3262104, + -0.0233955 + ], + [ + 109.3262257, + -0.0233955 + ], + [ + 109.3262637, + -0.0234107 + ], + [ + 109.3263037, + -0.0234069 + ], + [ + 109.326595, + -0.0233307 + ], + [ + 109.3269148, + -0.0232584 + ], + [ + 109.3273174, + -0.0231489 + ], + [ + 109.3277605, + -0.0230504 + ], + [ + 109.3278252, + -0.0230409 + ], + [ + 109.3282469, + -0.0230247 + ], + [ + 109.3287028, + -0.0230123 + ], + [ + 109.3290131, + -0.0230085 + ], + [ + 109.3292072, + -0.0230104 + ], + [ + 109.3292272, + -0.0230066 + ], + [ + 109.329232, + -0.0225355 + ], + [ + 109.3292386, + -0.0224755 + ], + [ + 109.3295099, + -0.0224555 + ], + [ + 109.3300611, + -0.0224024 + ], + [ + 109.330058, + -0.0225252 + ], + [ + 109.3301396, + -0.0226008 + ], + [ + 109.3304334, + -0.0227863 + ], + [ + 109.3305299, + -0.0228539 + ], + [ + 109.3307787, + -0.0230083 + ], + [ + 109.3311919, + -0.0232879 + ], + [ + 109.3312261, + -0.0233079 + ], + [ + 109.3312357, + -0.0233384 + ], + [ + 109.3312442, + -0.0233479 + ], + [ + 109.3312785, + -0.0233698 + ], + [ + 109.3316931, + -0.0235645 + ], + [ + 109.3320986, + -0.0237487 + ], + [ + 109.3324755, + -0.0238872 + ], + [ + 109.3329637, + -0.0240927 + ], + [ + 109.3330191, + -0.0241205 + ], + [ + 109.3330334, + -0.0241224 + ], + [ + 109.3330429, + -0.0241148 + ], + [ + 109.3330591, + -0.0240862 + ], + [ + 109.3332162, + -0.0237531 + ], + [ + 109.3333123, + -0.0235399 + ], + [ + 109.3336157, + -0.0228324 + ], + [ + 109.3336359, + -0.0228003 + ], + [ + 109.3336752, + -0.0227622 + ], + [ + 109.3338346, + -0.0226266 + ], + [ + 109.3340892, + -0.0223708 + ], + [ + 109.3344866, + -0.0219353 + ], + [ + 109.3348746, + -0.0214266 + ], + [ + 109.334966, + -0.0212824 + ], + [ + 109.3350417, + -0.0211875 + ], + [ + 109.3353515, + -0.0208174 + ], + [ + 109.3357573, + -0.0202854 + ], + [ + 109.3359646, + -0.020032 + ], + [ + 109.3360732, + -0.0201171 + ], + [ + 109.3361021, + -0.0201357 + ], + [ + 109.3364976, + -0.0197245 + ], + [ + 109.3366632, + -0.0195432 + ], + [ + 109.3368188, + -0.0193547 + ], + [ + 109.3382402, + -0.0178908 + ], + [ + 109.3376923, + -0.0173912 + ], + [ + 109.3354561, + -0.0153519 + ], + [ + 109.3353888, + -0.015292 + ], + [ + 109.3351802, + -0.0151202 + ], + [ + 109.3347632, + -0.0147765 + ], + [ + 109.3335225, + -0.0164315 + ], + [ + 109.3331866, + -0.0168458 + ], + [ + 109.3329617, + -0.0171809 + ], + [ + 109.3328178, + -0.0174255 + ], + [ + 109.332296, + -0.017833 + ], + [ + 109.3322388, + -0.0178681 + ], + [ + 109.3317202, + -0.0181862 + ], + [ + 109.3311534, + -0.0183674 + ], + [ + 109.3305057, + -0.0185213 + ], + [ + 109.3298309, + -0.01863 + ], + [ + 109.3278158, + -0.0190013 + ], + [ + 109.3266373, + -0.0192009 + ], + [ + 109.3265534, + -0.0195531 + ], + [ + 109.3265064, + -0.019784 + ], + [ + 109.3262959, + -0.020756 + ], + [ + 109.3262126, + -0.0211189 + ], + [ + 109.3259651, + -0.0223622 + ], + [ + 109.3258818, + -0.0228666 + ], + [ + 109.3258414, + -0.023245 + ], + [ + 109.3258295, + -0.0233187 + ], + [ + 109.3258176, + -0.0234853 + ] + ] + ] + }, + "id": "relation/10625016" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625017", + "admin_level": "7", + "boundary": "administrative", + "name": "Tengah", + "place": "village", + "type": "boundary", + "wikidata": "Q12520792", + "wikipedia": "id:Tengah, Pontianak Kota, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3261656, + -0.0248548 + ], + [ + 109.3261663, + -0.0248562 + ], + [ + 109.326456, + -0.0253033 + ], + [ + 109.3273943, + -0.0268577 + ], + [ + 109.3280643, + -0.0280443 + ], + [ + 109.3286419, + -0.0289793 + ], + [ + 109.3295774, + -0.0281089 + ], + [ + 109.3303191, + -0.0274266 + ], + [ + 109.3311356, + -0.0267659 + ], + [ + 109.3316431, + -0.0263248 + ], + [ + 109.332607, + -0.0271334 + ], + [ + 109.3339255, + -0.0282594 + ], + [ + 109.334822, + -0.0277497 + ], + [ + 109.3346099, + -0.0274535 + ], + [ + 109.3342798, + -0.0268891 + ], + [ + 109.3351462, + -0.026288 + ], + [ + 109.3353003, + -0.0265084 + ], + [ + 109.3358123, + -0.0261827 + ], + [ + 109.335921, + -0.0260938 + ], + [ + 109.3360067, + -0.0260295 + ], + [ + 109.3363814, + -0.0258063 + ], + [ + 109.3366163, + -0.0256721 + ], + [ + 109.3370608, + -0.0254295 + ], + [ + 109.3373947, + -0.0252627 + ], + [ + 109.3376294, + -0.0251657 + ], + [ + 109.3375111, + -0.0248937 + ], + [ + 109.3373199, + -0.0244051 + ], + [ + 109.3377258, + -0.0242393 + ], + [ + 109.3387133, + -0.0238022 + ], + [ + 109.3394524, + -0.0234632 + ], + [ + 109.3398511, + -0.0232573 + ], + [ + 109.3403276, + -0.0237886 + ], + [ + 109.3414393, + -0.0227914 + ], + [ + 109.341654, + -0.0226388 + ], + [ + 109.3428486, + -0.0218527 + ], + [ + 109.3408488, + -0.0202696 + ], + [ + 109.3382402, + -0.0178908 + ], + [ + 109.3368188, + -0.0193547 + ], + [ + 109.3366632, + -0.0195432 + ], + [ + 109.3364976, + -0.0197245 + ], + [ + 109.3361021, + -0.0201357 + ], + [ + 109.3360732, + -0.0201171 + ], + [ + 109.3359646, + -0.020032 + ], + [ + 109.3357573, + -0.0202854 + ], + [ + 109.3353515, + -0.0208174 + ], + [ + 109.3350417, + -0.0211875 + ], + [ + 109.334966, + -0.0212824 + ], + [ + 109.3348746, + -0.0214266 + ], + [ + 109.3344866, + -0.0219353 + ], + [ + 109.3340892, + -0.0223708 + ], + [ + 109.3338346, + -0.0226266 + ], + [ + 109.3336752, + -0.0227622 + ], + [ + 109.3336359, + -0.0228003 + ], + [ + 109.3336157, + -0.0228324 + ], + [ + 109.3333123, + -0.0235399 + ], + [ + 109.3332162, + -0.0237531 + ], + [ + 109.3330591, + -0.0240862 + ], + [ + 109.3330429, + -0.0241148 + ], + [ + 109.3330334, + -0.0241224 + ], + [ + 109.3330191, + -0.0241205 + ], + [ + 109.3329637, + -0.0240927 + ], + [ + 109.3324755, + -0.0238872 + ], + [ + 109.3320986, + -0.0237487 + ], + [ + 109.3316931, + -0.0235645 + ], + [ + 109.3312785, + -0.0233698 + ], + [ + 109.3312442, + -0.0233479 + ], + [ + 109.3312357, + -0.0233384 + ], + [ + 109.3312261, + -0.0233079 + ], + [ + 109.3311919, + -0.0232879 + ], + [ + 109.3307787, + -0.0230083 + ], + [ + 109.3305299, + -0.0228539 + ], + [ + 109.3304334, + -0.0227863 + ], + [ + 109.3301396, + -0.0226008 + ], + [ + 109.330058, + -0.0225252 + ], + [ + 109.3300611, + -0.0224024 + ], + [ + 109.3295099, + -0.0224555 + ], + [ + 109.3292386, + -0.0224755 + ], + [ + 109.329232, + -0.0225355 + ], + [ + 109.3292272, + -0.0230066 + ], + [ + 109.3292072, + -0.0230104 + ], + [ + 109.3290131, + -0.0230085 + ], + [ + 109.3287028, + -0.0230123 + ], + [ + 109.3282469, + -0.0230247 + ], + [ + 109.3278252, + -0.0230409 + ], + [ + 109.3277605, + -0.0230504 + ], + [ + 109.3273174, + -0.0231489 + ], + [ + 109.3269148, + -0.0232584 + ], + [ + 109.326595, + -0.0233307 + ], + [ + 109.3263037, + -0.0234069 + ], + [ + 109.3262637, + -0.0234107 + ], + [ + 109.3262257, + -0.0233955 + ], + [ + 109.3262104, + -0.0233955 + ], + [ + 109.3258176, + -0.0234853 + ], + [ + 109.3257793, + -0.0235241 + ], + [ + 109.3257691, + -0.0236277 + ], + [ + 109.325756, + -0.0240903 + ], + [ + 109.3260888, + -0.0247265 + ], + [ + 109.3261419, + -0.0248065 + ], + [ + 109.3261656, + -0.0248548 + ] + ] + ] + }, + "id": "relation/10625017" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625018", + "admin_level": "7", + "boundary": "administrative", + "name": "Darat Sekip", + "place": "village", + "type": "boundary", + "wikidata": "Q12480909", + "wikipedia": "id:Daratsekip, Pontianak Kota, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3428486, + -0.0218527 + ], + [ + 109.341654, + -0.0226388 + ], + [ + 109.3414393, + -0.0227914 + ], + [ + 109.3403276, + -0.0237886 + ], + [ + 109.3398511, + -0.0232573 + ], + [ + 109.3394524, + -0.0234632 + ], + [ + 109.3387133, + -0.0238022 + ], + [ + 109.3377258, + -0.0242393 + ], + [ + 109.3373199, + -0.0244051 + ], + [ + 109.3375111, + -0.0248937 + ], + [ + 109.3376294, + -0.0251657 + ], + [ + 109.3373947, + -0.0252627 + ], + [ + 109.3370608, + -0.0254295 + ], + [ + 109.3366163, + -0.0256721 + ], + [ + 109.3363814, + -0.0258063 + ], + [ + 109.3360067, + -0.0260295 + ], + [ + 109.335921, + -0.0260938 + ], + [ + 109.3358123, + -0.0261827 + ], + [ + 109.3353003, + -0.0265084 + ], + [ + 109.3351462, + -0.026288 + ], + [ + 109.3342798, + -0.0268891 + ], + [ + 109.3346099, + -0.0274535 + ], + [ + 109.334822, + -0.0277497 + ], + [ + 109.3339255, + -0.0282594 + ], + [ + 109.332607, + -0.0271334 + ], + [ + 109.3316431, + -0.0263248 + ], + [ + 109.3311356, + -0.0267659 + ], + [ + 109.3303191, + -0.0274266 + ], + [ + 109.3295774, + -0.0281089 + ], + [ + 109.3286419, + -0.0289793 + ], + [ + 109.330237, + -0.0315609 + ], + [ + 109.3317113, + -0.0339097 + ], + [ + 109.3322506, + -0.0346028 + ], + [ + 109.3327067, + -0.0351898 + ], + [ + 109.3328738, + -0.0354048 + ], + [ + 109.3329821, + -0.0351436 + ], + [ + 109.3368442, + -0.0314183 + ], + [ + 109.3374914, + -0.0308116 + ], + [ + 109.3381077, + -0.0303547 + ], + [ + 109.3388549, + -0.0298384 + ], + [ + 109.3397734, + -0.0291555 + ], + [ + 109.3403635, + -0.0287867 + ], + [ + 109.3410273, + -0.0283631 + ], + [ + 109.342041, + -0.0277706 + ], + [ + 109.3429071, + -0.0271666 + ], + [ + 109.343135, + -0.026948 + ], + [ + 109.3435191, + -0.0267085 + ], + [ + 109.343795, + -0.0265511 + ], + [ + 109.3441519, + -0.0263715 + ], + [ + 109.3444295, + -0.0262517 + ], + [ + 109.3447145, + -0.0260852 + ], + [ + 109.344759, + -0.02608 + ], + [ + 109.3456443, + -0.0256293 + ], + [ + 109.3454961, + -0.0252998 + ], + [ + 109.3454518, + -0.0252213 + ], + [ + 109.3441828, + -0.0231404 + ], + [ + 109.3441358, + -0.0230634 + ], + [ + 109.3440808, + -0.0229924 + ], + [ + 109.3435265, + -0.0223999 + ], + [ + 109.3434614, + -0.0223379 + ], + [ + 109.3428486, + -0.0218527 + ] + ] + ] + }, + "id": "relation/10625018" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625019", + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Bangkong", + "place": "village", + "type": "boundary", + "wikidata": "Q12517750", + "wikipedia": "id:Sungaibangkong, Pontianak Kota, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3039418, + -0.06326 + ], + [ + 109.304418, + -0.0627711 + ], + [ + 109.3048763, + -0.0623214 + ], + [ + 109.3051618, + -0.0620501 + ], + [ + 109.3054074, + -0.0618017 + ], + [ + 109.3058971, + -0.0612806 + ], + [ + 109.3062625, + -0.060928 + ], + [ + 109.3068222, + -0.0603441 + ], + [ + 109.307052, + -0.0600842 + ], + [ + 109.3073876, + -0.0597801 + ], + [ + 109.3079658, + -0.0592124 + ], + [ + 109.3088212, + -0.0583383 + ], + [ + 109.3090999, + -0.0580588 + ], + [ + 109.3094366, + -0.0577304 + ], + [ + 109.3097031, + -0.0574532 + ], + [ + 109.3099535, + -0.0571801 + ], + [ + 109.3103145, + -0.0568254 + ], + [ + 109.3108064, + -0.0563258 + ], + [ + 109.3112523, + -0.0558642 + ], + [ + 109.311915, + -0.0552312 + ], + [ + 109.3120756, + -0.0550587 + ], + [ + 109.312266, + -0.0548779 + ], + [ + 109.3125087, + -0.0546304 + ], + [ + 109.3128267, + -0.0543274 + ], + [ + 109.3134837, + -0.0536685 + ], + [ + 109.3137662, + -0.0533943 + ], + [ + 109.3141862, + -0.0529743 + ], + [ + 109.3149631, + -0.0522093 + ], + [ + 109.3153546, + -0.0518168 + ], + [ + 109.3157471, + -0.0514348 + ], + [ + 109.3160641, + -0.0511319 + ], + [ + 109.3163242, + -0.050868 + ], + [ + 109.3164851, + -0.0507048 + ], + [ + 109.3170869, + -0.0501227 + ], + [ + 109.3179756, + -0.0492379 + ], + [ + 109.3186224, + -0.0485719 + ], + [ + 109.3189877, + -0.0482141 + ], + [ + 109.3191926, + -0.0479904 + ], + [ + 109.319911, + -0.0473094 + ], + [ + 109.3207602, + -0.0464545 + ], + [ + 109.3211552, + -0.0460768 + ], + [ + 109.3216095, + -0.0456494 + ], + [ + 109.3220834, + -0.0451772 + ], + [ + 109.3228932, + -0.0443521 + ], + [ + 109.3233364, + -0.0439435 + ], + [ + 109.324009, + -0.0432884 + ], + [ + 109.3244139, + -0.0428659 + ], + [ + 109.3246355, + -0.042667 + ], + [ + 109.3256531, + -0.0417228 + ], + [ + 109.3259959, + -0.0414094 + ], + [ + 109.326772, + -0.0407138 + ], + [ + 109.3272589, + -0.0403027 + ], + [ + 109.3278399, + -0.0397916 + ], + [ + 109.3282882, + -0.0393675 + ], + [ + 109.328663, + -0.0390689 + ], + [ + 109.3287735, + -0.0389692 + ], + [ + 109.3291713, + -0.0386371 + ], + [ + 109.3291974, + -0.0386153 + ], + [ + 109.3292121, + -0.038603 + ], + [ + 109.3292679, + -0.0385487 + ], + [ + 109.3296128, + -0.0382584 + ], + [ + 109.3301362, + -0.0377614 + ], + [ + 109.3306744, + -0.0372892 + ], + [ + 109.3314281, + -0.0366439 + ], + [ + 109.3317914, + -0.0363262 + ], + [ + 109.3321746, + -0.0360669 + ], + [ + 109.3328349, + -0.0355404 + ], + [ + 109.3328738, + -0.0354048 + ], + [ + 109.3327067, + -0.0351898 + ], + [ + 109.3322506, + -0.0346028 + ], + [ + 109.3317113, + -0.0339097 + ], + [ + 109.330237, + -0.0315609 + ], + [ + 109.3286419, + -0.0289793 + ], + [ + 109.3280643, + -0.0280443 + ], + [ + 109.3273943, + -0.0268577 + ], + [ + 109.326456, + -0.0253033 + ], + [ + 109.3261663, + -0.0248562 + ], + [ + 109.3261656, + -0.0248548 + ], + [ + 109.3255021, + -0.0252885 + ], + [ + 109.3253686, + -0.0254112 + ], + [ + 109.3249394, + -0.0256623 + ], + [ + 109.3241272, + -0.0261704 + ], + [ + 109.3233556, + -0.026696 + ], + [ + 109.3233034, + -0.0266026 + ], + [ + 109.3228625, + -0.0268946 + ], + [ + 109.3228567, + -0.0269121 + ], + [ + 109.3220852, + -0.0273851 + ], + [ + 109.3209829, + -0.0280743 + ], + [ + 109.32031, + -0.0285123 + ], + [ + 109.3202462, + -0.028413 + ], + [ + 109.3195228, + -0.0275317 + ], + [ + 109.3187891, + -0.0276384 + ], + [ + 109.3188621, + -0.0283176 + ], + [ + 109.3156836, + -0.0287052 + ], + [ + 109.3156672, + -0.0324964 + ], + [ + 109.3157677, + -0.0328223 + ], + [ + 109.3158412, + -0.0330012 + ], + [ + 109.314416, + -0.0345101 + ], + [ + 109.3126756, + -0.0364724 + ], + [ + 109.3108848, + -0.0385538 + ], + [ + 109.309263, + -0.0404597 + ], + [ + 109.309269, + -0.0405873 + ], + [ + 109.3086713, + -0.0412407 + ], + [ + 109.3081506, + -0.0418803 + ], + [ + 109.3070832, + -0.0431184 + ], + [ + 109.3067206, + -0.0435529 + ], + [ + 109.3066903, + -0.0435829 + ], + [ + 109.3066007, + -0.0434958 + ], + [ + 109.3065531, + -0.0435273 + ], + [ + 109.3046603, + -0.0453686 + ], + [ + 109.3043516, + -0.0456 + ], + [ + 109.3045019, + -0.0457084 + ], + [ + 109.3048845, + -0.0459635 + ], + [ + 109.3049607, + -0.0460244 + ], + [ + 109.3049367, + -0.046056 + ], + [ + 109.3038693, + -0.0468619 + ], + [ + 109.3029612, + -0.0475211 + ], + [ + 109.3027671, + -0.0476561 + ], + [ + 109.3040139, + -0.0500091 + ], + [ + 109.3031836, + -0.0506953 + ], + [ + 109.3033423, + -0.0508132 + ], + [ + 109.3031457, + -0.051 + ], + [ + 109.3035642, + -0.051413 + ], + [ + 109.3032918, + -0.0516473 + ], + [ + 109.3019331, + -0.0527418 + ], + [ + 109.301136, + -0.0534152 + ], + [ + 109.3009135, + -0.0536497 + ], + [ + 109.3008492, + -0.0537107 + ], + [ + 109.300388, + -0.0542084 + ], + [ + 109.2998935, + -0.0547349 + ], + [ + 109.299323, + -0.055405 + ], + [ + 109.2988322, + -0.0559363 + ], + [ + 109.2993805, + -0.0565177 + ], + [ + 109.3010491, + -0.0583858 + ], + [ + 109.3020901, + -0.0596693 + ], + [ + 109.3022279, + -0.0598262 + ], + [ + 109.3022574, + -0.0599481 + ], + [ + 109.3021762, + -0.0600297 + ], + [ + 109.3021447, + -0.0600409 + ], + [ + 109.3020909, + -0.0601048 + ], + [ + 109.3027708, + -0.0610007 + ], + [ + 109.3028551, + -0.0611401 + ], + [ + 109.3029897, + -0.0612932 + ], + [ + 109.3030176, + -0.0613191 + ], + [ + 109.3031603, + -0.0614871 + ], + [ + 109.3030844, + -0.0615552 + ], + [ + 109.3030177, + -0.0615507 + ], + [ + 109.3028158, + -0.0617142 + ], + [ + 109.3027943, + -0.0617138 + ], + [ + 109.3026567, + -0.0618154 + ], + [ + 109.3027397, + -0.0619222 + ], + [ + 109.3035489, + -0.0629014 + ], + [ + 109.3035057, + -0.062943 + ], + [ + 109.3038028, + -0.063297 + ], + [ + 109.3038142, + -0.0633093 + ], + [ + 109.303901, + -0.0632202 + ], + [ + 109.3039174, + -0.0632362 + ], + [ + 109.3039418, + -0.06326 + ] + ] + ] + }, + "id": "relation/10625019" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625020", + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Jawi", + "place": "village", + "type": "boundary", + "wikidata": "Q19748645", + "wikipedia": "id:Sungaijawi, Pontianak Kota, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3020331, + -0.0266799 + ], + [ + 109.3012803, + -0.0270588 + ], + [ + 109.2997771, + -0.0280869 + ], + [ + 109.2979986, + -0.0293114 + ], + [ + 109.2969429, + -0.0300161 + ], + [ + 109.2954512, + -0.0311135 + ], + [ + 109.2946594, + -0.0317142 + ], + [ + 109.293007, + -0.0330657 + ], + [ + 109.291676, + -0.0342671 + ], + [ + 109.2901842, + -0.0357804 + ], + [ + 109.2894039, + -0.0365312 + ], + [ + 109.2877745, + -0.0381716 + ], + [ + 109.2855369, + -0.0403664 + ], + [ + 109.2847768, + -0.0410838 + ], + [ + 109.2854654, + -0.0418774 + ], + [ + 109.2912339, + -0.0479454 + ], + [ + 109.2928786, + -0.0494856 + ], + [ + 109.2954541, + -0.0519818 + ], + [ + 109.2969562, + -0.0536265 + ], + [ + 109.2967851, + -0.0537501 + ], + [ + 109.2976312, + -0.0546628 + ], + [ + 109.2988322, + -0.0559363 + ], + [ + 109.299323, + -0.055405 + ], + [ + 109.2998935, + -0.0547349 + ], + [ + 109.300388, + -0.0542084 + ], + [ + 109.3008492, + -0.0537107 + ], + [ + 109.3009135, + -0.0536497 + ], + [ + 109.301136, + -0.0534152 + ], + [ + 109.3019331, + -0.0527418 + ], + [ + 109.3032918, + -0.0516473 + ], + [ + 109.3035642, + -0.051413 + ], + [ + 109.3031457, + -0.051 + ], + [ + 109.3033423, + -0.0508132 + ], + [ + 109.3031836, + -0.0506953 + ], + [ + 109.3040139, + -0.0500091 + ], + [ + 109.3027671, + -0.0476561 + ], + [ + 109.3029612, + -0.0475211 + ], + [ + 109.3038693, + -0.0468619 + ], + [ + 109.3049367, + -0.046056 + ], + [ + 109.3049607, + -0.0460244 + ], + [ + 109.3048845, + -0.0459635 + ], + [ + 109.3045019, + -0.0457084 + ], + [ + 109.3043516, + -0.0456 + ], + [ + 109.3046603, + -0.0453686 + ], + [ + 109.3065531, + -0.0435273 + ], + [ + 109.3066007, + -0.0434958 + ], + [ + 109.3066903, + -0.0435829 + ], + [ + 109.3067206, + -0.0435529 + ], + [ + 109.3070832, + -0.0431184 + ], + [ + 109.3081506, + -0.0418803 + ], + [ + 109.3086713, + -0.0412407 + ], + [ + 109.309269, + -0.0405873 + ], + [ + 109.309263, + -0.0404597 + ], + [ + 109.3108848, + -0.0385538 + ], + [ + 109.3126756, + -0.0364724 + ], + [ + 109.314416, + -0.0345101 + ], + [ + 109.3158412, + -0.0330012 + ], + [ + 109.3157677, + -0.0328223 + ], + [ + 109.3156672, + -0.0324964 + ], + [ + 109.3156836, + -0.0287052 + ], + [ + 109.3188621, + -0.0283176 + ], + [ + 109.3187891, + -0.0276384 + ], + [ + 109.3195228, + -0.0275317 + ], + [ + 109.3202462, + -0.028413 + ], + [ + 109.32031, + -0.0285123 + ], + [ + 109.3209829, + -0.0280743 + ], + [ + 109.3220852, + -0.0273851 + ], + [ + 109.3228567, + -0.0269121 + ], + [ + 109.3228625, + -0.0268946 + ], + [ + 109.3233034, + -0.0266026 + ], + [ + 109.3233556, + -0.026696 + ], + [ + 109.3241272, + -0.0261704 + ], + [ + 109.3249394, + -0.0256623 + ], + [ + 109.3253686, + -0.0254112 + ], + [ + 109.3255021, + -0.0252885 + ], + [ + 109.3261656, + -0.0248548 + ], + [ + 109.3261419, + -0.0248065 + ], + [ + 109.3260888, + -0.0247265 + ], + [ + 109.325756, + -0.0240903 + ], + [ + 109.3257691, + -0.0236277 + ], + [ + 109.3257793, + -0.0235241 + ], + [ + 109.3258176, + -0.0234853 + ], + [ + 109.3258295, + -0.0233187 + ], + [ + 109.3258414, + -0.023245 + ], + [ + 109.3258818, + -0.0228666 + ], + [ + 109.3259651, + -0.0223622 + ], + [ + 109.3262126, + -0.0211189 + ], + [ + 109.3262959, + -0.020756 + ], + [ + 109.3265064, + -0.019784 + ], + [ + 109.3265534, + -0.0195531 + ], + [ + 109.3266373, + -0.0192009 + ], + [ + 109.3265648, + -0.0192132 + ], + [ + 109.3265613, + -0.0192301 + ], + [ + 109.3256757, + -0.0193886 + ], + [ + 109.3247348, + -0.0195849 + ], + [ + 109.323484, + -0.0197698 + ], + [ + 109.3208678, + -0.020278 + ], + [ + 109.3199613, + -0.0204628 + ], + [ + 109.3183433, + -0.0207632 + ], + [ + 109.3179575, + -0.0208518 + ], + [ + 109.3155091, + -0.0214447 + ], + [ + 109.3130764, + -0.0221263 + ], + [ + 109.3111831, + -0.022727 + ], + [ + 109.3093815, + -0.0234663 + ], + [ + 109.3076718, + -0.0241478 + ], + [ + 109.3066735, + -0.0245406 + ], + [ + 109.3049523, + -0.0252914 + ], + [ + 109.3030245, + -0.0261809 + ], + [ + 109.3020331, + -0.0266799 + ] + ] + ] + }, + "id": "relation/10625020" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625021", + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Beliung", + "place": "village", + "type": "boundary", + "wikidata": "Q19742044", + "wikipedia": "id:Sungaibeliung, Pontianak Barat, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.311816, + 0.0003522 + ], + [ + 109.3102666, + 0.0008174 + ], + [ + 109.3088671, + 0.001147 + ], + [ + 109.3075518, + 0.0014411 + ], + [ + 109.3074637, + 0.0014584 + ], + [ + 109.3062181, + 0.0016332 + ], + [ + 109.3045298, + 0.0018846 + ], + [ + 109.3030103, + 0.0020375 + ], + [ + 109.2990579, + 0.0020382 + ], + [ + 109.2989681, + 0.0020386 + ], + [ + 109.2972853, + 0.0023256 + ], + [ + 109.2962287, + 0.0025397 + ], + [ + 109.2951365, + 0.0029556 + ], + [ + 109.2939708, + 0.0034306 + ], + [ + 109.2920061, + 0.0043241 + ], + [ + 109.2909361, + 0.004795 + ], + [ + 109.2888059, + 0.0055106 + ], + [ + 109.2876731, + 0.0057957 + ], + [ + 109.2872372, + 0.0059046 + ], + [ + 109.2872431, + 0.0058348 + ], + [ + 109.287219, + 0.0052928 + ], + [ + 109.2872127, + 0.0052026 + ], + [ + 109.287164, + 0.0047531 + ], + [ + 109.2869677, + 0.0033198 + ], + [ + 109.2869032, + 0.0026901 + ], + [ + 109.2867996, + 0.0018829 + ], + [ + 109.2867818, + 0.0017943 + ], + [ + 109.2867727, + 0.0017044 + ], + [ + 109.2867781, + 0.0016144 + ], + [ + 109.2867974, + 0.0014346 + ], + [ + 109.2868389, + 0.0012588 + ], + [ + 109.2868574, + 0.001079 + ], + [ + 109.2868597, + 0.0008078 + ], + [ + 109.2868372, + 0.0005375 + ], + [ + 109.2867826, + 0.0001802 + ], + [ + 109.2867711, + 0 + ], + [ + 109.2865973, + -0.0016183 + ], + [ + 109.2865473, + -0.00234 + ], + [ + 109.2865525, + -0.0034251 + ], + [ + 109.2865934, + -0.0040568 + ], + [ + 109.286891, + -0.005932 + ], + [ + 109.2870362, + -0.0061501 + ], + [ + 109.2870704, + -0.0062792 + ], + [ + 109.2870619, + -0.0064341 + ], + [ + 109.2870678, + -0.0067275 + ], + [ + 109.2870394, + -0.0074126 + ], + [ + 109.2869764, + -0.0079056 + ], + [ + 109.2869507, + -0.0083359 + ], + [ + 109.286908, + -0.0085941 + ], + [ + 109.2869251, + -0.008749 + ], + [ + 109.2868994, + -0.0089727 + ], + [ + 109.2867274, + -0.0094967 + ], + [ + 109.2864207, + -0.010255 + ], + [ + 109.286207, + -0.0108832 + ], + [ + 109.2857027, + -0.0120879 + ], + [ + 109.2856343, + -0.0123633 + ], + [ + 109.2856498, + -0.0126656 + ], + [ + 109.2857454, + -0.013112 + ], + [ + 109.2858394, + -0.013439 + ], + [ + 109.2858907, + -0.0136542 + ], + [ + 109.2859078, + -0.0138263 + ], + [ + 109.2859078, + -0.0141361 + ], + [ + 109.2856599, + -0.0152462 + ], + [ + 109.2855317, + -0.0157884 + ], + [ + 109.2854719, + -0.01621 + ], + [ + 109.2853949, + -0.0165112 + ], + [ + 109.2853522, + -0.0167264 + ], + [ + 109.2853607, + -0.0168899 + ], + [ + 109.2853865, + -0.0170974 + ], + [ + 109.2854202, + -0.0172678 + ], + [ + 109.2855062, + -0.0175185 + ], + [ + 109.2856343, + -0.0180681 + ], + [ + 109.2856428, + -0.0182065 + ], + [ + 109.285693, + -0.0184926 + ], + [ + 109.286571, + -0.0181454 + ], + [ + 109.2900127, + -0.0166879 + ], + [ + 109.2920259, + -0.0158011 + ], + [ + 109.2945744, + -0.0147355 + ], + [ + 109.2965957, + -0.0139197 + ], + [ + 109.2981436, + -0.0133422 + ], + [ + 109.2981527, + -0.0140114 + ], + [ + 109.2981863, + -0.0143784 + ], + [ + 109.2982438, + -0.0148547 + ], + [ + 109.2983803, + -0.0158355 + ], + [ + 109.298435, + -0.0164039 + ], + [ + 109.2984313, + -0.0167225 + ], + [ + 109.2978944, + -0.0180724 + ], + [ + 109.2977313, + -0.018409 + ], + [ + 109.2993392, + -0.0190317 + ], + [ + 109.3009406, + -0.0195806 + ], + [ + 109.3018174, + -0.0191821 + ], + [ + 109.3018533, + -0.0189513 + ], + [ + 109.3019297, + -0.0186547 + ], + [ + 109.3019944, + -0.0183839 + ], + [ + 109.3019956, + -0.0183452 + ], + [ + 109.3020092, + -0.0182518 + ], + [ + 109.3020521, + -0.0180805 + ], + [ + 109.3021443, + -0.0176676 + ], + [ + 109.3021484, + -0.0176409 + ], + [ + 109.3021479, + -0.0175564 + ], + [ + 109.3021606, + -0.0171775 + ], + [ + 109.3021682, + -0.0171594 + ], + [ + 109.3031916, + -0.0167666 + ], + [ + 109.3038641, + -0.0165168 + ], + [ + 109.3050533, + -0.0160285 + ], + [ + 109.30513, + -0.0160035 + ], + [ + 109.3051578, + -0.0159993 + ], + [ + 109.3051771, + -0.0160035 + ], + [ + 109.3052482, + -0.0160394 + ], + [ + 109.3052661, + -0.0160566 + ], + [ + 109.3052825, + -0.0160808 + ], + [ + 109.3053403, + -0.01622 + ], + [ + 109.3054874, + -0.0165127 + ], + [ + 109.3055031, + -0.0165284 + ], + [ + 109.3055216, + -0.0165284 + ], + [ + 109.3055573, + -0.0165156 + ], + [ + 109.3055859, + -0.0164913 + ], + [ + 109.3056001, + -0.0164627 + ], + [ + 109.3056068, + -0.0164007 + ], + [ + 109.3056337, + -0.015967 + ], + [ + 109.3056892, + -0.0148655 + ], + [ + 109.3089975, + -0.0156868 + ], + [ + 109.3090344, + -0.0152527 + ], + [ + 109.3090729, + -0.0145678 + ], + [ + 109.3091027, + -0.0139289 + ], + [ + 109.3091256, + -0.0135967 + ], + [ + 109.3091806, + -0.0129025 + ], + [ + 109.309286, + -0.0120882 + ], + [ + 109.3093479, + -0.0117445 + ], + [ + 109.3093828, + -0.011639 + ], + [ + 109.3094289, + -0.0114739 + ], + [ + 109.309451, + -0.0113939 + ], + [ + 109.3095518, + -0.011101 + ], + [ + 109.3096159, + -0.0109003 + ], + [ + 109.3097649, + -0.0104159 + ], + [ + 109.3098199, + -0.0102683 + ], + [ + 109.3099138, + -0.0100584 + ], + [ + 109.3100192, + -0.0097932 + ], + [ + 109.31012, + -0.0095025 + ], + [ + 109.3101819, + -0.0093411 + ], + [ + 109.31023, + -0.0092027 + ], + [ + 109.3102575, + -0.0090897 + ], + [ + 109.3102918, + -0.0090182 + ], + [ + 109.3103858, + -0.0087483 + ], + [ + 109.3104064, + -0.008656 + ], + [ + 109.3104408, + -0.0085799 + ], + [ + 109.310466, + -0.0084461 + ], + [ + 109.3105278, + -0.0082454 + ], + [ + 109.3106264, + -0.007964 + ], + [ + 109.3106424, + -0.0078995 + ], + [ + 109.3106653, + -0.0078602 + ], + [ + 109.3106882, + -0.0076896 + ], + [ + 109.3107111, + -0.0075996 + ], + [ + 109.3107088, + -0.0075258 + ], + [ + 109.3107244, + -0.007392 + ], + [ + 109.3107272, + -0.0072836 + ], + [ + 109.3107249, + -0.0071175 + ], + [ + 109.3107157, + -0.0069999 + ], + [ + 109.3106683, + -0.0068296 + ], + [ + 109.3105943, + -0.006534 + ], + [ + 109.3105255, + -0.0061372 + ], + [ + 109.3105393, + -0.0060657 + ], + [ + 109.3105737, + -0.006008 + ], + [ + 109.3106607, + -0.0059181 + ], + [ + 109.3106561, + -0.0056944 + ], + [ + 109.3106699, + -0.0055952 + ], + [ + 109.3106997, + -0.0055075 + ], + [ + 109.3107386, + -0.005263 + ], + [ + 109.3107753, + -0.0051569 + ], + [ + 109.310844, + -0.005037 + ], + [ + 109.3108715, + -0.0049655 + ], + [ + 109.3108807, + -0.0048571 + ], + [ + 109.3109036, + -0.0048086 + ], + [ + 109.3109517, + -0.0047348 + ], + [ + 109.3109929, + -0.0046818 + ], + [ + 109.3110319, + -0.0046241 + ], + [ + 109.3110502, + -0.004571 + ], + [ + 109.3110777, + -0.0045295 + ], + [ + 109.31108, + -0.0044765 + ], + [ + 109.3111029, + -0.0044303 + ], + [ + 109.3111006, + -0.004398 + ], + [ + 109.3110892, + -0.0043427 + ], + [ + 109.3110617, + -0.0042458 + ], + [ + 109.3110502, + -0.0041905 + ], + [ + 109.3110571, + -0.0041236 + ], + [ + 109.3111373, + -0.0040336 + ], + [ + 109.3112244, + -0.0039529 + ], + [ + 109.3112381, + -0.003909 + ], + [ + 109.3112427, + -0.0038122 + ], + [ + 109.3112633, + -0.003766 + ], + [ + 109.3113, + -0.0037084 + ], + [ + 109.311426, + -0.0036276 + ], + [ + 109.3114535, + -0.0035769 + ], + [ + 109.3114535, + -0.0035215 + ], + [ + 109.3114741, + -0.0034754 + ], + [ + 109.3114947, + -0.0033186 + ], + [ + 109.3115153, + -0.0032494 + ], + [ + 109.3115314, + -0.0031502 + ], + [ + 109.3114947, + -0.0030925 + ], + [ + 109.3114649, + -0.0030233 + ], + [ + 109.3114512, + -0.0029357 + ], + [ + 109.3114535, + -0.0028549 + ], + [ + 109.3115062, + -0.002735 + ], + [ + 109.3116368, + -0.0024144 + ], + [ + 109.311717, + -0.002163 + ], + [ + 109.3117416, + -0.0020382 + ], + [ + 109.311742, + -0.0020148 + ], + [ + 109.311816, + 0.0003522 + ] + ] + ] + }, + "id": "relation/10625021" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625022", + "admin_level": "7", + "boundary": "administrative", + "name": "Pal Lima", + "place": "village", + "type": "boundary", + "wikidata": "Q19730077", + "wikipedia": "id:Pallima, Pontianak Barat, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3020331, + -0.0266799 + ], + [ + 109.3018215, + -0.0261943 + ], + [ + 109.3017596, + -0.0259002 + ], + [ + 109.3015648, + -0.0255348 + ], + [ + 109.3013877, + -0.0252674 + ], + [ + 109.3012107, + -0.0248931 + ], + [ + 109.3009451, + -0.0243137 + ], + [ + 109.3006795, + -0.0238324 + ], + [ + 109.3001749, + -0.022861 + ], + [ + 109.2997323, + -0.0221034 + ], + [ + 109.2993016, + -0.0223379 + ], + [ + 109.2985014, + -0.0208188 + ], + [ + 109.2975174, + -0.0204299 + ], + [ + 109.2969242, + -0.0201453 + ], + [ + 109.2974482, + -0.0189928 + ], + [ + 109.2975219, + -0.0188408 + ], + [ + 109.2977313, + -0.018409 + ], + [ + 109.2978944, + -0.0180724 + ], + [ + 109.2984313, + -0.0167225 + ], + [ + 109.298435, + -0.0164039 + ], + [ + 109.2983803, + -0.0158355 + ], + [ + 109.2982438, + -0.0148547 + ], + [ + 109.2981863, + -0.0143784 + ], + [ + 109.2981527, + -0.0140114 + ], + [ + 109.2981436, + -0.0133422 + ], + [ + 109.2965957, + -0.0139197 + ], + [ + 109.2945744, + -0.0147355 + ], + [ + 109.2920259, + -0.0158011 + ], + [ + 109.2900127, + -0.0166879 + ], + [ + 109.286571, + -0.0181454 + ], + [ + 109.285693, + -0.0184926 + ], + [ + 109.2840229, + -0.0191278 + ], + [ + 109.2831696, + -0.0194969 + ], + [ + 109.2824637, + -0.0198748 + ], + [ + 109.2819788, + -0.0201957 + ], + [ + 109.2816028, + -0.0204718 + ], + [ + 109.2810977, + -0.0209085 + ], + [ + 109.2806164, + -0.021369 + ], + [ + 109.2801262, + -0.0219905 + ], + [ + 109.279986, + -0.0221682 + ], + [ + 109.2792587, + -0.0231284 + ], + [ + 109.2788416, + -0.0237571 + ], + [ + 109.2780275, + -0.0248326 + ], + [ + 109.2774155, + -0.0256573 + ], + [ + 109.2768985, + -0.0263668 + ], + [ + 109.2753548, + -0.0284346 + ], + [ + 109.2746608, + -0.0293029 + ], + [ + 109.2741676, + -0.0298708 + ], + [ + 109.2817778, + -0.0423889 + ], + [ + 109.2820175, + -0.0426144 + ], + [ + 109.2823883, + -0.0432466 + ], + [ + 109.2824075, + -0.0433642 + ], + [ + 109.2837928, + -0.0419721 + ], + [ + 109.2844354, + -0.0414061 + ], + [ + 109.2847768, + -0.0410838 + ], + [ + 109.2855369, + -0.0403664 + ], + [ + 109.2877745, + -0.0381716 + ], + [ + 109.2894039, + -0.0365312 + ], + [ + 109.2901842, + -0.0357804 + ], + [ + 109.291676, + -0.0342671 + ], + [ + 109.293007, + -0.0330657 + ], + [ + 109.2946594, + -0.0317142 + ], + [ + 109.2954512, + -0.0311135 + ], + [ + 109.2969429, + -0.0300161 + ], + [ + 109.2979986, + -0.0293114 + ], + [ + 109.2997771, + -0.0280869 + ], + [ + 109.3012803, + -0.0270588 + ], + [ + 109.3020331, + -0.0266799 + ] + ] + ] + }, + "id": "relation/10625022" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625023", + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Jawi Dalam", + "place": "village", + "type": "boundary", + "wikidata": "Q19742119", + "wikipedia": "id:Sungaijawi Dalam, Pontianak Barat, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.2977313, + -0.018409 + ], + [ + 109.2975219, + -0.0188408 + ], + [ + 109.2974482, + -0.0189928 + ], + [ + 109.2969242, + -0.0201453 + ], + [ + 109.2975174, + -0.0204299 + ], + [ + 109.2985014, + -0.0208188 + ], + [ + 109.2993016, + -0.0223379 + ], + [ + 109.2997323, + -0.0221034 + ], + [ + 109.3001749, + -0.022861 + ], + [ + 109.3006795, + -0.0238324 + ], + [ + 109.3009451, + -0.0243137 + ], + [ + 109.3012107, + -0.0248931 + ], + [ + 109.3013877, + -0.0252674 + ], + [ + 109.3015648, + -0.0255348 + ], + [ + 109.3017596, + -0.0259002 + ], + [ + 109.3018215, + -0.0261943 + ], + [ + 109.3020331, + -0.0266799 + ], + [ + 109.3030245, + -0.0261809 + ], + [ + 109.3049523, + -0.0252914 + ], + [ + 109.3066735, + -0.0245406 + ], + [ + 109.3076718, + -0.0241478 + ], + [ + 109.3093815, + -0.0234663 + ], + [ + 109.3111831, + -0.022727 + ], + [ + 109.3130764, + -0.0221263 + ], + [ + 109.3155091, + -0.0214447 + ], + [ + 109.3179575, + -0.0208518 + ], + [ + 109.3183433, + -0.0207632 + ], + [ + 109.3199613, + -0.0204628 + ], + [ + 109.3208678, + -0.020278 + ], + [ + 109.323484, + -0.0197698 + ], + [ + 109.3247348, + -0.0195849 + ], + [ + 109.3256757, + -0.0193886 + ], + [ + 109.3265613, + -0.0192301 + ], + [ + 109.3265648, + -0.0192132 + ], + [ + 109.3266373, + -0.0192009 + ], + [ + 109.3278158, + -0.0190013 + ], + [ + 109.3298309, + -0.01863 + ], + [ + 109.3305057, + -0.0185213 + ], + [ + 109.3311534, + -0.0183674 + ], + [ + 109.3317202, + -0.0181862 + ], + [ + 109.3322388, + -0.0178681 + ], + [ + 109.3321855, + -0.0178061 + ], + [ + 109.3318485, + -0.0174715 + ], + [ + 109.3317419, + -0.0175496 + ], + [ + 109.3315417, + -0.01765 + ], + [ + 109.331028, + -0.0175902 + ], + [ + 109.3306069, + -0.0175933 + ], + [ + 109.3305234, + -0.0175768 + ], + [ + 109.3304748, + -0.0175589 + ], + [ + 109.3302082, + -0.0174389 + ], + [ + 109.3300254, + -0.0173285 + ], + [ + 109.3299398, + -0.0172828 + ], + [ + 109.3298636, + -0.01726 + ], + [ + 109.3297799, + -0.0172543 + ], + [ + 109.3297132, + -0.0172581 + ], + [ + 109.3296238, + -0.0172733 + ], + [ + 109.3294352, + -0.017345 + ], + [ + 109.3294305, + -0.0173412 + ], + [ + 109.3294219, + -0.0173421 + ], + [ + 109.329265, + -0.0174201 + ], + [ + 109.328575, + -0.0175711 + ], + [ + 109.3283532, + -0.0176327 + ], + [ + 109.3282919, + -0.0173705 + ], + [ + 109.3281542, + -0.0171954 + ], + [ + 109.3275296, + -0.0172837 + ], + [ + 109.3261862, + -0.0174631 + ], + [ + 109.3252673, + -0.0170083 + ], + [ + 109.3251893, + -0.0164524 + ], + [ + 109.3240017, + -0.0166702 + ], + [ + 109.3240017, + -0.016636 + ], + [ + 109.3233825, + -0.0166915 + ], + [ + 109.32334, + -0.0163584 + ], + [ + 109.3227844, + -0.0159656 + ], + [ + 109.3227717, + -0.0158333 + ], + [ + 109.3225469, + -0.0158503 + ], + [ + 109.3225342, + -0.0157522 + ], + [ + 109.3222898, + -0.0157901 + ], + [ + 109.3218174, + -0.015853 + ], + [ + 109.3215192, + -0.0162372 + ], + [ + 109.3210784, + -0.0159621 + ], + [ + 109.3209114, + -0.0158522 + ], + [ + 109.3208481, + -0.0158176 + ], + [ + 109.3207865, + -0.0158149 + ], + [ + 109.3207273, + -0.0157694 + ], + [ + 109.3206404, + -0.0157164 + ], + [ + 109.3205573, + -0.0156525 + ], + [ + 109.3205495, + -0.0156483 + ], + [ + 109.3205097, + -0.015651 + ], + [ + 109.3205031, + -0.0156486 + ], + [ + 109.3203827, + -0.0155549 + ], + [ + 109.3202868, + -0.0156889 + ], + [ + 109.3196349, + -0.0152887 + ], + [ + 109.3195236, + -0.0154288 + ], + [ + 109.318216, + -0.0154878 + ], + [ + 109.3172646, + -0.0155134 + ], + [ + 109.3171239, + -0.0155586 + ], + [ + 109.3163861, + -0.0158882 + ], + [ + 109.3160949, + -0.0153771 + ], + [ + 109.315953, + -0.0151415 + ], + [ + 109.3159321, + -0.0151158 + ], + [ + 109.3159017, + -0.0150996 + ], + [ + 109.3158807, + -0.0150977 + ], + [ + 109.3158531, + -0.0151025 + ], + [ + 109.3157655, + -0.0151586 + ], + [ + 109.3157513, + -0.0151625 + ], + [ + 109.3157169, + -0.0151538 + ], + [ + 109.3153834, + -0.0146785 + ], + [ + 109.3126002, + -0.0126861 + ], + [ + 109.3125097, + -0.0126159 + ], + [ + 109.3124455, + -0.0125766 + ], + [ + 109.3122956, + -0.0125183 + ], + [ + 109.3113869, + -0.0122037 + ], + [ + 109.3094587, + -0.0114822 + ], + [ + 109.3094289, + -0.0114739 + ], + [ + 109.3093828, + -0.011639 + ], + [ + 109.3093479, + -0.0117445 + ], + [ + 109.309286, + -0.0120882 + ], + [ + 109.3091806, + -0.0129025 + ], + [ + 109.3091256, + -0.0135967 + ], + [ + 109.3091027, + -0.0139289 + ], + [ + 109.3090729, + -0.0145678 + ], + [ + 109.3090344, + -0.0152527 + ], + [ + 109.3089975, + -0.0156868 + ], + [ + 109.3056892, + -0.0148655 + ], + [ + 109.3056337, + -0.015967 + ], + [ + 109.3056068, + -0.0164007 + ], + [ + 109.3056001, + -0.0164627 + ], + [ + 109.3055859, + -0.0164913 + ], + [ + 109.3055573, + -0.0165156 + ], + [ + 109.3055216, + -0.0165284 + ], + [ + 109.3055031, + -0.0165284 + ], + [ + 109.3054874, + -0.0165127 + ], + [ + 109.3053403, + -0.01622 + ], + [ + 109.3052825, + -0.0160808 + ], + [ + 109.3052661, + -0.0160566 + ], + [ + 109.3052482, + -0.0160394 + ], + [ + 109.3051771, + -0.0160035 + ], + [ + 109.3051578, + -0.0159993 + ], + [ + 109.30513, + -0.0160035 + ], + [ + 109.3050533, + -0.0160285 + ], + [ + 109.3038641, + -0.0165168 + ], + [ + 109.3031916, + -0.0167666 + ], + [ + 109.3021682, + -0.0171594 + ], + [ + 109.3021606, + -0.0171775 + ], + [ + 109.3021479, + -0.0175564 + ], + [ + 109.3021484, + -0.0176409 + ], + [ + 109.3021443, + -0.0176676 + ], + [ + 109.3020521, + -0.0180805 + ], + [ + 109.3020092, + -0.0182518 + ], + [ + 109.3019956, + -0.0183452 + ], + [ + 109.3019944, + -0.0183839 + ], + [ + 109.3019297, + -0.0186547 + ], + [ + 109.3018533, + -0.0189513 + ], + [ + 109.3018174, + -0.0191821 + ], + [ + 109.3009406, + -0.0195806 + ], + [ + 109.2993392, + -0.0190317 + ], + [ + 109.2977313, + -0.018409 + ] + ] + ] + }, + "id": "relation/10625023" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625024", + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Jawi Luar", + "place": "village", + "type": "boundary", + "wikidata": "Q12517820", + "wikipedia": "id:Sungaijawi Luar, Pontianak Barat, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3322388, + -0.0178681 + ], + [ + 109.332296, + -0.017833 + ], + [ + 109.3328178, + -0.0174255 + ], + [ + 109.3329617, + -0.0171809 + ], + [ + 109.3331866, + -0.0168458 + ], + [ + 109.3335225, + -0.0164315 + ], + [ + 109.3347632, + -0.0147765 + ], + [ + 109.3302446, + -0.0110535 + ], + [ + 109.3233285, + -0.0051419 + ], + [ + 109.3218891, + -0.0042186 + ], + [ + 109.3201467, + -0.0031008 + ], + [ + 109.3159294, + -0.0012995 + ], + [ + 109.3152322, + -0.0011241 + ], + [ + 109.3141567, + -0.0006571 + ], + [ + 109.3127499, + 0 + ], + [ + 109.311816, + 0.0003522 + ], + [ + 109.311742, + -0.0020148 + ], + [ + 109.3117416, + -0.0020382 + ], + [ + 109.311717, + -0.002163 + ], + [ + 109.3116368, + -0.0024144 + ], + [ + 109.3115062, + -0.002735 + ], + [ + 109.3114535, + -0.0028549 + ], + [ + 109.3114512, + -0.0029357 + ], + [ + 109.3114649, + -0.0030233 + ], + [ + 109.3114947, + -0.0030925 + ], + [ + 109.3115314, + -0.0031502 + ], + [ + 109.3115153, + -0.0032494 + ], + [ + 109.3114947, + -0.0033186 + ], + [ + 109.3114741, + -0.0034754 + ], + [ + 109.3114535, + -0.0035215 + ], + [ + 109.3114535, + -0.0035769 + ], + [ + 109.311426, + -0.0036276 + ], + [ + 109.3113, + -0.0037084 + ], + [ + 109.3112633, + -0.003766 + ], + [ + 109.3112427, + -0.0038122 + ], + [ + 109.3112381, + -0.003909 + ], + [ + 109.3112244, + -0.0039529 + ], + [ + 109.3111373, + -0.0040336 + ], + [ + 109.3110571, + -0.0041236 + ], + [ + 109.3110502, + -0.0041905 + ], + [ + 109.3110617, + -0.0042458 + ], + [ + 109.3110892, + -0.0043427 + ], + [ + 109.3111006, + -0.004398 + ], + [ + 109.3111029, + -0.0044303 + ], + [ + 109.31108, + -0.0044765 + ], + [ + 109.3110777, + -0.0045295 + ], + [ + 109.3110502, + -0.004571 + ], + [ + 109.3110319, + -0.0046241 + ], + [ + 109.3109929, + -0.0046818 + ], + [ + 109.3109517, + -0.0047348 + ], + [ + 109.3109036, + -0.0048086 + ], + [ + 109.3108807, + -0.0048571 + ], + [ + 109.3108715, + -0.0049655 + ], + [ + 109.310844, + -0.005037 + ], + [ + 109.3107753, + -0.0051569 + ], + [ + 109.3107386, + -0.005263 + ], + [ + 109.3106997, + -0.0055075 + ], + [ + 109.3106699, + -0.0055952 + ], + [ + 109.3106561, + -0.0056944 + ], + [ + 109.3106607, + -0.0059181 + ], + [ + 109.3105737, + -0.006008 + ], + [ + 109.3105393, + -0.0060657 + ], + [ + 109.3105255, + -0.0061372 + ], + [ + 109.3105943, + -0.006534 + ], + [ + 109.3106683, + -0.0068296 + ], + [ + 109.3107157, + -0.0069999 + ], + [ + 109.3107249, + -0.0071175 + ], + [ + 109.3107272, + -0.0072836 + ], + [ + 109.3107244, + -0.007392 + ], + [ + 109.3107088, + -0.0075258 + ], + [ + 109.3107111, + -0.0075996 + ], + [ + 109.3106882, + -0.0076896 + ], + [ + 109.3106653, + -0.0078602 + ], + [ + 109.3106424, + -0.0078995 + ], + [ + 109.3106264, + -0.007964 + ], + [ + 109.3105278, + -0.0082454 + ], + [ + 109.310466, + -0.0084461 + ], + [ + 109.3104408, + -0.0085799 + ], + [ + 109.3104064, + -0.008656 + ], + [ + 109.3103858, + -0.0087483 + ], + [ + 109.3102918, + -0.0090182 + ], + [ + 109.3102575, + -0.0090897 + ], + [ + 109.31023, + -0.0092027 + ], + [ + 109.3101819, + -0.0093411 + ], + [ + 109.31012, + -0.0095025 + ], + [ + 109.3100192, + -0.0097932 + ], + [ + 109.3099138, + -0.0100584 + ], + [ + 109.3098199, + -0.0102683 + ], + [ + 109.3097649, + -0.0104159 + ], + [ + 109.3096159, + -0.0109003 + ], + [ + 109.3095518, + -0.011101 + ], + [ + 109.309451, + -0.0113939 + ], + [ + 109.3094289, + -0.0114739 + ], + [ + 109.3094587, + -0.0114822 + ], + [ + 109.3113869, + -0.0122037 + ], + [ + 109.3122956, + -0.0125183 + ], + [ + 109.3124455, + -0.0125766 + ], + [ + 109.3125097, + -0.0126159 + ], + [ + 109.3126002, + -0.0126861 + ], + [ + 109.3153834, + -0.0146785 + ], + [ + 109.3157169, + -0.0151538 + ], + [ + 109.3157513, + -0.0151625 + ], + [ + 109.3157655, + -0.0151586 + ], + [ + 109.3158531, + -0.0151025 + ], + [ + 109.3158807, + -0.0150977 + ], + [ + 109.3159017, + -0.0150996 + ], + [ + 109.3159321, + -0.0151158 + ], + [ + 109.315953, + -0.0151415 + ], + [ + 109.3160949, + -0.0153771 + ], + [ + 109.3163861, + -0.0158882 + ], + [ + 109.3171239, + -0.0155586 + ], + [ + 109.3172646, + -0.0155134 + ], + [ + 109.318216, + -0.0154878 + ], + [ + 109.3195236, + -0.0154288 + ], + [ + 109.3196349, + -0.0152887 + ], + [ + 109.3202868, + -0.0156889 + ], + [ + 109.3203827, + -0.0155549 + ], + [ + 109.3205031, + -0.0156486 + ], + [ + 109.3205097, + -0.015651 + ], + [ + 109.3205495, + -0.0156483 + ], + [ + 109.3205573, + -0.0156525 + ], + [ + 109.3206404, + -0.0157164 + ], + [ + 109.3207273, + -0.0157694 + ], + [ + 109.3207865, + -0.0158149 + ], + [ + 109.3208481, + -0.0158176 + ], + [ + 109.3209114, + -0.0158522 + ], + [ + 109.3210784, + -0.0159621 + ], + [ + 109.3215192, + -0.0162372 + ], + [ + 109.3218174, + -0.015853 + ], + [ + 109.3222898, + -0.0157901 + ], + [ + 109.3225342, + -0.0157522 + ], + [ + 109.3225469, + -0.0158503 + ], + [ + 109.3227717, + -0.0158333 + ], + [ + 109.3227844, + -0.0159656 + ], + [ + 109.32334, + -0.0163584 + ], + [ + 109.3233825, + -0.0166915 + ], + [ + 109.3240017, + -0.016636 + ], + [ + 109.3240017, + -0.0166702 + ], + [ + 109.3251893, + -0.0164524 + ], + [ + 109.3252673, + -0.0170083 + ], + [ + 109.3261862, + -0.0174631 + ], + [ + 109.3275296, + -0.0172837 + ], + [ + 109.3281542, + -0.0171954 + ], + [ + 109.3282919, + -0.0173705 + ], + [ + 109.3283532, + -0.0176327 + ], + [ + 109.328575, + -0.0175711 + ], + [ + 109.329265, + -0.0174201 + ], + [ + 109.3294219, + -0.0173421 + ], + [ + 109.3294305, + -0.0173412 + ], + [ + 109.3294352, + -0.017345 + ], + [ + 109.3296238, + -0.0172733 + ], + [ + 109.3297132, + -0.0172581 + ], + [ + 109.3297799, + -0.0172543 + ], + [ + 109.3298636, + -0.01726 + ], + [ + 109.3299398, + -0.0172828 + ], + [ + 109.3300254, + -0.0173285 + ], + [ + 109.3302082, + -0.0174389 + ], + [ + 109.3304748, + -0.0175589 + ], + [ + 109.3305234, + -0.0175768 + ], + [ + 109.3306069, + -0.0175933 + ], + [ + 109.331028, + -0.0175902 + ], + [ + 109.3315417, + -0.01765 + ], + [ + 109.3317419, + -0.0175496 + ], + [ + 109.3318485, + -0.0174715 + ], + [ + 109.3321855, + -0.0178061 + ], + [ + 109.3322388, + -0.0178681 + ] + ] + ] + }, + "id": "relation/10625024" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625025", + "admin_level": "7", + "boundary": "administrative", + "name": "Batu Layang", + "place": "village", + "type": "boundary", + "wikidata": "Q12475235", + "wikipedia": "id:Batulayang, Pontianak Utara, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3218891, + -0.0042186 + ], + [ + 109.3233539, + -0.0017901 + ], + [ + 109.3233737, + -0.0017213 + ], + [ + 109.3233701, + -0.0016408 + ], + [ + 109.3233818, + -0.0016028 + ], + [ + 109.3234232, + -0.0015319 + ], + [ + 109.3234349, + -0.0014812 + ], + [ + 109.3234448, + -0.0013717 + ], + [ + 109.32346, + -0.0013048 + ], + [ + 109.3234636, + -0.0012532 + ], + [ + 109.3234825, + -0.0012161 + ], + [ + 109.3235771, + -0.001107 + ], + [ + 109.3236058, + -0.0010464 + ], + [ + 109.3236274, + -0.0009514 + ], + [ + 109.3236634, + -0.0008646 + ], + [ + 109.3236948, + -0.0008012 + ], + [ + 109.3237425, + -0.0007334 + ], + [ + 109.3238281, + -0.0006361 + ], + [ + 109.3239036, + -0.0005664 + ], + [ + 109.3240465, + -0.0004905 + ], + [ + 109.3241931, + -0.0004 + ], + [ + 109.3244719, + -0.0003112 + ], + [ + 109.3245823, + -0.0002466 + ], + [ + 109.3245942, + -0.0002131 + ], + [ + 109.3245942, + -0.0001825 + ], + [ + 109.3245688, + -0.0001372 + ], + [ + 109.3244739, + 0.0001403 + ], + [ + 109.3244604, + 0.0001703 + ], + [ + 109.3244536, + 0.0001972 + ], + [ + 109.3244382, + 0.0002233 + ], + [ + 109.3243618, + 0.0003227 + ], + [ + 109.3243275, + 0.0004207 + ], + [ + 109.3243275, + 0.0004322 + ], + [ + 109.3243422, + 0.0004774 + ], + [ + 109.3244377, + 0.0006095 + ], + [ + 109.3245915, + 0.0007266 + ], + [ + 109.3246432, + 0.0007992 + ], + [ + 109.3246579, + 0.000826 + ], + [ + 109.3246786, + 0.0008494 + ], + [ + 109.3247375, + 0.0008946 + ], + [ + 109.3247738, + 0.000929 + ], + [ + 109.324797, + 0.0009759 + ], + [ + 109.3248552, + 0.0011447 + ], + [ + 109.324875, + 0.0012242 + ], + [ + 109.3249725, + 0.0014146 + ], + [ + 109.3249681, + 0.0015439 + ], + [ + 109.3250155, + 0.0016647 + ], + [ + 109.3250339, + 0.0016932 + ], + [ + 109.3250723, + 0.0017318 + ], + [ + 109.3251703, + 0.0017695 + ], + [ + 109.3252343, + 0.0018256 + ], + [ + 109.325279, + 0.0019252 + ], + [ + 109.3252914, + 0.0019734 + ], + [ + 109.3253074, + 0.002016 + ], + [ + 109.3254388, + 0.0022189 + ], + [ + 109.325482, + 0.0022904 + ], + [ + 109.3255159, + 0.0023573 + ], + [ + 109.3255223, + 0.0023894 + ], + [ + 109.3255487, + 0.0024668 + ], + [ + 109.32562, + 0.0027758 + ], + [ + 109.3256938, + 0.0029741 + ], + [ + 109.325706, + 0.0030537 + ], + [ + 109.3257648, + 0.0031899 + ], + [ + 109.3258829, + 0.0033657 + ], + [ + 109.3258964, + 0.0033981 + ], + [ + 109.3259179, + 0.0035003 + ], + [ + 109.3259248, + 0.0035539 + ], + [ + 109.3259227, + 0.0036249 + ], + [ + 109.3258161, + 0.0039097 + ], + [ + 109.325784, + 0.0040989 + ], + [ + 109.325784, + 0.0041917 + ], + [ + 109.3258054, + 0.0044237 + ], + [ + 109.3258589, + 0.0046878 + ], + [ + 109.3259965, + 0.005162 + ], + [ + 109.3261321, + 0.0056046 + ], + [ + 109.3261804, + 0.0057811 + ], + [ + 109.3261698, + 0.0057935 + ], + [ + 109.326013, + 0.0063157 + ], + [ + 109.3259521, + 0.0065759 + ], + [ + 109.3258563, + 0.0068334 + ], + [ + 109.3258006, + 0.0069963 + ], + [ + 109.325766, + 0.0070782 + ], + [ + 109.3257474, + 0.0071377 + ], + [ + 109.32573, + 0.0072528 + ], + [ + 109.3257071, + 0.0073349 + ], + [ + 109.3257022, + 0.0076375 + ], + [ + 109.3255883, + 0.0082566 + ], + [ + 109.3255502, + 0.0086183 + ], + [ + 109.3254978, + 0.0090228 + ], + [ + 109.3254978, + 0.0091828 + ], + [ + 109.3255335, + 0.0096706 + ], + [ + 109.3255752, + 0.0100691 + ], + [ + 109.3256733, + 0.0107413 + ], + [ + 109.3257596, + 0.0113005 + ], + [ + 109.3258012, + 0.0116188 + ], + [ + 109.3258429, + 0.0118181 + ], + [ + 109.3259142, + 0.0123683 + ], + [ + 109.3259797, + 0.0128293 + ], + [ + 109.3260332, + 0.0133231 + ], + [ + 109.3262503, + 0.0149173 + ], + [ + 109.326303, + 0.0151863 + ], + [ + 109.326468, + 0.0164099 + ], + [ + 109.3265144, + 0.0168132 + ], + [ + 109.3265716, + 0.0171202 + ], + [ + 109.326568, + 0.0174021 + ], + [ + 109.3265573, + 0.0175021 + ], + [ + 109.3264895, + 0.0176662 + ], + [ + 109.3263217, + 0.0181481 + ], + [ + 109.3262981, + 0.0182469 + ], + [ + 109.3259768, + 0.0192065 + ], + [ + 109.3257222, + 0.0198711 + ], + [ + 109.3256152, + 0.0202608 + ], + [ + 109.3254664, + 0.0206653 + ], + [ + 109.325169, + 0.021626 + ], + [ + 109.3250471, + 0.0219948 + ], + [ + 109.3248567, + 0.0226105 + ], + [ + 109.3246872, + 0.0231369 + ], + [ + 109.3245682, + 0.0234373 + ], + [ + 109.3243421, + 0.024175 + ], + [ + 109.3240596, + 0.0251535 + ], + [ + 109.3238841, + 0.025683 + ], + [ + 109.3237592, + 0.026144 + ], + [ + 109.3233844, + 0.0273307 + ], + [ + 109.3228163, + 0.0291718 + ], + [ + 109.3227152, + 0.0295466 + ], + [ + 109.3225784, + 0.0299928 + ], + [ + 109.3223969, + 0.0306025 + ], + [ + 109.3222601, + 0.0310248 + ], + [ + 109.3218259, + 0.0327737 + ], + [ + 109.3217039, + 0.033324 + ], + [ + 109.3215493, + 0.0339546 + ], + [ + 109.3214689, + 0.0344126 + ], + [ + 109.3214035, + 0.0348558 + ], + [ + 109.3213982, + 0.0349248 + ], + [ + 109.3097594, + 0.0377872 + ], + [ + 109.3087415, + 0.0381168 + ], + [ + 109.3075042, + 0.0365847 + ], + [ + 109.3069516, + 0.0362024 + ], + [ + 109.3064506, + 0.0357025 + ], + [ + 109.3042403, + 0.0347293 + ], + [ + 109.30347, + 0.0338443 + ], + [ + 109.2994279, + 0.0322397 + ], + [ + 109.2983288, + 0.0309507 + ], + [ + 109.2979084, + 0.0302325 + ], + [ + 109.2976719, + 0.0297053 + ], + [ + 109.2968118, + 0.0271588 + ], + [ + 109.2960776, + 0.0252037 + ], + [ + 109.2956724, + 0.024062 + ], + [ + 109.2951035, + 0.0221229 + ], + [ + 109.2941818, + 0.0187902 + ], + [ + 109.2927546, + 0.0148399 + ], + [ + 109.2920294, + 0.0127309 + ], + [ + 109.2904892, + 0.0084894 + ], + [ + 109.2872372, + 0.0059046 + ], + [ + 109.2876731, + 0.0057957 + ], + [ + 109.2888059, + 0.0055106 + ], + [ + 109.2909361, + 0.004795 + ], + [ + 109.2920061, + 0.0043241 + ], + [ + 109.2939708, + 0.0034306 + ], + [ + 109.2951365, + 0.0029556 + ], + [ + 109.2962287, + 0.0025397 + ], + [ + 109.2972853, + 0.0023256 + ], + [ + 109.2989681, + 0.0020386 + ], + [ + 109.2990579, + 0.0020382 + ], + [ + 109.3030103, + 0.0020375 + ], + [ + 109.3045298, + 0.0018846 + ], + [ + 109.3062181, + 0.0016332 + ], + [ + 109.3074637, + 0.0014584 + ], + [ + 109.3075518, + 0.0014411 + ], + [ + 109.3088671, + 0.001147 + ], + [ + 109.3102666, + 0.0008174 + ], + [ + 109.311816, + 0.0003522 + ], + [ + 109.3127499, + 0 + ], + [ + 109.3141567, + -0.0006571 + ], + [ + 109.3152322, + -0.0011241 + ], + [ + 109.3159294, + -0.0012995 + ], + [ + 109.3201467, + -0.0031008 + ], + [ + 109.3218891, + -0.0042186 + ] + ] + ] + }, + "id": "relation/10625025" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625026", + "admin_level": "7", + "boundary": "administrative", + "name": "Siantan Hilir", + "place": "village", + "type": "boundary", + "wikidata": "Q12514210", + "wikipedia": "id:Siantan Hilir, Pontianak Utara, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3218891, + -0.0042186 + ], + [ + 109.3233285, + -0.0051419 + ], + [ + 109.3302446, + -0.0110535 + ], + [ + 109.3347632, + -0.0147765 + ], + [ + 109.3351802, + -0.0151202 + ], + [ + 109.3353888, + -0.015292 + ], + [ + 109.3354561, + -0.0153519 + ], + [ + 109.3376923, + -0.0173912 + ], + [ + 109.3388608, + -0.01622 + ], + [ + 109.3393994, + -0.0156335 + ], + [ + 109.3395284, + -0.0154661 + ], + [ + 109.3399615, + -0.0148808 + ], + [ + 109.3402328, + -0.014531 + ], + [ + 109.3405159, + -0.014155 + ], + [ + 109.3407848, + -0.0138171 + ], + [ + 109.3409652, + -0.0136006 + ], + [ + 109.3410423, + -0.0135164 + ], + [ + 109.341235, + -0.0132651 + ], + [ + 109.3414006, + -0.0130567 + ], + [ + 109.3415919, + -0.0128286 + ], + [ + 109.3418774, + -0.0124271 + ], + [ + 109.3421243, + -0.0121296 + ], + [ + 109.3423639, + -0.0118115 + ], + [ + 109.3426638, + -0.0114867 + ], + [ + 109.342935, + -0.011087 + ], + [ + 109.3434891, + -0.0100713 + ], + [ + 109.3438853, + -0.0093218 + ], + [ + 109.3441892, + -0.0086394 + ], + [ + 109.3443077, + -0.0084167 + ], + [ + 109.3443905, + -0.0082525 + ], + [ + 109.3443948, + -0.0081983 + ], + [ + 109.3443862, + -0.008174 + ], + [ + 109.344362, + -0.0081569 + ], + [ + 109.3442592, + -0.0081226 + ], + [ + 109.3441107, + -0.0080617 + ], + [ + 109.3439375, + -0.0079818 + ], + [ + 109.3439089, + -0.0079665 + ], + [ + 109.3438918, + -0.0079399 + ], + [ + 109.3438899, + -0.0078847 + ], + [ + 109.3439908, + -0.0075934 + ], + [ + 109.3440536, + -0.0073041 + ], + [ + 109.3440726, + -0.007247 + ], + [ + 109.3441278, + -0.0071556 + ], + [ + 109.3442554, + -0.0069024 + ], + [ + 109.3442873, + -0.0068295 + ], + [ + 109.3443829, + -0.0066112 + ], + [ + 109.3444876, + -0.006358 + ], + [ + 109.3446494, + -0.0060021 + ], + [ + 109.3447034, + -0.0058416 + ], + [ + 109.345171, + -0.0047609 + ], + [ + 109.3454718, + -0.0040128 + ], + [ + 109.3456355, + -0.0036302 + ], + [ + 109.345822, + -0.0031695 + ], + [ + 109.3459781, + -0.0028383 + ], + [ + 109.3461532, + -0.0024481 + ], + [ + 109.3463246, + -0.0020997 + ], + [ + 109.3466463, + -0.0015077 + ], + [ + 109.346829, + -0.0011213 + ], + [ + 109.3468785, + -0.0009957 + ], + [ + 109.3469394, + -0.0007901 + ], + [ + 109.347027, + -0.0006568 + ], + [ + 109.3472649, + -0.0002571 + ], + [ + 109.3474248, + 0.0000037 + ], + [ + 109.3476913, + 0.0004187 + ], + [ + 109.3478303, + 0.0006833 + ], + [ + 109.3478931, + 0.0008127 + ], + [ + 109.348013, + 0.0010792 + ], + [ + 109.3481406, + 0.0013 + ], + [ + 109.3483747, + 0.0015875 + ], + [ + 109.3485803, + 0.0018597 + ], + [ + 109.3489915, + 0.0023337 + ], + [ + 109.3494312, + 0.0028743 + ], + [ + 109.3496082, + 0.0030437 + ], + [ + 109.349791, + 0.003255 + ], + [ + 109.3499053, + 0.0034716 + ], + [ + 109.34991, + 0.0035335 + ], + [ + 109.349891, + 0.0035596 + ], + [ + 109.3498339, + 0.0036001 + ], + [ + 109.3496388, + 0.0036453 + ], + [ + 109.349546, + 0.0036738 + ], + [ + 109.3495055, + 0.0036976 + ], + [ + 109.3494746, + 0.0037333 + ], + [ + 109.3494555, + 0.0037809 + ], + [ + 109.3494532, + 0.0038713 + ], + [ + 109.3494984, + 0.0042283 + ], + [ + 109.3495667, + 0.0052521 + ], + [ + 109.3495952, + 0.0055234 + ], + [ + 109.3497285, + 0.0058898 + ], + [ + 109.3497903, + 0.0062277 + ], + [ + 109.3497475, + 0.0066513 + ], + [ + 109.3496285, + 0.0073889 + ], + [ + 109.3495743, + 0.0076107 + ], + [ + 109.3494697, + 0.0077487 + ], + [ + 109.3492365, + 0.007882 + ], + [ + 109.3490176, + 0.0079677 + ], + [ + 109.3482085, + 0.0084245 + ], + [ + 109.347785, + 0.0087053 + ], + [ + 109.3477219, + 0.0087552 + ], + [ + 109.347916, + 0.0108484 + ], + [ + 109.3479666, + 0.0131743 + ], + [ + 109.3480447, + 0.0162888 + ], + [ + 109.3480484, + 0.0164222 + ], + [ + 109.3479719, + 0.0165544 + ], + [ + 109.3478827, + 0.0168161 + ], + [ + 109.3478113, + 0.016947 + ], + [ + 109.3474484, + 0.0170778 + ], + [ + 109.3470053, + 0.0172272 + ], + [ + 109.3468625, + 0.0173021 + ], + [ + 109.3467661, + 0.0173806 + ], + [ + 109.3467162, + 0.0174734 + ], + [ + 109.3466983, + 0.0176305 + ], + [ + 109.3466876, + 0.0179196 + ], + [ + 109.3467162, + 0.0180909 + ], + [ + 109.3468125, + 0.0184193 + ], + [ + 109.3468911, + 0.0190225 + ], + [ + 109.3469089, + 0.0195507 + ], + [ + 109.3468949, + 0.0197067 + ], + [ + 109.346877, + 0.0197573 + ], + [ + 109.3468146, + 0.0198049 + ], + [ + 109.3467194, + 0.0198257 + ], + [ + 109.3464487, + 0.0199417 + ], + [ + 109.3463565, + 0.0199863 + ], + [ + 109.3462613, + 0.0200815 + ], + [ + 109.3462554, + 0.0202213 + ], + [ + 109.3463059, + 0.0206139 + ], + [ + 109.3464963, + 0.0217977 + ], + [ + 109.3465647, + 0.0221826 + ], + [ + 109.3466272, + 0.0224443 + ], + [ + 109.346711, + 0.022643 + ], + [ + 109.3468205, + 0.0229333 + ], + [ + 109.3484619, + 0.0279787 + ], + [ + 109.3336119, + 0.0319211 + ], + [ + 109.3213982, + 0.0349248 + ], + [ + 109.3214035, + 0.0348558 + ], + [ + 109.3214689, + 0.0344126 + ], + [ + 109.3215493, + 0.0339546 + ], + [ + 109.3217039, + 0.033324 + ], + [ + 109.3218259, + 0.0327737 + ], + [ + 109.3222601, + 0.0310248 + ], + [ + 109.3223969, + 0.0306025 + ], + [ + 109.3225784, + 0.0299928 + ], + [ + 109.3227152, + 0.0295466 + ], + [ + 109.3228163, + 0.0291718 + ], + [ + 109.3233844, + 0.0273307 + ], + [ + 109.3237592, + 0.026144 + ], + [ + 109.3238841, + 0.025683 + ], + [ + 109.3240596, + 0.0251535 + ], + [ + 109.3243421, + 0.024175 + ], + [ + 109.3245682, + 0.0234373 + ], + [ + 109.3246872, + 0.0231369 + ], + [ + 109.3248567, + 0.0226105 + ], + [ + 109.3250471, + 0.0219948 + ], + [ + 109.325169, + 0.021626 + ], + [ + 109.3254664, + 0.0206653 + ], + [ + 109.3256152, + 0.0202608 + ], + [ + 109.3257222, + 0.0198711 + ], + [ + 109.3259768, + 0.0192065 + ], + [ + 109.3262981, + 0.0182469 + ], + [ + 109.3263217, + 0.0181481 + ], + [ + 109.3264895, + 0.0176662 + ], + [ + 109.3265573, + 0.0175021 + ], + [ + 109.326568, + 0.0174021 + ], + [ + 109.3265716, + 0.0171202 + ], + [ + 109.3265144, + 0.0168132 + ], + [ + 109.326468, + 0.0164099 + ], + [ + 109.326303, + 0.0151863 + ], + [ + 109.3262503, + 0.0149173 + ], + [ + 109.3260332, + 0.0133231 + ], + [ + 109.3259797, + 0.0128293 + ], + [ + 109.3259142, + 0.0123683 + ], + [ + 109.3258429, + 0.0118181 + ], + [ + 109.3258012, + 0.0116188 + ], + [ + 109.3257596, + 0.0113005 + ], + [ + 109.3256733, + 0.0107413 + ], + [ + 109.3255752, + 0.0100691 + ], + [ + 109.3255335, + 0.0096706 + ], + [ + 109.3254978, + 0.0091828 + ], + [ + 109.3254978, + 0.0090228 + ], + [ + 109.3255502, + 0.0086183 + ], + [ + 109.3255883, + 0.0082566 + ], + [ + 109.3257022, + 0.0076375 + ], + [ + 109.3257071, + 0.0073349 + ], + [ + 109.32573, + 0.0072528 + ], + [ + 109.3257474, + 0.0071377 + ], + [ + 109.325766, + 0.0070782 + ], + [ + 109.3258006, + 0.0069963 + ], + [ + 109.3258563, + 0.0068334 + ], + [ + 109.3259521, + 0.0065759 + ], + [ + 109.326013, + 0.0063157 + ], + [ + 109.3261698, + 0.0057935 + ], + [ + 109.3261804, + 0.0057811 + ], + [ + 109.3261321, + 0.0056046 + ], + [ + 109.3259965, + 0.005162 + ], + [ + 109.3258589, + 0.0046878 + ], + [ + 109.3258054, + 0.0044237 + ], + [ + 109.325784, + 0.0041917 + ], + [ + 109.325784, + 0.0040989 + ], + [ + 109.3258161, + 0.0039097 + ], + [ + 109.3259227, + 0.0036249 + ], + [ + 109.3259248, + 0.0035539 + ], + [ + 109.3259179, + 0.0035003 + ], + [ + 109.3258964, + 0.0033981 + ], + [ + 109.3258829, + 0.0033657 + ], + [ + 109.3257648, + 0.0031899 + ], + [ + 109.325706, + 0.0030537 + ], + [ + 109.3256938, + 0.0029741 + ], + [ + 109.32562, + 0.0027758 + ], + [ + 109.3255487, + 0.0024668 + ], + [ + 109.3255223, + 0.0023894 + ], + [ + 109.3255159, + 0.0023573 + ], + [ + 109.325482, + 0.0022904 + ], + [ + 109.3254388, + 0.0022189 + ], + [ + 109.3253074, + 0.002016 + ], + [ + 109.3252914, + 0.0019734 + ], + [ + 109.325279, + 0.0019252 + ], + [ + 109.3252343, + 0.0018256 + ], + [ + 109.3251703, + 0.0017695 + ], + [ + 109.3250723, + 0.0017318 + ], + [ + 109.3250339, + 0.0016932 + ], + [ + 109.3250155, + 0.0016647 + ], + [ + 109.3249681, + 0.0015439 + ], + [ + 109.3249725, + 0.0014146 + ], + [ + 109.324875, + 0.0012242 + ], + [ + 109.3248552, + 0.0011447 + ], + [ + 109.324797, + 0.0009759 + ], + [ + 109.3247738, + 0.000929 + ], + [ + 109.3247375, + 0.0008946 + ], + [ + 109.3246786, + 0.0008494 + ], + [ + 109.3246579, + 0.000826 + ], + [ + 109.3246432, + 0.0007992 + ], + [ + 109.3245915, + 0.0007266 + ], + [ + 109.3244377, + 0.0006095 + ], + [ + 109.3243422, + 0.0004774 + ], + [ + 109.3243275, + 0.0004322 + ], + [ + 109.3243275, + 0.0004207 + ], + [ + 109.3243618, + 0.0003227 + ], + [ + 109.3244382, + 0.0002233 + ], + [ + 109.3244536, + 0.0001972 + ], + [ + 109.3244604, + 0.0001703 + ], + [ + 109.3244739, + 0.0001403 + ], + [ + 109.3245688, + -0.0001372 + ], + [ + 109.3245942, + -0.0001825 + ], + [ + 109.3245942, + -0.0002131 + ], + [ + 109.3245823, + -0.0002466 + ], + [ + 109.3244719, + -0.0003112 + ], + [ + 109.3241931, + -0.0004 + ], + [ + 109.3240465, + -0.0004905 + ], + [ + 109.3239036, + -0.0005664 + ], + [ + 109.3238281, + -0.0006361 + ], + [ + 109.3237425, + -0.0007334 + ], + [ + 109.3236948, + -0.0008012 + ], + [ + 109.3236634, + -0.0008646 + ], + [ + 109.3236274, + -0.0009514 + ], + [ + 109.3236058, + -0.0010464 + ], + [ + 109.3235771, + -0.001107 + ], + [ + 109.3234825, + -0.0012161 + ], + [ + 109.3234636, + -0.0012532 + ], + [ + 109.32346, + -0.0013048 + ], + [ + 109.3234448, + -0.0013717 + ], + [ + 109.3234349, + -0.0014812 + ], + [ + 109.3234232, + -0.0015319 + ], + [ + 109.3233818, + -0.0016028 + ], + [ + 109.3233701, + -0.0016408 + ], + [ + 109.3233737, + -0.0017213 + ], + [ + 109.3233539, + -0.0017901 + ], + [ + 109.3218891, + -0.0042186 + ] + ] + ] + }, + "id": "relation/10625026" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625027", + "admin_level": "7", + "boundary": "administrative", + "name": "Siantan Tengah", + "place": "village", + "type": "boundary", + "wikidata": "Q12514211", + "wikipedia": "id:Siantan Tengah, Pontianak Utara, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3483183, + -0.0222042 + ], + [ + 109.3496218, + -0.0220307 + ], + [ + 109.3494611, + -0.0208366 + ], + [ + 109.3493815, + -0.0202383 + ], + [ + 109.3493911, + -0.0196433 + ], + [ + 109.3494476, + -0.0192339 + ], + [ + 109.3494373, + -0.0187698 + ], + [ + 109.3494652, + -0.0186633 + ], + [ + 109.3495023, + -0.0183678 + ], + [ + 109.3495295, + -0.0179709 + ], + [ + 109.3495509, + -0.0177739 + ], + [ + 109.3495951, + -0.0176083 + ], + [ + 109.3496622, + -0.0174212 + ], + [ + 109.3498119, + -0.0170562 + ], + [ + 109.3499547, + -0.0167618 + ], + [ + 109.3500945, + -0.016503 + ], + [ + 109.3502343, + -0.016158 + ], + [ + 109.3503979, + -0.015807 + ], + [ + 109.3504378, + -0.015671 + ], + [ + 109.3505425, + -0.0154369 + ], + [ + 109.3505692, + -0.0153436 + ], + [ + 109.3505863, + -0.0153208 + ], + [ + 109.3506168, + -0.0153189 + ], + [ + 109.3506716, + -0.0153228 + ], + [ + 109.3510536, + -0.0154212 + ], + [ + 109.3511935, + -0.0151818 + ], + [ + 109.3512716, + -0.0149553 + ], + [ + 109.3513001, + -0.0146926 + ], + [ + 109.351363, + -0.0143728 + ], + [ + 109.3514048, + -0.0141082 + ], + [ + 109.3514315, + -0.0136114 + ], + [ + 109.3514524, + -0.0135904 + ], + [ + 109.3515533, + -0.0135714 + ], + [ + 109.3515838, + -0.0135238 + ], + [ + 109.3516066, + -0.0133791 + ], + [ + 109.351639, + -0.0132497 + ], + [ + 109.3516409, + -0.0130822 + ], + [ + 109.3516504, + -0.012947 + ], + [ + 109.3516523, + -0.0128366 + ], + [ + 109.3517018, + -0.0128138 + ], + [ + 109.351797, + -0.0128176 + ], + [ + 109.3520026, + -0.0128766 + ], + [ + 109.3522519, + -0.0130574 + ], + [ + 109.3524632, + -0.0131945 + ], + [ + 109.3524899, + -0.0132021 + ], + [ + 109.3525146, + -0.0131964 + ], + [ + 109.3525603, + -0.0131431 + ], + [ + 109.3528763, + -0.0126824 + ], + [ + 109.35304, + -0.0124768 + ], + [ + 109.3532741, + -0.0121723 + ], + [ + 109.3534493, + -0.0119248 + ], + [ + 109.353613, + -0.0117116 + ], + [ + 109.3536168, + -0.0116754 + ], + [ + 109.3535978, + -0.0116526 + ], + [ + 109.3533332, + -0.0114756 + ], + [ + 109.3533065, + -0.0114527 + ], + [ + 109.3532913, + -0.0114223 + ], + [ + 109.3532932, + -0.0114032 + ], + [ + 109.353415, + -0.0112129 + ], + [ + 109.3535882, + -0.0109178 + ], + [ + 109.3544646, + -0.0092841 + ], + [ + 109.3546038, + -0.0090128 + ], + [ + 109.3544886, + -0.0089381 + ], + [ + 109.3533607, + -0.0085054 + ], + [ + 109.3546598, + -0.006844 + ], + [ + 109.3551292, + -0.0070428 + ], + [ + 109.3551958, + -0.0070771 + ], + [ + 109.3552415, + -0.0070885 + ], + [ + 109.3553043, + -0.0070942 + ], + [ + 109.3553253, + -0.0070885 + ], + [ + 109.3553596, + -0.0070695 + ], + [ + 109.3553767, + -0.0070409 + ], + [ + 109.3553729, + -0.0069933 + ], + [ + 109.3553596, + -0.0069457 + ], + [ + 109.3553538, + -0.0068772 + ], + [ + 109.3553748, + -0.0067268 + ], + [ + 109.3553957, + -0.006487 + ], + [ + 109.3553976, + -0.0063119 + ], + [ + 109.3553866, + -0.0061876 + ], + [ + 109.3551444, + -0.0060263 + ], + [ + 109.3550055, + -0.0058893 + ], + [ + 109.3547675, + -0.0056856 + ], + [ + 109.3544896, + -0.0054914 + ], + [ + 109.3541774, + -0.0052154 + ], + [ + 109.3538748, + -0.004966 + ], + [ + 109.3537073, + -0.0048137 + ], + [ + 109.3534693, + -0.0046329 + ], + [ + 109.3531971, + -0.0043835 + ], + [ + 109.3529839, + -0.004256 + ], + [ + 109.3528659, + -0.0041399 + ], + [ + 109.3528754, + -0.0040162 + ], + [ + 109.3528966, + -0.0037843 + ], + [ + 109.3531265, + -0.001719 + ], + [ + 109.3531206, + -0.0014277 + ], + [ + 109.3531563, + -0.0009608 + ], + [ + 109.3531592, + -0.0006604 + ], + [ + 109.353183, + -0.0005295 + ], + [ + 109.3532175, + -0.0000706 + ], + [ + 109.3532651, + 0.0001978 + ], + [ + 109.3533527, + 0.0005633 + ], + [ + 109.3534136, + 0.0008907 + ], + [ + 109.3534183, + 0.0009023 + ], + [ + 109.3536109, + 0.0026318 + ], + [ + 109.354861, + 0.0043152 + ], + [ + 109.3549432, + 0.0044669 + ], + [ + 109.3550431, + 0.0046984 + ], + [ + 109.3552477, + 0.0050624 + ], + [ + 109.3556617, + 0.0058477 + ], + [ + 109.3557351, + 0.0060386 + ], + [ + 109.3557886, + 0.0061612 + ], + [ + 109.3558921, + 0.0063539 + ], + [ + 109.3560556, + 0.0066708 + ], + [ + 109.3561388, + 0.0071205 + ], + [ + 109.3561786, + 0.0074624 + ], + [ + 109.3561801, + 0.007558 + ], + [ + 109.3562, + 0.0076994 + ], + [ + 109.3562871, + 0.0080349 + ], + [ + 109.3564606, + 0.0086478 + ], + [ + 109.3565555, + 0.0090514 + ], + [ + 109.3570903, + 0.0139918 + ], + [ + 109.3570746, + 0.0142122 + ], + [ + 109.3531851, + 0.0151702 + ], + [ + 109.3480484, + 0.0164222 + ], + [ + 109.3480447, + 0.0162888 + ], + [ + 109.3479666, + 0.0131743 + ], + [ + 109.347916, + 0.0108484 + ], + [ + 109.3477219, + 0.0087552 + ], + [ + 109.347785, + 0.0087053 + ], + [ + 109.3482085, + 0.0084245 + ], + [ + 109.3490176, + 0.0079677 + ], + [ + 109.3492365, + 0.007882 + ], + [ + 109.3494697, + 0.0077487 + ], + [ + 109.3495743, + 0.0076107 + ], + [ + 109.3496285, + 0.0073889 + ], + [ + 109.3497475, + 0.0066513 + ], + [ + 109.3497903, + 0.0062277 + ], + [ + 109.3497285, + 0.0058898 + ], + [ + 109.3495952, + 0.0055234 + ], + [ + 109.3495667, + 0.0052521 + ], + [ + 109.3494984, + 0.0042283 + ], + [ + 109.3494532, + 0.0038713 + ], + [ + 109.3494555, + 0.0037809 + ], + [ + 109.3494746, + 0.0037333 + ], + [ + 109.3495055, + 0.0036976 + ], + [ + 109.349546, + 0.0036738 + ], + [ + 109.3496388, + 0.0036453 + ], + [ + 109.3498339, + 0.0036001 + ], + [ + 109.349891, + 0.0035596 + ], + [ + 109.34991, + 0.0035335 + ], + [ + 109.3499053, + 0.0034716 + ], + [ + 109.349791, + 0.003255 + ], + [ + 109.3496082, + 0.0030437 + ], + [ + 109.3494312, + 0.0028743 + ], + [ + 109.3489915, + 0.0023337 + ], + [ + 109.3485803, + 0.0018597 + ], + [ + 109.3483747, + 0.0015875 + ], + [ + 109.3481406, + 0.0013 + ], + [ + 109.348013, + 0.0010792 + ], + [ + 109.3478931, + 0.0008127 + ], + [ + 109.3478303, + 0.0006833 + ], + [ + 109.3476913, + 0.0004187 + ], + [ + 109.3474248, + 0.0000037 + ], + [ + 109.3472649, + -0.0002571 + ], + [ + 109.347027, + -0.0006568 + ], + [ + 109.3469394, + -0.0007901 + ], + [ + 109.3468785, + -0.0009957 + ], + [ + 109.346829, + -0.0011213 + ], + [ + 109.3466463, + -0.0015077 + ], + [ + 109.3463246, + -0.0020997 + ], + [ + 109.3461532, + -0.0024481 + ], + [ + 109.3459781, + -0.0028383 + ], + [ + 109.345822, + -0.0031695 + ], + [ + 109.3456355, + -0.0036302 + ], + [ + 109.3454718, + -0.0040128 + ], + [ + 109.345171, + -0.0047609 + ], + [ + 109.3447034, + -0.0058416 + ], + [ + 109.3446494, + -0.0060021 + ], + [ + 109.3444876, + -0.006358 + ], + [ + 109.3443829, + -0.0066112 + ], + [ + 109.3442873, + -0.0068295 + ], + [ + 109.3442554, + -0.0069024 + ], + [ + 109.3441278, + -0.0071556 + ], + [ + 109.3440726, + -0.007247 + ], + [ + 109.3440536, + -0.0073041 + ], + [ + 109.3439908, + -0.0075934 + ], + [ + 109.3438899, + -0.0078847 + ], + [ + 109.3438918, + -0.0079399 + ], + [ + 109.3439089, + -0.0079665 + ], + [ + 109.3439375, + -0.0079818 + ], + [ + 109.3441107, + -0.0080617 + ], + [ + 109.3442592, + -0.0081226 + ], + [ + 109.344362, + -0.0081569 + ], + [ + 109.3443862, + -0.008174 + ], + [ + 109.3443948, + -0.0081983 + ], + [ + 109.3443905, + -0.0082525 + ], + [ + 109.3443077, + -0.0084167 + ], + [ + 109.3441892, + -0.0086394 + ], + [ + 109.3438853, + -0.0093218 + ], + [ + 109.3434891, + -0.0100713 + ], + [ + 109.342935, + -0.011087 + ], + [ + 109.3426638, + -0.0114867 + ], + [ + 109.3423639, + -0.0118115 + ], + [ + 109.3421243, + -0.0121296 + ], + [ + 109.3418774, + -0.0124271 + ], + [ + 109.3415919, + -0.0128286 + ], + [ + 109.3414006, + -0.0130567 + ], + [ + 109.341235, + -0.0132651 + ], + [ + 109.3410423, + -0.0135164 + ], + [ + 109.3409652, + -0.0136006 + ], + [ + 109.3407848, + -0.0138171 + ], + [ + 109.3405159, + -0.014155 + ], + [ + 109.3402328, + -0.014531 + ], + [ + 109.3399615, + -0.0148808 + ], + [ + 109.3395284, + -0.0154661 + ], + [ + 109.3393994, + -0.0156335 + ], + [ + 109.3388608, + -0.01622 + ], + [ + 109.3376923, + -0.0173912 + ], + [ + 109.3382402, + -0.0178908 + ], + [ + 109.3408488, + -0.0202696 + ], + [ + 109.3428486, + -0.0218527 + ], + [ + 109.3434614, + -0.0223379 + ], + [ + 109.3435265, + -0.0223999 + ], + [ + 109.3440808, + -0.0229924 + ], + [ + 109.3441358, + -0.0230634 + ], + [ + 109.3441986, + -0.0229965 + ], + [ + 109.3453741, + -0.0225466 + ], + [ + 109.3454627, + -0.0225339 + ], + [ + 109.3473387, + -0.0223345 + ], + [ + 109.3483183, + -0.0222042 + ] + ] + ] + }, + "id": "relation/10625027" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625028", + "admin_level": "7", + "boundary": "administrative", + "name": "Siantan Hulu", + "place": "village", + "type": "boundary", + "wikidata": "Q19733439", + "wikipedia": "id:Siantan Hulu, Pontianak Utara, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.362974, + -0.0198291 + ], + [ + 109.3638714, + -0.0197918 + ], + [ + 109.3653059, + -0.0198814 + ], + [ + 109.3687655, + -0.0204369 + ], + [ + 109.3688531, + -0.0204563 + ], + [ + 109.3709272, + -0.0210488 + ], + [ + 109.3729755, + -0.021726 + ], + [ + 109.3751719, + -0.0225256 + ], + [ + 109.3752554, + -0.0225587 + ], + [ + 109.3754204, + -0.0226324 + ], + [ + 109.3760728, + -0.0231005 + ], + [ + 109.3767856, + -0.0219637 + ], + [ + 109.3770102, + -0.0210272 + ], + [ + 109.3769805, + -0.0205935 + ], + [ + 109.3770388, + -0.020193 + ], + [ + 109.376996, + -0.0197081 + ], + [ + 109.3771433, + -0.0193611 + ], + [ + 109.3774143, + -0.0187003 + ], + [ + 109.3777233, + -0.0182773 + ], + [ + 109.3779372, + -0.0178589 + ], + [ + 109.377961, + -0.0174692 + ], + [ + 109.3780323, + -0.0169415 + ], + [ + 109.3781368, + -0.0165755 + ], + [ + 109.3787833, + -0.0161381 + ], + [ + 109.3788261, + -0.015948 + ], + [ + 109.3786217, + -0.0156866 + ], + [ + 109.3783745, + -0.0155297 + ], + [ + 109.3779134, + -0.0154726 + ], + [ + 109.3776377, + -0.0153966 + ], + [ + 109.3775569, + -0.0152112 + ], + [ + 109.3778088, + -0.0150115 + ], + [ + 109.3779657, + -0.0148975 + ], + [ + 109.3785789, + -0.0146265 + ], + [ + 109.37875, + -0.0144221 + ], + [ + 109.378964, + -0.0140798 + ], + [ + 109.379002, + -0.0136092 + ], + [ + 109.3788974, + -0.0134571 + ], + [ + 109.378655, + -0.0134286 + ], + [ + 109.378346, + -0.0135142 + ], + [ + 109.3778232, + -0.0138454 + ], + [ + 109.3777277, + -0.0138697 + ], + [ + 109.3776633, + -0.0138402 + ], + [ + 109.3775828, + -0.0136846 + ], + [ + 109.3776044, + -0.0135855 + ], + [ + 109.3780691, + -0.0131897 + ], + [ + 109.3782023, + -0.0130387 + ], + [ + 109.3784541, + -0.0126906 + ], + [ + 109.3784506, + -0.0123305 + ], + [ + 109.3783353, + -0.0121796 + ], + [ + 109.3778077, + -0.0122271 + ], + [ + 109.3774511, + -0.0123174 + ], + [ + 109.3773798, + -0.0120275 + ], + [ + 109.3775842, + -0.0115046 + ], + [ + 109.3777211, + -0.0112821 + ], + [ + 109.3779954, + -0.0110605 + ], + [ + 109.3779208, + -0.010802 + ], + [ + 109.3778685, + -0.0105358 + ], + [ + 109.3778637, + -0.0101508 + ], + [ + 109.3778257, + -0.0095661 + ], + [ + 109.3778115, + -0.0089671 + ], + [ + 109.3777259, + -0.0087675 + ], + [ + 109.3774549, + -0.0079593 + ], + [ + 109.3774472, + -0.0078927 + ], + [ + 109.3774427, + -0.0078892 + ], + [ + 109.3774307, + -0.0078906 + ], + [ + 109.377407, + -0.0078033 + ], + [ + 109.3773748, + -0.0077191 + ], + [ + 109.3772344, + -0.0073863 + ], + [ + 109.3770468, + -0.006782 + ], + [ + 109.3769079, + -0.0063523 + ], + [ + 109.3768599, + -0.0062759 + ], + [ + 109.3768036, + -0.0062057 + ], + [ + 109.3767392, + -0.0061432 + ], + [ + 109.3765984, + -0.0060309 + ], + [ + 109.3765378, + -0.0059648 + ], + [ + 109.3764821, + -0.0058938 + ], + [ + 109.3764461, + -0.0058115 + ], + [ + 109.3764169, + -0.0057261 + ], + [ + 109.3763555, + -0.005462 + ], + [ + 109.3763317, + -0.0053752 + ], + [ + 109.3762582, + -0.0052102 + ], + [ + 109.3760494, + -0.0048099 + ], + [ + 109.3757244, + -0.0042679 + ], + [ + 109.375691, + -0.0041849 + ], + [ + 109.3756792, + -0.004096 + ], + [ + 109.3756943, + -0.0040083 + ], + [ + 109.3757328, + -0.0039274 + ], + [ + 109.3758387, + -0.0037814 + ], + [ + 109.3758771, + -0.0037014 + ], + [ + 109.3758822, + -0.0036113 + ], + [ + 109.3758846, + -0.0034657 + ], + [ + 109.3758402, + -0.003323 + ], + [ + 109.3757609, + -0.0031426 + ], + [ + 109.3757456, + -0.0030881 + ], + [ + 109.3757456, + -0.0030182 + ], + [ + 109.3757595, + -0.0029846 + ], + [ + 109.3757929, + -0.002944 + ], + [ + 109.3758917, + -0.0028677 + ], + [ + 109.3759674, + -0.0027941 + ], + [ + 109.3759947, + -0.0027328 + ], + [ + 109.3760051, + -0.0026704 + ], + [ + 109.375974, + -0.0025862 + ], + [ + 109.3759254, + -0.0025107 + ], + [ + 109.3758577, + -0.0024525 + ], + [ + 109.3757837, + -0.0024013 + ], + [ + 109.3756283, + -0.0023105 + ], + [ + 109.3754667, + -0.0022319 + ], + [ + 109.3752916, + -0.0021913 + ], + [ + 109.3752031, + -0.0021769 + ], + [ + 109.3750243, + -0.0021588 + ], + [ + 109.3749358, + -0.0021454 + ], + [ + 109.3748501, + -0.0021186 + ], + [ + 109.3747668, + -0.002085 + ], + [ + 109.3746874, + -0.0020428 + ], + [ + 109.3746115, + -0.0019955 + ], + [ + 109.3738221, + -0.0012565 + ], + [ + 109.3736165, + -0.0010811 + ], + [ + 109.3734182, + -0.0008974 + ], + [ + 109.3732969, + -0.0007641 + ], + [ + 109.3732508, + -0.0006868 + ], + [ + 109.3732089, + -0.0006069 + ], + [ + 109.373172, + -0.0005245 + ], + [ + 109.373143, + -0.0004391 + ], + [ + 109.3730706, + -0.0001778 + ], + [ + 109.373022, + 0.0000718 + ], + [ + 109.3729981, + 0.000342 + ], + [ + 109.3729593, + 0.0004221 + ], + [ + 109.3728963, + 0.0004847 + ], + [ + 109.3728196, + 0.0005317 + ], + [ + 109.3727507, + 0.0005883 + ], + [ + 109.3726979, + 0.0006603 + ], + [ + 109.3726209, + 0.0008238 + ], + [ + 109.3725903, + 0.0009085 + ], + [ + 109.3724879, + 0.0012553 + ], + [ + 109.3723913, + 0.0014072 + ], + [ + 109.3722877, + 0.0015443 + ], + [ + 109.3722597, + 0.0017229 + ], + [ + 109.3722108, + 0.0018969 + ], + [ + 109.3721685, + 0.0020724 + ], + [ + 109.3721455, + 0.0022517 + ], + [ + 109.3720933, + 0.0027918 + ], + [ + 109.3720682, + 0.0029708 + ], + [ + 109.3720285, + 0.0031471 + ], + [ + 109.3719757, + 0.00332 + ], + [ + 109.3719148, + 0.0034901 + ], + [ + 109.3718455, + 0.0036569 + ], + [ + 109.3717671, + 0.0038196 + ], + [ + 109.3717186, + 0.0039931 + ], + [ + 109.3716922, + 0.0041721 + ], + [ + 109.371671, + 0.0043516 + ], + [ + 109.3716052, + 0.0047071 + ], + [ + 109.3715607, + 0.005066 + ], + [ + 109.3715275, + 0.0052438 + ], + [ + 109.3714828, + 0.0054189 + ], + [ + 109.3713289, + 0.0061255 + ], + [ + 109.3713044, + 0.0063047 + ], + [ + 109.3712868, + 0.0064846 + ], + [ + 109.3712643, + 0.006664 + ], + [ + 109.3712291, + 0.0068404 + ], + [ + 109.3711297, + 0.0069895 + ], + [ + 109.3708403, + 0.0072002 + ], + [ + 109.370784, + 0.0073701 + ], + [ + 109.3707283, + 0.0079097 + ], + [ + 109.3707042, + 0.0080889 + ], + [ + 109.370667, + 0.0082657 + ], + [ + 109.3706209, + 0.0084404 + ], + [ + 109.3705734, + 0.0086148 + ], + [ + 109.3705164, + 0.0087863 + ], + [ + 109.3704513, + 0.0089548 + ], + [ + 109.3703658, + 0.0091123 + ], + [ + 109.3701986, + 0.0091609 + ], + [ + 109.3700189, + 0.0091596 + ], + [ + 109.3698471, + 0.0091989 + ], + [ + 109.3697117, + 0.0093173 + ], + [ + 109.3695706, + 0.0094284 + ], + [ + 109.3694128, + 0.0095149 + ], + [ + 109.3693578, + 0.009676 + ], + [ + 109.3694532, + 0.0098261 + ], + [ + 109.3695639, + 0.0099676 + ], + [ + 109.3696069, + 0.010141 + ], + [ + 109.3695992, + 0.0103215 + ], + [ + 109.3695851, + 0.0105016 + ], + [ + 109.3696127, + 0.0106792 + ], + [ + 109.3696883, + 0.0108431 + ], + [ + 109.3697431, + 0.0110149 + ], + [ + 109.3698665, + 0.011543 + ], + [ + 109.3699002, + 0.0117207 + ], + [ + 109.3699193, + 0.0119003 + ], + [ + 109.3699181, + 0.0120811 + ], + [ + 109.3698722, + 0.0122545 + ], + [ + 109.3698467, + 0.0124318 + ], + [ + 109.3699285, + 0.0125907 + ], + [ + 109.3700339, + 0.0127371 + ], + [ + 109.3701097, + 0.0129004 + ], + [ + 109.3702259, + 0.0132427 + ], + [ + 109.3702917, + 0.0134109 + ], + [ + 109.3703681, + 0.0135745 + ], + [ + 109.3704524, + 0.0137341 + ], + [ + 109.3705297, + 0.0138974 + ], + [ + 109.3705801, + 0.0140689 + ], + [ + 109.3704971, + 0.0142137 + ], + [ + 109.3703383, + 0.0142979 + ], + [ + 109.3702191, + 0.0144233 + ], + [ + 109.3702203, + 0.0146013 + ], + [ + 109.370293, + 0.0147661 + ], + [ + 109.3703359, + 0.0149397 + ], + [ + 109.370325, + 0.0153012 + ], + [ + 109.3703084, + 0.0154812 + ], + [ + 109.3702725, + 0.0156584 + ], + [ + 109.3702313, + 0.0158344 + ], + [ + 109.3702081, + 0.0160134 + ], + [ + 109.3702343, + 0.0161905 + ], + [ + 109.3703115, + 0.016353 + ], + [ + 109.3704059, + 0.0165069 + ], + [ + 109.3704908, + 0.0166663 + ], + [ + 109.3705658, + 0.0168305 + ], + [ + 109.3706273, + 0.0170004 + ], + [ + 109.3706741, + 0.0171748 + ], + [ + 109.3706925, + 0.0173544 + ], + [ + 109.3706906, + 0.0177162 + ], + [ + 109.3706797, + 0.0180777 + ], + [ + 109.3706406, + 0.0182533 + ], + [ + 109.3705487, + 0.0184077 + ], + [ + 109.3704869, + 0.0185751 + ], + [ + 109.3704969, + 0.0187543 + ], + [ + 109.3705982, + 0.0189017 + ], + [ + 109.3707083, + 0.0190441 + ], + [ + 109.3707731, + 0.0192122 + ], + [ + 109.3708037, + 0.0193903 + ], + [ + 109.3708578, + 0.0197479 + ], + [ + 109.3709194, + 0.0202869 + ], + [ + 109.3709333, + 0.020467 + ], + [ + 109.3709799, + 0.0206413 + ], + [ + 109.3710169, + 0.0208169 + ], + [ + 109.370967, + 0.0209858 + ], + [ + 109.3708205, + 0.0210841 + ], + [ + 109.3706487, + 0.0211354 + ], + [ + 109.3704911, + 0.0212146 + ], + [ + 109.3685986, + 0.021837 + ], + [ + 109.3653292, + 0.022765 + ], + [ + 109.3619028, + 0.0240499 + ], + [ + 109.3571058, + 0.0258202 + ], + [ + 109.3521819, + 0.0269911 + ], + [ + 109.3484619, + 0.0279787 + ], + [ + 109.3468205, + 0.0229333 + ], + [ + 109.346711, + 0.022643 + ], + [ + 109.3466272, + 0.0224443 + ], + [ + 109.3465647, + 0.0221826 + ], + [ + 109.3464963, + 0.0217977 + ], + [ + 109.3463059, + 0.0206139 + ], + [ + 109.3462554, + 0.0202213 + ], + [ + 109.3462613, + 0.0200815 + ], + [ + 109.3463565, + 0.0199863 + ], + [ + 109.3464487, + 0.0199417 + ], + [ + 109.3467194, + 0.0198257 + ], + [ + 109.3468146, + 0.0198049 + ], + [ + 109.346877, + 0.0197573 + ], + [ + 109.3468949, + 0.0197067 + ], + [ + 109.3469089, + 0.0195507 + ], + [ + 109.3468911, + 0.0190225 + ], + [ + 109.3468125, + 0.0184193 + ], + [ + 109.3467162, + 0.0180909 + ], + [ + 109.3466876, + 0.0179196 + ], + [ + 109.3466983, + 0.0176305 + ], + [ + 109.3467162, + 0.0174734 + ], + [ + 109.3467661, + 0.0173806 + ], + [ + 109.3468625, + 0.0173021 + ], + [ + 109.3470053, + 0.0172272 + ], + [ + 109.3474484, + 0.0170778 + ], + [ + 109.3478113, + 0.016947 + ], + [ + 109.3478827, + 0.0168161 + ], + [ + 109.3479719, + 0.0165544 + ], + [ + 109.3480484, + 0.0164222 + ], + [ + 109.3531851, + 0.0151702 + ], + [ + 109.3570746, + 0.0142122 + ], + [ + 109.3570903, + 0.0139918 + ], + [ + 109.3565555, + 0.0090514 + ], + [ + 109.3564606, + 0.0086478 + ], + [ + 109.3562871, + 0.0080349 + ], + [ + 109.3562, + 0.0076994 + ], + [ + 109.3561801, + 0.007558 + ], + [ + 109.3561786, + 0.0074624 + ], + [ + 109.3561388, + 0.0071205 + ], + [ + 109.3560556, + 0.0066708 + ], + [ + 109.3558921, + 0.0063539 + ], + [ + 109.3557886, + 0.0061612 + ], + [ + 109.3557351, + 0.0060386 + ], + [ + 109.3556617, + 0.0058477 + ], + [ + 109.3552477, + 0.0050624 + ], + [ + 109.3550431, + 0.0046984 + ], + [ + 109.3549432, + 0.0044669 + ], + [ + 109.354861, + 0.0043152 + ], + [ + 109.3536109, + 0.0026318 + ], + [ + 109.3534183, + 0.0009023 + ], + [ + 109.3534136, + 0.0008907 + ], + [ + 109.3533527, + 0.0005633 + ], + [ + 109.3532651, + 0.0001978 + ], + [ + 109.3532175, + -0.0000706 + ], + [ + 109.353183, + -0.0005295 + ], + [ + 109.3531592, + -0.0006604 + ], + [ + 109.3531563, + -0.0009608 + ], + [ + 109.3531206, + -0.0014277 + ], + [ + 109.3531265, + -0.001719 + ], + [ + 109.3528966, + -0.0037843 + ], + [ + 109.3528754, + -0.0040162 + ], + [ + 109.3528659, + -0.0041399 + ], + [ + 109.3529839, + -0.004256 + ], + [ + 109.3531971, + -0.0043835 + ], + [ + 109.3534693, + -0.0046329 + ], + [ + 109.3537073, + -0.0048137 + ], + [ + 109.3538748, + -0.004966 + ], + [ + 109.3541774, + -0.0052154 + ], + [ + 109.3544896, + -0.0054914 + ], + [ + 109.3547675, + -0.0056856 + ], + [ + 109.3550055, + -0.0058893 + ], + [ + 109.3551444, + -0.0060263 + ], + [ + 109.3553866, + -0.0061876 + ], + [ + 109.3553976, + -0.0063119 + ], + [ + 109.3553957, + -0.006487 + ], + [ + 109.3553748, + -0.0067268 + ], + [ + 109.3553538, + -0.0068772 + ], + [ + 109.3553596, + -0.0069457 + ], + [ + 109.3553729, + -0.0069933 + ], + [ + 109.3553767, + -0.0070409 + ], + [ + 109.3553596, + -0.0070695 + ], + [ + 109.3553253, + -0.0070885 + ], + [ + 109.3553043, + -0.0070942 + ], + [ + 109.3552415, + -0.0070885 + ], + [ + 109.3551958, + -0.0070771 + ], + [ + 109.3551292, + -0.0070428 + ], + [ + 109.3546598, + -0.006844 + ], + [ + 109.3533607, + -0.0085054 + ], + [ + 109.3544886, + -0.0089381 + ], + [ + 109.3546038, + -0.0090128 + ], + [ + 109.3544646, + -0.0092841 + ], + [ + 109.3535882, + -0.0109178 + ], + [ + 109.353415, + -0.0112129 + ], + [ + 109.3532932, + -0.0114032 + ], + [ + 109.3532913, + -0.0114223 + ], + [ + 109.3533065, + -0.0114527 + ], + [ + 109.3533332, + -0.0114756 + ], + [ + 109.3535978, + -0.0116526 + ], + [ + 109.3536168, + -0.0116754 + ], + [ + 109.353613, + -0.0117116 + ], + [ + 109.3534493, + -0.0119248 + ], + [ + 109.3532741, + -0.0121723 + ], + [ + 109.35304, + -0.0124768 + ], + [ + 109.3528763, + -0.0126824 + ], + [ + 109.3525603, + -0.0131431 + ], + [ + 109.3525146, + -0.0131964 + ], + [ + 109.3524899, + -0.0132021 + ], + [ + 109.3524632, + -0.0131945 + ], + [ + 109.3522519, + -0.0130574 + ], + [ + 109.3520026, + -0.0128766 + ], + [ + 109.351797, + -0.0128176 + ], + [ + 109.3517018, + -0.0128138 + ], + [ + 109.3516523, + -0.0128366 + ], + [ + 109.3516504, + -0.012947 + ], + [ + 109.3516409, + -0.0130822 + ], + [ + 109.351639, + -0.0132497 + ], + [ + 109.3516066, + -0.0133791 + ], + [ + 109.3515838, + -0.0135238 + ], + [ + 109.3515533, + -0.0135714 + ], + [ + 109.3514524, + -0.0135904 + ], + [ + 109.3514315, + -0.0136114 + ], + [ + 109.3514048, + -0.0141082 + ], + [ + 109.351363, + -0.0143728 + ], + [ + 109.3513001, + -0.0146926 + ], + [ + 109.3512716, + -0.0149553 + ], + [ + 109.3511935, + -0.0151818 + ], + [ + 109.3510536, + -0.0154212 + ], + [ + 109.3506716, + -0.0153228 + ], + [ + 109.3506168, + -0.0153189 + ], + [ + 109.3505863, + -0.0153208 + ], + [ + 109.3505692, + -0.0153436 + ], + [ + 109.3505425, + -0.0154369 + ], + [ + 109.3504378, + -0.015671 + ], + [ + 109.3503979, + -0.015807 + ], + [ + 109.3502343, + -0.016158 + ], + [ + 109.3500945, + -0.016503 + ], + [ + 109.3499547, + -0.0167618 + ], + [ + 109.3498119, + -0.0170562 + ], + [ + 109.3496622, + -0.0174212 + ], + [ + 109.3495951, + -0.0176083 + ], + [ + 109.3495509, + -0.0177739 + ], + [ + 109.3495295, + -0.0179709 + ], + [ + 109.3495023, + -0.0183678 + ], + [ + 109.3494652, + -0.0186633 + ], + [ + 109.3494373, + -0.0187698 + ], + [ + 109.3494476, + -0.0192339 + ], + [ + 109.3493911, + -0.0196433 + ], + [ + 109.3493815, + -0.0202383 + ], + [ + 109.3494611, + -0.0208366 + ], + [ + 109.3496218, + -0.0220307 + ], + [ + 109.3525039, + -0.0216473 + ], + [ + 109.3525924, + -0.0216327 + ], + [ + 109.3543387, + -0.0212074 + ], + [ + 109.3561128, + -0.0205619 + ], + [ + 109.3574238, + -0.0202494 + ], + [ + 109.3603708, + -0.0199259 + ], + [ + 109.3621662, + -0.0198626 + ], + [ + 109.362974, + -0.0198291 + ] + ] + ] + }, + "id": "relation/10625028" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625029", + "admin_level": "7", + "boundary": "administrative", + "name": "Tanjung Hulu", + "place": "village", + "type": "boundary", + "wikidata": "Q12519539", + "wikipedia": "id:Tanjunghulu, Pontianak Timur, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.362974, + -0.0198291 + ], + [ + 109.3628706, + -0.0241422 + ], + [ + 109.362595, + -0.0252211 + ], + [ + 109.3620687, + -0.026777 + ], + [ + 109.3615477, + -0.0281474 + ], + [ + 109.3622159, + -0.0282339 + ], + [ + 109.3625205, + -0.0283862 + ], + [ + 109.3629012, + -0.0286051 + ], + [ + 109.3633295, + -0.0291095 + ], + [ + 109.3636816, + -0.0298329 + ], + [ + 109.3645097, + -0.0309941 + ], + [ + 109.3648956, + -0.0315962 + ], + [ + 109.3660714, + -0.0308066 + ], + [ + 109.3662633, + -0.030983 + ], + [ + 109.3671699, + -0.0320458 + ], + [ + 109.367735, + -0.0326709 + ], + [ + 109.3682379, + -0.0332586 + ], + [ + 109.3691694, + -0.0342713 + ], + [ + 109.3696933, + -0.0347973 + ], + [ + 109.370214, + -0.0342989 + ], + [ + 109.3701619, + -0.0342434 + ], + [ + 109.370708, + -0.0336961 + ], + [ + 109.3712615, + -0.0331612 + ], + [ + 109.3731784, + -0.0312666 + ], + [ + 109.3728399, + -0.0307204 + ], + [ + 109.3737689, + -0.0308294 + ], + [ + 109.3743043, + -0.030874 + ], + [ + 109.3746262, + -0.0308877 + ], + [ + 109.3748106, + -0.0309103 + ], + [ + 109.3748891, + -0.0309317 + ], + [ + 109.3749923, + -0.0309756 + ], + [ + 109.3752952, + -0.0311342 + ], + [ + 109.3753485, + -0.0311494 + ], + [ + 109.3754608, + -0.0311504 + ], + [ + 109.3755987, + -0.0311616 + ], + [ + 109.3757058, + -0.0312039 + ], + [ + 109.3761298, + -0.0313188 + ], + [ + 109.3766773, + -0.0314541 + ], + [ + 109.3769985, + -0.0315531 + ], + [ + 109.3776193, + -0.0317175 + ], + [ + 109.3780294, + -0.0318621 + ], + [ + 109.3784586, + -0.0323637 + ], + [ + 109.3786585, + -0.0326421 + ], + [ + 109.3787213, + -0.0327846 + ], + [ + 109.3790362, + -0.0326955 + ], + [ + 109.379464, + -0.0325886 + ], + [ + 109.3795383, + -0.032541 + ], + [ + 109.379721, + -0.0323912 + ], + [ + 109.3803611, + -0.0318056 + ], + [ + 109.3806111, + -0.0315556 + ], + [ + 109.3810254, + -0.0313242 + ], + [ + 109.3812778, + -0.031 + ], + [ + 109.381584, + -0.0307835 + ], + [ + 109.3818611, + -0.0304167 + ], + [ + 109.3820556, + -0.0299444 + ], + [ + 109.3821187, + -0.0299219 + ], + [ + 109.3821667, + -0.0295556 + ], + [ + 109.3825079, + -0.028604 + ], + [ + 109.3823594, + -0.0285683 + ], + [ + 109.382849, + -0.0267905 + ], + [ + 109.3828966, + -0.0266063 + ], + [ + 109.3831516, + -0.0251057 + ], + [ + 109.3819197, + -0.0248593 + ], + [ + 109.3795667, + -0.0244078 + ], + [ + 109.3779504, + -0.0237898 + ], + [ + 109.3760728, + -0.0231005 + ], + [ + 109.3754204, + -0.0226324 + ], + [ + 109.3752554, + -0.0225587 + ], + [ + 109.3751719, + -0.0225256 + ], + [ + 109.3729755, + -0.021726 + ], + [ + 109.3709272, + -0.0210488 + ], + [ + 109.3688531, + -0.0204563 + ], + [ + 109.3687655, + -0.0204369 + ], + [ + 109.3653059, + -0.0198814 + ], + [ + 109.3638714, + -0.0197918 + ], + [ + 109.362974, + -0.0198291 + ] + ] + ] + }, + "id": "relation/10625029" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625030", + "admin_level": "7", + "boundary": "administrative", + "name": "Tanjung Hilir", + "place": "village", + "type": "boundary", + "wikidata": "Q21292916", + "wikipedia": "id:Tanjunghilir, Pontianak Timur, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3496218, + -0.0220307 + ], + [ + 109.3483183, + -0.0222042 + ], + [ + 109.3482943, + -0.0233987 + ], + [ + 109.3482172, + -0.0239881 + ], + [ + 109.3482363, + -0.0239962 + ], + [ + 109.3488161, + -0.0240482 + ], + [ + 109.3495193, + -0.0240964 + ], + [ + 109.3499993, + -0.0240147 + ], + [ + 109.3504745, + -0.0239547 + ], + [ + 109.350568, + -0.0239487 + ], + [ + 109.3506296, + -0.0239397 + ], + [ + 109.3506565, + -0.0239257 + ], + [ + 109.3506714, + -0.0239057 + ], + [ + 109.3506893, + -0.0238626 + ], + [ + 109.3507132, + -0.0238346 + ], + [ + 109.3510618, + -0.0237599 + ], + [ + 109.3515186, + -0.0237294 + ], + [ + 109.3516119, + -0.0237199 + ], + [ + 109.3516347, + -0.0236894 + ], + [ + 109.3517284, + -0.0236837 + ], + [ + 109.3518755, + -0.0236855 + ], + [ + 109.3519031, + -0.0240416 + ], + [ + 109.3521303, + -0.0249795 + ], + [ + 109.3522076, + -0.0253632 + ], + [ + 109.3523747, + -0.0257326 + ], + [ + 109.3524147, + -0.0258747 + ], + [ + 109.352802, + -0.0258269 + ], + [ + 109.3532444, + -0.0257797 + ], + [ + 109.3533122, + -0.0261331 + ], + [ + 109.3540803, + -0.0261424 + ], + [ + 109.3540626, + -0.0266882 + ], + [ + 109.3540864, + -0.0272164 + ], + [ + 109.3540849, + -0.0283376 + ], + [ + 109.3543859, + -0.0283429 + ], + [ + 109.3548636, + -0.0291367 + ], + [ + 109.3554115, + -0.0299515 + ], + [ + 109.3567345, + -0.0290283 + ], + [ + 109.3570438, + -0.0294899 + ], + [ + 109.3579076, + -0.0288974 + ], + [ + 109.3584572, + -0.0294732 + ], + [ + 109.3598944, + -0.0289783 + ], + [ + 109.3604964, + -0.0287832 + ], + [ + 109.3608501, + -0.0286143 + ], + [ + 109.3614305, + -0.0284967 + ], + [ + 109.3615477, + -0.0281474 + ], + [ + 109.3620687, + -0.026777 + ], + [ + 109.362595, + -0.0252211 + ], + [ + 109.3628706, + -0.0241422 + ], + [ + 109.362974, + -0.0198291 + ], + [ + 109.3621662, + -0.0198626 + ], + [ + 109.3603708, + -0.0199259 + ], + [ + 109.3574238, + -0.0202494 + ], + [ + 109.3561128, + -0.0205619 + ], + [ + 109.3543387, + -0.0212074 + ], + [ + 109.3525924, + -0.0216327 + ], + [ + 109.3525039, + -0.0216473 + ], + [ + 109.3496218, + -0.0220307 + ] + ] + ] + }, + "id": "relation/10625030" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625031", + "admin_level": "7", + "boundary": "administrative", + "name": "Dalam Bugis", + "place": "village", + "type": "boundary", + "wikidata": "Q19725167", + "wikipedia": "id:Dalambugis, Pontianak Timur, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3483183, + -0.0222042 + ], + [ + 109.3473387, + -0.0223345 + ], + [ + 109.3454627, + -0.0225339 + ], + [ + 109.3453741, + -0.0225466 + ], + [ + 109.3441986, + -0.0229965 + ], + [ + 109.3441358, + -0.0230634 + ], + [ + 109.3441828, + -0.0231404 + ], + [ + 109.3454518, + -0.0252213 + ], + [ + 109.3454961, + -0.0252998 + ], + [ + 109.3456443, + -0.0256293 + ], + [ + 109.3467671, + -0.0281247 + ], + [ + 109.3475295, + -0.0278605 + ], + [ + 109.3479756, + -0.0276847 + ], + [ + 109.3481661, + -0.0279581 + ], + [ + 109.3486282, + -0.0285171 + ], + [ + 109.3491186, + -0.0290721 + ], + [ + 109.3492442, + -0.0290109 + ], + [ + 109.3498279, + -0.0296882 + ], + [ + 109.3501662, + -0.0301116 + ], + [ + 109.3502697, + -0.0302106 + ], + [ + 109.3505656, + -0.030586 + ], + [ + 109.3507918, + -0.0308559 + ], + [ + 109.3511525, + -0.031335 + ], + [ + 109.3519058, + -0.0309325 + ], + [ + 109.3522078, + -0.0307838 + ], + [ + 109.3527591, + -0.0304748 + ], + [ + 109.3529619, + -0.0306942 + ], + [ + 109.3535507, + -0.0313132 + ], + [ + 109.3539404, + -0.0317927 + ], + [ + 109.3552827, + -0.0337631 + ], + [ + 109.3558629, + -0.0345216 + ], + [ + 109.3569685, + -0.0356151 + ], + [ + 109.3572219, + -0.0358528 + ], + [ + 109.3576713, + -0.0362766 + ], + [ + 109.3587279, + -0.0356161 + ], + [ + 109.3601499, + -0.0347175 + ], + [ + 109.36202, + -0.0334662 + ], + [ + 109.3637502, + -0.0323552 + ], + [ + 109.3642119, + -0.0320468 + ], + [ + 109.3648956, + -0.0315962 + ], + [ + 109.3645097, + -0.0309941 + ], + [ + 109.3636816, + -0.0298329 + ], + [ + 109.3633295, + -0.0291095 + ], + [ + 109.3629012, + -0.0286051 + ], + [ + 109.3625205, + -0.0283862 + ], + [ + 109.3622159, + -0.0282339 + ], + [ + 109.3615477, + -0.0281474 + ], + [ + 109.3614305, + -0.0284967 + ], + [ + 109.3608501, + -0.0286143 + ], + [ + 109.3604964, + -0.0287832 + ], + [ + 109.3598944, + -0.0289783 + ], + [ + 109.3584572, + -0.0294732 + ], + [ + 109.3579076, + -0.0288974 + ], + [ + 109.3570438, + -0.0294899 + ], + [ + 109.3567345, + -0.0290283 + ], + [ + 109.3554115, + -0.0299515 + ], + [ + 109.3548636, + -0.0291367 + ], + [ + 109.3543859, + -0.0283429 + ], + [ + 109.3540849, + -0.0283376 + ], + [ + 109.3540864, + -0.0272164 + ], + [ + 109.3540626, + -0.0266882 + ], + [ + 109.3540803, + -0.0261424 + ], + [ + 109.3533122, + -0.0261331 + ], + [ + 109.3532444, + -0.0257797 + ], + [ + 109.352802, + -0.0258269 + ], + [ + 109.3524147, + -0.0258747 + ], + [ + 109.3523747, + -0.0257326 + ], + [ + 109.3522076, + -0.0253632 + ], + [ + 109.3521303, + -0.0249795 + ], + [ + 109.3519031, + -0.0240416 + ], + [ + 109.3518755, + -0.0236855 + ], + [ + 109.3517284, + -0.0236837 + ], + [ + 109.3516347, + -0.0236894 + ], + [ + 109.3516119, + -0.0237199 + ], + [ + 109.3515186, + -0.0237294 + ], + [ + 109.3510618, + -0.0237599 + ], + [ + 109.3507132, + -0.0238346 + ], + [ + 109.3506893, + -0.0238626 + ], + [ + 109.3506714, + -0.0239057 + ], + [ + 109.3506565, + -0.0239257 + ], + [ + 109.3506296, + -0.0239397 + ], + [ + 109.350568, + -0.0239487 + ], + [ + 109.3504745, + -0.0239547 + ], + [ + 109.3499993, + -0.0240147 + ], + [ + 109.3495193, + -0.0240964 + ], + [ + 109.3488161, + -0.0240482 + ], + [ + 109.3482363, + -0.0239962 + ], + [ + 109.3482172, + -0.0239881 + ], + [ + 109.3482943, + -0.0233987 + ], + [ + 109.3483183, + -0.0222042 + ] + ] + ] + }, + "id": "relation/10625031" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625032", + "admin_level": "7", + "boundary": "administrative", + "name": "Banjar Serasan", + "place": "village", + "type": "boundary", + "wikidata": "Q12474361", + "wikipedia": "id:Banjar Serasan, Pontianak Timur, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3602786, + -0.0463937 + ], + [ + 109.3604994, + -0.0465847 + ], + [ + 109.3605651, + -0.0466462 + ], + [ + 109.3623441, + -0.0484363 + ], + [ + 109.3646114, + -0.0510054 + ], + [ + 109.3646661, + -0.051077 + ], + [ + 109.365504, + -0.0522526 + ], + [ + 109.3675808, + -0.0556382 + ], + [ + 109.3683544, + -0.0551483 + ], + [ + 109.368854, + -0.0547881 + ], + [ + 109.3696325, + -0.0543008 + ], + [ + 109.3699932, + -0.0540427 + ], + [ + 109.3706102, + -0.0535458 + ], + [ + 109.3714931, + -0.0529246 + ], + [ + 109.3721319, + -0.0524587 + ], + [ + 109.371788, + -0.0520311 + ], + [ + 109.3712153, + -0.0513198 + ], + [ + 109.3712188, + -0.0513174 + ], + [ + 109.3704843, + -0.0504176 + ], + [ + 109.3701838, + -0.0500701 + ], + [ + 109.3695954, + -0.0493715 + ], + [ + 109.369226, + -0.0489437 + ], + [ + 109.3688775, + -0.0484808 + ], + [ + 109.3688167, + -0.0484132 + ], + [ + 109.3682014, + -0.0476834 + ], + [ + 109.3680687, + -0.0475026 + ], + [ + 109.3677628, + -0.0471014 + ], + [ + 109.3670483, + -0.0461904 + ], + [ + 109.3660318, + -0.0450905 + ], + [ + 109.3657837, + -0.0448066 + ], + [ + 109.3653333, + -0.0443073 + ], + [ + 109.3647573, + -0.0449035 + ], + [ + 109.3644228, + -0.0446048 + ], + [ + 109.364843, + -0.0441611 + ], + [ + 109.3650337, + -0.0439882 + ], + [ + 109.3647804, + -0.0437343 + ], + [ + 109.3622289, + -0.0411221 + ], + [ + 109.3613873, + -0.0403076 + ], + [ + 109.3609919, + -0.039941 + ], + [ + 109.3598494, + -0.0388454 + ], + [ + 109.3593267, + -0.0383123 + ], + [ + 109.3590509, + -0.0379975 + ], + [ + 109.3588379, + -0.0377475 + ], + [ + 109.3584844, + -0.0373104 + ], + [ + 109.3580225, + -0.03672 + ], + [ + 109.3579795, + -0.0366631 + ], + [ + 109.3575536, + -0.0369273 + ], + [ + 109.3572276, + -0.0371367 + ], + [ + 109.3568352, + -0.0373973 + ], + [ + 109.355933, + -0.0380378 + ], + [ + 109.3553411, + -0.0371276 + ], + [ + 109.3550791, + -0.0367103 + ], + [ + 109.3537152, + -0.0375642 + ], + [ + 109.3535246, + -0.0376688 + ], + [ + 109.3532873, + -0.037828 + ], + [ + 109.3524501, + -0.038344 + ], + [ + 109.3525049, + -0.0384155 + ], + [ + 109.3541897, + -0.0404159 + ], + [ + 109.3551747, + -0.0414386 + ], + [ + 109.3551902, + -0.0414546 + ], + [ + 109.3583193, + -0.0446985 + ], + [ + 109.3602786, + -0.0463937 + ] + ] + ] + }, + "id": "relation/10625032" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625033", + "admin_level": "7", + "boundary": "administrative", + "name": "Saigon", + "name:vi": "Sài Gòn", + "type": "boundary", + "wikipedia": "id:Saigon, Pontianak Timur, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.371788, + -0.0520311 + ], + [ + 109.3724457, + -0.0516042 + ], + [ + 109.3735327, + -0.0508614 + ], + [ + 109.3760424, + -0.0491681 + ], + [ + 109.3800499, + -0.0464827 + ], + [ + 109.3826096, + -0.0445867 + ], + [ + 109.3807742, + -0.041782 + ], + [ + 109.379931, + -0.0404682 + ], + [ + 109.3796015, + -0.0398511 + ], + [ + 109.3793912, + -0.0398332 + ], + [ + 109.3792735, + -0.0397085 + ], + [ + 109.3785355, + -0.0389598 + ], + [ + 109.3785278, + -0.0388552 + ], + [ + 109.3785829, + -0.0387652 + ], + [ + 109.3788427, + -0.0383412 + ], + [ + 109.3794268, + -0.0372837 + ], + [ + 109.3793626, + -0.0370342 + ], + [ + 109.3795801, + -0.0366741 + ], + [ + 109.3797405, + -0.036421 + ], + [ + 109.3799877, + -0.0363718 + ], + [ + 109.3798499, + -0.0358204 + ], + [ + 109.3798406, + -0.0356332 + ], + [ + 109.3798019, + -0.0354817 + ], + [ + 109.3796694, + -0.0351452 + ], + [ + 109.3795458, + -0.0346794 + ], + [ + 109.3793739, + -0.0342816 + ], + [ + 109.37906, + -0.0336908 + ], + [ + 109.3789501, + -0.0334502 + ], + [ + 109.3788401, + -0.0331204 + ], + [ + 109.3787213, + -0.0327846 + ], + [ + 109.3786585, + -0.0326421 + ], + [ + 109.3784586, + -0.0323637 + ], + [ + 109.3780294, + -0.0318621 + ], + [ + 109.3776193, + -0.0317175 + ], + [ + 109.3769985, + -0.0315531 + ], + [ + 109.3766773, + -0.0314541 + ], + [ + 109.3761298, + -0.0313188 + ], + [ + 109.3757058, + -0.0312039 + ], + [ + 109.3755987, + -0.0311616 + ], + [ + 109.3754608, + -0.0311504 + ], + [ + 109.3753485, + -0.0311494 + ], + [ + 109.3752952, + -0.0311342 + ], + [ + 109.3749923, + -0.0309756 + ], + [ + 109.3748891, + -0.0309317 + ], + [ + 109.3748106, + -0.0309103 + ], + [ + 109.3746262, + -0.0308877 + ], + [ + 109.3743043, + -0.030874 + ], + [ + 109.3737689, + -0.0308294 + ], + [ + 109.3728399, + -0.0307204 + ], + [ + 109.3731784, + -0.0312666 + ], + [ + 109.3712615, + -0.0331612 + ], + [ + 109.370708, + -0.0336961 + ], + [ + 109.3701619, + -0.0342434 + ], + [ + 109.370214, + -0.0342989 + ], + [ + 109.3696933, + -0.0347973 + ], + [ + 109.3691694, + -0.0342713 + ], + [ + 109.3682379, + -0.0332586 + ], + [ + 109.367735, + -0.0326709 + ], + [ + 109.3671699, + -0.0320458 + ], + [ + 109.3662633, + -0.030983 + ], + [ + 109.3660714, + -0.0308066 + ], + [ + 109.3648956, + -0.0315962 + ], + [ + 109.3642119, + -0.0320468 + ], + [ + 109.3637502, + -0.0323552 + ], + [ + 109.36202, + -0.0334662 + ], + [ + 109.3601499, + -0.0347175 + ], + [ + 109.3587279, + -0.0356161 + ], + [ + 109.3576713, + -0.0362766 + ], + [ + 109.3579795, + -0.0366631 + ], + [ + 109.3580225, + -0.03672 + ], + [ + 109.3584844, + -0.0373104 + ], + [ + 109.3588379, + -0.0377475 + ], + [ + 109.3590509, + -0.0379975 + ], + [ + 109.3593267, + -0.0383123 + ], + [ + 109.3598494, + -0.0388454 + ], + [ + 109.3609919, + -0.039941 + ], + [ + 109.3613873, + -0.0403076 + ], + [ + 109.3622289, + -0.0411221 + ], + [ + 109.3647804, + -0.0437343 + ], + [ + 109.3650337, + -0.0439882 + ], + [ + 109.364843, + -0.0441611 + ], + [ + 109.3644228, + -0.0446048 + ], + [ + 109.3647573, + -0.0449035 + ], + [ + 109.3653333, + -0.0443073 + ], + [ + 109.3657837, + -0.0448066 + ], + [ + 109.3660318, + -0.0450905 + ], + [ + 109.3670483, + -0.0461904 + ], + [ + 109.3677628, + -0.0471014 + ], + [ + 109.3680687, + -0.0475026 + ], + [ + 109.3682014, + -0.0476834 + ], + [ + 109.3688167, + -0.0484132 + ], + [ + 109.3688775, + -0.0484808 + ], + [ + 109.369226, + -0.0489437 + ], + [ + 109.3695954, + -0.0493715 + ], + [ + 109.3701838, + -0.0500701 + ], + [ + 109.3704843, + -0.0504176 + ], + [ + 109.3712188, + -0.0513174 + ], + [ + 109.3712153, + -0.0513198 + ], + [ + 109.371788, + -0.0520311 + ] + ] + ] + }, + "id": "relation/10625033" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625034", + "admin_level": "7", + "boundary": "administrative", + "name": "Parit Mayor", + "place": "village", + "type": "boundary", + "wikidata": "Q12503221", + "wikipedia": "id:Paritmayor, Pontianak Timur, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3675808, + -0.0556382 + ], + [ + 109.3688871, + -0.0577676 + ], + [ + 109.3690209, + -0.0576547 + ], + [ + 109.3711601, + -0.0605996 + ], + [ + 109.3721512, + -0.0619472 + ], + [ + 109.3727454, + -0.0626365 + ], + [ + 109.3728214, + -0.0627078 + ], + [ + 109.3728927, + -0.0627838 + ], + [ + 109.373014, + -0.0626725 + ], + [ + 109.3730252, + -0.0626828 + ], + [ + 109.3736081, + -0.0621553 + ], + [ + 109.3756858, + -0.0604779 + ], + [ + 109.3771061, + -0.0593951 + ], + [ + 109.3781823, + -0.0586108 + ], + [ + 109.379165, + -0.0579008 + ], + [ + 109.3850615, + -0.0534934 + ], + [ + 109.3849499, + -0.0533736 + ], + [ + 109.385, + -0.0533333 + ], + [ + 109.3827939, + -0.0502926 + ], + [ + 109.3853475, + -0.0483388 + ], + [ + 109.385312, + -0.0482918 + ], + [ + 109.3832415, + -0.0455524 + ], + [ + 109.3826096, + -0.0445867 + ], + [ + 109.3800499, + -0.0464827 + ], + [ + 109.3760424, + -0.0491681 + ], + [ + 109.3735327, + -0.0508614 + ], + [ + 109.3724457, + -0.0516042 + ], + [ + 109.371788, + -0.0520311 + ], + [ + 109.3721319, + -0.0524587 + ], + [ + 109.3714931, + -0.0529246 + ], + [ + 109.3706102, + -0.0535458 + ], + [ + 109.3699932, + -0.0540427 + ], + [ + 109.3696325, + -0.0543008 + ], + [ + 109.368854, + -0.0547881 + ], + [ + 109.3683544, + -0.0551483 + ], + [ + 109.3675808, + -0.0556382 + ] + ] + ] + }, + "id": "relation/10625034" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625035", + "admin_level": "7", + "boundary": "administrative", + "name": "Benua Melayu Laut", + "place": "village", + "type": "boundary", + "wikidata": "Q12475844", + "wikipedia": "id:Benuamelayu Laut, Pontianak Selatan, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3522985, + -0.0439893 + ], + [ + 109.3527954, + -0.0435049 + ], + [ + 109.3542469, + -0.042217 + ], + [ + 109.3543235, + -0.0421357 + ], + [ + 109.3551133, + -0.0414936 + ], + [ + 109.3551747, + -0.0414386 + ], + [ + 109.3541897, + -0.0404159 + ], + [ + 109.3525049, + -0.0384155 + ], + [ + 109.3524501, + -0.038344 + ], + [ + 109.3512119, + -0.0365673 + ], + [ + 109.3499861, + -0.0344603 + ], + [ + 109.3499437, + -0.0343806 + ], + [ + 109.3472764, + -0.0292533 + ], + [ + 109.3467671, + -0.0281247 + ], + [ + 109.3456443, + -0.0256293 + ], + [ + 109.344759, + -0.02608 + ], + [ + 109.3447145, + -0.0260852 + ], + [ + 109.3444295, + -0.0262517 + ], + [ + 109.3441519, + -0.0263715 + ], + [ + 109.343795, + -0.0265511 + ], + [ + 109.3435191, + -0.0267085 + ], + [ + 109.343135, + -0.026948 + ], + [ + 109.3429071, + -0.0271666 + ], + [ + 109.3430259, + -0.0273501 + ], + [ + 109.343703, + -0.0284997 + ], + [ + 109.3450831, + -0.0306978 + ], + [ + 109.3453419, + -0.0314235 + ], + [ + 109.345672, + -0.0325686 + ], + [ + 109.3458951, + -0.0331129 + ], + [ + 109.3462543, + -0.0340245 + ], + [ + 109.3463264, + -0.0342784 + ], + [ + 109.3465316, + -0.0353199 + ], + [ + 109.3466476, + -0.0359504 + ], + [ + 109.3469837, + -0.037509 + ], + [ + 109.3471443, + -0.0378867 + ], + [ + 109.3478225, + -0.0391597 + ], + [ + 109.3480104, + -0.0394357 + ], + [ + 109.3480851, + -0.0395454 + ], + [ + 109.3482458, + -0.0397747 + ], + [ + 109.3485531, + -0.0402937 + ], + [ + 109.3490368, + -0.0410428 + ], + [ + 109.3494137, + -0.0416403 + ], + [ + 109.3498198, + -0.0420308 + ], + [ + 109.3506822, + -0.042761 + ], + [ + 109.3519032, + -0.0437372 + ], + [ + 109.3522985, + -0.0439893 + ] + ] + ] + }, + "id": "relation/10625035" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625036", + "admin_level": "7", + "boundary": "administrative", + "name": "Benua Melayu Darat", + "place": "village", + "type": "boundary", + "wikidata": "Q12475842", + "wikipedia": "id:Benuamelayu Darat, Pontianak Selatan, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3522985, + -0.0439893 + ], + [ + 109.3519032, + -0.0437372 + ], + [ + 109.3506822, + -0.042761 + ], + [ + 109.3498198, + -0.0420308 + ], + [ + 109.3494137, + -0.0416403 + ], + [ + 109.3490368, + -0.0410428 + ], + [ + 109.3485531, + -0.0402937 + ], + [ + 109.3482458, + -0.0397747 + ], + [ + 109.3480851, + -0.0395454 + ], + [ + 109.3480104, + -0.0394357 + ], + [ + 109.3478225, + -0.0391597 + ], + [ + 109.3471443, + -0.0378867 + ], + [ + 109.3469837, + -0.037509 + ], + [ + 109.3466476, + -0.0359504 + ], + [ + 109.3465316, + -0.0353199 + ], + [ + 109.3463264, + -0.0342784 + ], + [ + 109.3462543, + -0.0340245 + ], + [ + 109.3458951, + -0.0331129 + ], + [ + 109.345672, + -0.0325686 + ], + [ + 109.3453419, + -0.0314235 + ], + [ + 109.3450831, + -0.0306978 + ], + [ + 109.343703, + -0.0284997 + ], + [ + 109.3430259, + -0.0273501 + ], + [ + 109.3429071, + -0.0271666 + ], + [ + 109.342041, + -0.0277706 + ], + [ + 109.3410273, + -0.0283631 + ], + [ + 109.3403635, + -0.0287867 + ], + [ + 109.3397734, + -0.0291555 + ], + [ + 109.3388549, + -0.0298384 + ], + [ + 109.3381077, + -0.0303547 + ], + [ + 109.3374914, + -0.0308116 + ], + [ + 109.3368442, + -0.0314183 + ], + [ + 109.3329821, + -0.0351436 + ], + [ + 109.3328738, + -0.0354048 + ], + [ + 109.333002, + -0.0355675 + ], + [ + 109.3346976, + -0.0377181 + ], + [ + 109.3353687, + -0.0385269 + ], + [ + 109.3356071, + -0.038824 + ], + [ + 109.3366474, + -0.0400714 + ], + [ + 109.3380523, + -0.0417931 + ], + [ + 109.3382566, + -0.0420434 + ], + [ + 109.3392024, + -0.043132 + ], + [ + 109.3405379, + -0.0446875 + ], + [ + 109.3411163, + -0.0453834 + ], + [ + 109.341996, + -0.0464667 + ], + [ + 109.3429201, + -0.0475454 + ], + [ + 109.3431998, + -0.0478484 + ], + [ + 109.3433616, + -0.0480426 + ], + [ + 109.3444201, + -0.0493132 + ], + [ + 109.3457436, + -0.050946 + ], + [ + 109.3465392, + -0.0518475 + ], + [ + 109.3469412, + -0.0513682 + ], + [ + 109.3476533, + -0.0504927 + ], + [ + 109.3479601, + -0.0499631 + ], + [ + 109.348686, + -0.0488562 + ], + [ + 109.3492012, + -0.0480329 + ], + [ + 109.3495006, + -0.0475738 + ], + [ + 109.3496942, + -0.0473342 + ], + [ + 109.3513827, + -0.0455163 + ], + [ + 109.3518138, + -0.0450794 + ], + [ + 109.3519166, + -0.0449509 + ], + [ + 109.3519252, + -0.0449124 + ], + [ + 109.3516639, + -0.0446868 + ], + [ + 109.3516454, + -0.044664 + ], + [ + 109.3516482, + -0.0446268 + ], + [ + 109.3516796, + -0.0445926 + ], + [ + 109.3522985, + -0.0439893 + ] + ] + ] + }, + "id": "relation/10625036" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625037", + "admin_level": "7", + "boundary": "administrative", + "name": "Akcaya", + "place": "village", + "type": "boundary", + "wikidata": "Q12471242", + "wikipedia": "id:Akcaya, Pontianak Selatan, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.323905, + -0.0581648 + ], + [ + 109.3243278, + -0.0578376 + ], + [ + 109.3246728, + -0.0575253 + ], + [ + 109.3257317, + -0.0564635 + ], + [ + 109.3268679, + -0.0553095 + ], + [ + 109.3278553, + -0.0543696 + ], + [ + 109.3283877, + -0.0539621 + ], + [ + 109.3290897, + -0.0533018 + ], + [ + 109.3295091, + -0.0529389 + ], + [ + 109.3304817, + -0.0520734 + ], + [ + 109.3309843, + -0.0516659 + ], + [ + 109.3312639, + -0.0513833 + ], + [ + 109.3315911, + -0.0511692 + ], + [ + 109.3323495, + -0.050845 + ], + [ + 109.33287, + -0.0506591 + ], + [ + 109.3330574, + -0.0505922 + ], + [ + 109.3343156, + -0.0502858 + ], + [ + 109.3345892, + -0.0502263 + ], + [ + 109.3349997, + -0.0500984 + ], + [ + 109.335422, + -0.0498664 + ], + [ + 109.3359158, + -0.0495155 + ], + [ + 109.3361745, + -0.0493965 + ], + [ + 109.3365106, + -0.0491675 + ], + [ + 109.3370282, + -0.0488879 + ], + [ + 109.3374654, + -0.0487451 + ], + [ + 109.3378818, + -0.0486202 + ], + [ + 109.3382685, + -0.0483912 + ], + [ + 109.3385094, + -0.0482216 + ], + [ + 109.3388544, + -0.0478796 + ], + [ + 109.3390091, + -0.0476625 + ], + [ + 109.3392381, + -0.0474483 + ], + [ + 109.3395177, + -0.0472461 + ], + [ + 109.3397913, + -0.0471152 + ], + [ + 109.3405051, + -0.0467285 + ], + [ + 109.3406598, + -0.046553 + ], + [ + 109.3407461, + -0.0463627 + ], + [ + 109.3409334, + -0.0458749 + ], + [ + 109.3410316, + -0.0455983 + ], + [ + 109.3410703, + -0.0455001 + ], + [ + 109.3411163, + -0.0453834 + ], + [ + 109.3405379, + -0.0446875 + ], + [ + 109.3392024, + -0.043132 + ], + [ + 109.3382566, + -0.0420434 + ], + [ + 109.3380523, + -0.0417931 + ], + [ + 109.3366474, + -0.0400714 + ], + [ + 109.3356071, + -0.038824 + ], + [ + 109.3353687, + -0.0385269 + ], + [ + 109.3346976, + -0.0377181 + ], + [ + 109.333002, + -0.0355675 + ], + [ + 109.3328738, + -0.0354048 + ], + [ + 109.3328349, + -0.0355404 + ], + [ + 109.3321746, + -0.0360669 + ], + [ + 109.3317914, + -0.0363262 + ], + [ + 109.3314281, + -0.0366439 + ], + [ + 109.3306744, + -0.0372892 + ], + [ + 109.3301362, + -0.0377614 + ], + [ + 109.3296128, + -0.0382584 + ], + [ + 109.3292679, + -0.0385487 + ], + [ + 109.3292121, + -0.038603 + ], + [ + 109.3291974, + -0.0386153 + ], + [ + 109.3291713, + -0.0386371 + ], + [ + 109.3287735, + -0.0389692 + ], + [ + 109.328663, + -0.0390689 + ], + [ + 109.3282882, + -0.0393675 + ], + [ + 109.3278399, + -0.0397916 + ], + [ + 109.3272589, + -0.0403027 + ], + [ + 109.326772, + -0.0407138 + ], + [ + 109.3259959, + -0.0414094 + ], + [ + 109.3256531, + -0.0417228 + ], + [ + 109.3246355, + -0.042667 + ], + [ + 109.3244139, + -0.0428659 + ], + [ + 109.324009, + -0.0432884 + ], + [ + 109.3233364, + -0.0439435 + ], + [ + 109.3228932, + -0.0443521 + ], + [ + 109.3220834, + -0.0451772 + ], + [ + 109.3216095, + -0.0456494 + ], + [ + 109.3211552, + -0.0460768 + ], + [ + 109.3207602, + -0.0464545 + ], + [ + 109.319911, + -0.0473094 + ], + [ + 109.3191926, + -0.0479904 + ], + [ + 109.3189877, + -0.0482141 + ], + [ + 109.3186224, + -0.0485719 + ], + [ + 109.3179756, + -0.0492379 + ], + [ + 109.3170869, + -0.0501227 + ], + [ + 109.3164851, + -0.0507048 + ], + [ + 109.3163242, + -0.050868 + ], + [ + 109.3175352, + -0.0520217 + ], + [ + 109.318142, + -0.052638 + ], + [ + 109.3188249, + -0.0533161 + ], + [ + 109.3192841, + -0.0537849 + ], + [ + 109.3192936, + -0.0538872 + ], + [ + 109.3193698, + -0.0539752 + ], + [ + 109.3199646, + -0.0545915 + ], + [ + 109.3206261, + -0.0552197 + ], + [ + 109.3217754, + -0.0562643 + ], + [ + 109.3224678, + -0.0568602 + ], + [ + 109.3228747, + -0.0572089 + ], + [ + 109.323905, + -0.0581648 + ] + ] + ] + }, + "id": "relation/10625037" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625038", + "admin_level": "7", + "boundary": "administrative", + "name": "Kotabaru", + "place": "village", + "type": "boundary", + "wikidata": "Q19727966", + "wikipedia": "id:Kotabaru, Pontianak Selatan, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3107796, + -0.07969 + ], + [ + 109.3112715, + -0.0785661 + ], + [ + 109.3122727, + -0.07644 + ], + [ + 109.3127653, + -0.0753835 + ], + [ + 109.3129701, + -0.0749814 + ], + [ + 109.3131555, + -0.0746174 + ], + [ + 109.3140643, + -0.0730765 + ], + [ + 109.314112, + -0.0729682 + ], + [ + 109.3145433, + -0.0722841 + ], + [ + 109.3150549, + -0.0713025 + ], + [ + 109.3152958, + -0.0708505 + ], + [ + 109.3155635, + -0.0704043 + ], + [ + 109.3160424, + -0.0696637 + ], + [ + 109.3166134, + -0.068822 + ], + [ + 109.3175369, + -0.0675422 + ], + [ + 109.3182507, + -0.0665845 + ], + [ + 109.3188248, + -0.0656981 + ], + [ + 109.3192888, + -0.0650021 + ], + [ + 109.3200264, + -0.0637916 + ], + [ + 109.3207313, + -0.0626524 + ], + [ + 109.3213975, + -0.061778 + ], + [ + 109.3219508, + -0.060847 + ], + [ + 109.3223939, + -0.0600291 + ], + [ + 109.32262, + -0.0596751 + ], + [ + 109.3230215, + -0.0592349 + ], + [ + 109.3238224, + -0.0582634 + ], + [ + 109.323905, + -0.0581648 + ], + [ + 109.3228747, + -0.0572089 + ], + [ + 109.3224678, + -0.0568602 + ], + [ + 109.3217754, + -0.0562643 + ], + [ + 109.3206261, + -0.0552197 + ], + [ + 109.3199646, + -0.0545915 + ], + [ + 109.3193698, + -0.0539752 + ], + [ + 109.3192936, + -0.0538872 + ], + [ + 109.3192841, + -0.0537849 + ], + [ + 109.3188249, + -0.0533161 + ], + [ + 109.318142, + -0.052638 + ], + [ + 109.3175352, + -0.0520217 + ], + [ + 109.3163242, + -0.050868 + ], + [ + 109.3160641, + -0.0511319 + ], + [ + 109.3157471, + -0.0514348 + ], + [ + 109.3153546, + -0.0518168 + ], + [ + 109.3149631, + -0.0522093 + ], + [ + 109.3141862, + -0.0529743 + ], + [ + 109.3137662, + -0.0533943 + ], + [ + 109.3134837, + -0.0536685 + ], + [ + 109.3128267, + -0.0543274 + ], + [ + 109.3125087, + -0.0546304 + ], + [ + 109.312266, + -0.0548779 + ], + [ + 109.3120756, + -0.0550587 + ], + [ + 109.311915, + -0.0552312 + ], + [ + 109.3112523, + -0.0558642 + ], + [ + 109.3108064, + -0.0563258 + ], + [ + 109.3103145, + -0.0568254 + ], + [ + 109.3099535, + -0.0571801 + ], + [ + 109.3097031, + -0.0574532 + ], + [ + 109.3094366, + -0.0577304 + ], + [ + 109.3090999, + -0.0580588 + ], + [ + 109.3088212, + -0.0583383 + ], + [ + 109.3079658, + -0.0592124 + ], + [ + 109.3073876, + -0.0597801 + ], + [ + 109.307052, + -0.0600842 + ], + [ + 109.3068222, + -0.0603441 + ], + [ + 109.3062625, + -0.060928 + ], + [ + 109.3058971, + -0.0612806 + ], + [ + 109.3054074, + -0.0618017 + ], + [ + 109.3051618, + -0.0620501 + ], + [ + 109.3048763, + -0.0623214 + ], + [ + 109.304418, + -0.0627711 + ], + [ + 109.3039418, + -0.06326 + ], + [ + 109.3040054, + -0.063322 + ], + [ + 109.3044946, + -0.0636438 + ], + [ + 109.3045361, + -0.0637234 + ], + [ + 109.3049351, + -0.0640178 + ], + [ + 109.3053255, + -0.0642953 + ], + [ + 109.3052846, + -0.0643656 + ], + [ + 109.3055087, + -0.0645136 + ], + [ + 109.3052998, + -0.064778 + ], + [ + 109.3061783, + -0.0654232 + ], + [ + 109.3058331, + -0.065886 + ], + [ + 109.3054797, + -0.0663854 + ], + [ + 109.30574, + -0.0665836 + ], + [ + 109.3054372, + -0.0668934 + ], + [ + 109.3053554, + -0.06683 + ], + [ + 109.3052578, + -0.0669674 + ], + [ + 109.3053089, + -0.0670067 + ], + [ + 109.305153, + -0.0671676 + ], + [ + 109.3050995, + -0.0671251 + ], + [ + 109.304986, + -0.0672429 + ], + [ + 109.3050482, + -0.0672933 + ], + [ + 109.304738, + -0.0676115 + ], + [ + 109.3055505, + -0.0686349 + ], + [ + 109.3055934, + -0.0687063 + ], + [ + 109.3052043, + -0.0691588 + ], + [ + 109.3066775, + -0.0701559 + ], + [ + 109.3078647, + -0.0709735 + ], + [ + 109.3072989, + -0.071628 + ], + [ + 109.3078743, + -0.0721731 + ], + [ + 109.3078029, + -0.0723348 + ], + [ + 109.3075147, + -0.0730326 + ], + [ + 109.3071244, + -0.0741664 + ], + [ + 109.3067034, + -0.0752978 + ], + [ + 109.3064932, + -0.0758295 + ], + [ + 109.3065801, + -0.0762906 + ], + [ + 109.3065942, + -0.0767611 + ], + [ + 109.3066128, + -0.0772192 + ], + [ + 109.3078922, + -0.0779615 + ], + [ + 109.3107796, + -0.07969 + ] + ] + ] + }, + "id": "relation/10625038" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625039", + "admin_level": "7", + "boundary": "administrative", + "name": "Parit Tokaya", + "place": "village", + "type": "boundary", + "wikidata": "Q21292917", + "wikipedia": "id:Parittokaya, Pontianak Selatan, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3224725, + -0.0880212 + ], + [ + 109.323928, + -0.0854277 + ], + [ + 109.3219873, + -0.0832884 + ], + [ + 109.3233608, + -0.0812877 + ], + [ + 109.3249679, + -0.0790044 + ], + [ + 109.3256936, + -0.0779265 + ], + [ + 109.3265094, + -0.0766657 + ], + [ + 109.327624, + -0.0749794 + ], + [ + 109.3288739, + -0.0731236 + ], + [ + 109.3305545, + -0.0705345 + ], + [ + 109.3310448, + -0.0698008 + ], + [ + 109.3318211, + -0.0688343 + ], + [ + 109.3331777, + -0.0672767 + ], + [ + 109.3338397, + -0.0664927 + ], + [ + 109.3343637, + -0.0658721 + ], + [ + 109.335146, + -0.0649085 + ], + [ + 109.3360536, + -0.0638581 + ], + [ + 109.3365677, + -0.0632845 + ], + [ + 109.3369769, + -0.0627779 + ], + [ + 109.3373884, + -0.062291 + ], + [ + 109.3377636, + -0.0618735 + ], + [ + 109.3379068, + -0.0617045 + ], + [ + 109.3380895, + -0.0615305 + ], + [ + 109.3385002, + -0.0610596 + ], + [ + 109.3394758, + -0.0599561 + ], + [ + 109.3405819, + -0.0586716 + ], + [ + 109.3413518, + -0.0577879 + ], + [ + 109.3418814, + -0.0572063 + ], + [ + 109.3429633, + -0.0559294 + ], + [ + 109.3440063, + -0.0547281 + ], + [ + 109.3449202, + -0.0536878 + ], + [ + 109.3455534, + -0.0529496 + ], + [ + 109.3457278, + -0.0527463 + ], + [ + 109.3464373, + -0.0519604 + ], + [ + 109.3464601, + -0.0519351 + ], + [ + 109.3465392, + -0.0518475 + ], + [ + 109.3457436, + -0.050946 + ], + [ + 109.3444201, + -0.0493132 + ], + [ + 109.3433616, + -0.0480426 + ], + [ + 109.3431998, + -0.0478484 + ], + [ + 109.3429201, + -0.0475454 + ], + [ + 109.341996, + -0.0464667 + ], + [ + 109.3411163, + -0.0453834 + ], + [ + 109.3410703, + -0.0455001 + ], + [ + 109.3410316, + -0.0455983 + ], + [ + 109.3409334, + -0.0458749 + ], + [ + 109.3407461, + -0.0463627 + ], + [ + 109.3406598, + -0.046553 + ], + [ + 109.3405051, + -0.0467285 + ], + [ + 109.3397913, + -0.0471152 + ], + [ + 109.3395177, + -0.0472461 + ], + [ + 109.3392381, + -0.0474483 + ], + [ + 109.3390091, + -0.0476625 + ], + [ + 109.3388544, + -0.0478796 + ], + [ + 109.3385094, + -0.0482216 + ], + [ + 109.3382685, + -0.0483912 + ], + [ + 109.3378818, + -0.0486202 + ], + [ + 109.3374654, + -0.0487451 + ], + [ + 109.3370282, + -0.0488879 + ], + [ + 109.3365106, + -0.0491675 + ], + [ + 109.3361745, + -0.0493965 + ], + [ + 109.3359158, + -0.0495155 + ], + [ + 109.335422, + -0.0498664 + ], + [ + 109.3349997, + -0.0500984 + ], + [ + 109.3345892, + -0.0502263 + ], + [ + 109.3343156, + -0.0502858 + ], + [ + 109.3330574, + -0.0505922 + ], + [ + 109.33287, + -0.0506591 + ], + [ + 109.3323495, + -0.050845 + ], + [ + 109.3315911, + -0.0511692 + ], + [ + 109.3312639, + -0.0513833 + ], + [ + 109.3309843, + -0.0516659 + ], + [ + 109.3304817, + -0.0520734 + ], + [ + 109.3295091, + -0.0529389 + ], + [ + 109.3290897, + -0.0533018 + ], + [ + 109.3283877, + -0.0539621 + ], + [ + 109.3278553, + -0.0543696 + ], + [ + 109.3268679, + -0.0553095 + ], + [ + 109.3257317, + -0.0564635 + ], + [ + 109.3246728, + -0.0575253 + ], + [ + 109.3243278, + -0.0578376 + ], + [ + 109.323905, + -0.0581648 + ], + [ + 109.3238224, + -0.0582634 + ], + [ + 109.3230215, + -0.0592349 + ], + [ + 109.32262, + -0.0596751 + ], + [ + 109.3223939, + -0.0600291 + ], + [ + 109.3219508, + -0.060847 + ], + [ + 109.3213975, + -0.061778 + ], + [ + 109.3207313, + -0.0626524 + ], + [ + 109.3200264, + -0.0637916 + ], + [ + 109.3192888, + -0.0650021 + ], + [ + 109.3188248, + -0.0656981 + ], + [ + 109.3182507, + -0.0665845 + ], + [ + 109.3175369, + -0.0675422 + ], + [ + 109.3166134, + -0.068822 + ], + [ + 109.3160424, + -0.0696637 + ], + [ + 109.3155635, + -0.0704043 + ], + [ + 109.3152958, + -0.0708505 + ], + [ + 109.3150549, + -0.0713025 + ], + [ + 109.3145433, + -0.0722841 + ], + [ + 109.314112, + -0.0729682 + ], + [ + 109.3140643, + -0.0730765 + ], + [ + 109.3131555, + -0.0746174 + ], + [ + 109.3129701, + -0.0749814 + ], + [ + 109.3127653, + -0.0753835 + ], + [ + 109.3122727, + -0.07644 + ], + [ + 109.3112715, + -0.0785661 + ], + [ + 109.3107796, + -0.07969 + ], + [ + 109.3108333, + -0.0797222 + ], + [ + 109.3202778, + -0.0852778 + ], + [ + 109.3206711, + -0.0857694 + ], + [ + 109.3224725, + -0.0880212 + ] + ] + ] + }, + "id": "relation/10625039" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625040", + "admin_level": "7", + "boundary": "administrative", + "name": "Bansir Laut", + "place": "village", + "type": "boundary", + "wikidata": "Q21292911", + "wikipedia": "id:Bansir Laut, Pontianak Tenggara, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3465392, + -0.0518475 + ], + [ + 109.3464601, + -0.0519351 + ], + [ + 109.3464373, + -0.0519604 + ], + [ + 109.3457278, + -0.0527463 + ], + [ + 109.3455534, + -0.0529496 + ], + [ + 109.3449202, + -0.0536878 + ], + [ + 109.3440063, + -0.0547281 + ], + [ + 109.3429633, + -0.0559294 + ], + [ + 109.3418814, + -0.0572063 + ], + [ + 109.3413518, + -0.0577879 + ], + [ + 109.3405819, + -0.0586716 + ], + [ + 109.3394758, + -0.0599561 + ], + [ + 109.3385002, + -0.0610596 + ], + [ + 109.3380895, + -0.0615305 + ], + [ + 109.3379068, + -0.0617045 + ], + [ + 109.3377636, + -0.0618735 + ], + [ + 109.3373884, + -0.062291 + ], + [ + 109.3369769, + -0.0627779 + ], + [ + 109.3374373, + -0.0632258 + ], + [ + 109.3400024, + -0.0656481 + ], + [ + 109.342657, + -0.0681154 + ], + [ + 109.3432721, + -0.0686468 + ], + [ + 109.3470694, + -0.064682 + ], + [ + 109.3487065, + -0.062826 + ], + [ + 109.349057, + -0.062351 + ], + [ + 109.3493326, + -0.0619199 + ], + [ + 109.3500762, + -0.0607906 + ], + [ + 109.3504871, + -0.0601734 + ], + [ + 109.3513547, + -0.0589061 + ], + [ + 109.3517783, + -0.0583269 + ], + [ + 109.3518581, + -0.0582178 + ], + [ + 109.3518931, + -0.0581571 + ], + [ + 109.3519212, + -0.0581083 + ], + [ + 109.3520503, + -0.0578841 + ], + [ + 109.3525738, + -0.0570351 + ], + [ + 109.3530021, + -0.0563669 + ], + [ + 109.3532971, + -0.0558929 + ], + [ + 109.3538149, + -0.0551296 + ], + [ + 109.3542718, + -0.0544443 + ], + [ + 109.3550446, + -0.0533536 + ], + [ + 109.3554215, + -0.0528073 + ], + [ + 109.3557128, + -0.0523656 + ], + [ + 109.3559698, + -0.0518974 + ], + [ + 109.356122, + -0.0516061 + ], + [ + 109.3563219, + -0.0513092 + ], + [ + 109.3564894, + -0.0510141 + ], + [ + 109.356853, + -0.0504468 + ], + [ + 109.3575649, + -0.0495445 + ], + [ + 109.3588905, + -0.0479542 + ], + [ + 109.3595088, + -0.0472051 + ], + [ + 109.3602786, + -0.0463937 + ], + [ + 109.3583193, + -0.0446985 + ], + [ + 109.3551902, + -0.0414546 + ], + [ + 109.3551747, + -0.0414386 + ], + [ + 109.3551133, + -0.0414936 + ], + [ + 109.3543235, + -0.0421357 + ], + [ + 109.3542469, + -0.042217 + ], + [ + 109.3527954, + -0.0435049 + ], + [ + 109.3522985, + -0.0439893 + ], + [ + 109.3516796, + -0.0445926 + ], + [ + 109.3516482, + -0.0446268 + ], + [ + 109.3516454, + -0.044664 + ], + [ + 109.3516639, + -0.0446868 + ], + [ + 109.3519252, + -0.0449124 + ], + [ + 109.3519166, + -0.0449509 + ], + [ + 109.3518138, + -0.0450794 + ], + [ + 109.3513827, + -0.0455163 + ], + [ + 109.3496942, + -0.0473342 + ], + [ + 109.3495006, + -0.0475738 + ], + [ + 109.3492012, + -0.0480329 + ], + [ + 109.348686, + -0.0488562 + ], + [ + 109.3479601, + -0.0499631 + ], + [ + 109.3476533, + -0.0504927 + ], + [ + 109.3469412, + -0.0513682 + ], + [ + 109.3465392, + -0.0518475 + ] + ] + ] + }, + "id": "relation/10625040" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625041", + "admin_level": "7", + "boundary": "administrative", + "name": "Bangka Belitung Laut", + "place": "village", + "type": "boundary", + "wikidata": "Q21292914", + "wikipedia": "id:Bangka Belitung Laut, Pontianak Tenggara, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3518581, + -0.0582178 + ], + [ + 109.3533804, + -0.0600335 + ], + [ + 109.3542151, + -0.0610314 + ], + [ + 109.3551788, + -0.0621944 + ], + [ + 109.3563156, + -0.0635959 + ], + [ + 109.3570815, + -0.0644622 + ], + [ + 109.3582284, + -0.0657971 + ], + [ + 109.3591349, + -0.0668429 + ], + [ + 109.3607089, + -0.0686417 + ], + [ + 109.361472, + -0.0695652 + ], + [ + 109.3615186, + -0.0694875 + ], + [ + 109.3615413, + -0.0694463 + ], + [ + 109.3626025, + -0.0675195 + ], + [ + 109.3633345, + -0.0660554 + ], + [ + 109.3642757, + -0.0639162 + ], + [ + 109.3648557, + -0.0626993 + ], + [ + 109.3656768, + -0.0609347 + ], + [ + 109.3660333, + -0.060186 + ], + [ + 109.3668818, + -0.0594587 + ], + [ + 109.3688871, + -0.0577676 + ], + [ + 109.3675808, + -0.0556382 + ], + [ + 109.365504, + -0.0522526 + ], + [ + 109.3646661, + -0.051077 + ], + [ + 109.3646114, + -0.0510054 + ], + [ + 109.3623441, + -0.0484363 + ], + [ + 109.3605651, + -0.0466462 + ], + [ + 109.3604994, + -0.0465847 + ], + [ + 109.3602786, + -0.0463937 + ], + [ + 109.3595088, + -0.0472051 + ], + [ + 109.3588905, + -0.0479542 + ], + [ + 109.3575649, + -0.0495445 + ], + [ + 109.356853, + -0.0504468 + ], + [ + 109.3564894, + -0.0510141 + ], + [ + 109.3563219, + -0.0513092 + ], + [ + 109.356122, + -0.0516061 + ], + [ + 109.3559698, + -0.0518974 + ], + [ + 109.3557128, + -0.0523656 + ], + [ + 109.3554215, + -0.0528073 + ], + [ + 109.3550446, + -0.0533536 + ], + [ + 109.3542718, + -0.0544443 + ], + [ + 109.3538149, + -0.0551296 + ], + [ + 109.3532971, + -0.0558929 + ], + [ + 109.3530021, + -0.0563669 + ], + [ + 109.3525738, + -0.0570351 + ], + [ + 109.3520503, + -0.0578841 + ], + [ + 109.3519212, + -0.0581083 + ], + [ + 109.3518931, + -0.0581571 + ], + [ + 109.3518581, + -0.0582178 + ] + ] + ] + }, + "id": "relation/10625041" + }, + { + "type": "Feature", + "properties": { + "@id": "relation/10625042", + "admin_level": "7", + "boundary": "administrative", + "name": "Bangka Belitung Darat", + "place": "village", + "type": "boundary", + "wikidata": "Q21292915", + "wikipedia": "id:Bangka Belitung Darat, Pontianak Tenggara, Pontianak" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 109.3563156, + -0.0635959 + ], + [ + 109.356239, + -0.0637304 + ], + [ + 109.3380013, + -0.095006 + ], + [ + 109.3429523, + -0.0981948 + ], + [ + 109.3434103, + -0.0976464 + ], + [ + 109.3453547, + -0.0950914 + ], + [ + 109.3457895, + -0.0944185 + ], + [ + 109.3468384, + -0.0926226 + ], + [ + 109.3476632, + -0.0912256 + ], + [ + 109.3480241, + -0.0906143 + ], + [ + 109.3486415, + -0.0896007 + ], + [ + 109.3503423, + -0.0869972 + ], + [ + 109.3523262, + -0.0839272 + ], + [ + 109.3540143, + -0.0814739 + ], + [ + 109.354886, + -0.0802671 + ], + [ + 109.3549645, + -0.0801569 + ], + [ + 109.3550382, + -0.0800433 + ], + [ + 109.3554734, + -0.0793574 + ], + [ + 109.356482, + -0.0775941 + ], + [ + 109.3578695, + -0.0752683 + ], + [ + 109.3593585, + -0.0728458 + ], + [ + 109.3609939, + -0.070362 + ], + [ + 109.3614586, + -0.0695875 + ], + [ + 109.361472, + -0.0695652 + ], + [ + 109.3607089, + -0.0686417 + ], + [ + 109.3591349, + -0.0668429 + ], + [ + 109.3582284, + -0.0657971 + ], + [ + 109.3570815, + -0.0644622 + ], + [ + 109.3563156, + -0.0635959 + ] + ] + ] + }, + "id": "relation/10625042" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308599361", + "@relations": [ + { + "role": "label", + "rel": 10625018, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Darat Sekip", + "place": "village", + "type": "boundary", + "wikidata": "Q12480909", + "wikipedia": "id:Daratsekip, Pontianak Kota, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3350753, + -0.0296926 + ] + }, + "id": "node/1308599361" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308607704", + "@relations": [ + { + "role": "admin_centre", + "rel": 10625033, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Saigon", + "name:vi": "Sài Gòn", + "type": "boundary", + "wikipedia": "id:Saigon, Pontianak Timur, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3689159, + -0.040827 + ] + }, + "id": "node/1308607704" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308608812", + "@relations": [ + { + "role": "label", + "rel": 10625034, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Parit Mayor", + "place": "village", + "type": "boundary", + "wikidata": "Q12503221", + "wikipedia": "id:Paritmayor, Pontianak Timur, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3770137, + -0.0538669 + ] + }, + "id": "node/1308608812" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308608933", + "@relations": [ + { + "role": "label", + "rel": 10625016, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Mariana", + "place": "village", + "type": "boundary", + "wikidata": "Q12497041", + "wikipedia": "id:Mariana, Pontianak Kota, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3282848, + -0.020684 + ] + }, + "id": "node/1308608933" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308613368", + "@relations": [ + { + "role": "label", + "rel": 10625025, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Batu Layang", + "place": "village", + "type": "boundary", + "wikidata": "Q12475235", + "wikipedia": "id:Batulayang, Pontianak Utara, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3102123, + 0.0172616 + ] + }, + "id": "node/1308613368" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308613450", + "@relations": [ + { + "role": "label", + "rel": 10625026, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Siantan Hilir", + "place": "village", + "type": "boundary", + "wikidata": "Q12514210", + "wikipedia": "id:Siantan Hilir, Pontianak Utara, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3373321, + 0.0074844 + ] + }, + "id": "node/1308613450" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308615782", + "@relations": [ + { + "role": "label", + "rel": 10625021, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Beliung", + "place": "village", + "type": "boundary", + "wikidata": "Q19742044", + "wikipedia": "id:Sungaibeliung, Pontianak Barat, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.298399, + -0.0073336 + ] + }, + "id": "node/1308615782" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308618440", + "@relations": [ + { + "role": "label", + "rel": 10625015, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Tambelan Sampit", + "place": "village", + "type": "boundary", + "wikidata": "Q12519014", + "wikipedia": "id:Tambelansampit, Pontianak Timur, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3531021, + -0.0336336 + ] + }, + "id": "node/1308618440" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308620317", + "@relations": [ + { + "role": "label", + "rel": 10625039, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Parit Tokaya", + "place": "village", + "type": "boundary", + "wikidata": "Q21292917", + "wikipedia": "id:Parittokaya, Pontianak Selatan, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3274214, + -0.0644268 + ] + }, + "id": "node/1308620317" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308621196", + "@relations": [ + { + "role": "label", + "rel": 10625028, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Siantan Hulu", + "place": "village", + "type": "boundary", + "wikidata": "Q19733439", + "wikipedia": "id:Siantan Hulu, Pontianak Utara, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3638734, + 0.0008267 + ] + }, + "id": "node/1308621196" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308621252", + "@relations": [ + { + "role": "label", + "rel": 10625042, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Bangka Belitung Darat", + "place": "village", + "type": "boundary", + "wikidata": "Q21292915", + "wikipedia": "id:Bangka Belitung Darat, Pontianak Tenggara, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.352238, + -0.0789745 + ] + }, + "id": "node/1308621252" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308621452", + "@relations": [ + { + "role": "label", + "rel": 10625023, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Jawi Dalam", + "place": "village", + "type": "boundary", + "wikidata": "Q19742119", + "wikipedia": "id:Sungaijawi Dalam, Pontianak Barat, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3120308, + -0.0187731 + ] + }, + "id": "node/1308621452" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308623453", + "@relations": [ + { + "role": "label", + "rel": 10625029, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Tanjung Hulu", + "place": "village", + "type": "boundary", + "wikidata": "Q12519539", + "wikipedia": "id:Tanjunghulu, Pontianak Timur, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.370481, + -0.0265234 + ] + }, + "id": "node/1308623453" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308626083", + "@relations": [ + { + "role": "label", + "rel": 10625019, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Bangkong", + "place": "village", + "type": "boundary", + "wikidata": "Q12517750", + "wikipedia": "id:Sungaibangkong, Pontianak Kota, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3212472, + -0.0370224 + ] + }, + "id": "node/1308626083" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308627865", + "@relations": [ + { + "role": "label", + "rel": 10625036, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Benua Melayu Darat", + "place": "village", + "type": "boundary", + "wikidata": "Q12475842", + "wikipedia": "id:Benuamelayu Darat, Pontianak Selatan, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3394131, + -0.0354564 + ] + }, + "id": "node/1308627865" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308628368", + "@relations": [ + { + "role": "label", + "rel": 10625024, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Jawi Luar", + "place": "village", + "type": "boundary", + "wikidata": "Q12517820", + "wikipedia": "id:Sungaijawi Luar, Pontianak Barat, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3186, + -0.009701 + ] + }, + "id": "node/1308628368" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308630844", + "@relations": [ + { + "role": "label", + "rel": 10625027, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Siantan Tengah", + "place": "village", + "type": "boundary", + "wikidata": "Q12514211", + "wikipedia": "id:Siantan Tengah, Pontianak Utara, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3484677, + -0.0059495 + ] + }, + "id": "node/1308630844" + }, + { + "type": "Feature", + "properties": { + "@id": "node/1308630904", + "@relations": [ + { + "role": "label", + "rel": 10625031, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Dalam Bugis", + "place": "village", + "type": "boundary", + "wikidata": "Q19725167", + "wikipedia": "id:Dalambugis, Pontianak Timur, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3502748, + -0.02731 + ] + }, + "id": "node/1308630904" + }, + { + "type": "Feature", + "properties": { + "@id": "node/3448858259", + "@relations": [ + { + "role": "label", + "rel": 10625032, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Banjar Serasan", + "place": "village", + "type": "boundary", + "wikidata": "Q12474361", + "wikipedia": "id:Banjar Serasan, Pontianak Timur, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3603852, + -0.0415836 + ] + }, + "id": "node/3448858259" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7157810475", + "@relations": [ + { + "role": "label", + "rel": 10625014, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Bansir Darat", + "place": "village", + "type": "boundary", + "wikidata": "Q21292912", + "wikipedia": "id:Bansir Darat, Pontianak Tenggara, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3375682, + -0.0769042 + ] + }, + "id": "node/7157810475" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7157810477", + "@relations": [ + { + "role": "label", + "rel": 10625017, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Tengah", + "place": "village", + "type": "boundary", + "wikidata": "Q12520792", + "wikipedia": "id:Tengah, Pontianak Kota, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3362807, + -0.0226592 + ] + }, + "id": "node/7157810477" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7157810480", + "@relations": [ + { + "role": "label", + "rel": 10625020, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Sungai Jawi", + "place": "village", + "type": "boundary", + "wikidata": "Q19748645", + "wikipedia": "id:Sungaijawi, Pontianak Kota, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3048666, + -0.0333021 + ] + }, + "id": "node/7157810480" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7157810482", + "@relations": [ + { + "role": "label", + "rel": 10625030, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Tanjung Hilir", + "place": "village", + "type": "boundary", + "wikidata": "Q21292916", + "wikipedia": "id:Tanjunghilir, Pontianak Timur, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3571376, + -0.0242042 + ] + }, + "id": "node/7157810482" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7157810478", + "@relations": [ + { + "role": "label", + "rel": 10625037, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Akcaya", + "place": "village", + "type": "boundary", + "wikidata": "Q12471242", + "wikipedia": "id:Akcaya, Pontianak Selatan, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3278692, + -0.0472067 + ] + }, + "id": "node/7157810478" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7157810479", + "@relations": [ + { + "role": "label", + "rel": 10625038, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Kotabaru", + "place": "village", + "type": "boundary", + "wikidata": "Q19727966", + "wikipedia": "id:Kotabaru, Pontianak Selatan, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.313793, + -0.0616263 + ] + }, + "id": "node/7157810479" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7157810476", + "@relations": [ + { + "role": "label", + "rel": 10625040, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Bansir Laut", + "place": "village", + "type": "boundary", + "wikidata": "Q21292911", + "wikipedia": "id:Bansir Laut, Pontianak Tenggara, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3496703, + -0.0544166 + ] + }, + "id": "node/7157810476" + }, + { + "type": "Feature", + "properties": { + "@id": "node/7157810481", + "@relations": [ + { + "role": "label", + "rel": 10625041, + "reltags": { + "admin_level": "7", + "boundary": "administrative", + "name": "Bangka Belitung Laut", + "place": "village", + "type": "boundary", + "wikidata": "Q21292914", + "wikipedia": "id:Bangka Belitung Laut, Pontianak Tenggara, Pontianak" + } + } + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 109.3594549, + -0.0573347 + ] + }, + "id": "node/7157810481" + } + ] +} \ No newline at end of file diff --git a/login.php b/login.php new file mode 100644 index 0000000..7546a9b --- /dev/null +++ b/login.php @@ -0,0 +1,120 @@ +prepare("SELECT id, password FROM admins WHERE username = ?"); + $stmt->bind_param("s", $username); + $stmt->execute(); + $result = $stmt->get_result(); + + if ($row = $result->fetch_assoc()) { + if (password_verify($password, $row['password'])) { + $_SESSION['admin'] = $row['id']; + header('Location: index.php'); + exit; + } else { + $error = 'Password salah!'; + } + } else { + $error = 'Username tidak ditemukan!'; + } +} +?> + + + + + Login Admin - WebGIS Pontianak + + + + +
+ + +

+ +
+
+ + +
+
+ + +
+ +
+ ← Kembali ke Peta Publik +

Demo: username admin, password admin123

+
+ + \ No newline at end of file diff --git a/logout.php b/logout.php new file mode 100644 index 0000000..04c7d5f --- /dev/null +++ b/logout.php @@ -0,0 +1,5 @@ + false, 'message' => 'Nama wajib diisi']); + exit; +} + +$stmt = $conn->prepare("INSERT INTO poor_residents (name, nik, family_size, income, rt_rw, lat, lng) VALUES (?, ?, ?, ?, ?, ?, ?)"); +$stmt->bind_param("ssiisdd", $name, $nik, $family, $income, $rt_rw, $lat, $lng); + +header('Content-Type: application/json'); + +if ($stmt->execute()) { + echo json_encode(['success' => true, 'message' => 'Data berhasil disimpan']); +} else { + http_response_code(500); + echo json_encode(['success' => false, 'message' => 'Gagal menyimpan: ' . $stmt->error]); +} \ No newline at end of file diff --git a/schema.sql b/schema.sql new file mode 100644 index 0000000..6cab01a --- /dev/null +++ b/schema.sql @@ -0,0 +1,42 @@ +CREATE DATABASE IF NOT EXISTS webgis_pontianak; +USE webgis_pontianak; + +CREATE TABLE admins ( + id INT AUTO_INCREMENT PRIMARY KEY, + username VARCHAR(50) NOT NULL UNIQUE, + password VARCHAR(255) NOT NULL +) ENGINE=InnoDB; + +INSERT INTO admins (username, password) VALUES +('admin', '$2y$10$g356t75x6pjEidqWWu3yaOR7H3eBUaZJ5QY47DAP61EHzJvnJBT8a'); + +CREATE TABLE poor_residents ( + id INT AUTO_INCREMENT PRIMARY KEY, + name VARCHAR(100) NOT NULL, + nik VARCHAR(16) DEFAULT NULL, + family_size INT NOT NULL DEFAULT 1, + income INT NOT NULL DEFAULT 0, + rt_rw VARCHAR(20) DEFAULT NULL, + lat DOUBLE NOT NULL, + lng DOUBLE NOT NULL, + created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP +) ENGINE=InnoDB; + +INSERT INTO poor_residents (name, nik, family_size, income, rt_rw, lat, lng) VALUES +('Rahmat Hidayat', '6171012345670001', 4, 750000, '002/003', -0.048, 109.325), +('Siti Maryam', '6171012345670002', 5, 600000, '001/002', -0.055, 109.332), +('Budi Gunawan', '6171012345670003', 3, 900000, '004/001', -0.042, 109.345), +('Dewi Sartika', '6171012345670004', 6, 480000, '003/005', -0.048, 109.355), +('Eko Widodo', '6171012345670005', 4, 820000, '005/002', -0.040, 109.310), +('Fitriani', '6171012345670006', 3, 1100000, '002/004', -0.058, 109.338), +('Gunadi', '6171012345670007', 7, 350000, '001/001', -0.052, 109.360), +('Hesti Nuraini', '6171012345670008', 2, 1200000, '006/003', -0.035, 109.318); + +-- Tabel pengaturan +CREATE TABLE settings ( + setting_key VARCHAR(50) PRIMARY KEY, + setting_value TEXT NOT NULL +) ENGINE=InnoDB; + +INSERT INTO settings (setting_key, setting_value) VALUES ('buffer_radius', '500'); \ No newline at end of file diff --git a/update_settings.php b/update_settings.php new file mode 100644 index 0000000..9604210 --- /dev/null +++ b/update_settings.php @@ -0,0 +1,19 @@ +prepare("REPLACE INTO settings (setting_key, setting_value) VALUES (?, ?)"); +$stmt->bind_param("ss", $key, $value); +$stmt->execute(); +echo 'ok'; \ No newline at end of file